From 7598cc52334fa3bf9a2a288dc7b7de790ea2e660 Mon Sep 17 00:00:00 2001 From: Antonin Delpeuch Date: Thu, 14 Nov 2024 17:52:14 +0100 Subject: [PATCH 1/2] Attach outer attributes to the elements they annotate Fixes #244. --- grammar.js | 17 ++++++- test/corpus/declarations.txt | 86 ++++++++++++++++++------------------ 2 files changed, 59 insertions(+), 44 deletions(-) diff --git a/grammar.js b/grammar.js index 28d505d..448c9ab 100644 --- a/grammar.js +++ b/grammar.js @@ -138,7 +138,6 @@ module.exports = grammar({ $.macro_invocation, $.macro_definition, $.empty_statement, - $.attribute_item, $.inner_attribute_item, $.mod_item, $.foreign_mod_item, @@ -270,6 +269,7 @@ module.exports = grammar({ ), mod_item: $ => seq( + repeat($.attribute_item), optional($.visibility_modifier), 'mod', field('name', $.identifier), @@ -280,6 +280,7 @@ module.exports = grammar({ ), foreign_mod_item: $ => seq( + repeat($.attribute_item), optional($.visibility_modifier), $.extern_modifier, choice( @@ -295,6 +296,7 @@ module.exports = grammar({ ), struct_item: $ => seq( + repeat($.attribute_item), optional($.visibility_modifier), 'struct', field('name', $._type_identifier), @@ -314,6 +316,7 @@ module.exports = grammar({ ), union_item: $ => seq( + repeat($.attribute_item), optional($.visibility_modifier), 'union', field('name', $._type_identifier), @@ -323,6 +326,7 @@ module.exports = grammar({ ), enum_item: $ => seq( + repeat($.attribute_item), optional($.visibility_modifier), 'enum', field('name', $._type_identifier), @@ -377,6 +381,7 @@ module.exports = grammar({ ), extern_crate_declaration: $ => seq( + repeat($.attribute_item), optional($.visibility_modifier), 'extern', $.crate, @@ -389,6 +394,7 @@ module.exports = grammar({ ), const_item: $ => seq( + repeat($.attribute_item), optional($.visibility_modifier), 'const', field('name', $.identifier), @@ -404,6 +410,7 @@ module.exports = grammar({ ), static_item: $ => seq( + repeat($.attribute_item), optional($.visibility_modifier), 'static', @@ -422,6 +429,7 @@ module.exports = grammar({ ), type_item: $ => seq( + repeat($.attribute_item), optional($.visibility_modifier), 'type', field('name', $._type_identifier), @@ -433,6 +441,7 @@ module.exports = grammar({ ), function_item: $ => seq( + repeat($.attribute_item), optional($.visibility_modifier), optional($.function_modifiers), 'fn', @@ -445,6 +454,7 @@ module.exports = grammar({ ), function_signature_item: $ => seq( + repeat($.attribute_item), optional($.visibility_modifier), optional($.function_modifiers), 'fn', @@ -487,6 +497,7 @@ module.exports = grammar({ ), impl_item: $ => seq( + repeat($.attribute_item), optional('unsafe'), 'impl', field('type_parameters', optional($.type_parameters)), @@ -505,6 +516,7 @@ module.exports = grammar({ ), trait_item: $ => seq( + repeat($.attribute_item), optional($.visibility_modifier), optional('unsafe'), 'trait', @@ -516,6 +528,7 @@ module.exports = grammar({ ), associated_type: $ => seq( + repeat($.attribute_item), 'type', field('name', $._type_identifier), field('type_parameters', optional($.type_parameters)), @@ -583,6 +596,7 @@ module.exports = grammar({ ), let_declaration: $ => seq( + repeat($.attribute_item), 'let', optional($.mutable_specifier), field('pattern', $._pattern), @@ -602,6 +616,7 @@ module.exports = grammar({ ), use_declaration: $ => seq( + repeat($.attribute_item), optional($.visibility_modifier), 'use', field('argument', $._use_clause), diff --git a/test/corpus/declarations.txt b/test/corpus/declarations.txt index 7f62fb1..9985631 100644 --- a/test/corpus/declarations.txt +++ b/test/corpus/declarations.txt @@ -1110,41 +1110,41 @@ mod macos_only {} #![allow(clippy::useless_transmute)] -#[clippy::cyclomatic_complexity = "100"] +#![clippy::cyclomatic_complexity = "100"] -------------------------------------------------------------------------------- (source_file - (attribute_item - (attribute - (identifier))) (function_item + (attribute_item + (attribute + (identifier))) name: (identifier) parameters: (parameters) body: (block)) - (attribute_item - (attribute - (identifier) - arguments: (token_tree - (identifier)))) (struct_item - name: (type_identifier)) - (attribute_item - (attribute - (identifier) - arguments: (token_tree + (attribute_item + (attribute (identifier) - (identifier)))) - (struct_item + arguments: (token_tree + (identifier)))) name: (type_identifier)) - (attribute_item - (attribute - (identifier) - arguments: (token_tree + (struct_item + (attribute_item + (attribute (identifier) - (string_literal - (string_content))))) + arguments: (token_tree + (identifier) + (identifier)))) + name: (type_identifier)) (mod_item + (attribute_item + (attribute + (identifier) + arguments: (token_tree + (identifier) + (string_literal + (string_content))))) name: (identifier) body: (declaration_list)) (inner_attribute_item @@ -1153,7 +1153,7 @@ mod macos_only {} arguments: (token_tree (identifier) (identifier)))) - (attribute_item + (inner_attribute_item (attribute (scoped_identifier path: (identifier) @@ -1234,25 +1234,25 @@ fn baz() {} -------------------------------------------------------------------------------- (source_file - (attribute_item - (attribute - (identifier) - (macro_invocation - (identifier) - (token_tree - (string_literal - (string_content)))))) (function_item + (attribute_item + (attribute + (identifier) + (macro_invocation + (identifier) + (token_tree + (string_literal + (string_content)))))) (identifier) (parameters) (block)) - (attribute_item - (attribute - (identifier) - (scoped_identifier - (identifier) - (identifier)))) (function_item + (attribute_item + (attribute + (identifier) + (scoped_identifier + (identifier) + (identifier)))) (identifier) (parameters) (block))) @@ -1323,13 +1323,13 @@ pub enum Error { (scoped_identifier (identifier) (identifier))) - (attribute_item - (attribute - (identifier) - (token_tree - (identifier) - (identifier)))) (enum_item + (attribute_item + (attribute + (identifier) + (token_tree + (identifier) + (identifier)))) (visibility_modifier) (type_identifier) (enum_variant_list From 5e6b8aaa228df438676ac15b70783c58ea6d6b6a Mon Sep 17 00:00:00 2001 From: Antonin Delpeuch Date: Thu, 14 Nov 2024 17:53:40 +0100 Subject: [PATCH 2/2] Run tree-sitter generate --- package.json | 8 +- src/grammar.json | 117 +- src/node-types.json | 81 +- src/parser.c | 254643 ++++++++++++++++++++----------------- src/tree_sitter/alloc.h | 8 +- 5 files changed, 139683 insertions(+), 115174 deletions(-) diff --git a/package.json b/package.json index 6a55487..408cc29 100644 --- a/package.json +++ b/package.json @@ -60,5 +60,11 @@ "prestart": "tree-sitter build --wasm", "start": "tree-sitter playground", "test": "node --test bindings/node/*_test.js" - } + }, + "tree-sitter": [ + { + "scope": "source.rust", + "injection-regex": "^rust$" + } + ] } diff --git a/src/grammar.json b/src/grammar.json index 5a2444b..55039d7 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -1,5 +1,4 @@ { - "$schema": "https://tree-sitter.github.io/tree-sitter/assets/schemas/grammar.schema.json", "name": "rust", "word": "identifier", "rules": { @@ -89,10 +88,6 @@ "type": "SYMBOL", "name": "empty_statement" }, - { - "type": "SYMBOL", - "name": "attribute_item" - }, { "type": "SYMBOL", "name": "inner_attribute_item" @@ -1241,6 +1236,13 @@ "mod_item": { "type": "SEQ", "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "attribute_item" + } + }, { "type": "CHOICE", "members": [ @@ -1287,6 +1289,13 @@ "foreign_mod_item": { "type": "SEQ", "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "attribute_item" + } + }, { "type": "CHOICE", "members": [ @@ -1345,6 +1354,13 @@ "struct_item": { "type": "SEQ", "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "attribute_item" + } + }, { "type": "CHOICE", "members": [ @@ -1453,6 +1469,13 @@ "union_item": { "type": "SEQ", "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "attribute_item" + } + }, { "type": "CHOICE", "members": [ @@ -1518,6 +1541,13 @@ "enum_item": { "type": "SEQ", "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "attribute_item" + } + }, { "type": "CHOICE", "members": [ @@ -1973,6 +2003,13 @@ "extern_crate_declaration": { "type": "SEQ", "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "attribute_item" + } + }, { "type": "CHOICE", "members": [ @@ -2035,6 +2072,13 @@ "const_item": { "type": "SEQ", "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "attribute_item" + } + }, { "type": "CHOICE", "members": [ @@ -2105,6 +2149,13 @@ "static_item": { "type": "SEQ", "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "attribute_item" + } + }, { "type": "CHOICE", "members": [ @@ -2199,6 +2250,13 @@ "type_item": { "type": "SEQ", "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "attribute_item" + } + }, { "type": "CHOICE", "members": [ @@ -2272,6 +2330,13 @@ "function_item": { "type": "SEQ", "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "attribute_item" + } + }, { "type": "CHOICE", "members": [ @@ -2391,6 +2456,13 @@ "function_signature_item": { "type": "SEQ", "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "attribute_item" + } + }, { "type": "CHOICE", "members": [ @@ -2720,6 +2792,13 @@ "impl_item": { "type": "SEQ", "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "attribute_item" + } + }, { "type": "CHOICE", "members": [ @@ -2844,6 +2923,13 @@ "trait_item": { "type": "SEQ", "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "attribute_item" + } + }, { "type": "CHOICE", "members": [ @@ -2937,6 +3023,13 @@ "associated_type": { "type": "SEQ", "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "attribute_item" + } + }, { "type": "STRING", "value": "type" @@ -3321,6 +3414,13 @@ "let_declaration": { "type": "SEQ", "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "attribute_item" + } + }, { "type": "STRING", "value": "let" @@ -3429,6 +3529,13 @@ "use_declaration": { "type": "SEQ", "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "attribute_item" + } + }, { "type": "CHOICE", "members": [ diff --git a/src/node-types.json b/src/node-types.json index 0b09861..2be08f8 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -7,10 +7,6 @@ "type": "associated_type", "named": true }, - { - "type": "attribute_item", - "named": true - }, { "type": "const_item", "named": true @@ -650,9 +646,13 @@ } }, "children": { - "multiple": false, + "multiple": true, "required": false, "types": [ + { + "type": "attribute_item", + "named": true + }, { "type": "where_clause", "named": true @@ -1381,9 +1381,13 @@ } }, "children": { - "multiple": false, + "multiple": true, "required": false, "types": [ + { + "type": "attribute_item", + "named": true + }, { "type": "visibility_modifier", "named": true @@ -1572,6 +1576,10 @@ "multiple": true, "required": false, "types": [ + { + "type": "attribute_item", + "named": true + }, { "type": "visibility_modifier", "named": true @@ -1696,6 +1704,10 @@ "multiple": true, "required": true, "types": [ + { + "type": "attribute_item", + "named": true + }, { "type": "crate", "named": true @@ -1990,6 +2002,10 @@ "multiple": true, "required": true, "types": [ + { + "type": "attribute_item", + "named": true + }, { "type": "extern_modifier", "named": true @@ -2069,6 +2085,10 @@ "multiple": true, "required": false, "types": [ + { + "type": "attribute_item", + "named": true + }, { "type": "function_modifiers", "named": true @@ -2152,6 +2172,10 @@ "multiple": true, "required": false, "types": [ + { + "type": "attribute_item", + "named": true + }, { "type": "function_modifiers", "named": true @@ -2462,9 +2486,13 @@ } }, "children": { - "multiple": false, + "multiple": true, "required": false, "types": [ + { + "type": "attribute_item", + "named": true + }, { "type": "where_clause", "named": true @@ -2613,9 +2641,13 @@ } }, "children": { - "multiple": false, + "multiple": true, "required": false, "types": [ + { + "type": "attribute_item", + "named": true + }, { "type": "mutable_specifier", "named": true @@ -2923,9 +2955,13 @@ } }, "children": { - "multiple": false, + "multiple": true, "required": false, "types": [ + { + "type": "attribute_item", + "named": true + }, { "type": "visibility_modifier", "named": true @@ -3606,7 +3642,6 @@ { "type": "source_file", "named": true, - "root": true, "fields": {}, "children": { "multiple": true, @@ -3666,6 +3701,10 @@ "multiple": true, "required": false, "types": [ + { + "type": "attribute_item", + "named": true + }, { "type": "mutable_specifier", "named": true @@ -3773,6 +3812,10 @@ "multiple": true, "required": false, "types": [ + { + "type": "attribute_item", + "named": true + }, { "type": "visibility_modifier", "named": true @@ -4128,6 +4171,10 @@ "multiple": true, "required": false, "types": [ + { + "type": "attribute_item", + "named": true + }, { "type": "visibility_modifier", "named": true @@ -4392,6 +4439,10 @@ "multiple": true, "required": false, "types": [ + { + "type": "attribute_item", + "named": true + }, { "type": "visibility_modifier", "named": true @@ -4496,6 +4547,10 @@ "multiple": true, "required": false, "types": [ + { + "type": "attribute_item", + "named": true + }, { "type": "visibility_modifier", "named": true @@ -4630,9 +4685,13 @@ } }, "children": { - "multiple": false, + "multiple": true, "required": false, "types": [ + { + "type": "attribute_item", + "named": true + }, { "type": "visibility_modifier", "named": true diff --git a/src/parser.c b/src/parser.c index ff8fce9..3fbd912 100644 --- a/src/parser.c +++ b/src/parser.c @@ -5,15 +5,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 3649 -#define LARGE_STATE_COUNT 1014 +#define STATE_COUNT 4147 +#define LARGE_STATE_COUNT 1160 #define SYMBOL_COUNT 346 #define ALIAS_COUNT 4 #define TOKEN_COUNT 155 #define EXTERNAL_TOKEN_COUNT 10 #define FIELD_COUNT 31 -#define MAX_ALIAS_SEQUENCE_LENGTH 10 -#define PRODUCTION_ID_COUNT 280 +#define MAX_ALIAS_SEQUENCE_LENGTH 11 +#define PRODUCTION_ID_COUNT 343 enum ts_symbol_identifiers { sym_identifier = 1, @@ -336,9 +336,9 @@ enum ts_symbol_identifiers { aux_sym_token_tree_pattern_repeat1 = 318, aux_sym_token_tree_repeat1 = 319, aux_sym__non_special_token_repeat1 = 320, - aux_sym_declaration_list_repeat1 = 321, - aux_sym_enum_variant_list_repeat1 = 322, - aux_sym_enum_variant_list_repeat2 = 323, + aux_sym_mod_item_repeat1 = 321, + aux_sym_declaration_list_repeat1 = 322, + aux_sym_enum_variant_list_repeat1 = 323, aux_sym_field_declaration_list_repeat1 = 324, aux_sym_ordered_field_declaration_list_repeat1 = 325, aux_sym_function_modifiers_repeat1 = 326, @@ -689,9 +689,9 @@ static const char * const ts_symbol_names[] = { [aux_sym_token_tree_pattern_repeat1] = "token_tree_pattern_repeat1", [aux_sym_token_tree_repeat1] = "token_tree_repeat1", [aux_sym__non_special_token_repeat1] = "_non_special_token_repeat1", + [aux_sym_mod_item_repeat1] = "mod_item_repeat1", [aux_sym_declaration_list_repeat1] = "declaration_list_repeat1", [aux_sym_enum_variant_list_repeat1] = "enum_variant_list_repeat1", - [aux_sym_enum_variant_list_repeat2] = "enum_variant_list_repeat2", [aux_sym_field_declaration_list_repeat1] = "field_declaration_list_repeat1", [aux_sym_ordered_field_declaration_list_repeat1] = "ordered_field_declaration_list_repeat1", [aux_sym_function_modifiers_repeat1] = "function_modifiers_repeat1", @@ -1042,9 +1042,9 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_token_tree_pattern_repeat1] = aux_sym_token_tree_pattern_repeat1, [aux_sym_token_tree_repeat1] = aux_sym_token_tree_repeat1, [aux_sym__non_special_token_repeat1] = aux_sym__non_special_token_repeat1, + [aux_sym_mod_item_repeat1] = aux_sym_mod_item_repeat1, [aux_sym_declaration_list_repeat1] = aux_sym_declaration_list_repeat1, [aux_sym_enum_variant_list_repeat1] = aux_sym_enum_variant_list_repeat1, - [aux_sym_enum_variant_list_repeat2] = aux_sym_enum_variant_list_repeat2, [aux_sym_field_declaration_list_repeat1] = aux_sym_field_declaration_list_repeat1, [aux_sym_ordered_field_declaration_list_repeat1] = aux_sym_ordered_field_declaration_list_repeat1, [aux_sym_function_modifiers_repeat1] = aux_sym_function_modifiers_repeat1, @@ -2363,15 +2363,15 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_declaration_list_repeat1] = { + [aux_sym_mod_item_repeat1] = { .visible = false, .named = false, }, - [aux_sym_enum_variant_list_repeat1] = { + [aux_sym_declaration_list_repeat1] = { .visible = false, .named = false, }, - [aux_sym_enum_variant_list_repeat2] = { + [aux_sym_enum_variant_list_repeat1] = { .visible = false, .named = false, }, @@ -2691,137 +2691,200 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [146] = {.index = 198, .length = 2}, [147] = {.index = 200, .length = 1}, [148] = {.index = 201, .length = 2}, - [149] = {.index = 109, .length = 1}, - [150] = {.index = 203, .length = 2}, - [151] = {.index = 205, .length = 2}, - [152] = {.index = 207, .length = 1}, - [153] = {.index = 208, .length = 2}, - [154] = {.index = 210, .length = 3}, - [155] = {.index = 210, .length = 3}, - [156] = {.index = 213, .length = 2}, - [157] = {.index = 215, .length = 4}, - [158] = {.index = 219, .length = 3}, - [159] = {.index = 222, .length = 4}, - [160] = {.index = 226, .length = 2}, - [161] = {.index = 228, .length = 3}, - [162] = {.index = 226, .length = 2}, - [163] = {.index = 228, .length = 3}, - [164] = {.index = 231, .length = 3}, - [165] = {.index = 234, .length = 3}, - [166] = {.index = 237, .length = 4}, + [149] = {.index = 203, .length = 2}, + [150] = {.index = 195, .length = 2}, + [151] = {.index = 197, .length = 1}, + [152] = {.index = 205, .length = 1}, + [153] = {.index = 206, .length = 1}, + [154] = {.index = 207, .length = 2}, + [155] = {.index = 109, .length = 1}, + [156] = {.index = 209, .length = 2}, + [157] = {.index = 211, .length = 2}, + [158] = {.index = 213, .length = 1}, + [159] = {.index = 214, .length = 2}, + [160] = {.index = 216, .length = 3}, + [161] = {.index = 216, .length = 3}, + [162] = {.index = 219, .length = 2}, + [163] = {.index = 221, .length = 4}, + [164] = {.index = 225, .length = 3}, + [165] = {.index = 228, .length = 4}, + [166] = {.index = 232, .length = 2}, [167] = {.index = 234, .length = 3}, - [168] = {.index = 237, .length = 4}, - [169] = {.index = 231, .length = 3}, - [170] = {.index = 241, .length = 2}, - [171] = {.index = 243, .length = 2}, - [172] = {.index = 245, .length = 2}, - [173] = {.index = 247, .length = 2}, - [174] = {.index = 249, .length = 1}, - [175] = {.index = 250, .length = 2}, - [176] = {.index = 252, .length = 3}, - [177] = {.index = 255, .length = 2}, - [178] = {.index = 257, .length = 2}, - [179] = {.index = 201, .length = 2}, - [180] = {.index = 259, .length = 4}, - [181] = {.index = 263, .length = 3}, - [182] = {.index = 266, .length = 3}, - [183] = {.index = 269, .length = 3}, - [184] = {.index = 272, .length = 3}, - [185] = {.index = 275, .length = 4}, - [186] = {.index = 279, .length = 2}, - [187] = {.index = 281, .length = 2}, - [188] = {.index = 281, .length = 2}, - [189] = {.index = 283, .length = 3}, - [190] = {.index = 286, .length = 4}, - [191] = {.index = 290, .length = 3}, - [192] = {.index = 250, .length = 2}, - [193] = {.index = 293, .length = 2}, - [194] = {.index = 295, .length = 3}, - [195] = {.index = 298, .length = 3}, - [196] = {.index = 301, .length = 2}, - [197] = {.index = 303, .length = 3}, - [198] = {.index = 201, .length = 2}, - [199] = {.index = 306, .length = 3}, - [200] = {.index = 309, .length = 2}, - [201] = {.index = 311, .length = 2}, - [202] = {.index = 313, .length = 3}, - [203] = {.index = 316, .length = 3}, - [204] = {.index = 319, .length = 2}, - [205] = {.index = 321, .length = 4}, - [206] = {.index = 325, .length = 5}, - [207] = {.index = 330, .length = 4}, - [208] = {.index = 334, .length = 3}, - [209] = {.index = 334, .length = 3}, - [210] = {.index = 337, .length = 3}, - [211] = {.index = 340, .length = 4}, - [212] = {.index = 337, .length = 3}, - [213] = {.index = 340, .length = 4}, - [214] = {.index = 344, .length = 4}, - [215] = {.index = 344, .length = 4}, - [216] = {.index = 348, .length = 3}, - [217] = {.index = 351, .length = 3}, - [218] = {.index = 354, .length = 3}, - [219] = {.index = 357, .length = 2}, - [220] = {.index = 359, .length = 2}, - [221] = {.index = 126, .length = 2}, - [222] = {.index = 361, .length = 2}, - [223] = {.index = 363, .length = 3}, - [224] = {.index = 361, .length = 2}, - [225] = {.index = 363, .length = 3}, - [226] = {.index = 366, .length = 3}, - [227] = {.index = 369, .length = 4}, - [228] = {.index = 366, .length = 3}, - [229] = {.index = 369, .length = 4}, - [230] = {.index = 373, .length = 4}, - [231] = {.index = 377, .length = 4}, - [232] = {.index = 381, .length = 3}, - [233] = {.index = 384, .length = 4}, - [234] = {.index = 388, .length = 3}, - [235] = {.index = 391, .length = 3}, - [236] = {.index = 394, .length = 3}, - [237] = {.index = 397, .length = 4}, - [238] = {.index = 401, .length = 2}, - [239] = {.index = 403, .length = 3}, - [240] = {.index = 406, .length = 4}, - [241] = {.index = 410, .length = 3}, - [242] = {.index = 413, .length = 3}, - [243] = {.index = 416, .length = 2}, - [244] = {.index = 418, .length = 3}, - [245] = {.index = 421, .length = 5}, - [246] = {.index = 426, .length = 4}, - [247] = {.index = 426, .length = 4}, - [248] = {.index = 430, .length = 3}, - [249] = {.index = 433, .length = 3}, - [250] = {.index = 436, .length = 3}, - [251] = {.index = 439, .length = 3}, - [252] = {.index = 442, .length = 2}, - [253] = {.index = 444, .length = 3}, - [254] = {.index = 444, .length = 3}, - [255] = {.index = 447, .length = 3}, - [256] = {.index = 450, .length = 4}, - [257] = {.index = 447, .length = 3}, - [258] = {.index = 450, .length = 4}, - [259] = {.index = 454, .length = 4}, - [260] = {.index = 454, .length = 4}, - [261] = {.index = 458, .length = 4}, - [262] = {.index = 462, .length = 5}, - [263] = {.index = 467, .length = 4}, - [264] = {.index = 471, .length = 2}, - [265] = {.index = 473, .length = 4}, - [266] = {.index = 477, .length = 4}, - [267] = {.index = 481, .length = 3}, - [268] = {.index = 484, .length = 4}, - [269] = {.index = 488, .length = 4}, - [270] = {.index = 492, .length = 3}, - [271] = {.index = 495, .length = 4}, - [272] = {.index = 495, .length = 4}, - [273] = {.index = 499, .length = 5}, - [274] = {.index = 504, .length = 4}, - [275] = {.index = 508, .length = 5}, - [276] = {.index = 513, .length = 4}, - [277] = {.index = 517, .length = 4}, - [278] = {.index = 521, .length = 3}, - [279] = {.index = 524, .length = 5}, + [168] = {.index = 232, .length = 2}, + [169] = {.index = 234, .length = 3}, + [170] = {.index = 237, .length = 3}, + [171] = {.index = 240, .length = 3}, + [172] = {.index = 243, .length = 4}, + [173] = {.index = 240, .length = 3}, + [174] = {.index = 243, .length = 4}, + [175] = {.index = 237, .length = 3}, + [176] = {.index = 247, .length = 2}, + [177] = {.index = 249, .length = 2}, + [178] = {.index = 251, .length = 2}, + [179] = {.index = 253, .length = 2}, + [180] = {.index = 255, .length = 1}, + [181] = {.index = 256, .length = 2}, + [182] = {.index = 258, .length = 3}, + [183] = {.index = 261, .length = 2}, + [184] = {.index = 263, .length = 2}, + [185] = {.index = 207, .length = 2}, + [186] = {.index = 265, .length = 4}, + [187] = {.index = 269, .length = 3}, + [188] = {.index = 272, .length = 3}, + [189] = {.index = 275, .length = 3}, + [190] = {.index = 278, .length = 3}, + [191] = {.index = 281, .length = 4}, + [192] = {.index = 285, .length = 2}, + [193] = {.index = 287, .length = 2}, + [194] = {.index = 287, .length = 2}, + [195] = {.index = 289, .length = 3}, + [196] = {.index = 292, .length = 4}, + [197] = {.index = 296, .length = 3}, + [198] = {.index = 256, .length = 2}, + [199] = {.index = 299, .length = 2}, + [200] = {.index = 301, .length = 3}, + [201] = {.index = 304, .length = 3}, + [202] = {.index = 307, .length = 2}, + [203] = {.index = 309, .length = 3}, + [204] = {.index = 312, .length = 3}, + [205] = {.index = 315, .length = 2}, + [206] = {.index = 317, .length = 3}, + [207] = {.index = 320, .length = 2}, + [208] = {.index = 322, .length = 2}, + [209] = {.index = 324, .length = 2}, + [210] = {.index = 326, .length = 1}, + [211] = {.index = 207, .length = 2}, + [212] = {.index = 327, .length = 3}, + [213] = {.index = 330, .length = 2}, + [214] = {.index = 332, .length = 2}, + [215] = {.index = 334, .length = 3}, + [216] = {.index = 337, .length = 3}, + [217] = {.index = 340, .length = 2}, + [218] = {.index = 342, .length = 4}, + [219] = {.index = 346, .length = 5}, + [220] = {.index = 351, .length = 4}, + [221] = {.index = 355, .length = 3}, + [222] = {.index = 355, .length = 3}, + [223] = {.index = 358, .length = 3}, + [224] = {.index = 361, .length = 4}, + [225] = {.index = 358, .length = 3}, + [226] = {.index = 361, .length = 4}, + [227] = {.index = 365, .length = 4}, + [228] = {.index = 365, .length = 4}, + [229] = {.index = 369, .length = 3}, + [230] = {.index = 372, .length = 3}, + [231] = {.index = 375, .length = 3}, + [232] = {.index = 378, .length = 2}, + [233] = {.index = 380, .length = 2}, + [234] = {.index = 126, .length = 2}, + [235] = {.index = 382, .length = 2}, + [236] = {.index = 384, .length = 3}, + [237] = {.index = 382, .length = 2}, + [238] = {.index = 384, .length = 3}, + [239] = {.index = 387, .length = 3}, + [240] = {.index = 390, .length = 4}, + [241] = {.index = 387, .length = 3}, + [242] = {.index = 390, .length = 4}, + [243] = {.index = 394, .length = 4}, + [244] = {.index = 398, .length = 4}, + [245] = {.index = 402, .length = 3}, + [246] = {.index = 405, .length = 4}, + [247] = {.index = 409, .length = 3}, + [248] = {.index = 412, .length = 3}, + [249] = {.index = 415, .length = 3}, + [250] = {.index = 418, .length = 4}, + [251] = {.index = 422, .length = 2}, + [252] = {.index = 424, .length = 3}, + [253] = {.index = 427, .length = 4}, + [254] = {.index = 431, .length = 3}, + [255] = {.index = 434, .length = 3}, + [256] = {.index = 437, .length = 2}, + [257] = {.index = 439, .length = 2}, + [258] = {.index = 441, .length = 2}, + [259] = {.index = 443, .length = 3}, + [260] = {.index = 378, .length = 2}, + [261] = {.index = 446, .length = 2}, + [262] = {.index = 448, .length = 3}, + [263] = {.index = 451, .length = 3}, + [264] = {.index = 454, .length = 2}, + [265] = {.index = 456, .length = 3}, + [266] = {.index = 459, .length = 2}, + [267] = {.index = 461, .length = 3}, + [268] = {.index = 464, .length = 5}, + [269] = {.index = 469, .length = 4}, + [270] = {.index = 469, .length = 4}, + [271] = {.index = 473, .length = 3}, + [272] = {.index = 476, .length = 3}, + [273] = {.index = 479, .length = 3}, + [274] = {.index = 482, .length = 3}, + [275] = {.index = 485, .length = 2}, + [276] = {.index = 487, .length = 3}, + [277] = {.index = 487, .length = 3}, + [278] = {.index = 490, .length = 3}, + [279] = {.index = 493, .length = 4}, + [280] = {.index = 490, .length = 3}, + [281] = {.index = 493, .length = 4}, + [282] = {.index = 497, .length = 4}, + [283] = {.index = 497, .length = 4}, + [284] = {.index = 501, .length = 4}, + [285] = {.index = 505, .length = 5}, + [286] = {.index = 510, .length = 4}, + [287] = {.index = 514, .length = 2}, + [288] = {.index = 516, .length = 4}, + [289] = {.index = 520, .length = 4}, + [290] = {.index = 524, .length = 3}, + [291] = {.index = 527, .length = 4}, + [292] = {.index = 531, .length = 2}, + [293] = {.index = 533, .length = 3}, + [294] = {.index = 531, .length = 2}, + [295] = {.index = 533, .length = 3}, + [296] = {.index = 536, .length = 3}, + [297] = {.index = 539, .length = 4}, + [298] = {.index = 536, .length = 3}, + [299] = {.index = 539, .length = 4}, + [300] = {.index = 543, .length = 3}, + [301] = {.index = 546, .length = 3}, + [302] = {.index = 549, .length = 3}, + [303] = {.index = 552, .length = 4}, + [304] = {.index = 556, .length = 2}, + [305] = {.index = 558, .length = 3}, + [306] = {.index = 561, .length = 4}, + [307] = {.index = 565, .length = 3}, + [308] = {.index = 568, .length = 4}, + [309] = {.index = 572, .length = 3}, + [310] = {.index = 575, .length = 4}, + [311] = {.index = 575, .length = 4}, + [312] = {.index = 579, .length = 5}, + [313] = {.index = 584, .length = 4}, + [314] = {.index = 588, .length = 5}, + [315] = {.index = 593, .length = 4}, + [316] = {.index = 597, .length = 3}, + [317] = {.index = 600, .length = 3}, + [318] = {.index = 603, .length = 3}, + [319] = {.index = 606, .length = 3}, + [320] = {.index = 606, .length = 3}, + [321] = {.index = 609, .length = 3}, + [322] = {.index = 612, .length = 4}, + [323] = {.index = 609, .length = 3}, + [324] = {.index = 612, .length = 4}, + [325] = {.index = 616, .length = 4}, + [326] = {.index = 616, .length = 4}, + [327] = {.index = 620, .length = 2}, + [328] = {.index = 622, .length = 4}, + [329] = {.index = 626, .length = 4}, + [330] = {.index = 630, .length = 3}, + [331] = {.index = 633, .length = 4}, + [332] = {.index = 637, .length = 4}, + [333] = {.index = 641, .length = 3}, + [334] = {.index = 644, .length = 5}, + [335] = {.index = 649, .length = 4}, + [336] = {.index = 649, .length = 4}, + [337] = {.index = 653, .length = 4}, + [338] = {.index = 657, .length = 5}, + [339] = {.index = 662, .length = 4}, + [340] = {.index = 666, .length = 4}, + [341] = {.index = 670, .length = 3}, + [342] = {.index = 673, .length = 5}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -3128,441 +3191,641 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_body, 4}, {field_condition, 3}, [200] = - {field_length, 4}, + {field_pattern, 3}, [201] = + {field_bounds, 3}, + {field_name, 2}, + [203] = + {field_body, 4}, + {field_type, 3}, + [205] = + {field_argument, 3}, + [206] = + {field_length, 4}, + [207] = {field_name, 0}, {field_type, 2}, - [203] = + [209] = {field_name, 0}, {field_pattern, 2}, - [205] = + [211] = {field_element, 1}, {field_length, 3}, - [207] = + [213] = {field_pattern, 0}, - [208] = + [214] = {field_parameters, 2}, {field_return_type, 4}, - [210] = + [216] = {field_parameters, 2}, {field_return_type, 4}, {field_trait, 1}, - [213] = + [219] = {field_name, 0}, {field_value, 2}, - [215] = + [221] = {field_body, 5}, {field_name, 1}, {field_parameters, 3}, {field_type_parameters, 2}, - [219] = + [225] = {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [222] = + [228] = {field_body, 5}, {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [226] = + [232] = {field_trait, 2}, {field_type, 4}, - [228] = + [234] = {field_body, 5}, {field_trait, 2}, {field_type, 4}, - [231] = + [237] = {field_body, 5}, {field_trait, 1}, {field_type, 3}, - [234] = + [240] = {field_trait, 2}, {field_type, 4}, {field_type_parameters, 1}, - [237] = + [243] = {field_body, 5}, {field_trait, 2}, {field_type, 4}, {field_type_parameters, 1}, - [241] = + [247] = {field_pattern, 2}, {field_type, 4}, - [243] = + [249] = {field_pattern, 2}, {field_value, 4}, - [245] = + [251] = {field_alternative, 4}, {field_pattern, 2}, - [247] = + [253] = {field_pattern, 0}, {field_value, 2}, - [249] = + [255] = {field_condition, 2}, - [250] = + [256] = {field_name, 2}, {field_type, 4}, - [252] = + [258] = {field_body, 5}, {field_parameters, 2}, {field_return_type, 4}, - [255] = + [261] = {field_type, 1}, {field_type, 2, .inherited = true}, - [257] = + [263] = {field_type, 0, .inherited = true}, {field_type, 1, .inherited = true}, - [259] = + [265] = {field_body, 5}, {field_bounds, 3}, {field_name, 1}, {field_type_parameters, 2}, - [263] = + [269] = {field_name, 1}, {field_type, 4}, {field_type_parameters, 2}, - [266] = + [272] = {field_body, 5}, {field_type, 3}, {field_type_parameters, 2}, - [269] = + [275] = {field_body, 5}, {field_bounds, 3}, {field_name, 2}, - [272] = + [278] = {field_body, 5}, {field_name, 2}, {field_type_parameters, 3}, - [275] = + [281] = {field_body, 5}, {field_bounds, 4}, {field_name, 2}, {field_type_parameters, 3}, - [279] = + [285] = {field_alias, 4}, {field_name, 2}, - [281] = + [287] = {field_field, 1}, {field_value, 3}, - [283] = + [289] = {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [286] = + [292] = {field_body, 5}, {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [290] = + [296] = {field_body, 5}, {field_name, 2}, {field_parameters, 3}, - [293] = + [299] = {field_body, 5}, {field_name, 3}, - [295] = + [301] = {field_body, 5}, {field_bounds, 4}, {field_name, 3}, - [298] = + [304] = {field_body, 5}, {field_name, 3}, {field_type_parameters, 4}, - [301] = + [307] = {field_name, 3}, {field_parameters, 4}, - [303] = + [309] = {field_body, 5}, {field_name, 3}, {field_parameters, 4}, - [306] = + [312] = + {field_bounds, 4}, + {field_name, 2}, + {field_type_parameters, 3}, + [315] = + {field_type, 4}, + {field_type_parameters, 3}, + [317] = + {field_body, 5}, + {field_type, 4}, + {field_type_parameters, 3}, + [320] = + {field_body, 5}, + {field_type, 3}, + [322] = + {field_name, 3}, + {field_type_parameters, 4}, + [324] = + {field_body, 5}, + {field_name, 4}, + [326] = + {field_name, 4}, + [327] = {field_name, 0}, {field_type, 3}, {field_type_arguments, 1}, - [309] = + [330] = {field_name, 1}, {field_pattern, 3}, - [311] = + [332] = {field_parameters, 3}, {field_return_type, 5}, - [313] = + [334] = {field_name, 1}, {field_type, 3}, {field_value, 5}, - [316] = + [337] = {field_body, 1}, {field_name, 0}, {field_value, 3}, - [319] = + [340] = {field_name, 1}, {field_value, 3}, - [321] = + [342] = {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [325] = + [346] = {field_body, 6}, {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [330] = + [351] = {field_body, 6}, {field_name, 1}, {field_parameters, 2}, {field_return_type, 4}, - [334] = + [355] = {field_body, 6}, {field_trait, 2}, {field_type, 4}, - [337] = + [358] = {field_trait, 3}, {field_type, 5}, {field_type_parameters, 1}, - [340] = + [361] = {field_body, 6}, {field_trait, 3}, {field_type, 5}, {field_type_parameters, 1}, - [344] = + [365] = {field_body, 6}, {field_trait, 2}, {field_type, 4}, {field_type_parameters, 1}, - [348] = + [369] = {field_pattern, 1}, {field_type, 3}, {field_value, 5}, - [351] = + [372] = {field_alternative, 5}, {field_pattern, 1}, {field_type, 3}, - [354] = + [375] = {field_alternative, 5}, {field_pattern, 1}, {field_value, 3}, - [357] = + [378] = {field_name, 3}, {field_type, 5}, - [359] = + [380] = {field_type, 2}, {field_type, 3, .inherited = true}, - [361] = + [382] = {field_trait, 3}, {field_type, 5}, - [363] = + [384] = {field_body, 6}, {field_trait, 3}, {field_type, 5}, - [366] = + [387] = {field_trait, 3}, {field_type, 5}, {field_type_parameters, 2}, - [369] = + [390] = {field_body, 6}, {field_trait, 3}, {field_type, 5}, {field_type_parameters, 2}, - [373] = + [394] = {field_body, 6}, {field_bounds, 4}, {field_name, 2}, {field_type_parameters, 3}, - [377] = + [398] = {field_body, 6}, {field_name, 2}, {field_parameters, 4}, {field_type_parameters, 3}, - [381] = + [402] = {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [384] = + [405] = {field_body, 6}, {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [388] = + [409] = {field_name, 2}, {field_type, 5}, {field_type_parameters, 3}, - [391] = + [412] = {field_body, 6}, {field_bounds, 4}, {field_name, 3}, - [394] = + [415] = {field_body, 6}, {field_name, 3}, {field_type_parameters, 4}, - [397] = + [418] = {field_body, 6}, {field_bounds, 5}, {field_name, 3}, {field_type_parameters, 4}, - [401] = + [422] = {field_alias, 5}, {field_name, 3}, - [403] = + [424] = {field_name, 3}, {field_parameters, 5}, {field_type_parameters, 4}, - [406] = + [427] = {field_body, 6}, {field_name, 3}, {field_parameters, 5}, {field_type_parameters, 4}, - [410] = + [431] = {field_body, 6}, {field_name, 3}, {field_parameters, 4}, - [413] = + [434] = {field_body, 6}, {field_pattern, 3}, {field_value, 5}, - [416] = + [437] = + {field_pattern, 3}, + {field_type, 5}, + [439] = + {field_pattern, 3}, + {field_value, 5}, + [441] = + {field_alternative, 5}, + {field_pattern, 3}, + [443] = + {field_body, 6}, + {field_type, 4}, + {field_type_parameters, 3}, + [446] = + {field_body, 6}, + {field_name, 4}, + [448] = + {field_body, 6}, + {field_bounds, 5}, + {field_name, 4}, + [451] = + {field_body, 6}, + {field_name, 4}, + {field_type_parameters, 5}, + [454] = + {field_name, 4}, + {field_parameters, 5}, + [456] = + {field_body, 6}, + {field_name, 4}, + {field_parameters, 5}, + [459] = {field_name, 2}, {field_pattern, 4}, - [418] = + [461] = {field_body, 2}, {field_name, 1}, {field_value, 4}, - [421] = + [464] = {field_body, 7}, {field_name, 1}, {field_parameters, 3}, {field_return_type, 5}, {field_type_parameters, 2}, - [426] = + [469] = {field_body, 7}, {field_trait, 3}, {field_type, 5}, {field_type_parameters, 1}, - [430] = + [473] = {field_pattern, 2}, {field_type, 4}, {field_value, 6}, - [433] = + [476] = {field_alternative, 6}, {field_pattern, 2}, {field_type, 4}, - [436] = + [479] = {field_alternative, 6}, {field_pattern, 2}, {field_value, 4}, - [439] = + [482] = {field_name, 2}, {field_type, 4}, {field_value, 6}, - [442] = + [485] = {field_type, 3}, {field_type, 4, .inherited = true}, - [444] = + [487] = {field_body, 7}, {field_trait, 3}, {field_type, 5}, - [447] = + [490] = {field_trait, 4}, {field_type, 6}, {field_type_parameters, 2}, - [450] = + [493] = {field_body, 7}, {field_trait, 4}, {field_type, 6}, {field_type_parameters, 2}, - [454] = + [497] = {field_body, 7}, {field_trait, 3}, {field_type, 5}, {field_type_parameters, 2}, - [458] = + [501] = {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [462] = + [505] = {field_body, 7}, {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [467] = + [510] = {field_body, 7}, {field_name, 2}, {field_parameters, 3}, {field_return_type, 5}, - [471] = + [514] = {field_name, 4}, {field_type, 6}, - [473] = + [516] = {field_body, 7}, {field_bounds, 5}, {field_name, 3}, {field_type_parameters, 4}, - [477] = + [520] = {field_body, 7}, {field_name, 3}, {field_parameters, 5}, {field_type_parameters, 4}, - [481] = + [524] = {field_name, 3}, {field_parameters, 4}, {field_return_type, 6}, - [484] = + [527] = {field_body, 7}, {field_name, 3}, {field_parameters, 4}, {field_return_type, 6}, - [488] = + [531] = + {field_trait, 4}, + {field_type, 6}, + [533] = + {field_body, 7}, + {field_trait, 4}, + {field_type, 6}, + [536] = + {field_trait, 4}, + {field_type, 6}, + {field_type_parameters, 3}, + [539] = + {field_body, 7}, + {field_trait, 4}, + {field_type, 6}, + {field_type_parameters, 3}, + [543] = + {field_name, 3}, + {field_type, 6}, + {field_type_parameters, 4}, + [546] = + {field_body, 7}, + {field_bounds, 5}, + {field_name, 4}, + [549] = + {field_body, 7}, + {field_name, 4}, + {field_type_parameters, 5}, + [552] = + {field_body, 7}, + {field_bounds, 6}, + {field_name, 4}, + {field_type_parameters, 5}, + [556] = + {field_alias, 6}, + {field_name, 4}, + [558] = + {field_name, 4}, + {field_parameters, 6}, + {field_type_parameters, 5}, + [561] = + {field_body, 7}, + {field_name, 4}, + {field_parameters, 6}, + {field_type_parameters, 5}, + [565] = + {field_body, 7}, + {field_name, 4}, + {field_parameters, 5}, + [568] = {field_alternative, 7}, {field_pattern, 1}, {field_type, 3}, {field_value, 5}, - [492] = + [572] = {field_name, 3}, {field_type, 5}, {field_value, 7}, - [495] = + [575] = {field_body, 8}, {field_trait, 4}, {field_type, 6}, {field_type_parameters, 2}, - [499] = + [579] = {field_body, 8}, {field_name, 2}, {field_parameters, 4}, {field_return_type, 6}, {field_type_parameters, 3}, - [504] = + [584] = {field_name, 3}, {field_parameters, 5}, {field_return_type, 7}, {field_type_parameters, 4}, - [508] = + [588] = {field_body, 8}, {field_name, 3}, {field_parameters, 5}, {field_return_type, 7}, {field_type_parameters, 4}, - [513] = + [593] = {field_body, 8}, {field_name, 3}, {field_parameters, 4}, {field_return_type, 6}, - [517] = + [597] = + {field_pattern, 3}, + {field_type, 5}, + {field_value, 7}, + [600] = + {field_alternative, 7}, + {field_pattern, 3}, + {field_type, 5}, + [603] = + {field_alternative, 7}, + {field_pattern, 3}, + {field_value, 5}, + [606] = + {field_body, 8}, + {field_trait, 4}, + {field_type, 6}, + [609] = + {field_trait, 5}, + {field_type, 7}, + {field_type_parameters, 3}, + [612] = + {field_body, 8}, + {field_trait, 5}, + {field_type, 7}, + {field_type_parameters, 3}, + [616] = + {field_body, 8}, + {field_trait, 4}, + {field_type, 6}, + {field_type_parameters, 3}, + [620] = + {field_name, 5}, + {field_type, 7}, + [622] = + {field_body, 8}, + {field_bounds, 6}, + {field_name, 4}, + {field_type_parameters, 5}, + [626] = + {field_body, 8}, + {field_name, 4}, + {field_parameters, 6}, + {field_type_parameters, 5}, + [630] = + {field_name, 4}, + {field_parameters, 5}, + {field_return_type, 7}, + [633] = + {field_body, 8}, + {field_name, 4}, + {field_parameters, 5}, + {field_return_type, 7}, + [637] = {field_alternative, 8}, {field_pattern, 2}, {field_type, 4}, {field_value, 6}, - [521] = + [641] = {field_name, 4}, {field_type, 6}, {field_value, 8}, - [524] = + [644] = {field_body, 9}, {field_name, 3}, {field_parameters, 5}, {field_return_type, 7}, {field_type_parameters, 4}, + [649] = + {field_body, 9}, + {field_trait, 5}, + {field_type, 7}, + {field_type_parameters, 3}, + [653] = + {field_name, 4}, + {field_parameters, 6}, + {field_return_type, 8}, + {field_type_parameters, 5}, + [657] = + {field_body, 9}, + {field_name, 4}, + {field_parameters, 6}, + {field_return_type, 8}, + {field_type_parameters, 5}, + [662] = + {field_body, 9}, + {field_name, 4}, + {field_parameters, 5}, + {field_return_type, 7}, + [666] = + {field_alternative, 9}, + {field_pattern, 3}, + {field_type, 5}, + {field_value, 7}, + [670] = + {field_name, 5}, + {field_type, 7}, + {field_value, 9}, + [673] = + {field_body, 10}, + {field_name, 4}, + {field_parameters, 6}, + {field_return_type, 8}, + {field_type_parameters, 5}, }; static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { @@ -3745,137 +4008,206 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [3] = alias_sym_type_identifier, }, [148] = { + [2] = alias_sym_type_identifier, + }, + [151] = { + [3] = alias_sym_type_identifier, + }, + [154] = { [0] = alias_sym_type_identifier, }, - [149] = { + [155] = { [2] = alias_sym_shorthand_field_identifier, }, - [150] = { + [156] = { [0] = alias_sym_field_identifier, }, - [154] = { + [160] = { [1] = alias_sym_type_identifier, }, - [160] = { + [166] = { [2] = alias_sym_type_identifier, }, - [161] = { + [167] = { [2] = alias_sym_type_identifier, }, - [164] = { + [170] = { [1] = alias_sym_type_identifier, }, - [165] = { + [171] = { [2] = alias_sym_type_identifier, }, - [166] = { + [172] = { [2] = alias_sym_type_identifier, }, - [179] = { + [185] = { [0] = alias_sym_field_identifier, }, - [180] = { + [186] = { [1] = alias_sym_type_identifier, }, - [181] = { + [187] = { [1] = alias_sym_type_identifier, }, - [183] = { + [189] = { [2] = alias_sym_type_identifier, }, - [184] = { + [190] = { [2] = alias_sym_type_identifier, }, - [185] = { + [191] = { [2] = alias_sym_type_identifier, }, - [188] = { + [194] = { [1] = alias_sym_field_identifier, }, - [192] = { + [198] = { [2] = alias_sym_type_identifier, }, - [193] = { + [199] = { [3] = alias_sym_type_identifier, }, - [194] = { + [200] = { [3] = alias_sym_type_identifier, }, - [195] = { + [201] = { [3] = alias_sym_type_identifier, }, - [199] = { + [204] = { + [2] = alias_sym_type_identifier, + }, + [208] = { + [3] = alias_sym_type_identifier, + }, + [209] = { + [4] = alias_sym_type_identifier, + }, + [212] = { [0] = alias_sym_type_identifier, }, - [200] = { + [213] = { [1] = alias_sym_field_identifier, }, - [208] = { + [221] = { [2] = alias_sym_type_identifier, }, - [210] = { + [223] = { [3] = alias_sym_type_identifier, }, - [211] = { + [224] = { [3] = alias_sym_type_identifier, }, - [214] = { + [227] = { [2] = alias_sym_type_identifier, }, - [221] = { + [234] = { [1] = alias_sym_field_identifier, }, - [222] = { + [235] = { [3] = alias_sym_type_identifier, }, - [223] = { + [236] = { [3] = alias_sym_type_identifier, }, - [226] = { + [239] = { [3] = alias_sym_type_identifier, }, - [227] = { + [240] = { [3] = alias_sym_type_identifier, }, - [230] = { + [243] = { [2] = alias_sym_type_identifier, }, - [234] = { + [247] = { [2] = alias_sym_type_identifier, }, - [235] = { + [248] = { [3] = alias_sym_type_identifier, }, - [236] = { + [249] = { [3] = alias_sym_type_identifier, }, - [237] = { + [250] = { [3] = alias_sym_type_identifier, }, - [243] = { + [260] = { + [3] = alias_sym_type_identifier, + }, + [261] = { + [4] = alias_sym_type_identifier, + }, + [262] = { + [4] = alias_sym_type_identifier, + }, + [263] = { + [4] = alias_sym_type_identifier, + }, + [266] = { [2] = alias_sym_field_identifier, }, - [246] = { + [269] = { [3] = alias_sym_type_identifier, }, - [253] = { + [276] = { [3] = alias_sym_type_identifier, }, - [255] = { + [278] = { [4] = alias_sym_type_identifier, }, - [256] = { + [279] = { [4] = alias_sym_type_identifier, }, - [259] = { + [282] = { [3] = alias_sym_type_identifier, }, - [265] = { + [288] = { [3] = alias_sym_type_identifier, }, - [271] = { + [292] = { + [4] = alias_sym_type_identifier, + }, + [293] = { + [4] = alias_sym_type_identifier, + }, + [296] = { + [4] = alias_sym_type_identifier, + }, + [297] = { + [4] = alias_sym_type_identifier, + }, + [300] = { + [3] = alias_sym_type_identifier, + }, + [301] = { + [4] = alias_sym_type_identifier, + }, + [302] = { [4] = alias_sym_type_identifier, }, + [303] = { + [4] = alias_sym_type_identifier, + }, + [310] = { + [4] = alias_sym_type_identifier, + }, + [319] = { + [4] = alias_sym_type_identifier, + }, + [321] = { + [5] = alias_sym_type_identifier, + }, + [322] = { + [5] = alias_sym_type_identifier, + }, + [325] = { + [4] = alias_sym_type_identifier, + }, + [328] = { + [4] = alias_sym_type_identifier, + }, + [335] = { + [5] = alias_sym_type_identifier, + }, }; static const uint16_t ts_non_terminal_alias_map[] = { @@ -3893,249 +4225,249 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1] = 1, [2] = 2, [3] = 3, - [4] = 4, - [5] = 5, - [6] = 6, + [4] = 2, + [5] = 3, + [6] = 2, [7] = 7, [8] = 8, [9] = 3, - [10] = 2, - [11] = 5, + [10] = 10, + [11] = 10, [12] = 7, - [13] = 8, - [14] = 3, - [15] = 2, - [16] = 5, - [17] = 8, - [18] = 3, + [13] = 10, + [14] = 14, + [15] = 10, + [16] = 10, + [17] = 3, + [18] = 7, [19] = 2, - [20] = 5, - [21] = 8, + [20] = 20, + [21] = 2, [22] = 3, - [23] = 2, - [24] = 5, - [25] = 8, + [23] = 14, + [24] = 7, + [25] = 10, [26] = 3, [27] = 2, - [28] = 5, - [29] = 8, + [28] = 7, + [29] = 10, [30] = 3, - [31] = 2, - [32] = 5, - [33] = 8, - [34] = 34, + [31] = 7, + [32] = 2, + [33] = 33, + [34] = 7, [35] = 35, [36] = 36, [37] = 37, [38] = 38, [39] = 39, - [40] = 38, - [41] = 41, + [40] = 40, + [41] = 40, [42] = 37, [43] = 35, - [44] = 39, + [44] = 40, [45] = 35, - [46] = 36, - [47] = 41, - [48] = 38, - [49] = 37, - [50] = 38, - [51] = 37, - [52] = 35, - [53] = 36, - [54] = 37, + [46] = 37, + [47] = 35, + [48] = 37, + [49] = 38, + [50] = 39, + [51] = 40, + [52] = 36, + [53] = 39, + [54] = 38, [55] = 37, - [56] = 38, - [57] = 39, - [58] = 38, + [56] = 40, + [57] = 37, + [58] = 40, [59] = 37, - [60] = 41, - [61] = 38, - [62] = 37, - [63] = 39, - [64] = 38, - [65] = 41, + [60] = 39, + [61] = 40, + [62] = 40, + [63] = 38, + [64] = 36, + [65] = 37, [66] = 36, [67] = 67, [68] = 68, [69] = 69, [70] = 70, - [71] = 69, - [72] = 72, + [71] = 71, + [72] = 68, [73] = 73, [74] = 74, - [75] = 70, - [76] = 68, - [77] = 72, - [78] = 73, - [79] = 74, - [80] = 80, + [75] = 75, + [76] = 73, + [77] = 70, + [78] = 78, + [79] = 79, + [80] = 69, [81] = 81, - [82] = 82, - [83] = 83, + [82] = 78, + [83] = 79, [84] = 84, [85] = 85, [86] = 86, - [87] = 87, - [88] = 88, + [87] = 86, + [88] = 84, [89] = 89, - [90] = 90, - [91] = 91, - [92] = 92, - [93] = 93, + [90] = 84, + [91] = 86, + [92] = 84, + [93] = 86, [94] = 94, - [95] = 88, - [96] = 89, - [97] = 87, + [95] = 94, + [96] = 94, + [97] = 97, [98] = 98, - [99] = 99, - [100] = 100, - [101] = 84, - [102] = 100, - [103] = 85, + [99] = 85, + [100] = 85, + [101] = 85, + [102] = 94, + [103] = 94, [104] = 86, - [105] = 87, - [106] = 84, - [107] = 99, - [108] = 100, + [105] = 97, + [106] = 98, + [107] = 85, + [108] = 98, [109] = 84, - [110] = 85, - [111] = 86, - [112] = 87, - [113] = 99, - [114] = 99, - [115] = 100, - [116] = 84, - [117] = 85, - [118] = 86, - [119] = 87, - [120] = 85, - [121] = 91, - [122] = 99, - [123] = 100, - [124] = 99, - [125] = 85, - [126] = 86, - [127] = 87, - [128] = 100, - [129] = 84, - [130] = 92, - [131] = 93, - [132] = 86, - [133] = 94, + [110] = 110, + [111] = 98, + [112] = 97, + [113] = 97, + [114] = 114, + [115] = 115, + [116] = 94, + [117] = 86, + [118] = 84, + [119] = 119, + [120] = 120, + [121] = 97, + [122] = 122, + [123] = 123, + [124] = 98, + [125] = 110, + [126] = 114, + [127] = 123, + [128] = 119, + [129] = 120, + [130] = 122, + [131] = 85, + [132] = 97, + [133] = 98, [134] = 134, - [135] = 135, + [135] = 134, [136] = 136, [137] = 137, - [138] = 134, - [139] = 135, - [140] = 140, + [138] = 138, + [139] = 138, + [140] = 136, [141] = 141, - [142] = 140, + [142] = 142, [143] = 143, [144] = 141, [145] = 145, [146] = 146, [147] = 147, [148] = 148, - [149] = 145, + [149] = 149, [150] = 150, [151] = 151, [152] = 152, [153] = 153, - [154] = 146, + [154] = 154, [155] = 155, [156] = 156, [157] = 157, - [158] = 153, + [158] = 158, [159] = 159, - [160] = 160, + [160] = 151, [161] = 161, - [162] = 162, - [163] = 163, + [162] = 152, + [163] = 155, [164] = 164, [165] = 165, [166] = 166, - [167] = 162, - [168] = 147, - [169] = 148, - [170] = 170, - [171] = 171, + [167] = 161, + [168] = 152, + [169] = 154, + [170] = 165, + [171] = 145, [172] = 172, - [173] = 173, - [174] = 174, + [173] = 152, + [174] = 154, [175] = 175, [176] = 176, - [177] = 177, - [178] = 164, - [179] = 137, - [180] = 180, + [177] = 143, + [178] = 146, + [179] = 179, + [180] = 164, [181] = 181, - [182] = 182, + [182] = 146, [183] = 183, [184] = 184, [185] = 185, - [186] = 165, - [187] = 187, - [188] = 181, - [189] = 166, - [190] = 187, - [191] = 181, - [192] = 166, - [193] = 187, - [194] = 181, - [195] = 166, - [196] = 187, + [186] = 153, + [187] = 146, + [188] = 154, + [189] = 189, + [190] = 190, + [191] = 191, + [192] = 192, + [193] = 193, + [194] = 183, + [195] = 195, + [196] = 196, [197] = 197, [198] = 198, - [199] = 177, - [200] = 180, - [201] = 201, - [202] = 182, + [199] = 199, + [200] = 200, + [201] = 199, + [202] = 189, [203] = 184, - [204] = 185, - [205] = 205, + [204] = 204, + [205] = 176, [206] = 206, - [207] = 207, - [208] = 208, - [209] = 209, + [207] = 158, + [208] = 179, + [209] = 206, [210] = 210, - [211] = 208, - [212] = 201, - [213] = 171, + [211] = 211, + [212] = 175, + [213] = 213, [214] = 214, [215] = 215, - [216] = 215, + [216] = 216, [217] = 217, [218] = 218, [219] = 219, [220] = 220, [221] = 221, - [222] = 222, - [223] = 219, + [222] = 217, + [223] = 223, [224] = 224, - [225] = 220, - [226] = 226, + [225] = 216, + [226] = 217, [227] = 227, - [228] = 222, - [229] = 229, - [230] = 227, - [231] = 227, - [232] = 220, - [233] = 219, - [234] = 219, + [228] = 216, + [229] = 227, + [230] = 220, + [231] = 220, + [232] = 227, + [233] = 227, + [234] = 216, [235] = 227, - [236] = 226, - [237] = 218, - [238] = 215, - [239] = 220, - [240] = 215, - [241] = 221, - [242] = 227, - [243] = 219, - [244] = 217, - [245] = 224, - [246] = 220, + [236] = 217, + [237] = 221, + [238] = 220, + [239] = 224, + [240] = 216, + [241] = 215, + [242] = 217, + [243] = 243, + [244] = 223, + [245] = 243, + [246] = 219, [247] = 247, [248] = 248, [249] = 249, @@ -4144,251 +4476,251 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [252] = 252, [253] = 253, [254] = 254, - [255] = 255, + [255] = 247, [256] = 256, - [257] = 257, + [257] = 247, [258] = 258, [259] = 259, [260] = 260, [261] = 261, [262] = 262, - [263] = 256, + [263] = 263, [264] = 264, [265] = 265, [266] = 266, - [267] = 256, + [267] = 267, [268] = 268, - [269] = 256, + [269] = 248, [270] = 270, [271] = 271, - [272] = 256, - [273] = 248, - [274] = 249, - [275] = 250, - [276] = 276, - [277] = 251, - [278] = 252, - [279] = 279, + [272] = 272, + [273] = 273, + [274] = 270, + [275] = 263, + [276] = 262, + [277] = 261, + [278] = 260, + [279] = 258, [280] = 280, [281] = 281, - [282] = 282, + [282] = 247, [283] = 283, - [284] = 284, - [285] = 285, - [286] = 286, - [287] = 287, - [288] = 253, - [289] = 254, - [290] = 255, - [291] = 276, - [292] = 276, - [293] = 256, - [294] = 247, + [284] = 254, + [285] = 273, + [286] = 272, + [287] = 271, + [288] = 248, + [289] = 289, + [290] = 268, + [291] = 291, + [292] = 247, + [293] = 293, + [294] = 251, [295] = 295, - [296] = 296, + [296] = 283, [297] = 247, - [298] = 298, - [299] = 268, - [300] = 270, - [301] = 271, - [302] = 248, - [303] = 249, - [304] = 250, - [305] = 251, - [306] = 252, - [307] = 253, - [308] = 276, - [309] = 254, - [310] = 255, - [311] = 311, - [312] = 256, - [313] = 257, - [314] = 314, + [298] = 253, + [299] = 247, + [300] = 300, + [301] = 258, + [302] = 302, + [303] = 260, + [304] = 293, + [305] = 249, + [306] = 261, + [307] = 262, + [308] = 308, + [309] = 247, + [310] = 263, + [311] = 270, + [312] = 273, + [313] = 272, + [314] = 271, [315] = 315, - [316] = 296, - [317] = 257, - [318] = 318, - [319] = 247, + [316] = 248, + [317] = 268, + [318] = 302, + [319] = 289, [320] = 320, - [321] = 268, - [322] = 270, - [323] = 271, - [324] = 248, - [325] = 249, - [326] = 250, + [321] = 289, + [322] = 291, + [323] = 308, + [324] = 293, + [325] = 325, + [326] = 254, [327] = 251, - [328] = 252, - [329] = 253, - [330] = 254, - [331] = 255, + [328] = 328, + [329] = 281, + [330] = 315, + [331] = 289, [332] = 332, - [333] = 256, - [334] = 334, - [335] = 257, + [333] = 333, + [334] = 256, + [335] = 268, [336] = 336, - [337] = 337, - [338] = 315, + [337] = 308, + [338] = 251, [339] = 339, - [340] = 259, - [341] = 295, + [340] = 271, + [341] = 272, [342] = 342, - [343] = 318, - [344] = 339, + [343] = 308, + [344] = 344, [345] = 345, - [346] = 346, - [347] = 279, - [348] = 283, - [349] = 298, - [350] = 320, - [351] = 336, - [352] = 342, - [353] = 353, + [346] = 267, + [347] = 293, + [348] = 348, + [349] = 273, + [350] = 270, + [351] = 259, + [352] = 352, + [353] = 263, [354] = 262, - [355] = 265, - [356] = 266, - [357] = 282, - [358] = 286, - [359] = 315, - [360] = 318, - [361] = 353, - [362] = 283, - [363] = 353, - [364] = 315, - [365] = 268, - [366] = 318, - [367] = 270, - [368] = 353, - [369] = 271, + [355] = 261, + [356] = 325, + [357] = 260, + [358] = 258, + [359] = 254, + [360] = 360, + [361] = 361, + [362] = 256, + [363] = 281, + [364] = 364, + [365] = 336, + [366] = 366, + [367] = 360, + [368] = 328, + [369] = 345, [370] = 370, - [371] = 371, + [371] = 332, [372] = 372, - [373] = 373, - [374] = 374, - [375] = 375, - [376] = 376, - [377] = 377, + [373] = 281, + [374] = 295, + [375] = 252, + [376] = 300, + [377] = 333, [378] = 378, [379] = 379, [380] = 380, [381] = 381, [382] = 382, [383] = 383, - [384] = 210, + [384] = 384, [385] = 385, [386] = 386, [387] = 387, - [388] = 209, - [389] = 376, - [390] = 380, + [388] = 388, + [389] = 210, + [390] = 213, [391] = 391, [392] = 392, [393] = 393, - [394] = 376, - [395] = 395, + [394] = 394, + [395] = 392, [396] = 396, [397] = 397, - [398] = 398, - [399] = 399, + [398] = 387, + [399] = 392, [400] = 400, - [401] = 380, + [401] = 401, [402] = 402, [403] = 403, [404] = 404, [405] = 405, [406] = 406, [407] = 407, - [408] = 406, - [409] = 399, + [408] = 408, + [409] = 409, [410] = 410, - [411] = 410, - [412] = 410, - [413] = 406, - [414] = 407, - [415] = 407, - [416] = 416, - [417] = 417, - [418] = 417, - [419] = 417, + [411] = 411, + [412] = 387, + [413] = 413, + [414] = 414, + [415] = 404, + [416] = 414, + [417] = 414, + [418] = 418, + [419] = 418, [420] = 420, [421] = 420, - [422] = 420, - [423] = 423, + [422] = 418, + [423] = 420, [424] = 424, [425] = 425, - [426] = 426, - [427] = 426, + [426] = 424, + [427] = 424, [428] = 428, - [429] = 429, - [430] = 428, - [431] = 425, - [432] = 428, - [433] = 429, - [434] = 429, - [435] = 435, - [436] = 435, + [429] = 428, + [430] = 430, + [431] = 428, + [432] = 432, + [433] = 433, + [434] = 434, + [435] = 433, + [436] = 436, [437] = 437, - [438] = 438, - [439] = 439, - [440] = 440, - [441] = 441, - [442] = 441, - [443] = 441, - [444] = 440, - [445] = 439, - [446] = 439, - [447] = 440, + [438] = 437, + [439] = 436, + [440] = 434, + [441] = 437, + [442] = 433, + [443] = 443, + [444] = 443, + [445] = 445, + [446] = 446, + [447] = 447, [448] = 448, - [449] = 449, - [450] = 448, + [449] = 447, + [450] = 450, [451] = 448, - [452] = 332, - [453] = 373, - [454] = 370, - [455] = 371, - [456] = 374, - [457] = 372, - [458] = 381, - [459] = 404, - [460] = 398, - [461] = 395, - [462] = 462, - [463] = 396, - [464] = 379, - [465] = 397, - [466] = 383, - [467] = 467, - [468] = 386, - [469] = 382, - [470] = 378, + [452] = 450, + [453] = 448, + [454] = 447, + [455] = 450, + [456] = 456, + [457] = 457, + [458] = 457, + [459] = 457, + [460] = 339, + [461] = 380, + [462] = 381, + [463] = 379, + [464] = 378, + [465] = 382, + [466] = 397, + [467] = 411, + [468] = 401, + [469] = 403, + [470] = 406, [471] = 471, - [472] = 467, - [473] = 400, - [474] = 467, - [475] = 467, - [476] = 403, - [477] = 392, - [478] = 405, - [479] = 385, - [480] = 393, - [481] = 375, - [482] = 391, - [483] = 483, - [484] = 483, - [485] = 483, - [486] = 483, - [487] = 487, - [488] = 488, - [489] = 489, - [490] = 490, + [472] = 384, + [473] = 405, + [474] = 410, + [475] = 408, + [476] = 476, + [477] = 477, + [478] = 385, + [479] = 388, + [480] = 477, + [481] = 477, + [482] = 477, + [483] = 391, + [484] = 393, + [485] = 386, + [486] = 409, + [487] = 394, + [488] = 402, + [489] = 413, + [490] = 383, [491] = 491, - [492] = 492, - [493] = 493, - [494] = 494, + [492] = 491, + [493] = 491, + [494] = 491, [495] = 495, - [496] = 496, + [496] = 495, [497] = 497, [498] = 498, - [499] = 499, + [499] = 498, [500] = 500, [501] = 501, [502] = 502, @@ -4401,7 +4733,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [509] = 509, [510] = 510, [511] = 511, - [512] = 512, + [512] = 379, [513] = 513, [514] = 514, [515] = 515, @@ -4438,8 +4770,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [546] = 546, [547] = 547, [548] = 548, - [549] = 549, - [550] = 550, + [549] = 378, + [550] = 381, [551] = 551, [552] = 552, [553] = 553, @@ -4447,7 +4779,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [555] = 555, [556] = 556, [557] = 557, - [558] = 558, + [558] = 382, [559] = 559, [560] = 560, [561] = 561, @@ -4519,7 +4851,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [627] = 627, [628] = 628, [629] = 629, - [630] = 374, + [630] = 630, [631] = 631, [632] = 632, [633] = 633, @@ -4528,19 +4860,19 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [636] = 636, [637] = 637, [638] = 638, - [639] = 639, + [639] = 380, [640] = 640, [641] = 641, [642] = 642, [643] = 643, [644] = 644, [645] = 645, - [646] = 370, + [646] = 646, [647] = 647, [648] = 648, - [649] = 373, - [650] = 372, - [651] = 371, + [649] = 649, + [650] = 650, + [651] = 651, [652] = 652, [653] = 653, [654] = 654, @@ -4563,7 +4895,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [671] = 671, [672] = 672, [673] = 673, - [674] = 662, + [674] = 674, [675] = 675, [676] = 676, [677] = 677, @@ -4589,7 +4921,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [697] = 697, [698] = 698, [699] = 699, - [700] = 667, + [700] = 700, [701] = 701, [702] = 702, [703] = 703, @@ -4652,12 +4984,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [760] = 760, [761] = 761, [762] = 762, - [763] = 762, + [763] = 763, [764] = 764, [765] = 765, - [766] = 764, + [766] = 766, [767] = 767, - [768] = 765, + [768] = 768, [769] = 769, [770] = 770, [771] = 771, @@ -4674,9 +5006,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [782] = 782, [783] = 783, [784] = 784, - [785] = 784, - [786] = 780, - [787] = 781, + [785] = 785, + [786] = 786, + [787] = 787, [788] = 788, [789] = 789, [790] = 790, @@ -4685,14 +5017,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [793] = 793, [794] = 794, [795] = 795, - [796] = 794, + [796] = 796, [797] = 797, - [798] = 791, - [799] = 788, + [798] = 798, + [799] = 799, [800] = 800, - [801] = 800, - [802] = 797, - [803] = 795, + [801] = 801, + [802] = 802, + [803] = 803, [804] = 804, [805] = 805, [806] = 806, @@ -4700,37 +5032,37 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [808] = 808, [809] = 809, [810] = 810, - [811] = 806, + [811] = 811, [812] = 812, [813] = 813, [814] = 814, [815] = 815, [816] = 816, - [817] = 804, - [818] = 816, + [817] = 817, + [818] = 818, [819] = 819, - [820] = 814, + [820] = 820, [821] = 821, - [822] = 813, - [823] = 810, + [822] = 822, + [823] = 823, [824] = 824, - [825] = 815, - [826] = 807, + [825] = 825, + [826] = 826, [827] = 827, - [828] = 805, - [829] = 809, - [830] = 808, - [831] = 827, - [832] = 804, - [833] = 827, - [834] = 804, - [835] = 827, + [828] = 828, + [829] = 829, + [830] = 830, + [831] = 831, + [832] = 832, + [833] = 833, + [834] = 834, + [835] = 835, [836] = 836, [837] = 837, - [838] = 837, + [838] = 838, [839] = 839, - [840] = 837, - [841] = 837, + [840] = 840, + [841] = 841, [842] = 842, [843] = 843, [844] = 844, @@ -4738,22 +5070,22 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [846] = 846, [847] = 847, [848] = 848, - [849] = 846, - [850] = 845, - [851] = 845, - [852] = 847, + [849] = 849, + [850] = 850, + [851] = 851, + [852] = 852, [853] = 853, [854] = 854, [855] = 855, - [856] = 848, + [856] = 856, [857] = 857, [858] = 858, - [859] = 848, - [860] = 858, - [861] = 842, - [862] = 847, - [863] = 846, - [864] = 848, + [859] = 859, + [860] = 860, + [861] = 861, + [862] = 862, + [863] = 863, + [864] = 864, [865] = 865, [866] = 866, [867] = 867, @@ -4761,1696 +5093,1696 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [869] = 869, [870] = 870, [871] = 871, - [872] = 869, + [872] = 872, [873] = 873, [874] = 874, - [875] = 867, + [875] = 874, [876] = 876, [877] = 877, [878] = 878, [879] = 879, - [880] = 880, - [881] = 881, + [880] = 876, + [881] = 878, [882] = 882, [883] = 883, [884] = 884, [885] = 885, [886] = 886, [887] = 887, - [888] = 873, + [888] = 888, [889] = 889, - [890] = 874, - [891] = 867, + [890] = 890, + [891] = 891, [892] = 892, - [893] = 883, + [893] = 892, [894] = 894, - [895] = 876, - [896] = 877, - [897] = 897, - [898] = 878, - [899] = 587, + [895] = 895, + [896] = 891, + [897] = 894, + [898] = 898, + [899] = 899, [900] = 900, - [901] = 884, + [901] = 901, [902] = 902, [903] = 903, [904] = 904, - [905] = 885, + [905] = 905, [906] = 906, [907] = 907, - [908] = 883, - [909] = 909, - [910] = 884, - [911] = 911, - [912] = 885, - [913] = 913, - [914] = 873, + [908] = 900, + [909] = 905, + [910] = 903, + [911] = 904, + [912] = 907, + [913] = 901, + [914] = 914, [915] = 915, [916] = 916, [917] = 917, [918] = 918, - [919] = 887, - [920] = 920, + [919] = 919, + [920] = 917, [921] = 921, [922] = 922, - [923] = 923, - [924] = 871, - [925] = 925, + [923] = 917, + [924] = 924, + [925] = 917, [926] = 926, - [927] = 869, + [927] = 927, [928] = 928, [929] = 929, - [930] = 930, - [931] = 871, - [932] = 877, - [933] = 879, + [930] = 927, + [931] = 931, + [932] = 932, + [933] = 926, [934] = 934, [935] = 935, - [936] = 936, - [937] = 937, - [938] = 917, + [936] = 916, + [937] = 935, + [938] = 921, [939] = 939, - [940] = 940, + [940] = 939, [941] = 941, - [942] = 942, - [943] = 886, - [944] = 871, + [942] = 918, + [943] = 919, + [944] = 926, [945] = 945, - [946] = 892, - [947] = 903, - [948] = 929, - [949] = 869, - [950] = 950, - [951] = 951, - [952] = 952, - [953] = 889, - [954] = 945, - [955] = 939, - [956] = 926, - [957] = 934, - [958] = 935, - [959] = 942, - [960] = 960, + [946] = 934, + [947] = 924, + [948] = 948, + [949] = 945, + [950] = 926, + [951] = 932, + [952] = 922, + [953] = 953, + [954] = 953, + [955] = 955, + [956] = 953, + [957] = 953, + [958] = 958, + [959] = 959, + [960] = 958, [961] = 961, [962] = 962, - [963] = 906, - [964] = 897, - [965] = 911, - [966] = 918, - [967] = 870, - [968] = 881, - [969] = 882, - [970] = 950, - [971] = 900, - [972] = 951, - [973] = 921, - [974] = 922, - [975] = 923, - [976] = 925, - [977] = 930, - [978] = 866, - [979] = 979, - [980] = 980, - [981] = 981, - [982] = 982, - [983] = 979, + [963] = 963, + [964] = 964, + [965] = 959, + [966] = 966, + [967] = 959, + [968] = 963, + [969] = 969, + [970] = 970, + [971] = 961, + [972] = 962, + [973] = 973, + [974] = 962, + [975] = 975, + [976] = 976, + [977] = 977, + [978] = 978, + [979] = 973, + [980] = 961, + [981] = 969, + [982] = 958, + [983] = 961, [984] = 984, - [985] = 920, - [986] = 984, - [987] = 952, - [988] = 915, + [985] = 985, + [986] = 986, + [987] = 987, + [988] = 988, [989] = 989, - [990] = 981, - [991] = 894, - [992] = 917, - [993] = 886, - [994] = 982, + [990] = 990, + [991] = 991, + [992] = 992, + [993] = 984, + [994] = 994, [995] = 995, - [996] = 960, - [997] = 874, - [998] = 962, + [996] = 996, + [997] = 991, + [998] = 998, [999] = 999, - [1000] = 894, - [1001] = 873, - [1002] = 887, - [1003] = 867, - [1004] = 928, - [1005] = 961, + [1000] = 1000, + [1001] = 1001, + [1002] = 994, + [1003] = 1003, + [1004] = 1004, + [1005] = 1005, [1006] = 1006, - [1007] = 876, - [1008] = 878, - [1009] = 941, - [1010] = 1010, + [1007] = 1007, + [1008] = 1008, + [1009] = 1009, + [1010] = 990, [1011] = 1011, [1012] = 1012, [1013] = 1013, [1014] = 1014, - [1015] = 587, + [1015] = 1015, [1016] = 1016, [1017] = 1017, [1018] = 1018, [1019] = 1019, [1020] = 1020, - [1021] = 210, - [1022] = 1022, - [1023] = 209, - [1024] = 402, - [1025] = 370, - [1026] = 387, - [1027] = 373, + [1021] = 1021, + [1022] = 1001, + [1023] = 1023, + [1024] = 1024, + [1025] = 1025, + [1026] = 1021, + [1027] = 1027, [1028] = 1028, - [1029] = 374, + [1029] = 1029, [1030] = 1030, - [1031] = 372, - [1032] = 371, - [1033] = 609, - [1034] = 1034, - [1035] = 705, + [1031] = 1027, + [1032] = 1032, + [1033] = 1023, + [1034] = 1024, + [1035] = 1030, [1036] = 1036, - [1037] = 539, + [1037] = 1004, [1038] = 1038, - [1039] = 501, - [1040] = 1040, + [1039] = 1039, + [1040] = 1007, [1041] = 1041, - [1042] = 1042, - [1043] = 1043, - [1044] = 612, + [1042] = 989, + [1043] = 988, + [1044] = 987, [1045] = 1045, [1046] = 1046, [1047] = 1047, - [1048] = 1047, - [1049] = 1049, - [1050] = 1050, + [1048] = 1007, + [1049] = 1011, + [1050] = 1038, [1051] = 1051, - [1052] = 1052, - [1053] = 1051, + [1052] = 1011, + [1053] = 1000, [1054] = 1054, - [1055] = 1051, - [1056] = 1056, - [1057] = 1057, - [1058] = 1047, + [1055] = 1055, + [1056] = 985, + [1057] = 1018, + [1058] = 1054, [1059] = 1059, [1060] = 1060, - [1061] = 1010, - [1062] = 1019, + [1061] = 1061, + [1062] = 1029, [1063] = 1063, [1064] = 1064, [1065] = 1065, [1066] = 1066, - [1067] = 1067, + [1067] = 1012, [1068] = 1068, - [1069] = 1069, + [1069] = 1008, [1070] = 1070, - [1071] = 1071, - [1072] = 1072, - [1073] = 1073, + [1071] = 991, + [1072] = 1030, + [1073] = 1027, [1074] = 1074, - [1075] = 1075, + [1075] = 1023, [1076] = 1076, - [1077] = 1077, + [1077] = 994, [1078] = 1078, - [1079] = 435, - [1080] = 736, + [1079] = 1079, + [1080] = 1055, [1081] = 1081, [1082] = 1082, - [1083] = 1083, - [1084] = 671, - [1085] = 680, - [1086] = 1018, - [1087] = 1087, - [1088] = 1017, + [1083] = 986, + [1084] = 1084, + [1085] = 1004, + [1086] = 1086, + [1087] = 1051, + [1088] = 1088, [1089] = 1089, [1090] = 1090, - [1091] = 1016, - [1092] = 1092, - [1093] = 1093, + [1091] = 1091, + [1092] = 1025, + [1093] = 1086, [1094] = 1094, [1095] = 1095, - [1096] = 1096, - [1097] = 670, - [1098] = 332, - [1099] = 697, - [1100] = 698, - [1101] = 727, - [1102] = 743, - [1103] = 744, - [1104] = 749, - [1105] = 758, - [1106] = 595, - [1107] = 602, - [1108] = 608, - [1109] = 688, - [1110] = 693, - [1111] = 701, - [1112] = 703, - [1113] = 537, - [1114] = 558, - [1115] = 1115, - [1116] = 1116, - [1117] = 1117, + [1096] = 1017, + [1097] = 998, + [1098] = 1098, + [1099] = 1068, + [1100] = 1094, + [1101] = 1003, + [1102] = 1102, + [1103] = 1065, + [1104] = 1032, + [1105] = 1074, + [1106] = 996, + [1107] = 1006, + [1108] = 1013, + [1109] = 1109, + [1110] = 1036, + [1111] = 1082, + [1112] = 1046, + [1113] = 990, + [1114] = 1114, + [1115] = 990, + [1116] = 1089, + [1117] = 1016, [1118] = 1118, - [1119] = 1119, - [1120] = 590, - [1121] = 593, - [1122] = 594, - [1123] = 596, - [1124] = 597, - [1125] = 600, - [1126] = 603, - [1127] = 605, - [1128] = 606, - [1129] = 607, - [1130] = 610, - [1131] = 611, - [1132] = 613, - [1133] = 615, - [1134] = 625, - [1135] = 626, - [1136] = 627, - [1137] = 628, - [1138] = 761, - [1139] = 487, - [1140] = 631, - [1141] = 632, - [1142] = 634, - [1143] = 635, - [1144] = 636, - [1145] = 637, - [1146] = 638, - [1147] = 640, - [1148] = 641, - [1149] = 642, - [1150] = 643, - [1151] = 644, - [1152] = 645, - [1153] = 647, - [1154] = 653, - [1155] = 658, + [1119] = 1045, + [1120] = 1118, + [1121] = 1028, + [1122] = 1122, + [1123] = 1123, + [1124] = 1124, + [1125] = 1098, + [1126] = 1059, + [1127] = 1009, + [1128] = 1128, + [1129] = 1124, + [1130] = 1123, + [1131] = 1039, + [1132] = 1024, + [1133] = 995, + [1134] = 1134, + [1135] = 1017, + [1136] = 1024, + [1137] = 1088, + [1138] = 1025, + [1139] = 1068, + [1140] = 1068, + [1141] = 1019, + [1142] = 1047, + [1143] = 1095, + [1144] = 1065, + [1145] = 1065, + [1146] = 1090, + [1147] = 1081, + [1148] = 1018, + [1149] = 1020, + [1150] = 1005, + [1151] = 1128, + [1152] = 1084, + [1153] = 1122, + [1154] = 1091, + [1155] = 1079, [1156] = 1156, [1157] = 1157, [1158] = 1158, [1159] = 1159, - [1160] = 668, - [1161] = 669, - [1162] = 672, - [1163] = 675, - [1164] = 676, - [1165] = 677, - [1166] = 678, - [1167] = 679, - [1168] = 684, - [1169] = 685, - [1170] = 686, - [1171] = 689, - [1172] = 690, - [1173] = 691, - [1174] = 692, - [1175] = 695, - [1176] = 696, - [1177] = 702, - [1178] = 709, - [1179] = 710, - [1180] = 711, - [1181] = 712, - [1182] = 713, - [1183] = 714, - [1184] = 715, - [1185] = 716, - [1186] = 717, - [1187] = 718, - [1188] = 719, - [1189] = 720, - [1190] = 721, - [1191] = 722, - [1192] = 723, - [1193] = 724, - [1194] = 725, - [1195] = 726, - [1196] = 728, - [1197] = 729, - [1198] = 730, - [1199] = 731, - [1200] = 732, - [1201] = 733, - [1202] = 734, - [1203] = 735, - [1204] = 737, - [1205] = 738, - [1206] = 739, - [1207] = 741, - [1208] = 748, - [1209] = 750, - [1210] = 1210, - [1211] = 1211, - [1212] = 760, - [1213] = 629, - [1214] = 601, - [1215] = 707, - [1216] = 708, - [1217] = 740, - [1218] = 742, - [1219] = 498, - [1220] = 581, - [1221] = 582, - [1222] = 583, - [1223] = 584, - [1224] = 585, - [1225] = 586, - [1226] = 588, - [1227] = 589, - [1228] = 591, - [1229] = 592, + [1160] = 1160, + [1161] = 1070, + [1162] = 1162, + [1163] = 1163, + [1164] = 1164, + [1165] = 1165, + [1166] = 1166, + [1167] = 213, + [1168] = 379, + [1169] = 1169, + [1170] = 382, + [1171] = 378, + [1172] = 1172, + [1173] = 396, + [1174] = 381, + [1175] = 380, + [1176] = 1176, + [1177] = 400, + [1178] = 210, + [1179] = 532, + [1180] = 1180, + [1181] = 693, + [1182] = 791, + [1183] = 844, + [1184] = 1184, + [1185] = 1185, + [1186] = 1186, + [1187] = 1187, + [1188] = 729, + [1189] = 1189, + [1190] = 1190, + [1191] = 1191, + [1192] = 1192, + [1193] = 1193, + [1194] = 1194, + [1195] = 1195, + [1196] = 1196, + [1197] = 1197, + [1198] = 1196, + [1199] = 1199, + [1200] = 1200, + [1201] = 1201, + [1202] = 1202, + [1203] = 1196, + [1204] = 1197, + [1205] = 1205, + [1206] = 1197, + [1207] = 612, + [1208] = 609, + [1209] = 685, + [1210] = 686, + [1211] = 687, + [1212] = 688, + [1213] = 689, + [1214] = 575, + [1215] = 691, + [1216] = 692, + [1217] = 697, + [1218] = 698, + [1219] = 699, + [1220] = 576, + [1221] = 577, + [1222] = 700, + [1223] = 702, + [1224] = 703, + [1225] = 704, + [1226] = 705, + [1227] = 706, + [1228] = 708, + [1229] = 709, [1230] = 1230, - [1231] = 599, - [1232] = 604, - [1233] = 614, - [1234] = 616, - [1235] = 617, - [1236] = 618, - [1237] = 619, - [1238] = 620, - [1239] = 621, - [1240] = 622, - [1241] = 623, - [1242] = 624, - [1243] = 633, - [1244] = 648, - [1245] = 652, - [1246] = 654, - [1247] = 655, - [1248] = 656, - [1249] = 657, - [1250] = 660, - [1251] = 661, - [1252] = 663, - [1253] = 664, - [1254] = 666, - [1255] = 673, - [1256] = 681, - [1257] = 682, - [1258] = 683, - [1259] = 687, - [1260] = 704, - [1261] = 706, - [1262] = 1262, - [1263] = 1263, - [1264] = 745, - [1265] = 746, - [1266] = 747, - [1267] = 751, - [1268] = 752, - [1269] = 753, - [1270] = 754, - [1271] = 755, - [1272] = 756, - [1273] = 757, - [1274] = 759, - [1275] = 488, - [1276] = 489, - [1277] = 490, - [1278] = 491, - [1279] = 492, - [1280] = 493, - [1281] = 494, - [1282] = 495, - [1283] = 496, - [1284] = 497, - [1285] = 499, - [1286] = 500, - [1287] = 502, - [1288] = 503, - [1289] = 504, - [1290] = 505, - [1291] = 506, - [1292] = 507, - [1293] = 508, - [1294] = 509, - [1295] = 510, - [1296] = 511, - [1297] = 512, - [1298] = 513, - [1299] = 514, - [1300] = 515, - [1301] = 516, - [1302] = 517, - [1303] = 518, - [1304] = 519, - [1305] = 520, - [1306] = 521, - [1307] = 522, - [1308] = 523, - [1309] = 524, - [1310] = 525, - [1311] = 526, - [1312] = 1312, - [1313] = 1313, - [1314] = 527, - [1315] = 528, - [1316] = 529, - [1317] = 530, - [1318] = 531, - [1319] = 532, - [1320] = 533, - [1321] = 534, - [1322] = 535, - [1323] = 536, - [1324] = 538, - [1325] = 540, - [1326] = 541, - [1327] = 542, - [1328] = 543, - [1329] = 544, - [1330] = 545, - [1331] = 546, - [1332] = 547, - [1333] = 548, - [1334] = 549, - [1335] = 550, - [1336] = 551, - [1337] = 552, - [1338] = 553, - [1339] = 554, - [1340] = 555, - [1341] = 556, - [1342] = 557, - [1343] = 559, - [1344] = 560, - [1345] = 561, - [1346] = 562, - [1347] = 563, - [1348] = 564, - [1349] = 565, - [1350] = 566, - [1351] = 567, - [1352] = 568, - [1353] = 569, - [1354] = 570, - [1355] = 571, - [1356] = 572, - [1357] = 573, - [1358] = 574, - [1359] = 575, - [1360] = 576, - [1361] = 577, - [1362] = 578, - [1363] = 579, - [1364] = 580, - [1365] = 1365, + [1231] = 1231, + [1232] = 710, + [1233] = 713, + [1234] = 716, + [1235] = 720, + [1236] = 724, + [1237] = 725, + [1238] = 726, + [1239] = 727, + [1240] = 728, + [1241] = 730, + [1242] = 579, + [1243] = 734, + [1244] = 735, + [1245] = 736, + [1246] = 737, + [1247] = 740, + [1248] = 584, + [1249] = 741, + [1250] = 742, + [1251] = 743, + [1252] = 1252, + [1253] = 586, + [1254] = 744, + [1255] = 745, + [1256] = 747, + [1257] = 749, + [1258] = 750, + [1259] = 587, + [1260] = 753, + [1261] = 754, + [1262] = 755, + [1263] = 757, + [1264] = 758, + [1265] = 759, + [1266] = 760, + [1267] = 761, + [1268] = 762, + [1269] = 764, + [1270] = 770, + [1271] = 775, + [1272] = 591, + [1273] = 776, + [1274] = 778, + [1275] = 785, + [1276] = 786, + [1277] = 787, + [1278] = 1278, + [1279] = 788, + [1280] = 789, + [1281] = 1281, + [1282] = 790, + [1283] = 593, + [1284] = 805, + [1285] = 812, + [1286] = 813, + [1287] = 814, + [1288] = 815, + [1289] = 817, + [1290] = 818, + [1291] = 819, + [1292] = 1292, + [1293] = 820, + [1294] = 822, + [1295] = 823, + [1296] = 829, + [1297] = 832, + [1298] = 683, + [1299] = 682, + [1300] = 834, + [1301] = 835, + [1302] = 594, + [1303] = 840, + [1304] = 842, + [1305] = 846, + [1306] = 849, + [1307] = 851, + [1308] = 857, + [1309] = 1165, + [1310] = 858, + [1311] = 859, + [1312] = 595, + [1313] = 681, + [1314] = 1314, + [1315] = 680, + [1316] = 679, + [1317] = 684, + [1318] = 678, + [1319] = 676, + [1320] = 596, + [1321] = 597, + [1322] = 1322, + [1323] = 869, + [1324] = 598, + [1325] = 872, + [1326] = 599, + [1327] = 866, + [1328] = 500, + [1329] = 856, + [1330] = 855, + [1331] = 848, + [1332] = 847, + [1333] = 843, + [1334] = 841, + [1335] = 839, + [1336] = 838, + [1337] = 837, + [1338] = 836, + [1339] = 833, + [1340] = 1340, + [1341] = 831, + [1342] = 830, + [1343] = 816, + [1344] = 811, + [1345] = 806, + [1346] = 601, + [1347] = 802, + [1348] = 800, + [1349] = 799, + [1350] = 798, + [1351] = 797, + [1352] = 796, + [1353] = 536, + [1354] = 795, + [1355] = 794, + [1356] = 793, + [1357] = 792, + [1358] = 1358, + [1359] = 783, + [1360] = 602, + [1361] = 782, + [1362] = 781, + [1363] = 603, + [1364] = 1364, + [1365] = 780, [1366] = 1366, - [1367] = 1367, - [1368] = 587, - [1369] = 1369, - [1370] = 1019, - [1371] = 1371, - [1372] = 598, - [1373] = 1373, - [1374] = 1374, - [1375] = 405, - [1376] = 373, - [1377] = 1377, - [1378] = 1378, - [1379] = 1379, - [1380] = 1380, - [1381] = 1381, - [1382] = 1382, - [1383] = 1383, - [1384] = 1384, - [1385] = 209, - [1386] = 1386, - [1387] = 375, - [1388] = 1388, - [1389] = 1389, - [1390] = 371, - [1391] = 391, - [1392] = 1392, - [1393] = 1393, - [1394] = 1394, - [1395] = 1395, - [1396] = 1396, - [1397] = 1397, + [1367] = 779, + [1368] = 777, + [1369] = 773, + [1370] = 772, + [1371] = 765, + [1372] = 763, + [1373] = 604, + [1374] = 606, + [1375] = 756, + [1376] = 752, + [1377] = 746, + [1378] = 739, + [1379] = 738, + [1380] = 733, + [1381] = 732, + [1382] = 723, + [1383] = 608, + [1384] = 722, + [1385] = 721, + [1386] = 719, + [1387] = 718, + [1388] = 443, + [1389] = 717, + [1390] = 715, + [1391] = 714, + [1392] = 712, + [1393] = 711, + [1394] = 707, + [1395] = 701, + [1396] = 675, + [1397] = 674, [1398] = 1398, - [1399] = 1399, - [1400] = 1400, - [1401] = 1401, - [1402] = 1402, - [1403] = 1403, - [1404] = 398, - [1405] = 1011, - [1406] = 1406, - [1407] = 1407, - [1408] = 374, + [1399] = 672, + [1400] = 696, + [1401] = 695, + [1402] = 694, + [1403] = 690, + [1404] = 677, + [1405] = 673, + [1406] = 656, + [1407] = 648, + [1408] = 642, [1409] = 1409, [1410] = 1410, [1411] = 1411, - [1412] = 1412, - [1413] = 180, + [1412] = 543, + [1413] = 1413, [1414] = 1414, - [1415] = 1415, - [1416] = 1416, - [1417] = 210, - [1418] = 1418, - [1419] = 381, - [1420] = 397, - [1421] = 395, - [1422] = 396, - [1423] = 403, - [1424] = 392, - [1425] = 404, - [1426] = 379, - [1427] = 383, - [1428] = 1428, - [1429] = 370, - [1430] = 386, - [1431] = 1431, - [1432] = 1432, - [1433] = 1433, - [1434] = 1434, - [1435] = 1435, - [1436] = 1436, + [1415] = 544, + [1416] = 671, + [1417] = 1417, + [1418] = 1165, + [1419] = 613, + [1420] = 1163, + [1421] = 614, + [1422] = 670, + [1423] = 669, + [1424] = 668, + [1425] = 667, + [1426] = 615, + [1427] = 1427, + [1428] = 666, + [1429] = 665, + [1430] = 1430, + [1431] = 605, + [1432] = 616, + [1433] = 592, + [1434] = 617, + [1435] = 588, + [1436] = 580, [1437] = 1437, - [1438] = 1438, - [1439] = 1439, - [1440] = 1440, - [1441] = 1441, - [1442] = 1442, - [1443] = 382, - [1444] = 1444, - [1445] = 1445, - [1446] = 378, + [1438] = 571, + [1439] = 618, + [1440] = 570, + [1441] = 569, + [1442] = 568, + [1443] = 1443, + [1444] = 1164, + [1445] = 567, + [1446] = 566, [1447] = 1447, [1448] = 1448, - [1449] = 393, - [1450] = 1450, - [1451] = 185, - [1452] = 1452, + [1449] = 565, + [1450] = 562, + [1451] = 1162, + [1452] = 555, [1453] = 1453, - [1454] = 372, - [1455] = 400, - [1456] = 1456, + [1454] = 551, + [1455] = 1455, + [1456] = 509, [1457] = 1457, [1458] = 1458, - [1459] = 1459, - [1460] = 1460, - [1461] = 1461, - [1462] = 587, - [1463] = 1463, - [1464] = 668, - [1465] = 1019, - [1466] = 1466, - [1467] = 385, - [1468] = 1468, - [1469] = 1469, - [1470] = 1470, - [1471] = 1471, - [1472] = 182, - [1473] = 1473, - [1474] = 1474, - [1475] = 387, - [1476] = 1476, - [1477] = 1477, - [1478] = 1478, - [1479] = 1479, - [1480] = 1480, - [1481] = 1481, - [1482] = 1482, - [1483] = 1483, - [1484] = 1484, - [1485] = 1485, - [1486] = 1486, - [1487] = 1487, + [1459] = 533, + [1460] = 519, + [1461] = 530, + [1462] = 1462, + [1463] = 531, + [1464] = 534, + [1465] = 537, + [1466] = 538, + [1467] = 540, + [1468] = 546, + [1469] = 506, + [1470] = 510, + [1471] = 517, + [1472] = 542, + [1473] = 853, + [1474] = 503, + [1475] = 504, + [1476] = 505, + [1477] = 507, + [1478] = 508, + [1479] = 620, + [1480] = 511, + [1481] = 514, + [1482] = 515, + [1483] = 635, + [1484] = 516, + [1485] = 518, + [1486] = 621, + [1487] = 521, [1488] = 1488, - [1489] = 177, - [1490] = 1490, - [1491] = 184, - [1492] = 1492, - [1493] = 1493, - [1494] = 402, - [1495] = 1495, + [1489] = 1489, + [1490] = 523, + [1491] = 524, + [1492] = 525, + [1493] = 526, + [1494] = 527, + [1495] = 539, [1496] = 1496, - [1497] = 1019, - [1498] = 1495, - [1499] = 1019, - [1500] = 1495, - [1501] = 1501, - [1502] = 1502, - [1503] = 1503, - [1504] = 1504, - [1505] = 1505, - [1506] = 1506, - [1507] = 1507, - [1508] = 1508, - [1509] = 1509, - [1510] = 1510, - [1511] = 1511, - [1512] = 1020, - [1513] = 1513, - [1514] = 1514, - [1515] = 1057, - [1516] = 1516, - [1517] = 1517, - [1518] = 1518, - [1519] = 1519, - [1520] = 1504, - [1521] = 1521, - [1522] = 1522, - [1523] = 1509, - [1524] = 1524, - [1525] = 1525, - [1526] = 1526, - [1527] = 1527, - [1528] = 1030, - [1529] = 1529, - [1530] = 1028, - [1531] = 1531, - [1532] = 1532, + [1497] = 339, + [1498] = 590, + [1499] = 589, + [1500] = 545, + [1501] = 582, + [1502] = 547, + [1503] = 548, + [1504] = 556, + [1505] = 557, + [1506] = 559, + [1507] = 561, + [1508] = 563, + [1509] = 564, + [1510] = 664, + [1511] = 560, + [1512] = 663, + [1513] = 662, + [1514] = 552, + [1515] = 1515, + [1516] = 572, + [1517] = 535, + [1518] = 528, + [1519] = 573, + [1520] = 581, + [1521] = 583, + [1522] = 522, + [1523] = 520, + [1524] = 585, + [1525] = 574, + [1526] = 502, + [1527] = 1156, + [1528] = 610, + [1529] = 624, + [1530] = 1530, + [1531] = 513, + [1532] = 529, [1533] = 1533, - [1534] = 1534, - [1535] = 1535, - [1536] = 1022, - [1537] = 1537, - [1538] = 1057, - [1539] = 1057, - [1540] = 1040, - [1541] = 1073, - [1542] = 1071, - [1543] = 1046, - [1544] = 1038, - [1545] = 1041, - [1546] = 1042, - [1547] = 1064, - [1548] = 1034, - [1549] = 1071, - [1550] = 1073, - [1551] = 1078, - [1552] = 1487, - [1553] = 1064, - [1554] = 1078, - [1555] = 1453, - [1556] = 1036, - [1557] = 1043, - [1558] = 1487, - [1559] = 1501, - [1560] = 1560, - [1561] = 1561, - [1562] = 1560, - [1563] = 1456, - [1564] = 1564, + [1534] = 553, + [1535] = 554, + [1536] = 611, + [1537] = 661, + [1538] = 1538, + [1539] = 619, + [1540] = 622, + [1541] = 1541, + [1542] = 623, + [1543] = 660, + [1544] = 625, + [1545] = 626, + [1546] = 659, + [1547] = 658, + [1548] = 657, + [1549] = 655, + [1550] = 1550, + [1551] = 654, + [1552] = 627, + [1553] = 653, + [1554] = 731, + [1555] = 748, + [1556] = 1556, + [1557] = 628, + [1558] = 629, + [1559] = 766, + [1560] = 630, + [1561] = 631, + [1562] = 769, + [1563] = 784, + [1564] = 632, [1565] = 1565, - [1566] = 1566, - [1567] = 332, - [1568] = 1373, - [1569] = 1060, - [1570] = 1365, - [1571] = 1049, - [1572] = 1564, - [1573] = 1453, - [1574] = 1566, - [1575] = 1487, - [1576] = 1564, - [1577] = 1566, - [1578] = 1210, - [1579] = 1566, - [1580] = 1496, - [1581] = 1564, - [1582] = 1365, - [1583] = 1262, - [1584] = 1565, - [1585] = 1050, - [1586] = 1373, - [1587] = 1312, - [1588] = 1054, - [1589] = 1561, - [1590] = 1156, - [1591] = 1565, - [1592] = 1456, - [1593] = 1524, - [1594] = 371, - [1595] = 1511, - [1596] = 1525, - [1597] = 1371, - [1598] = 1075, - [1599] = 1599, - [1600] = 1510, - [1601] = 1115, - [1602] = 1116, - [1603] = 1117, - [1604] = 1502, - [1605] = 1505, - [1606] = 1516, - [1607] = 1503, - [1608] = 1514, - [1609] = 1519, - [1610] = 1118, - [1611] = 1119, - [1612] = 1076, - [1613] = 1599, - [1614] = 1614, - [1615] = 1087, - [1616] = 1157, + [1566] = 633, + [1567] = 801, + [1568] = 809, + [1569] = 821, + [1570] = 824, + [1571] = 825, + [1572] = 634, + [1573] = 826, + [1574] = 827, + [1575] = 636, + [1576] = 828, + [1577] = 845, + [1578] = 862, + [1579] = 864, + [1580] = 865, + [1581] = 871, + [1582] = 873, + [1583] = 870, + [1584] = 868, + [1585] = 867, + [1586] = 863, + [1587] = 861, + [1588] = 860, + [1589] = 637, + [1590] = 854, + [1591] = 501, + [1592] = 638, + [1593] = 640, + [1594] = 852, + [1595] = 850, + [1596] = 1596, + [1597] = 641, + [1598] = 643, + [1599] = 810, + [1600] = 808, + [1601] = 807, + [1602] = 804, + [1603] = 803, + [1604] = 652, + [1605] = 651, + [1606] = 644, + [1607] = 1607, + [1608] = 774, + [1609] = 1609, + [1610] = 771, + [1611] = 1611, + [1612] = 645, + [1613] = 768, + [1614] = 767, + [1615] = 751, + [1616] = 646, [1617] = 1617, - [1618] = 1089, - [1619] = 1158, - [1620] = 1090, - [1621] = 1517, - [1622] = 1159, + [1618] = 1618, + [1619] = 650, + [1620] = 1620, + [1621] = 649, + [1622] = 647, [1623] = 1623, - [1624] = 1617, - [1625] = 1092, - [1626] = 1369, - [1627] = 1506, - [1628] = 1093, - [1629] = 1211, - [1630] = 1614, - [1631] = 1507, - [1632] = 1508, - [1633] = 1081, - [1634] = 1263, - [1635] = 1094, - [1636] = 1313, - [1637] = 1496, + [1624] = 1624, + [1625] = 1625, + [1626] = 1626, + [1627] = 1627, + [1628] = 1628, + [1629] = 210, + [1630] = 1630, + [1631] = 1631, + [1632] = 1632, + [1633] = 1633, + [1634] = 1634, + [1635] = 1635, + [1636] = 179, + [1637] = 1637, [1638] = 1638, - [1639] = 1513, - [1640] = 1521, - [1641] = 1526, - [1642] = 1095, + [1639] = 388, + [1640] = 1640, + [1641] = 1641, + [1642] = 1642, [1643] = 1643, - [1644] = 1082, - [1645] = 1522, - [1646] = 1096, - [1647] = 1501, - [1648] = 374, - [1649] = 1083, - [1650] = 370, - [1651] = 373, - [1652] = 372, - [1653] = 1518, + [1644] = 1644, + [1645] = 401, + [1646] = 397, + [1647] = 1647, + [1648] = 1648, + [1649] = 1649, + [1650] = 1650, + [1651] = 1651, + [1652] = 1652, + [1653] = 411, [1654] = 1654, - [1655] = 1399, - [1656] = 1656, - [1657] = 1402, - [1658] = 1658, - [1659] = 1470, - [1660] = 1471, - [1661] = 1444, + [1655] = 402, + [1656] = 384, + [1657] = 1657, + [1658] = 413, + [1659] = 1659, + [1660] = 1660, + [1661] = 1661, [1662] = 1662, - [1663] = 1476, - [1664] = 1474, + [1663] = 1663, + [1664] = 1664, [1665] = 1665, - [1666] = 1482, - [1667] = 1432, - [1668] = 1478, - [1669] = 1479, - [1670] = 1480, - [1671] = 1459, - [1672] = 1484, - [1673] = 1485, - [1674] = 1486, - [1675] = 1386, - [1676] = 1394, - [1677] = 1418, + [1666] = 409, + [1667] = 1667, + [1668] = 379, + [1669] = 1669, + [1670] = 1670, + [1671] = 1671, + [1672] = 1672, + [1673] = 1673, + [1674] = 1674, + [1675] = 1675, + [1676] = 1676, + [1677] = 176, [1678] = 1678, [1679] = 1679, - [1680] = 1516, - [1681] = 1503, - [1682] = 1414, - [1683] = 1384, - [1684] = 1416, - [1685] = 1514, - [1686] = 1519, + [1680] = 396, + [1681] = 386, + [1682] = 1682, + [1683] = 1683, + [1684] = 1684, + [1685] = 213, + [1686] = 1686, [1687] = 1687, - [1688] = 1502, - [1689] = 1473, + [1688] = 1688, + [1689] = 1689, [1690] = 1690, - [1691] = 1450, - [1692] = 1435, - [1693] = 1436, - [1694] = 1016, - [1695] = 1695, - [1696] = 1477, - [1697] = 1439, - [1698] = 1481, - [1699] = 1483, - [1700] = 1440, - [1701] = 1488, - [1702] = 1702, - [1703] = 1517, - [1704] = 1526, + [1691] = 385, + [1692] = 410, + [1693] = 406, + [1694] = 405, + [1695] = 1165, + [1696] = 382, + [1697] = 403, + [1698] = 391, + [1699] = 1699, + [1700] = 189, + [1701] = 1701, + [1702] = 394, + [1703] = 1703, + [1704] = 1704, [1705] = 1705, - [1706] = 1490, - [1707] = 1492, - [1708] = 1513, - [1709] = 1521, - [1710] = 1522, - [1711] = 1524, - [1712] = 1525, - [1713] = 1505, - [1714] = 1506, - [1715] = 1507, - [1716] = 1508, - [1717] = 1510, - [1718] = 1511, - [1719] = 1493, - [1720] = 1378, - [1721] = 1379, - [1722] = 1389, - [1723] = 1382, - [1724] = 1383, - [1725] = 1431, - [1726] = 1518, - [1727] = 1406, - [1728] = 1409, - [1729] = 1410, - [1730] = 1412, - [1731] = 1415, + [1706] = 400, + [1707] = 383, + [1708] = 1708, + [1709] = 1709, + [1710] = 378, + [1711] = 380, + [1712] = 393, + [1713] = 1713, + [1714] = 1714, + [1715] = 1715, + [1716] = 1716, + [1717] = 1717, + [1718] = 1718, + [1719] = 158, + [1720] = 1720, + [1721] = 1721, + [1722] = 1722, + [1723] = 1723, + [1724] = 1724, + [1725] = 1725, + [1726] = 1726, + [1727] = 1727, + [1728] = 1728, + [1729] = 408, + [1730] = 624, + [1731] = 1731, [1732] = 1732, - [1733] = 1397, - [1734] = 1457, - [1735] = 1458, - [1736] = 1460, - [1737] = 1461, - [1738] = 1466, - [1739] = 1392, + [1733] = 1733, + [1734] = 1734, + [1735] = 1735, + [1736] = 1736, + [1737] = 1737, + [1738] = 1738, + [1739] = 381, [1740] = 1740, - [1741] = 1400, + [1741] = 184, [1742] = 1742, - [1743] = 1403, - [1744] = 1411, - [1745] = 435, - [1746] = 381, - [1747] = 395, - [1748] = 396, - [1749] = 379, - [1750] = 383, - [1751] = 1502, - [1752] = 1437, - [1753] = 382, - [1754] = 1517, + [1743] = 1165, + [1744] = 1744, + [1745] = 1745, + [1746] = 1746, + [1747] = 1157, + [1748] = 1745, + [1749] = 1745, + [1750] = 1165, + [1751] = 1070, + [1752] = 1166, + [1753] = 1753, + [1754] = 1754, [1755] = 1755, - [1756] = 378, - [1757] = 393, - [1758] = 1526, - [1759] = 385, - [1760] = 1513, - [1761] = 1521, - [1762] = 1522, - [1763] = 1524, - [1764] = 1525, - [1765] = 1505, - [1766] = 1506, - [1767] = 1507, - [1768] = 1508, - [1769] = 1510, - [1770] = 1398, - [1771] = 1380, - [1772] = 1381, - [1773] = 375, - [1774] = 391, - [1775] = 1518, - [1776] = 398, - [1777] = 1407, - [1778] = 1463, - [1779] = 403, - [1780] = 404, - [1781] = 386, - [1782] = 400, - [1783] = 405, + [1756] = 1205, + [1757] = 1757, + [1758] = 1758, + [1759] = 1759, + [1760] = 1760, + [1761] = 1761, + [1762] = 1762, + [1763] = 1763, + [1764] = 1764, + [1765] = 1765, + [1766] = 1766, + [1767] = 1767, + [1768] = 1766, + [1769] = 1769, + [1770] = 1770, + [1771] = 1771, + [1772] = 1772, + [1773] = 1773, + [1774] = 1758, + [1775] = 1775, + [1776] = 1776, + [1777] = 1172, + [1778] = 1205, + [1779] = 1779, + [1780] = 1780, + [1781] = 1781, + [1782] = 1782, + [1783] = 1169, [1784] = 1784, - [1785] = 392, - [1786] = 177, - [1787] = 180, - [1788] = 397, - [1789] = 182, - [1790] = 1502, - [1791] = 184, - [1792] = 402, - [1793] = 1526, - [1794] = 185, - [1795] = 387, - [1796] = 1518, - [1797] = 209, - [1798] = 210, - [1799] = 1665, - [1800] = 1800, - [1801] = 1801, - [1802] = 1802, - [1803] = 1438, - [1804] = 1702, - [1805] = 1441, - [1806] = 1801, - [1807] = 1654, - [1808] = 1808, - [1809] = 1433, - [1810] = 1658, - [1811] = 1811, - [1812] = 1784, - [1813] = 1813, + [1785] = 1785, + [1786] = 1786, + [1787] = 1787, + [1788] = 1205, + [1789] = 1176, + [1790] = 1734, + [1791] = 1556, + [1792] = 1187, + [1793] = 1180, + [1794] = 1715, + [1795] = 1192, + [1796] = 1430, + [1797] = 1186, + [1798] = 1185, + [1799] = 1488, + [1800] = 1556, + [1801] = 1715, + [1802] = 1189, + [1803] = 1430, + [1804] = 1443, + [1805] = 1190, + [1806] = 1488, + [1807] = 1443, + [1808] = 1184, + [1809] = 1746, + [1810] = 1810, + [1811] = 1810, + [1812] = 1623, + [1813] = 1650, [1814] = 1814, - [1815] = 1815, - [1816] = 1816, - [1817] = 1690, + [1815] = 1814, + [1816] = 1194, + [1817] = 1623, [1818] = 1818, - [1819] = 1656, - [1820] = 1678, - [1821] = 1452, - [1822] = 1808, - [1823] = 1801, - [1824] = 1516, - [1825] = 1503, - [1826] = 1702, - [1827] = 1514, - [1828] = 1519, - [1829] = 1654, - [1830] = 1434, - [1831] = 1814, - [1832] = 1818, - [1833] = 1814, - [1834] = 1818, - [1835] = 1374, - [1836] = 1377, - [1837] = 1801, - [1838] = 1702, - [1839] = 1654, + [1819] = 1200, + [1820] = 1820, + [1821] = 1814, + [1822] = 1822, + [1823] = 1650, + [1824] = 1201, + [1825] = 1427, + [1826] = 1820, + [1827] = 1550, + [1828] = 1231, + [1829] = 1496, + [1830] = 1818, + [1831] = 1822, + [1832] = 1715, + [1833] = 339, + [1834] = 1820, + [1835] = 1496, + [1836] = 1734, + [1837] = 1822, + [1838] = 1193, + [1839] = 1822, [1840] = 1814, - [1841] = 1818, - [1842] = 1801, - [1843] = 1654, - [1844] = 1815, - [1845] = 1814, - [1846] = 1818, - [1847] = 1801, - [1848] = 1654, - [1849] = 1814, - [1850] = 1818, - [1851] = 1801, - [1852] = 1654, - [1853] = 1814, - [1854] = 1818, - [1855] = 1855, - [1856] = 1388, - [1857] = 1442, - [1858] = 1445, - [1859] = 1447, - [1860] = 1393, - [1861] = 1395, - [1862] = 1862, - [1863] = 1511, - [1864] = 1864, - [1865] = 1865, - [1866] = 1862, - [1867] = 1742, - [1868] = 1687, - [1869] = 1869, - [1870] = 1870, - [1871] = 1871, - [1872] = 1872, - [1873] = 1873, - [1874] = 1874, - [1875] = 1872, - [1876] = 1876, - [1877] = 1877, - [1878] = 1878, - [1879] = 1873, - [1880] = 1880, - [1881] = 1881, - [1882] = 1882, - [1883] = 1883, - [1884] = 1871, - [1885] = 1881, - [1886] = 1886, - [1887] = 1883, - [1888] = 1877, - [1889] = 1882, - [1890] = 1876, - [1891] = 1891, - [1892] = 1874, - [1893] = 1878, - [1894] = 1894, - [1895] = 1877, - [1896] = 1896, - [1897] = 1897, - [1898] = 1891, - [1899] = 1894, - [1900] = 1865, - [1901] = 1901, + [1841] = 1322, + [1842] = 1744, + [1843] = 1843, + [1844] = 1844, + [1845] = 1757, + [1846] = 1596, + [1847] = 1760, + [1848] = 1848, + [1849] = 1611, + [1850] = 1769, + [1851] = 1617, + [1852] = 1618, + [1853] = 1620, + [1854] = 1854, + [1855] = 1541, + [1856] = 1844, + [1857] = 1462, + [1858] = 1763, + [1859] = 1770, + [1860] = 1458, + [1861] = 382, + [1862] = 1457, + [1863] = 1455, + [1864] = 378, + [1865] = 1453, + [1866] = 1538, + [1867] = 1533, + [1868] = 379, + [1869] = 1843, + [1870] = 381, + [1871] = 1448, + [1872] = 1447, + [1873] = 1437, + [1874] = 1848, + [1875] = 1764, + [1876] = 1340, + [1877] = 1358, + [1878] = 1753, + [1879] = 1776, + [1880] = 1775, + [1881] = 1771, + [1882] = 1767, + [1883] = 1765, + [1884] = 1755, + [1885] = 1885, + [1886] = 1754, + [1887] = 1762, + [1888] = 1772, + [1889] = 380, + [1890] = 1761, + [1891] = 1417, + [1892] = 1314, + [1893] = 1773, + [1894] = 1230, + [1895] = 1759, + [1896] = 1410, + [1897] = 1409, + [1898] = 1366, + [1899] = 1746, + [1900] = 1398, + [1901] = 1252, [1902] = 1902, - [1903] = 1903, - [1904] = 1901, - [1905] = 1905, - [1906] = 1905, - [1907] = 1903, - [1908] = 1902, + [1903] = 1744, + [1904] = 210, + [1905] = 1764, + [1906] = 1773, + [1907] = 1907, + [1908] = 1908, [1909] = 1909, - [1910] = 1910, - [1911] = 1911, + [1910] = 1721, + [1911] = 383, [1912] = 1912, - [1913] = 1913, - [1914] = 1913, - [1915] = 1913, - [1916] = 1912, - [1917] = 1913, - [1918] = 1912, - [1919] = 1913, + [1913] = 1757, + [1914] = 1723, + [1915] = 1915, + [1916] = 403, + [1917] = 1624, + [1918] = 1640, + [1919] = 1760, [1920] = 1920, - [1921] = 1920, - [1922] = 1020, - [1923] = 182, - [1924] = 185, - [1925] = 1046, - [1926] = 1030, - [1927] = 1022, - [1928] = 1038, - [1929] = 1028, - [1930] = 1041, + [1921] = 393, + [1922] = 408, + [1923] = 1923, + [1924] = 401, + [1925] = 1923, + [1926] = 1926, + [1927] = 1770, + [1928] = 1769, + [1929] = 1929, + [1930] = 1759, [1931] = 1931, - [1932] = 1042, - [1933] = 1040, - [1934] = 1046, - [1935] = 1043, - [1936] = 1034, - [1937] = 1041, - [1938] = 1036, - [1939] = 1042, - [1940] = 1038, - [1941] = 1060, - [1942] = 1054, - [1943] = 1050, - [1944] = 1049, - [1945] = 1156, - [1946] = 1210, - [1947] = 1312, - [1948] = 1115, - [1949] = 1262, - [1950] = 1950, + [1932] = 184, + [1933] = 1665, + [1934] = 189, + [1935] = 1929, + [1936] = 1643, + [1937] = 1907, + [1938] = 1764, + [1939] = 1753, + [1940] = 402, + [1941] = 1642, + [1942] = 179, + [1943] = 1929, + [1944] = 1759, + [1945] = 1776, + [1946] = 158, + [1947] = 1947, + [1948] = 384, + [1949] = 1775, + [1950] = 1929, [1951] = 1951, - [1952] = 1087, - [1953] = 1089, - [1954] = 1950, - [1955] = 1090, - [1956] = 1956, - [1957] = 1081, - [1958] = 1116, - [1959] = 1117, - [1960] = 1118, - [1961] = 1119, - [1962] = 1083, - [1963] = 1963, - [1964] = 402, - [1965] = 1092, - [1966] = 1093, - [1967] = 1967, - [1968] = 1967, - [1969] = 387, - [1970] = 1082, - [1971] = 209, - [1972] = 1537, - [1973] = 1211, - [1974] = 1967, - [1975] = 1096, - [1976] = 210, - [1977] = 1313, - [1978] = 1094, - [1979] = 1157, - [1980] = 1158, - [1981] = 1159, - [1982] = 1095, - [1983] = 1956, - [1984] = 1263, - [1985] = 1436, - [1986] = 1414, - [1987] = 1535, + [1952] = 1931, + [1953] = 391, + [1954] = 1926, + [1955] = 1771, + [1956] = 1923, + [1957] = 1627, + [1958] = 406, + [1959] = 1907, + [1960] = 1676, + [1961] = 409, + [1962] = 1738, + [1963] = 1733, + [1964] = 1731, + [1965] = 1732, + [1966] = 1725, + [1967] = 1767, + [1968] = 1722, + [1969] = 1915, + [1970] = 1689, + [1971] = 1763, + [1972] = 1931, + [1973] = 394, + [1974] = 413, + [1975] = 1923, + [1976] = 400, + [1977] = 1761, + [1978] = 1632, + [1979] = 176, + [1980] = 396, + [1981] = 411, + [1982] = 443, + [1983] = 1765, + [1984] = 1755, + [1985] = 1754, + [1986] = 1626, + [1987] = 1757, [1988] = 1988, - [1989] = 1378, - [1990] = 1956, - [1991] = 1416, - [1992] = 1381, - [1993] = 1458, - [1994] = 1439, - [1995] = 1440, - [1996] = 1435, - [1997] = 1380, - [1998] = 1461, - [1999] = 1383, - [2000] = 1529, - [2001] = 1406, - [2002] = 1407, - [2003] = 1409, - [2004] = 1437, - [2005] = 1410, - [2006] = 1460, - [2007] = 1379, - [2008] = 1463, - [2009] = 1412, - [2010] = 1415, - [2011] = 1457, - [2012] = 1466, - [2013] = 2013, - [2014] = 1382, - [2015] = 1534, - [2016] = 1392, + [1989] = 1687, + [1990] = 1648, + [1991] = 1762, + [1992] = 1760, + [1993] = 1993, + [1994] = 1931, + [1995] = 1704, + [1996] = 1929, + [1997] = 1772, + [1998] = 1651, + [1999] = 1718, + [2000] = 1652, + [2001] = 1770, + [2002] = 1716, + [2003] = 1907, + [2004] = 1769, + [2005] = 1709, + [2006] = 397, + [2007] = 1630, + [2008] = 2008, + [2009] = 2009, + [2010] = 1661, + [2011] = 1675, + [2012] = 1690, + [2013] = 1633, + [2014] = 1678, + [2015] = 1684, + [2016] = 2016, [2017] = 2017, - [2018] = 2018, - [2019] = 184, - [2020] = 180, + [2018] = 1761, + [2019] = 1659, + [2020] = 1763, [2021] = 2021, - [2022] = 1041, - [2023] = 1042, - [2024] = 1038, - [2025] = 2025, - [2026] = 1046, - [2027] = 1042, - [2028] = 1038, - [2029] = 1046, - [2030] = 1046, - [2031] = 1041, - [2032] = 1931, - [2033] = 1038, - [2034] = 2034, - [2035] = 1041, - [2036] = 1042, - [2037] = 2037, - [2038] = 2038, - [2039] = 2039, - [2040] = 2039, - [2041] = 2041, - [2042] = 2042, - [2043] = 2043, - [2044] = 2044, - [2045] = 2045, - [2046] = 2043, - [2047] = 2044, - [2048] = 2038, - [2049] = 2049, - [2050] = 2045, - [2051] = 2051, - [2052] = 2049, - [2053] = 2041, - [2054] = 2054, - [2055] = 2055, + [2022] = 385, + [2023] = 1664, + [2024] = 1773, + [2025] = 1931, + [2026] = 1686, + [2027] = 1915, + [2028] = 1720, + [2029] = 1951, + [2030] = 388, + [2031] = 1708, + [2032] = 1705, + [2033] = 1663, + [2034] = 1634, + [2035] = 1671, + [2036] = 1703, + [2037] = 1637, + [2038] = 1929, + [2039] = 1635, + [2040] = 1993, + [2041] = 1641, + [2042] = 1672, + [2043] = 1667, + [2044] = 1669, + [2045] = 1753, + [2046] = 1713, + [2047] = 1776, + [2048] = 1775, + [2049] = 1908, + [2050] = 1915, + [2051] = 1717, + [2052] = 2052, + [2053] = 2053, + [2054] = 213, + [2055] = 1907, [2056] = 2056, - [2057] = 2057, - [2058] = 2058, - [2059] = 2059, + [2057] = 1907, + [2058] = 1915, + [2059] = 1915, [2060] = 2060, - [2061] = 2061, - [2062] = 2062, - [2063] = 2063, - [2064] = 372, - [2065] = 374, - [2066] = 1046, - [2067] = 1038, - [2068] = 1041, - [2069] = 1042, - [2070] = 2061, - [2071] = 2071, - [2072] = 2072, + [2061] = 1670, + [2062] = 1771, + [2063] = 1915, + [2064] = 1682, + [2065] = 1683, + [2066] = 1931, + [2067] = 1162, + [2068] = 1767, + [2069] = 2053, + [2070] = 1724, + [2071] = 1920, + [2072] = 1727, [2073] = 2073, - [2074] = 2074, - [2075] = 2075, + [2074] = 1765, + [2075] = 1755, [2076] = 2076, - [2077] = 2071, - [2078] = 373, - [2079] = 2079, - [2080] = 2080, + [2077] = 2073, + [2078] = 1662, + [2079] = 405, + [2080] = 1754, [2081] = 2081, - [2082] = 2082, - [2083] = 2083, - [2084] = 1951, - [2085] = 2082, - [2086] = 2054, - [2087] = 371, - [2088] = 2057, - [2089] = 2072, - [2090] = 2055, - [2091] = 2062, - [2092] = 2092, - [2093] = 370, - [2094] = 2092, + [2082] = 1763, + [2083] = 1625, + [2084] = 1728, + [2085] = 1647, + [2086] = 1699, + [2087] = 1742, + [2088] = 1761, + [2089] = 1657, + [2090] = 2090, + [2091] = 1701, + [2092] = 1714, + [2093] = 1660, + [2094] = 1631, [2095] = 2095, - [2096] = 2096, - [2097] = 2097, - [2098] = 2098, - [2099] = 2099, - [2100] = 2100, + [2096] = 1737, + [2097] = 1736, + [2098] = 1759, + [2099] = 1931, + [2100] = 1679, [2101] = 2101, - [2102] = 2102, - [2103] = 2103, - [2104] = 2104, - [2105] = 2105, - [2106] = 2106, - [2107] = 2107, - [2108] = 2108, - [2109] = 2109, - [2110] = 2097, - [2111] = 397, - [2112] = 2097, - [2113] = 2113, - [2114] = 2114, - [2115] = 2115, + [2102] = 1688, + [2103] = 1674, + [2104] = 2008, + [2105] = 410, + [2106] = 1726, + [2107] = 1929, + [2108] = 386, + [2109] = 1762, + [2110] = 1907, + [2111] = 1772, + [2112] = 2112, + [2113] = 1735, + [2114] = 2060, + [2115] = 1740, [2116] = 2116, - [2117] = 2117, + [2117] = 2081, [2118] = 2118, [2119] = 2119, [2120] = 2120, [2121] = 2121, [2122] = 2122, - [2123] = 2117, - [2124] = 2124, - [2125] = 1963, + [2123] = 2123, + [2124] = 2121, + [2125] = 2016, [2126] = 2126, [2127] = 2127, [2128] = 2128, - [2129] = 2129, - [2130] = 2130, - [2131] = 2131, - [2132] = 1951, + [2129] = 2122, + [2130] = 2090, + [2131] = 2120, + [2132] = 2132, [2133] = 2133, - [2134] = 2134, + [2134] = 2128, [2135] = 2135, - [2136] = 2136, + [2136] = 2119, [2137] = 2137, - [2138] = 2109, - [2139] = 1951, + [2138] = 2138, + [2139] = 2139, [2140] = 2140, - [2141] = 2130, - [2142] = 2142, + [2141] = 1947, + [2142] = 2127, [2143] = 2143, [2144] = 2144, [2145] = 2145, - [2146] = 2133, - [2147] = 2147, + [2146] = 2146, + [2147] = 2143, [2148] = 2148, [2149] = 2149, - [2150] = 2150, - [2151] = 1963, - [2152] = 2152, - [2153] = 2153, + [2150] = 2144, + [2151] = 2140, + [2152] = 2137, + [2153] = 2145, [2154] = 2154, - [2155] = 2155, - [2156] = 2156, - [2157] = 2157, - [2158] = 1049, - [2159] = 1050, - [2160] = 2160, - [2161] = 1054, - [2162] = 1060, - [2163] = 2153, - [2164] = 2164, - [2165] = 2160, + [2155] = 2132, + [2156] = 2137, + [2157] = 2139, + [2158] = 2149, + [2159] = 2135, + [2160] = 2118, + [2161] = 2161, + [2162] = 2162, + [2163] = 2163, + [2164] = 2163, + [2165] = 2165, [2166] = 2166, - [2167] = 2167, - [2168] = 2168, - [2169] = 2169, - [2170] = 2170, + [2167] = 2166, + [2168] = 2165, + [2169] = 2161, + [2170] = 2162, [2171] = 2171, - [2172] = 2172, - [2173] = 2164, + [2172] = 2171, + [2173] = 2173, [2174] = 2174, - [2175] = 2168, + [2175] = 2175, [2176] = 2176, - [2177] = 2153, - [2178] = 2178, - [2179] = 2150, - [2180] = 2148, - [2181] = 2170, - [2182] = 2172, + [2177] = 2176, + [2178] = 2176, + [2179] = 2176, + [2180] = 2180, + [2181] = 2180, + [2182] = 2180, [2183] = 2183, - [2184] = 2164, - [2185] = 2183, + [2184] = 2183, + [2185] = 1156, [2186] = 2186, - [2187] = 2174, - [2188] = 1951, - [2189] = 2178, - [2190] = 2176, - [2191] = 1963, - [2192] = 2152, - [2193] = 2155, - [2194] = 2167, - [2195] = 2157, - [2196] = 2196, - [2197] = 2197, - [2198] = 2198, - [2199] = 2199, - [2200] = 2200, - [2201] = 2201, - [2202] = 2202, - [2203] = 2203, - [2204] = 2204, - [2205] = 2205, - [2206] = 2206, - [2207] = 2207, - [2208] = 2208, - [2209] = 2209, - [2210] = 2206, - [2211] = 2207, - [2212] = 2208, - [2213] = 2213, - [2214] = 2214, - [2215] = 2215, - [2216] = 2216, - [2217] = 2217, + [2187] = 2186, + [2188] = 1070, + [2189] = 1157, + [2190] = 179, + [2191] = 1166, + [2192] = 176, + [2193] = 2193, + [2194] = 1190, + [2195] = 1192, + [2196] = 1184, + [2197] = 1189, + [2198] = 1169, + [2199] = 1176, + [2200] = 1172, + [2201] = 1187, + [2202] = 1180, + [2203] = 1186, + [2204] = 1185, + [2205] = 1192, + [2206] = 1189, + [2207] = 1190, + [2208] = 1184, + [2209] = 1596, + [2210] = 1231, + [2211] = 1193, + [2212] = 1194, + [2213] = 1322, + [2214] = 1427, + [2215] = 1200, + [2216] = 1550, + [2217] = 1201, [2218] = 2218, - [2219] = 2219, + [2219] = 1448, [2220] = 2220, - [2221] = 2221, - [2222] = 2196, - [2223] = 2216, - [2224] = 2224, - [2225] = 2202, - [2226] = 2226, - [2227] = 2227, - [2228] = 2228, - [2229] = 2229, - [2230] = 2230, - [2231] = 2201, - [2232] = 2217, - [2233] = 2233, - [2234] = 2215, - [2235] = 2235, + [2221] = 1447, + [2222] = 2222, + [2223] = 2223, + [2224] = 2220, + [2225] = 2223, + [2226] = 1437, + [2227] = 213, + [2228] = 1455, + [2229] = 210, + [2230] = 400, + [2231] = 1780, + [2232] = 1453, + [2233] = 1541, + [2234] = 1417, + [2235] = 1533, [2236] = 2236, - [2237] = 2226, - [2238] = 2238, - [2239] = 2239, - [2240] = 2229, - [2241] = 2203, - [2242] = 1963, - [2243] = 2230, - [2244] = 2213, - [2245] = 2245, - [2246] = 2200, - [2247] = 2209, - [2248] = 2221, - [2249] = 2204, - [2250] = 2218, - [2251] = 2197, - [2252] = 2252, - [2253] = 2253, - [2254] = 2254, - [2255] = 2255, - [2256] = 2256, - [2257] = 2257, - [2258] = 2258, - [2259] = 2259, - [2260] = 2259, - [2261] = 2261, - [2262] = 2252, - [2263] = 2263, - [2264] = 2264, - [2265] = 2265, - [2266] = 2266, - [2267] = 2267, - [2268] = 2268, - [2269] = 2269, - [2270] = 2270, - [2271] = 2271, + [2237] = 396, + [2238] = 1409, + [2239] = 1617, + [2240] = 1410, + [2241] = 1398, + [2242] = 2236, + [2243] = 1538, + [2244] = 1462, + [2245] = 1618, + [2246] = 2246, + [2247] = 2218, + [2248] = 1620, + [2249] = 1230, + [2250] = 1458, + [2251] = 1611, + [2252] = 1457, + [2253] = 1314, + [2254] = 2236, + [2255] = 1634, + [2256] = 1779, + [2257] = 2218, + [2258] = 1662, + [2259] = 1713, + [2260] = 1626, + [2261] = 1724, + [2262] = 1669, + [2263] = 1635, + [2264] = 1625, + [2265] = 1642, + [2266] = 1699, + [2267] = 1643, + [2268] = 1717, + [2269] = 1732, + [2270] = 1687, + [2271] = 1664, [2272] = 2272, - [2273] = 2272, - [2274] = 2274, - [2275] = 2275, - [2276] = 2276, - [2277] = 2277, + [2273] = 1782, + [2274] = 1742, + [2275] = 1665, + [2276] = 1736, + [2277] = 1670, [2278] = 2278, - [2279] = 2279, - [2280] = 2280, - [2281] = 2254, - [2282] = 2264, - [2283] = 2267, - [2284] = 2255, - [2285] = 2280, - [2286] = 2286, - [2287] = 2017, + [2279] = 1737, + [2280] = 1667, + [2281] = 2281, + [2282] = 1727, + [2283] = 1640, + [2284] = 1723, + [2285] = 1632, + [2286] = 1784, + [2287] = 1683, [2288] = 2288, [2289] = 2289, - [2290] = 2269, - [2291] = 2291, - [2292] = 2274, - [2293] = 2275, - [2294] = 2253, - [2295] = 2276, - [2296] = 2277, - [2297] = 2257, - [2298] = 2278, + [2290] = 189, + [2291] = 158, + [2292] = 2292, + [2293] = 1189, + [2294] = 2193, + [2295] = 1189, + [2296] = 2296, + [2297] = 1190, + [2298] = 1192, [2299] = 2299, - [2300] = 2286, - [2301] = 2271, - [2302] = 2291, - [2303] = 2303, - [2304] = 2288, - [2305] = 2305, - [2306] = 2306, - [2307] = 2286, - [2308] = 2256, - [2309] = 2263, + [2300] = 1184, + [2301] = 2301, + [2302] = 1184, + [2303] = 1192, + [2304] = 1189, + [2305] = 1190, + [2306] = 1184, + [2307] = 1190, + [2308] = 1192, + [2309] = 2309, [2310] = 2310, [2311] = 2311, [2312] = 2312, [2313] = 2313, - [2314] = 2311, + [2314] = 2314, [2315] = 2315, - [2316] = 2316, - [2317] = 2317, - [2318] = 2318, + [2316] = 2314, + [2317] = 2311, + [2318] = 2310, [2319] = 2319, [2320] = 2320, - [2321] = 2034, - [2322] = 2313, - [2323] = 2318, - [2324] = 2324, + [2321] = 2313, + [2322] = 2320, + [2323] = 2312, + [2324] = 2315, [2325] = 2325, - [2326] = 2324, - [2327] = 2325, + [2326] = 2326, + [2327] = 2327, [2328] = 2328, [2329] = 2329, - [2330] = 2025, - [2331] = 2331, - [2332] = 2332, + [2330] = 2330, + [2331] = 1192, + [2332] = 1190, [2333] = 2333, [2334] = 2334, - [2335] = 2335, - [2336] = 2333, + [2335] = 2327, + [2336] = 382, [2337] = 2337, [2338] = 2338, [2339] = 2339, - [2340] = 2339, + [2340] = 2340, [2341] = 2341, - [2342] = 2335, + [2342] = 2342, [2343] = 2343, [2344] = 2344, [2345] = 2345, [2346] = 2346, - [2347] = 2347, - [2348] = 2328, - [2349] = 2335, - [2350] = 2331, - [2351] = 2332, - [2352] = 2352, - [2353] = 2353, - [2354] = 2312, - [2355] = 2355, - [2356] = 2356, + [2347] = 381, + [2348] = 2348, + [2349] = 2349, + [2350] = 2326, + [2351] = 2351, + [2352] = 379, + [2353] = 378, + [2354] = 2354, + [2355] = 2333, + [2356] = 2346, [2357] = 2357, [2358] = 2358, - [2359] = 2355, - [2360] = 2341, - [2361] = 2357, - [2362] = 2333, - [2363] = 2346, - [2364] = 2037, - [2365] = 2365, - [2366] = 2366, - [2367] = 2329, - [2368] = 2319, - [2369] = 2339, - [2370] = 2341, - [2371] = 2320, - [2372] = 2329, + [2359] = 2348, + [2360] = 2345, + [2361] = 2349, + [2362] = 2340, + [2363] = 2351, + [2364] = 2222, + [2365] = 1189, + [2366] = 2341, + [2367] = 2325, + [2368] = 2354, + [2369] = 1184, + [2370] = 2370, + [2371] = 380, + [2372] = 2372, [2373] = 2373, [2374] = 2374, - [2375] = 2343, - [2376] = 2352, + [2375] = 2375, + [2376] = 2376, [2377] = 2377, - [2378] = 2335, - [2379] = 2344, - [2380] = 2345, - [2381] = 2377, + [2378] = 2378, + [2379] = 2379, + [2380] = 2380, + [2381] = 2381, [2382] = 2382, [2383] = 2383, [2384] = 2384, - [2385] = 2365, - [2386] = 2374, + [2385] = 2385, + [2386] = 2386, [2387] = 2387, - [2388] = 2353, - [2389] = 180, - [2390] = 2316, - [2391] = 182, - [2392] = 184, - [2393] = 185, - [2394] = 2317, + [2388] = 2388, + [2389] = 2389, + [2390] = 2390, + [2391] = 2222, + [2392] = 2379, + [2393] = 2393, + [2394] = 2393, [2395] = 2395, [2396] = 2396, - [2397] = 2397, - [2398] = 2397, - [2399] = 2356, + [2397] = 2246, + [2398] = 2398, + [2399] = 2399, [2400] = 2400, - [2401] = 2373, - [2402] = 2315, - [2403] = 2396, - [2404] = 2366, - [2405] = 2400, - [2406] = 2384, - [2407] = 2310, - [2408] = 2383, + [2401] = 2401, + [2402] = 2402, + [2403] = 2403, + [2404] = 402, + [2405] = 2405, + [2406] = 2393, + [2407] = 2407, + [2408] = 2408, [2409] = 2409, - [2410] = 2410, + [2410] = 2396, [2411] = 2411, - [2412] = 2411, + [2412] = 2412, [2413] = 2413, [2414] = 2414, [2415] = 2415, - [2416] = 2416, + [2416] = 2402, [2417] = 2417, [2418] = 2418, [2419] = 2419, [2420] = 2420, [2421] = 2421, [2422] = 2422, - [2423] = 2423, - [2424] = 2413, + [2423] = 2222, + [2424] = 2415, [2425] = 2425, - [2426] = 2426, + [2426] = 1200, [2427] = 2427, - [2428] = 2425, + [2428] = 2428, [2429] = 2429, [2430] = 2430, [2431] = 2431, - [2432] = 1016, - [2433] = 2433, + [2432] = 2432, + [2433] = 2428, [2434] = 2434, [2435] = 2435, - [2436] = 2436, + [2436] = 2246, [2437] = 2437, - [2438] = 2423, - [2439] = 2420, + [2438] = 2438, + [2439] = 2222, [2440] = 2440, [2441] = 2441, [2442] = 2442, - [2443] = 2443, - [2444] = 2420, - [2445] = 2445, - [2446] = 2410, - [2447] = 2447, - [2448] = 2416, - [2449] = 2442, - [2450] = 2437, + [2443] = 2432, + [2444] = 2444, + [2445] = 2430, + [2446] = 1193, + [2447] = 2438, + [2448] = 2448, + [2449] = 2449, + [2450] = 2450, [2451] = 2451, - [2452] = 1068, + [2452] = 2437, [2453] = 2453, [2454] = 2454, - [2455] = 2455, + [2455] = 2429, [2456] = 2456, - [2457] = 2441, - [2458] = 2418, - [2459] = 2456, - [2460] = 1366, - [2461] = 2421, - [2462] = 1077, - [2463] = 1230, - [2464] = 2464, - [2465] = 2451, - [2466] = 2466, - [2467] = 1367, - [2468] = 2468, + [2457] = 1201, + [2458] = 2458, + [2459] = 2453, + [2460] = 2454, + [2461] = 2246, + [2462] = 1194, + [2463] = 2448, + [2464] = 2440, + [2465] = 2431, + [2466] = 2425, + [2467] = 2467, + [2468] = 2428, [2469] = 2469, - [2470] = 2409, - [2471] = 2471, - [2472] = 2419, - [2473] = 2473, + [2470] = 2458, + [2471] = 2441, + [2472] = 2448, + [2473] = 2456, [2474] = 2474, - [2475] = 2420, - [2476] = 2433, - [2477] = 2477, - [2478] = 2427, - [2479] = 2479, + [2475] = 2467, + [2476] = 2427, + [2477] = 2449, + [2478] = 2444, + [2479] = 2435, [2480] = 2480, [2481] = 2481, - [2482] = 1069, + [2482] = 2482, [2483] = 2483, - [2484] = 2454, - [2485] = 2421, - [2486] = 2422, - [2487] = 2455, + [2484] = 2484, + [2485] = 2485, + [2486] = 2486, + [2487] = 2487, [2488] = 2488, - [2489] = 2410, + [2489] = 2489, [2490] = 2490, - [2491] = 2430, - [2492] = 2492, - [2493] = 2436, - [2494] = 2443, - [2495] = 2433, - [2496] = 1065, - [2497] = 1066, - [2498] = 1067, + [2491] = 2491, + [2492] = 2488, + [2493] = 2493, + [2494] = 2494, + [2495] = 2495, + [2496] = 2493, + [2497] = 2497, + [2498] = 2498, [2499] = 2499, - [2500] = 2430, + [2500] = 2500, [2501] = 2501, - [2502] = 2502, - [2503] = 2419, + [2502] = 2487, + [2503] = 2495, [2504] = 2504, [2505] = 2505, [2506] = 2506, - [2507] = 2434, - [2508] = 2508, + [2507] = 2507, + [2508] = 2497, [2509] = 2509, [2510] = 2510, - [2511] = 2415, - [2512] = 2409, - [2513] = 1063, + [2511] = 2511, + [2512] = 2498, + [2513] = 2509, [2514] = 2514, [2515] = 2515, [2516] = 2516, - [2517] = 2517, + [2517] = 2489, [2518] = 2518, [2519] = 2519, - [2520] = 2515, + [2520] = 2520, [2521] = 2521, - [2522] = 2522, + [2522] = 2506, [2523] = 2523, [2524] = 2524, - [2525] = 2525, + [2525] = 2499, [2526] = 2526, - [2527] = 2527, - [2528] = 2515, - [2529] = 2516, - [2530] = 2530, - [2531] = 2531, + [2527] = 2507, + [2528] = 2528, + [2529] = 2501, + [2530] = 2516, + [2531] = 2482, [2532] = 2532, - [2533] = 197, - [2534] = 2534, - [2535] = 2535, + [2533] = 2532, + [2534] = 2246, + [2535] = 2481, [2536] = 2536, - [2537] = 2537, - [2538] = 2516, - [2539] = 2536, + [2537] = 2490, + [2538] = 2538, + [2539] = 2514, [2540] = 2540, - [2541] = 2517, - [2542] = 2542, - [2543] = 2543, - [2544] = 2534, - [2545] = 2545, - [2546] = 2524, + [2541] = 2500, + [2542] = 2494, + [2543] = 2518, + [2544] = 2505, + [2545] = 2515, + [2546] = 2536, [2547] = 2547, - [2548] = 2531, - [2549] = 2549, - [2550] = 2550, + [2548] = 2547, + [2549] = 2540, + [2550] = 2485, [2551] = 2551, - [2552] = 2552, + [2552] = 2288, [2553] = 2553, [2554] = 2554, [2555] = 2555, - [2556] = 2542, - [2557] = 2545, + [2556] = 2556, + [2557] = 2557, [2558] = 2558, - [2559] = 2525, - [2560] = 2560, - [2561] = 2561, + [2559] = 2559, + [2560] = 2551, + [2561] = 2555, [2562] = 2562, [2563] = 2563, [2564] = 2564, @@ -6459,197 +6791,197 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2567] = 2567, [2568] = 2568, [2569] = 2569, - [2570] = 2570, + [2570] = 2559, [2571] = 2571, [2572] = 2572, - [2573] = 2551, + [2573] = 2553, [2574] = 2574, [2575] = 2575, - [2576] = 2522, - [2577] = 2552, + [2576] = 2569, + [2577] = 2577, [2578] = 2578, [2579] = 2579, - [2580] = 2580, + [2580] = 2579, [2581] = 2558, [2582] = 2582, - [2583] = 2521, + [2583] = 2563, [2584] = 2584, [2585] = 2585, - [2586] = 2586, - [2587] = 2582, - [2588] = 2582, - [2589] = 2589, + [2586] = 2565, + [2587] = 2566, + [2588] = 2588, + [2589] = 2554, [2590] = 2590, - [2591] = 2569, + [2591] = 2591, [2592] = 2592, [2593] = 2593, - [2594] = 2080, + [2594] = 2594, [2595] = 2595, - [2596] = 2534, - [2597] = 2545, - [2598] = 2524, - [2599] = 2531, - [2600] = 2540, - [2601] = 2542, - [2602] = 2558, - [2603] = 2525, - [2604] = 2560, - [2605] = 2562, - [2606] = 2564, - [2607] = 2565, - [2608] = 2569, - [2609] = 2570, - [2610] = 2592, - [2611] = 2611, - [2612] = 2612, - [2613] = 2552, - [2614] = 2083, - [2615] = 2562, - [2616] = 2574, - [2617] = 2582, + [2596] = 2596, + [2597] = 2597, + [2598] = 2598, + [2599] = 2599, + [2600] = 2556, + [2601] = 2599, + [2602] = 2598, + [2603] = 2557, + [2604] = 2596, + [2605] = 2595, + [2606] = 2567, + [2607] = 2578, + [2608] = 2577, + [2609] = 2575, + [2610] = 2574, + [2611] = 2590, + [2612] = 2568, + [2613] = 2567, + [2614] = 2564, + [2615] = 2615, + [2616] = 2616, + [2617] = 2299, [2618] = 2618, - [2619] = 2524, - [2620] = 2531, + [2619] = 2619, + [2620] = 2301, [2621] = 2621, - [2622] = 2558, - [2623] = 2564, - [2624] = 2565, - [2625] = 2569, - [2626] = 2570, - [2627] = 2534, - [2628] = 2056, - [2629] = 2545, - [2630] = 2524, - [2631] = 2564, - [2632] = 2079, - [2633] = 2569, - [2634] = 2570, - [2635] = 2524, + [2622] = 2622, + [2623] = 2623, + [2624] = 2624, + [2625] = 2625, + [2626] = 2626, + [2627] = 2622, + [2628] = 2628, + [2629] = 2624, + [2630] = 2630, + [2631] = 2625, + [2632] = 2632, + [2633] = 2633, + [2634] = 2634, + [2635] = 2635, [2636] = 2636, - [2637] = 2549, + [2637] = 2637, [2638] = 2638, - [2639] = 2569, - [2640] = 2570, + [2639] = 2639, + [2640] = 2616, [2641] = 2641, [2642] = 2642, - [2643] = 2569, - [2644] = 2570, - [2645] = 2569, - [2646] = 2554, - [2647] = 2569, - [2648] = 2570, - [2649] = 2569, - [2650] = 2570, - [2651] = 2569, - [2652] = 2570, + [2643] = 2643, + [2644] = 2644, + [2645] = 2645, + [2646] = 2646, + [2647] = 2647, + [2648] = 2648, + [2649] = 2649, + [2650] = 2650, + [2651] = 2651, + [2652] = 2652, [2653] = 2653, - [2654] = 2531, - [2655] = 2567, - [2656] = 2549, - [2657] = 2537, - [2658] = 2658, - [2659] = 2553, - [2660] = 2658, + [2654] = 2639, + [2655] = 2642, + [2656] = 2656, + [2657] = 2618, + [2658] = 2637, + [2659] = 2635, + [2660] = 2618, [2661] = 2661, - [2662] = 2662, - [2663] = 2663, + [2662] = 2643, + [2663] = 2636, [2664] = 2664, - [2665] = 2537, + [2665] = 2652, [2666] = 2666, - [2667] = 2667, - [2668] = 2553, - [2669] = 2669, + [2667] = 2626, + [2668] = 2636, + [2669] = 189, [2670] = 2670, [2671] = 2671, - [2672] = 2519, + [2672] = 2672, [2673] = 2673, - [2674] = 2585, - [2675] = 175, - [2676] = 2542, - [2677] = 2558, + [2674] = 2674, + [2675] = 2675, + [2676] = 2619, + [2677] = 179, [2678] = 2678, - [2679] = 2525, - [2680] = 2678, - [2681] = 2560, - [2682] = 2579, - [2683] = 2095, - [2684] = 2663, - [2685] = 2685, - [2686] = 2642, - [2687] = 2687, - [2688] = 2688, - [2689] = 2689, - [2690] = 2690, - [2691] = 2691, - [2692] = 2692, - [2693] = 2592, - [2694] = 2575, - [2695] = 2562, - [2696] = 2590, - [2697] = 2527, + [2679] = 158, + [2680] = 2630, + [2681] = 2664, + [2682] = 2675, + [2683] = 2683, + [2684] = 2684, + [2685] = 2624, + [2686] = 2633, + [2687] = 2674, + [2688] = 2296, + [2689] = 2666, + [2690] = 2644, + [2691] = 176, + [2692] = 2670, + [2693] = 2693, + [2694] = 2615, + [2695] = 2695, + [2696] = 2696, + [2697] = 2697, [2698] = 2698, - [2699] = 2076, - [2700] = 2671, - [2701] = 2586, - [2702] = 2564, - [2703] = 2565, - [2704] = 2535, - [2705] = 2555, + [2699] = 2661, + [2700] = 2618, + [2701] = 2671, + [2702] = 2672, + [2703] = 2673, + [2704] = 2653, + [2705] = 2647, [2706] = 2706, - [2707] = 2526, - [2708] = 2566, + [2707] = 2635, + [2708] = 2625, [2709] = 2709, - [2710] = 2710, - [2711] = 2666, - [2712] = 2060, - [2713] = 2564, - [2714] = 2567, - [2715] = 2710, - [2716] = 2552, - [2717] = 2537, - [2718] = 2074, - [2719] = 2719, - [2720] = 2663, + [2710] = 2648, + [2711] = 2646, + [2712] = 2650, + [2713] = 2713, + [2714] = 2714, + [2715] = 2683, + [2716] = 2656, + [2717] = 2645, + [2718] = 2638, + [2719] = 2684, + [2720] = 2641, [2721] = 2721, - [2722] = 2722, - [2723] = 2669, + [2722] = 2721, + [2723] = 2628, [2724] = 2724, [2725] = 2725, - [2726] = 2726, - [2727] = 2523, - [2728] = 2571, - [2729] = 2537, - [2730] = 2565, - [2731] = 2663, - [2732] = 2560, - [2733] = 2563, + [2726] = 2678, + [2727] = 2727, + [2728] = 2693, + [2729] = 2695, + [2730] = 2649, + [2731] = 2623, + [2732] = 2696, + [2733] = 2632, [2734] = 2734, - [2735] = 2595, - [2736] = 2621, - [2737] = 2724, - [2738] = 2670, - [2739] = 2570, - [2740] = 2569, - [2741] = 2574, - [2742] = 2568, - [2743] = 2547, - [2744] = 2570, - [2745] = 2692, - [2746] = 2584, - [2747] = 2571, - [2748] = 2561, - [2749] = 2543, - [2750] = 2550, - [2751] = 2566, - [2752] = 2687, - [2753] = 2662, - [2754] = 2584, - [2755] = 2688, - [2756] = 2570, - [2757] = 2136, + [2735] = 2735, + [2736] = 2727, + [2737] = 2698, + [2738] = 2634, + [2739] = 2697, + [2740] = 2724, + [2741] = 2725, + [2742] = 2742, + [2743] = 2743, + [2744] = 2744, + [2745] = 2745, + [2746] = 2746, + [2747] = 2747, + [2748] = 1278, + [2749] = 1609, + [2750] = 2750, + [2751] = 2751, + [2752] = 2746, + [2753] = 2745, + [2754] = 2754, + [2755] = 1607, + [2756] = 2751, + [2757] = 2757, [2758] = 2758, [2759] = 2759, - [2760] = 2760, + [2760] = 1530, [2761] = 2761, [2762] = 2762, [2763] = 2763, @@ -6657,887 +6989,1385 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2765] = 2765, [2766] = 2766, [2767] = 2767, - [2768] = 2768, + [2768] = 2742, [2769] = 2769, - [2770] = 2107, + [2770] = 2747, [2771] = 2771, - [2772] = 2113, + [2772] = 1411, [2773] = 2773, [2774] = 2774, [2775] = 2775, [2776] = 2776, - [2777] = 2777, - [2778] = 2778, - [2779] = 2779, + [2777] = 1281, + [2778] = 2759, + [2779] = 1413, [2780] = 2780, - [2781] = 2781, + [2781] = 1414, [2782] = 2782, [2783] = 2783, - [2784] = 2784, + [2784] = 2775, [2785] = 2785, - [2786] = 2140, + [2786] = 2786, [2787] = 2787, [2788] = 2788, - [2789] = 2789, - [2790] = 2790, - [2791] = 2145, - [2792] = 2099, + [2789] = 2758, + [2790] = 2743, + [2791] = 2791, + [2792] = 2792, [2793] = 2793, - [2794] = 2102, + [2794] = 2764, [2795] = 2795, - [2796] = 2796, - [2797] = 2771, + [2796] = 1292, + [2797] = 2797, [2798] = 2798, [2799] = 2799, [2800] = 2800, - [2801] = 2801, - [2802] = 2802, + [2801] = 2745, + [2802] = 2773, [2803] = 2803, [2804] = 2804, - [2805] = 2805, - [2806] = 2780, + [2805] = 2782, + [2806] = 2806, [2807] = 2807, [2808] = 2808, - [2809] = 2809, - [2810] = 2810, - [2811] = 2793, + [2809] = 2795, + [2810] = 2792, + [2811] = 2763, [2812] = 2812, [2813] = 2813, - [2814] = 177, + [2814] = 2814, [2815] = 2815, - [2816] = 2816, + [2816] = 2744, [2817] = 2817, - [2818] = 2818, + [2818] = 2751, [2819] = 2819, [2820] = 2820, [2821] = 2821, [2822] = 2822, [2823] = 2823, [2824] = 2824, - [2825] = 2825, - [2826] = 2795, - [2827] = 2827, - [2828] = 2828, - [2829] = 2829, + [2825] = 2775, + [2826] = 2826, + [2827] = 2771, + [2828] = 2798, + [2829] = 2803, [2830] = 2830, [2831] = 2831, - [2832] = 2832, - [2833] = 2833, - [2834] = 2808, - [2835] = 2835, - [2836] = 2836, - [2837] = 2796, + [2832] = 2787, + [2833] = 2747, + [2834] = 2762, + [2835] = 2780, + [2836] = 2744, + [2837] = 2761, [2838] = 2838, [2839] = 2839, - [2840] = 2840, + [2840] = 2799, [2841] = 2841, - [2842] = 2842, - [2843] = 2843, + [2842] = 2754, + [2843] = 2815, [2844] = 2844, - [2845] = 2845, - [2846] = 2799, - [2847] = 2847, + [2845] = 1515, + [2846] = 2846, + [2847] = 2744, [2848] = 2848, - [2849] = 2849, - [2850] = 2798, - [2851] = 2851, - [2852] = 2144, - [2853] = 2851, - [2854] = 2854, - [2855] = 2100, - [2856] = 2856, - [2857] = 2776, - [2858] = 2858, + [2849] = 2766, + [2850] = 2850, + [2851] = 2821, + [2852] = 2773, + [2853] = 2766, + [2854] = 2750, + [2855] = 1162, + [2856] = 2830, + [2857] = 2848, + [2858] = 2841, [2859] = 2859, [2860] = 2860, - [2861] = 2847, + [2861] = 2861, [2862] = 2862, [2863] = 2863, - [2864] = 2121, - [2865] = 2842, + [2864] = 2864, + [2865] = 2865, [2866] = 2866, [2867] = 2867, - [2868] = 2773, + [2868] = 2868, [2869] = 2869, - [2870] = 2860, + [2870] = 2870, [2871] = 2871, - [2872] = 2143, - [2873] = 2128, - [2874] = 2762, - [2875] = 2766, - [2876] = 2120, - [2877] = 2106, - [2878] = 2858, - [2879] = 2867, + [2872] = 2871, + [2873] = 2873, + [2874] = 2874, + [2875] = 2875, + [2876] = 2876, + [2877] = 2877, + [2878] = 2878, + [2879] = 2879, [2880] = 2880, [2881] = 2881, - [2882] = 2129, - [2883] = 2883, - [2884] = 2137, - [2885] = 2115, - [2886] = 2142, + [2882] = 2882, + [2883] = 2875, + [2884] = 2884, + [2885] = 2885, + [2886] = 2886, [2887] = 2887, - [2888] = 2810, - [2889] = 2822, - [2890] = 2833, + [2888] = 2888, + [2889] = 2889, + [2890] = 2890, [2891] = 2891, [2892] = 2892, [2893] = 2893, [2894] = 2894, [2895] = 2895, - [2896] = 2896, - [2897] = 2869, + [2896] = 2888, + [2897] = 2897, [2898] = 2898, [2899] = 2899, - [2900] = 2784, - [2901] = 2777, + [2900] = 2900, + [2901] = 2893, [2902] = 2902, - [2903] = 2789, - [2904] = 2904, - [2905] = 2758, - [2906] = 2779, - [2907] = 2907, - [2908] = 2844, + [2903] = 2887, + [2904] = 2886, + [2905] = 2892, + [2906] = 2906, + [2907] = 2861, + [2908] = 2892, [2909] = 2909, - [2910] = 2910, + [2910] = 2906, [2911] = 2911, - [2912] = 2904, + [2912] = 2885, [2913] = 2913, - [2914] = 2914, - [2915] = 2131, - [2916] = 2916, - [2917] = 2813, - [2918] = 397, - [2919] = 2098, - [2920] = 2779, - [2921] = 2899, - [2922] = 2782, + [2914] = 2884, + [2915] = 2915, + [2916] = 2881, + [2917] = 2879, + [2918] = 2918, + [2919] = 2919, + [2920] = 2876, + [2921] = 2921, + [2922] = 2922, [2923] = 2923, - [2924] = 2854, - [2925] = 2823, - [2926] = 2824, - [2927] = 2835, - [2928] = 2836, - [2929] = 2929, - [2930] = 2930, - [2931] = 2863, - [2932] = 2869, + [2924] = 2875, + [2925] = 2925, + [2926] = 2871, + [2927] = 2927, + [2928] = 2928, + [2929] = 2865, + [2930] = 2867, + [2931] = 2892, + [2932] = 2893, [2933] = 2933, - [2934] = 2801, - [2935] = 2134, - [2936] = 2119, - [2937] = 2937, - [2938] = 2789, - [2939] = 2914, - [2940] = 2892, + [2934] = 2934, + [2935] = 2887, + [2936] = 2881, + [2937] = 2879, + [2938] = 2876, + [2939] = 2875, + [2940] = 2940, [2941] = 2941, - [2942] = 2122, - [2943] = 2775, + [2942] = 2892, + [2943] = 2943, [2944] = 2944, [2945] = 2945, - [2946] = 2914, - [2947] = 2843, - [2948] = 2893, - [2949] = 2802, - [2950] = 2950, - [2951] = 2880, - [2952] = 2789, - [2953] = 2953, - [2954] = 2954, - [2955] = 2894, - [2956] = 2774, - [2957] = 2895, + [2946] = 2881, + [2947] = 2876, + [2948] = 2948, + [2949] = 2949, + [2950] = 2875, + [2951] = 2951, + [2952] = 2952, + [2953] = 2343, + [2954] = 2927, + [2955] = 2955, + [2956] = 2956, + [2957] = 2957, [2958] = 2958, - [2959] = 2789, - [2960] = 2960, - [2961] = 2821, - [2962] = 2962, - [2963] = 2896, - [2964] = 2964, - [2965] = 2760, - [2966] = 2911, - [2967] = 2967, + [2959] = 2959, + [2960] = 2876, + [2961] = 2961, + [2962] = 2875, + [2963] = 2963, + [2964] = 2876, + [2965] = 2965, + [2966] = 2966, + [2967] = 2860, [2968] = 2968, - [2969] = 2787, - [2970] = 2845, - [2971] = 2803, - [2972] = 2126, - [2973] = 2823, - [2974] = 2774, - [2975] = 2104, - [2976] = 2976, - [2977] = 2958, - [2978] = 2114, - [2979] = 2979, - [2980] = 2980, - [2981] = 2976, - [2982] = 2790, - [2983] = 2824, - [2984] = 2108, - [2985] = 2147, - [2986] = 2135, - [2987] = 2825, - [2988] = 2105, - [2989] = 2989, - [2990] = 2990, - [2991] = 2991, + [2969] = 2875, + [2970] = 2970, + [2971] = 2971, + [2972] = 2876, + [2973] = 2859, + [2974] = 2875, + [2975] = 2876, + [2976] = 2875, + [2977] = 2861, + [2978] = 2978, + [2979] = 2906, + [2980] = 2892, + [2981] = 2876, + [2982] = 2982, + [2983] = 2876, + [2984] = 2875, + [2985] = 2971, + [2986] = 2893, + [2987] = 2338, + [2988] = 2899, + [2989] = 2880, + [2990] = 2862, + [2991] = 2870, [2992] = 2992, - [2993] = 2827, - [2994] = 2994, - [2995] = 2828, - [2996] = 2996, - [2997] = 2997, - [2998] = 2830, - [2999] = 2782, - [3000] = 3000, - [3001] = 3001, + [2993] = 2330, + [2994] = 2906, + [2995] = 2995, + [2996] = 2902, + [2997] = 2911, + [2998] = 2995, + [2999] = 2890, + [3000] = 2978, + [3001] = 2982, [3002] = 3002, - [3003] = 3003, + [3003] = 2864, [3004] = 3004, - [3005] = 2101, - [3006] = 2124, + [3005] = 2875, + [3006] = 2868, [3007] = 3007, - [3008] = 2103, - [3009] = 2835, - [3010] = 2960, - [3011] = 2116, - [3012] = 2836, - [3013] = 3013, - [3014] = 3014, - [3015] = 3015, - [3016] = 3016, + [3008] = 2869, + [3009] = 2894, + [3010] = 3010, + [3011] = 2876, + [3012] = 3012, + [3013] = 2874, + [3014] = 2888, + [3015] = 2966, + [3016] = 2887, [3017] = 3017, - [3018] = 3018, - [3019] = 2866, - [3020] = 3020, - [3021] = 2096, - [3022] = 2848, + [3018] = 2886, + [3019] = 2882, + [3020] = 2965, + [3021] = 2885, + [3022] = 3022, [3023] = 3023, - [3024] = 2881, - [3025] = 2871, - [3026] = 2904, - [3027] = 2849, - [3028] = 3028, - [3029] = 3029, - [3030] = 2838, - [3031] = 2839, - [3032] = 2914, - [3033] = 2863, + [3024] = 2867, + [3025] = 2900, + [3026] = 3026, + [3027] = 156, + [3028] = 3017, + [3029] = 2873, + [3030] = 3030, + [3031] = 2982, + [3032] = 3032, + [3033] = 2884, [3034] = 3034, - [3035] = 3035, - [3036] = 2805, - [3037] = 3037, - [3038] = 3038, - [3039] = 3039, - [3040] = 2953, - [3041] = 2991, - [3042] = 2937, - [3043] = 3043, + [3035] = 2881, + [3036] = 3036, + [3037] = 2879, + [3038] = 2878, + [3039] = 2329, + [3040] = 2865, + [3041] = 2344, + [3042] = 2357, + [3043] = 2358, [3044] = 3044, - [3045] = 2761, - [3046] = 2967, - [3047] = 3047, - [3048] = 2841, - [3049] = 2891, - [3050] = 2764, - [3051] = 3051, - [3052] = 2759, - [3053] = 2831, - [3054] = 2898, - [3055] = 3016, - [3056] = 3056, - [3057] = 3057, + [3045] = 3045, + [3046] = 2893, + [3047] = 2877, + [3048] = 2899, + [3049] = 3049, + [3050] = 2861, + [3051] = 3023, + [3052] = 3052, + [3053] = 2945, + [3054] = 2863, + [3055] = 3055, + [3056] = 3017, + [3057] = 2877, [3058] = 3058, - [3059] = 3059, - [3060] = 3060, - [3061] = 3061, - [3062] = 3062, - [3063] = 3063, - [3064] = 3064, - [3065] = 3065, - [3066] = 3066, + [3059] = 3017, + [3060] = 3032, + [3061] = 2982, + [3062] = 3022, + [3063] = 2982, + [3064] = 2867, + [3065] = 2879, + [3066] = 2876, [3067] = 3067, - [3068] = 3068, + [3068] = 3034, [3069] = 3069, - [3070] = 3070, - [3071] = 3071, - [3072] = 3072, - [3073] = 3073, + [3070] = 3052, + [3071] = 2875, + [3072] = 2342, + [3073] = 3004, [3074] = 3074, - [3075] = 3075, - [3076] = 3076, + [3075] = 3074, + [3076] = 2895, [3077] = 3077, - [3078] = 3078, + [3078] = 2878, [3079] = 3079, [3080] = 3080, - [3081] = 3079, + [3081] = 2881, [3082] = 3082, [3083] = 3082, - [3084] = 3066, + [3084] = 2884, [3085] = 3085, - [3086] = 3067, - [3087] = 3073, - [3088] = 3088, - [3089] = 3089, - [3090] = 3066, - [3091] = 3091, - [3092] = 3092, + [3086] = 3086, + [3087] = 2978, + [3088] = 3004, + [3089] = 3055, + [3090] = 2944, + [3091] = 3077, + [3092] = 2943, [3093] = 3093, [3094] = 3094, - [3095] = 3095, - [3096] = 3096, - [3097] = 3097, - [3098] = 3098, - [3099] = 3099, - [3100] = 3100, - [3101] = 3064, - [3102] = 3102, - [3103] = 3103, - [3104] = 3088, - [3105] = 3105, - [3106] = 3106, - [3107] = 3107, - [3108] = 3108, - [3109] = 3066, - [3110] = 3110, - [3111] = 3066, - [3112] = 3069, - [3113] = 3113, - [3114] = 3114, - [3115] = 3115, - [3116] = 3116, - [3117] = 1437, - [3118] = 3118, + [3095] = 2955, + [3096] = 159, + [3097] = 2898, + [3098] = 3002, + [3099] = 2951, + [3100] = 2897, + [3101] = 2864, + [3102] = 3010, + [3103] = 2866, + [3104] = 2902, + [3105] = 2870, + [3106] = 2913, + [3107] = 2885, + [3108] = 2948, + [3109] = 2949, + [3110] = 2941, + [3111] = 3111, + [3112] = 2968, + [3113] = 2961, + [3114] = 2886, + [3115] = 3069, + [3116] = 2934, + [3117] = 3007, + [3118] = 2887, [3119] = 3119, - [3120] = 3120, + [3120] = 2888, [3121] = 3121, - [3122] = 3088, - [3123] = 3123, - [3124] = 3124, - [3125] = 3066, - [3126] = 3126, - [3127] = 3070, - [3128] = 3093, - [3129] = 1463, - [3130] = 3070, - [3131] = 3108, - [3132] = 3075, - [3133] = 3076, + [3122] = 2871, + [3123] = 2889, + [3124] = 3058, + [3125] = 3085, + [3126] = 3079, + [3127] = 3086, + [3128] = 3080, + [3129] = 2894, + [3130] = 3130, + [3131] = 3131, + [3132] = 2383, + [3133] = 2384, [3134] = 3134, [3135] = 3135, - [3136] = 3082, - [3137] = 3137, - [3138] = 3067, - [3139] = 3066, + [3136] = 3136, + [3137] = 2395, + [3138] = 2422, + [3139] = 3139, [3140] = 3140, - [3141] = 3092, - [3142] = 3093, - [3143] = 3080, - [3144] = 3144, - [3145] = 3145, + [3141] = 2374, + [3142] = 2413, + [3143] = 3143, + [3144] = 2412, + [3145] = 2373, [3146] = 3146, - [3147] = 3062, - [3148] = 3068, + [3147] = 3147, + [3148] = 3148, [3149] = 3149, - [3150] = 3150, - [3151] = 3070, + [3150] = 2375, + [3151] = 2385, [3152] = 3152, - [3153] = 3070, + [3153] = 2399, [3154] = 3154, - [3155] = 3076, - [3156] = 3082, - [3157] = 3152, + [3155] = 2386, + [3156] = 3156, + [3157] = 3157, [3158] = 3158, - [3159] = 3066, + [3159] = 2401, [3160] = 3160, - [3161] = 3092, - [3162] = 3093, - [3163] = 3119, - [3164] = 3063, + [3161] = 2403, + [3162] = 3162, + [3163] = 2381, + [3164] = 3164, [3165] = 3165, [3166] = 3166, - [3167] = 3167, - [3168] = 3102, + [3167] = 2376, + [3168] = 3168, [3169] = 3169, - [3170] = 3076, - [3171] = 3171, - [3172] = 3066, - [3173] = 3092, - [3174] = 3093, - [3175] = 3106, + [3170] = 3170, + [3171] = 2387, + [3172] = 3172, + [3173] = 2398, + [3174] = 2421, + [3175] = 3175, [3176] = 3176, - [3177] = 3177, - [3178] = 3178, - [3179] = 3089, - [3180] = 3091, - [3181] = 3074, - [3182] = 3076, - [3183] = 3066, - [3184] = 3075, - [3185] = 3092, - [3186] = 3093, - [3187] = 3187, - [3188] = 3065, + [3177] = 2405, + [3178] = 2382, + [3179] = 2420, + [3180] = 2419, + [3181] = 3157, + [3182] = 3182, + [3183] = 3183, + [3184] = 3184, + [3185] = 2377, + [3186] = 2378, + [3187] = 2417, + [3188] = 3188, [3189] = 3189, - [3190] = 3076, - [3191] = 3066, - [3192] = 3076, - [3193] = 3092, - [3194] = 3093, - [3195] = 3095, - [3196] = 3076, - [3197] = 3118, - [3198] = 3092, - [3199] = 3093, - [3200] = 3160, - [3201] = 3076, - [3202] = 3099, - [3203] = 3092, - [3204] = 3093, - [3205] = 3205, - [3206] = 3076, - [3207] = 3092, - [3208] = 3093, - [3209] = 3076, - [3210] = 3080, - [3211] = 3092, - [3212] = 3093, - [3213] = 3134, + [3190] = 3190, + [3191] = 3191, + [3192] = 2414, + [3193] = 3193, + [3194] = 2408, + [3195] = 2411, + [3196] = 3196, + [3197] = 3197, + [3198] = 3198, + [3199] = 2389, + [3200] = 3200, + [3201] = 3201, + [3202] = 3202, + [3203] = 2390, + [3204] = 2407, + [3205] = 2409, + [3206] = 3206, + [3207] = 3207, + [3208] = 184, + [3209] = 3209, + [3210] = 3210, + [3211] = 3211, + [3212] = 3212, + [3213] = 3213, [3214] = 3214, - [3215] = 3092, - [3216] = 3060, - [3217] = 3176, + [3215] = 3215, + [3216] = 3172, + [3217] = 3217, [3218] = 3218, - [3219] = 3219, + [3219] = 3152, [3220] = 3220, - [3221] = 3221, - [3222] = 3160, - [3223] = 3097, - [3224] = 3121, - [3225] = 3205, - [3226] = 2883, + [3221] = 3149, + [3222] = 3222, + [3223] = 3223, + [3224] = 3224, + [3225] = 3225, + [3226] = 3226, [3227] = 3227, - [3228] = 2887, - [3229] = 3229, + [3228] = 3228, + [3229] = 3139, [3230] = 3230, [3231] = 3231, - [3232] = 3178, + [3232] = 3201, [3233] = 3233, - [3234] = 3124, + [3234] = 3234, [3235] = 3235, - [3236] = 3082, - [3237] = 3074, - [3238] = 3059, + [3236] = 3236, + [3237] = 3237, + [3238] = 3238, [3239] = 3239, [3240] = 3240, [3241] = 3241, [3242] = 3242, - [3243] = 3145, - [3244] = 3100, + [3243] = 3243, + [3244] = 3244, [3245] = 3245, - [3246] = 3246, - [3247] = 3219, - [3248] = 3248, - [3249] = 3085, - [3250] = 3241, - [3251] = 3067, + [3246] = 3206, + [3247] = 3247, + [3248] = 3160, + [3249] = 3249, + [3250] = 2380, + [3251] = 3251, [3252] = 3252, - [3253] = 3073, + [3253] = 3237, [3254] = 3254, - [3255] = 3255, + [3255] = 3140, [3256] = 3256, - [3257] = 3231, + [3257] = 3257, [3258] = 3258, - [3259] = 3252, - [3260] = 1380, - [3261] = 3220, - [3262] = 1381, + [3259] = 3259, + [3260] = 3260, + [3261] = 3261, + [3262] = 3262, [3263] = 3263, - [3264] = 3144, - [3265] = 3146, - [3266] = 3150, - [3267] = 3154, - [3268] = 3227, + [3264] = 3264, + [3265] = 3202, + [3266] = 3266, + [3267] = 3267, + [3268] = 3268, [3269] = 3269, - [3270] = 3270, + [3270] = 3259, [3271] = 3271, - [3272] = 3076, - [3273] = 3273, - [3274] = 3069, - [3275] = 3273, - [3276] = 3169, - [3277] = 3277, - [3278] = 3240, - [3279] = 3075, - [3280] = 3066, - [3281] = 3229, + [3272] = 3200, + [3273] = 3198, + [3274] = 3274, + [3275] = 3275, + [3276] = 3276, + [3277] = 3269, + [3278] = 3278, + [3279] = 3279, + [3280] = 3280, + [3281] = 3175, [3282] = 3282, - [3283] = 3092, + [3283] = 3283, [3284] = 3284, - [3285] = 3093, + [3285] = 3285, [3286] = 3286, - [3287] = 3221, - [3288] = 3121, - [3289] = 3284, + [3287] = 3287, + [3288] = 3288, + [3289] = 3241, [3290] = 3290, - [3291] = 3124, - [3292] = 3077, + [3291] = 3238, + [3292] = 3263, [3293] = 3293, - [3294] = 3290, - [3295] = 3064, + [3294] = 3197, + [3295] = 3143, [3296] = 3296, - [3297] = 3102, - [3298] = 3068, - [3299] = 3085, - [3300] = 3245, - [3301] = 3221, - [3302] = 3098, - [3303] = 3241, - [3304] = 3221, + [3297] = 3183, + [3298] = 3182, + [3299] = 3299, + [3300] = 3300, + [3301] = 3217, + [3302] = 3302, + [3303] = 3165, + [3304] = 3304, [3305] = 3305, - [3306] = 3286, - [3307] = 3123, - [3308] = 3120, - [3309] = 3255, + [3306] = 3306, + [3307] = 3307, + [3308] = 3308, + [3309] = 3309, [3310] = 3310, - [3311] = 3311, - [3312] = 3305, - [3313] = 3239, - [3314] = 3277, - [3315] = 3079, - [3316] = 3107, - [3317] = 3105, - [3318] = 3218, - [3319] = 3126, - [3320] = 3320, - [3321] = 3263, - [3322] = 3061, - [3323] = 3235, - [3324] = 3320, - [3325] = 1407, - [3326] = 3114, - [3327] = 3071, - [3328] = 3110, - [3329] = 3286, - [3330] = 3120, - [3331] = 3114, - [3332] = 3120, - [3333] = 3114, + [3311] = 3249, + [3312] = 3312, + [3313] = 3313, + [3314] = 3314, + [3315] = 3315, + [3316] = 3316, + [3317] = 3169, + [3318] = 3318, + [3319] = 3228, + [3320] = 3189, + [3321] = 3321, + [3322] = 3322, + [3323] = 3323, + [3324] = 3191, + [3325] = 3190, + [3326] = 3326, + [3327] = 3327, + [3328] = 3328, + [3329] = 3329, + [3330] = 3330, + [3331] = 3331, + [3332] = 3176, + [3333] = 3333, [3334] = 3334, - [3335] = 3113, - [3336] = 3189, - [3337] = 3221, - [3338] = 3057, - [3339] = 3242, - [3340] = 3160, - [3341] = 3341, + [3335] = 3335, + [3336] = 3336, + [3337] = 3166, + [3338] = 3338, + [3339] = 3339, + [3340] = 3340, + [3341] = 3256, [3342] = 3342, [3343] = 3343, - [3344] = 3344, + [3344] = 3188, [3345] = 3345, - [3346] = 3346, + [3346] = 3184, [3347] = 3347, - [3348] = 3348, + [3348] = 2388, [3349] = 3349, [3350] = 3350, [3351] = 3351, [3352] = 3352, [3353] = 3353, - [3354] = 3354, + [3354] = 3329, [3355] = 3355, [3356] = 3356, [3357] = 3357, [3358] = 3358, [3359] = 3359, [3360] = 3360, - [3361] = 3361, - [3362] = 3362, - [3363] = 3344, + [3361] = 3260, + [3362] = 3217, + [3363] = 3363, [3364] = 3364, [3365] = 3365, - [3366] = 3366, - [3367] = 3341, - [3368] = 3368, - [3369] = 3369, + [3366] = 3188, + [3367] = 3146, + [3368] = 3352, + [3369] = 3345, [3370] = 3360, [3371] = 3371, - [3372] = 3372, + [3372] = 3360, [3373] = 3373, [3374] = 3374, - [3375] = 3375, - [3376] = 3376, + [3375] = 3130, + [3376] = 3148, [3377] = 3377, - [3378] = 3349, - [3379] = 3379, - [3380] = 3380, - [3381] = 3381, - [3382] = 3362, - [3383] = 3364, - [3384] = 3377, - [3385] = 3385, - [3386] = 3341, - [3387] = 3387, - [3388] = 174, - [3389] = 3389, - [3390] = 3390, - [3391] = 3391, - [3392] = 3356, - [3393] = 3393, - [3394] = 3348, - [3395] = 3395, - [3396] = 3396, - [3397] = 3397, - [3398] = 3398, - [3399] = 3399, - [3400] = 3400, - [3401] = 3365, - [3402] = 3372, + [3378] = 3296, + [3379] = 3293, + [3380] = 3345, + [3381] = 3158, + [3382] = 3382, + [3383] = 3335, + [3384] = 3280, + [3385] = 3279, + [3386] = 3334, + [3387] = 3333, + [3388] = 3135, + [3389] = 3162, + [3390] = 3188, + [3391] = 3339, + [3392] = 3327, + [3393] = 3326, + [3394] = 3175, + [3395] = 3170, + [3396] = 3336, + [3397] = 3323, + [3398] = 3170, + [3399] = 3168, + [3400] = 3306, + [3401] = 3318, + [3402] = 3165, [3403] = 3403, [3404] = 3404, - [3405] = 3359, - [3406] = 3342, - [3407] = 3407, - [3408] = 3408, - [3409] = 3409, - [3410] = 3410, - [3411] = 3346, - [3412] = 3412, - [3413] = 3371, - [3414] = 3414, - [3415] = 3415, - [3416] = 3374, - [3417] = 3417, - [3418] = 3418, + [3405] = 3405, + [3406] = 3217, + [3407] = 3136, + [3408] = 3238, + [3409] = 3328, + [3410] = 3147, + [3411] = 3322, + [3412] = 3321, + [3413] = 3413, + [3414] = 3313, + [3415] = 3188, + [3416] = 3310, + [3417] = 3309, + [3418] = 3308, [3419] = 3419, - [3420] = 3350, + [3420] = 3420, [3421] = 3421, [3422] = 3422, - [3423] = 3379, - [3424] = 3424, - [3425] = 3360, - [3426] = 3426, - [3427] = 3427, - [3428] = 3428, - [3429] = 3381, - [3430] = 3430, - [3431] = 3431, + [3423] = 3357, + [3424] = 3287, + [3425] = 3285, + [3426] = 3134, + [3427] = 3224, + [3428] = 3278, + [3429] = 3288, + [3430] = 3223, + [3431] = 3214, [3432] = 3432, - [3433] = 3433, + [3433] = 3222, [3434] = 3434, [3435] = 3435, - [3436] = 3436, - [3437] = 3437, - [3438] = 3438, - [3439] = 3439, + [3436] = 3293, + [3437] = 3213, + [3438] = 3299, + [3439] = 3164, [3440] = 3440, - [3441] = 3422, - [3442] = 3442, - [3443] = 3397, - [3444] = 3444, + [3441] = 3211, + [3442] = 3230, + [3443] = 3266, + [3444] = 3264, [3445] = 3445, - [3446] = 3410, - [3447] = 3437, - [3448] = 3393, - [3449] = 3393, - [3450] = 3434, - [3451] = 3451, - [3452] = 3440, - [3453] = 3360, - [3454] = 3454, - [3455] = 3439, - [3456] = 3428, + [3446] = 3154, + [3447] = 402, + [3448] = 3156, + [3449] = 3275, + [3450] = 3254, + [3451] = 3304, + [3452] = 3300, + [3453] = 3453, + [3454] = 3251, + [3455] = 3252, + [3456] = 3456, [3457] = 3457, - [3458] = 3458, - [3459] = 3459, - [3460] = 3391, - [3461] = 3461, - [3462] = 3399, - [3463] = 3463, - [3464] = 3464, - [3465] = 3389, - [3466] = 3342, - [3467] = 3467, + [3458] = 3279, + [3459] = 3247, + [3460] = 3227, + [3461] = 3226, + [3462] = 3280, + [3463] = 3282, + [3464] = 3296, + [3465] = 3465, + [3466] = 3284, + [3467] = 3286, [3468] = 3468, - [3469] = 3428, + [3469] = 3469, [3470] = 3470, - [3471] = 3426, + [3471] = 3471, [3472] = 3472, - [3473] = 3430, - [3474] = 3428, + [3473] = 3473, + [3474] = 3474, [3475] = 3475, [3476] = 3476, - [3477] = 3414, + [3477] = 3477, [3478] = 3478, [3479] = 3479, [3480] = 3480, - [3481] = 3343, + [3481] = 3481, [3482] = 3482, - [3483] = 3385, - [3484] = 172, - [3485] = 3464, + [3483] = 3483, + [3484] = 3484, + [3485] = 3485, [3486] = 3486, [3487] = 3487, - [3488] = 3368, - [3489] = 3489, + [3488] = 3488, + [3489] = 3483, [3490] = 3490, - [3491] = 3491, - [3492] = 3442, + [3491] = 3482, + [3492] = 3492, [3493] = 3493, - [3494] = 3351, - [3495] = 3353, - [3496] = 3496, + [3494] = 3494, + [3495] = 3495, + [3496] = 3494, [3497] = 3497, [3498] = 3498, - [3499] = 3361, + [3499] = 3495, [3500] = 3500, [3501] = 3501, [3502] = 3502, [3503] = 3503, - [3504] = 3380, - [3505] = 3369, - [3506] = 3342, - [3507] = 3500, - [3508] = 3379, + [3504] = 3504, + [3505] = 3505, + [3506] = 3506, + [3507] = 3507, + [3508] = 3508, [3509] = 3509, - [3510] = 3347, - [3511] = 3397, - [3512] = 3493, - [3513] = 3399, - [3514] = 3400, - [3515] = 3403, - [3516] = 3372, - [3517] = 3353, + [3510] = 3510, + [3511] = 3511, + [3512] = 3498, + [3513] = 3479, + [3514] = 3514, + [3515] = 3515, + [3516] = 1640, + [3517] = 3517, [3518] = 3518, - [3519] = 3397, - [3520] = 3400, + [3519] = 3519, + [3520] = 3517, [3521] = 3521, - [3522] = 3522, + [3522] = 3494, [3523] = 3523, - [3524] = 3461, - [3525] = 3490, - [3526] = 3428, - [3527] = 3358, - [3528] = 3417, - [3529] = 3353, - [3530] = 3374, - [3531] = 3451, - [3532] = 3361, + [3524] = 3524, + [3525] = 3524, + [3526] = 3526, + [3527] = 3527, + [3528] = 3528, + [3529] = 3468, + [3530] = 3505, + [3531] = 3531, + [3532] = 3532, [3533] = 3533, - [3534] = 3374, - [3535] = 3369, + [3534] = 3534, + [3535] = 3535, [3536] = 3536, - [3537] = 3351, - [3538] = 3399, - [3539] = 3372, + [3537] = 3537, + [3538] = 3538, + [3539] = 3539, [3540] = 3540, - [3541] = 3360, - [3542] = 3408, - [3543] = 3490, - [3544] = 3361, + [3541] = 3541, + [3542] = 3542, + [3543] = 3543, + [3544] = 3495, [3545] = 3545, - [3546] = 3369, - [3547] = 3547, - [3548] = 3372, - [3549] = 3490, - [3550] = 3361, - [3551] = 3369, - [3552] = 3372, - [3553] = 3361, - [3554] = 3369, - [3555] = 3372, - [3556] = 3361, - [3557] = 3361, - [3558] = 3361, - [3559] = 3361, - [3560] = 3361, - [3561] = 3409, - [3562] = 3562, - [3563] = 3490, + [3546] = 3484, + [3547] = 3482, + [3548] = 3548, + [3549] = 3549, + [3550] = 3550, + [3551] = 3551, + [3552] = 3552, + [3553] = 3514, + [3554] = 3554, + [3555] = 3555, + [3556] = 3556, + [3557] = 3479, + [3558] = 3558, + [3559] = 3509, + [3560] = 3560, + [3561] = 3561, + [3562] = 3507, + [3563] = 3469, [3564] = 3564, [3565] = 3565, - [3566] = 3463, - [3567] = 3522, + [3566] = 3551, + [3567] = 3567, [3568] = 3568, - [3569] = 3355, - [3570] = 3373, - [3571] = 3509, - [3572] = 3354, - [3573] = 3345, + [3569] = 3569, + [3570] = 3570, + [3571] = 3571, + [3572] = 3572, + [3573] = 3573, [3574] = 3574, - [3575] = 3398, - [3576] = 3498, - [3577] = 3565, - [3578] = 3418, - [3579] = 3533, - [3580] = 3376, + [3575] = 3575, + [3576] = 3576, + [3577] = 3527, + [3578] = 3528, + [3579] = 3579, + [3580] = 3580, [3581] = 3581, - [3582] = 3489, - [3583] = 3497, - [3584] = 3501, - [3585] = 3424, - [3586] = 3418, + [3582] = 3517, + [3583] = 3519, + [3584] = 3584, + [3585] = 3585, + [3586] = 3468, [3587] = 3587, - [3588] = 3432, - [3589] = 3476, - [3590] = 3431, - [3591] = 3502, - [3592] = 3445, - [3593] = 3428, - [3594] = 3439, - [3595] = 3357, - [3596] = 3596, - [3597] = 3597, - [3598] = 3598, - [3599] = 3361, + [3588] = 3588, + [3589] = 3551, + [3590] = 3509, + [3591] = 3551, + [3592] = 3537, + [3593] = 3536, + [3594] = 3594, + [3595] = 3595, + [3596] = 3531, + [3597] = 3533, + [3598] = 3572, + [3599] = 3599, [3600] = 3600, - [3601] = 3568, - [3602] = 3602, - [3603] = 3472, - [3604] = 3472, - [3605] = 3602, - [3606] = 3598, + [3601] = 3535, + [3602] = 3571, + [3603] = 3486, + [3604] = 3604, + [3605] = 3605, + [3606] = 3570, [3607] = 3607, - [3608] = 3565, - [3609] = 3463, - [3610] = 3568, - [3611] = 3355, + [3608] = 3587, + [3609] = 3569, + [3610] = 3610, + [3611] = 3568, [3612] = 3612, [3613] = 3613, - [3614] = 3565, - [3615] = 3355, - [3616] = 3616, - [3617] = 3472, - [3618] = 3355, - [3619] = 3355, - [3620] = 3355, - [3621] = 3412, - [3622] = 3607, - [3623] = 3438, - [3624] = 3486, - [3625] = 3366, - [3626] = 3489, - [3627] = 3409, - [3628] = 3375, - [3629] = 3564, - [3630] = 3490, - [3631] = 3415, - [3632] = 3419, - [3633] = 3454, - [3634] = 3418, - [3635] = 3348, - [3636] = 3547, - [3637] = 3467, - [3638] = 3638, - [3639] = 3436, - [3640] = 3521, - [3641] = 3369, + [3614] = 3549, + [3615] = 3495, + [3616] = 3503, + [3617] = 3527, + [3618] = 3528, + [3619] = 3619, + [3620] = 3620, + [3621] = 3504, + [3622] = 3622, + [3623] = 3500, + [3624] = 3487, + [3625] = 3474, + [3626] = 3509, + [3627] = 3594, + [3628] = 3595, + [3629] = 3506, + [3630] = 3517, + [3631] = 3613, + [3632] = 3632, + [3633] = 3490, + [3634] = 3548, + [3635] = 3635, + [3636] = 3552, + [3637] = 3507, + [3638] = 3528, + [3639] = 3580, + [3640] = 3640, + [3641] = 3469, [3642] = 3642, [3643] = 3643, [3644] = 3644, - [3645] = 3645, - [3646] = 3646, + [3645] = 3493, + [3646] = 3548, [3647] = 3647, - [3648] = 3648, + [3648] = 3492, + [3649] = 3477, + [3650] = 3555, + [3651] = 3475, + [3652] = 3509, + [3653] = 3518, + [3654] = 3561, + [3655] = 3469, + [3656] = 3521, + [3657] = 3647, + [3658] = 3488, + [3659] = 3659, + [3660] = 3644, + [3661] = 3584, + [3662] = 3580, + [3663] = 3642, + [3664] = 3664, + [3665] = 3665, + [3666] = 3468, + [3667] = 3632, + [3668] = 3526, + [3669] = 3594, + [3670] = 3561, + [3671] = 3671, + [3672] = 3531, + [3673] = 3554, + [3674] = 3542, + [3675] = 3509, + [3676] = 3676, + [3677] = 3509, + [3678] = 3517, + [3679] = 3555, + [3680] = 3511, + [3681] = 3515, + [3682] = 3534, + [3683] = 3683, + [3684] = 3684, + [3685] = 3468, + [3686] = 3686, + [3687] = 3548, + [3688] = 3535, + [3689] = 3604, + [3690] = 3532, + [3691] = 3509, + [3692] = 3692, + [3693] = 3561, + [3694] = 3469, + [3695] = 3600, + [3696] = 3599, + [3697] = 3540, + [3698] = 3556, + [3699] = 3585, + [3700] = 3659, + [3701] = 3538, + [3702] = 1723, + [3703] = 3541, + [3704] = 3704, + [3705] = 3705, + [3706] = 3706, + [3707] = 3707, + [3708] = 3471, + [3709] = 3709, + [3710] = 3710, + [3711] = 3468, + [3712] = 3218, + [3713] = 3565, + [3714] = 3509, + [3715] = 3564, + [3716] = 3561, + [3717] = 3469, + [3718] = 3718, + [3719] = 3220, + [3720] = 3480, + [3721] = 1665, + [3722] = 3579, + [3723] = 3635, + [3724] = 3724, + [3725] = 3607, + [3726] = 3550, + [3727] = 3473, + [3728] = 3539, + [3729] = 3509, + [3730] = 3576, + [3731] = 3718, + [3732] = 3468, + [3733] = 3472, + [3734] = 3509, + [3735] = 3470, + [3736] = 3561, + [3737] = 3469, + [3738] = 3494, + [3739] = 3588, + [3740] = 3561, + [3741] = 3741, + [3742] = 3575, + [3743] = 3468, + [3744] = 3509, + [3745] = 3548, + [3746] = 3561, + [3747] = 3469, + [3748] = 3508, + [3749] = 3468, + [3750] = 3704, + [3751] = 3561, + [3752] = 3469, + [3753] = 3573, + [3754] = 3468, + [3755] = 1634, + [3756] = 3561, + [3757] = 3469, + [3758] = 1635, + [3759] = 3468, + [3760] = 3665, + [3761] = 3561, + [3762] = 3469, + [3763] = 3587, + [3764] = 3468, + [3765] = 3765, + [3766] = 3561, + [3767] = 3469, + [3768] = 3545, + [3769] = 3531, + [3770] = 3640, + [3771] = 3556, + [3772] = 3543, + [3773] = 3533, + [3774] = 3774, + [3775] = 3551, + [3776] = 3555, + [3777] = 3579, + [3778] = 3778, + [3779] = 3554, + [3780] = 3643, + [3781] = 3501, + [3782] = 3571, + [3783] = 3572, + [3784] = 3784, + [3785] = 3785, + [3786] = 3786, + [3787] = 3787, + [3788] = 3788, + [3789] = 3789, + [3790] = 3790, + [3791] = 3791, + [3792] = 3792, + [3793] = 3793, + [3794] = 3794, + [3795] = 3795, + [3796] = 3796, + [3797] = 3797, + [3798] = 3798, + [3799] = 3799, + [3800] = 3800, + [3801] = 3801, + [3802] = 3802, + [3803] = 3803, + [3804] = 3804, + [3805] = 3805, + [3806] = 3806, + [3807] = 3807, + [3808] = 3808, + [3809] = 3784, + [3810] = 3810, + [3811] = 3811, + [3812] = 3812, + [3813] = 3813, + [3814] = 3814, + [3815] = 3815, + [3816] = 3816, + [3817] = 3817, + [3818] = 3818, + [3819] = 3807, + [3820] = 3820, + [3821] = 3821, + [3822] = 3822, + [3823] = 3823, + [3824] = 3824, + [3825] = 3800, + [3826] = 3826, + [3827] = 3827, + [3828] = 3828, + [3829] = 3829, + [3830] = 3830, + [3831] = 3831, + [3832] = 3832, + [3833] = 3804, + [3834] = 3793, + [3835] = 3835, + [3836] = 3799, + [3837] = 3787, + [3838] = 3838, + [3839] = 3811, + [3840] = 3840, + [3841] = 3841, + [3842] = 3842, + [3843] = 3843, + [3844] = 3844, + [3845] = 3845, + [3846] = 3846, + [3847] = 3847, + [3848] = 3848, + [3849] = 3849, + [3850] = 3850, + [3851] = 3800, + [3852] = 3841, + [3853] = 3853, + [3854] = 3824, + [3855] = 3838, + [3856] = 3856, + [3857] = 3857, + [3858] = 3858, + [3859] = 3859, + [3860] = 3860, + [3861] = 3861, + [3862] = 3862, + [3863] = 3863, + [3864] = 3864, + [3865] = 3865, + [3866] = 3866, + [3867] = 3867, + [3868] = 3868, + [3869] = 3869, + [3870] = 3870, + [3871] = 3871, + [3872] = 3872, + [3873] = 3844, + [3874] = 3874, + [3875] = 3875, + [3876] = 3876, + [3877] = 3874, + [3878] = 3878, + [3879] = 3830, + [3880] = 3818, + [3881] = 3881, + [3882] = 3817, + [3883] = 3883, + [3884] = 3816, + [3885] = 3815, + [3886] = 3858, + [3887] = 3823, + [3888] = 3888, + [3889] = 3889, + [3890] = 3890, + [3891] = 3891, + [3892] = 3892, + [3893] = 3893, + [3894] = 3814, + [3895] = 3895, + [3896] = 3896, + [3897] = 3897, + [3898] = 3784, + [3899] = 3899, + [3900] = 3813, + [3901] = 3901, + [3902] = 3857, + [3903] = 3903, + [3904] = 3904, + [3905] = 3848, + [3906] = 3906, + [3907] = 3907, + [3908] = 3895, + [3909] = 3909, + [3910] = 166, + [3911] = 3911, + [3912] = 3912, + [3913] = 3913, + [3914] = 3914, + [3915] = 3915, + [3916] = 3869, + [3917] = 3812, + [3918] = 3909, + [3919] = 3919, + [3920] = 3920, + [3921] = 3921, + [3922] = 3844, + [3923] = 3923, + [3924] = 3903, + [3925] = 3925, + [3926] = 3888, + [3927] = 3927, + [3928] = 3928, + [3929] = 3929, + [3930] = 3930, + [3931] = 3793, + [3932] = 3932, + [3933] = 3878, + [3934] = 3934, + [3935] = 3875, + [3936] = 3823, + [3937] = 3937, + [3938] = 3938, + [3939] = 3901, + [3940] = 3940, + [3941] = 3875, + [3942] = 3942, + [3943] = 3943, + [3944] = 3944, + [3945] = 3945, + [3946] = 3946, + [3947] = 3923, + [3948] = 3826, + [3949] = 3785, + [3950] = 3950, + [3951] = 3803, + [3952] = 3861, + [3953] = 3953, + [3954] = 3906, + [3955] = 3890, + [3956] = 3956, + [3957] = 3801, + [3958] = 3844, + [3959] = 3959, + [3960] = 3890, + [3961] = 3856, + [3962] = 3962, + [3963] = 3869, + [3964] = 3964, + [3965] = 3965, + [3966] = 3966, + [3967] = 3871, + [3968] = 3956, + [3969] = 3840, + [3970] = 3911, + [3971] = 3786, + [3972] = 3972, + [3973] = 3795, + [3974] = 3974, + [3975] = 3795, + [3976] = 3867, + [3977] = 3890, + [3978] = 3978, + [3979] = 3801, + [3980] = 3980, + [3981] = 3803, + [3982] = 3835, + [3983] = 3983, + [3984] = 3813, + [3985] = 3985, + [3986] = 3805, + [3987] = 3793, + [3988] = 3845, + [3989] = 3799, + [3990] = 3787, + [3991] = 192, + [3992] = 3811, + [3993] = 3862, + [3994] = 3942, + [3995] = 3863, + [3996] = 3784, + [3997] = 3859, + [3998] = 3925, + [3999] = 3999, + [4000] = 4000, + [4001] = 3800, + [4002] = 3864, + [4003] = 3871, + [4004] = 3844, + [4005] = 3786, + [4006] = 4006, + [4007] = 3843, + [4008] = 3795, + [4009] = 3891, + [4010] = 3920, + [4011] = 3803, + [4012] = 4012, + [4013] = 3808, + [4014] = 3799, + [4015] = 3811, + [4016] = 3802, + [4017] = 3865, + [4018] = 4018, + [4019] = 3842, + [4020] = 3800, + [4021] = 3795, + [4022] = 3829, + [4023] = 3803, + [4024] = 3811, + [4025] = 3800, + [4026] = 3795, + [4027] = 3803, + [4028] = 3811, + [4029] = 3795, + [4030] = 3803, + [4031] = 3811, + [4032] = 3795, + [4033] = 3795, + [4034] = 3795, + [4035] = 3795, + [4036] = 3795, + [4037] = 3966, + [4038] = 4038, + [4039] = 3860, + [4040] = 4040, + [4041] = 4041, + [4042] = 4000, + [4043] = 4043, + [4044] = 3946, + [4045] = 3944, + [4046] = 3943, + [4047] = 4047, + [4048] = 4048, + [4049] = 4049, + [4050] = 3868, + [4051] = 3919, + [4052] = 4052, + [4053] = 3974, + [4054] = 4054, + [4055] = 4041, + [4056] = 4056, + [4057] = 3861, + [4058] = 4058, + [4059] = 4059, + [4060] = 3866, + [4061] = 3999, + [4062] = 3847, + [4063] = 3786, + [4064] = 4064, + [4065] = 4065, + [4066] = 3945, + [4067] = 4067, + [4068] = 4068, + [4069] = 3869, + [4070] = 4070, + [4071] = 3823, + [4072] = 3822, + [4073] = 4073, + [4074] = 4049, + [4075] = 4075, + [4076] = 3797, + [4077] = 3808, + [4078] = 3911, + [4079] = 4079, + [4080] = 3938, + [4081] = 3790, + [4082] = 3849, + [4083] = 4083, + [4084] = 4084, + [4085] = 3844, + [4086] = 3876, + [4087] = 3937, + [4088] = 4064, + [4089] = 3796, + [4090] = 3925, + [4091] = 3872, + [4092] = 3983, + [4093] = 3974, + [4094] = 3950, + [4095] = 4075, + [4096] = 3789, + [4097] = 3940, + [4098] = 3791, + [4099] = 3913, + [4100] = 3934, + [4101] = 4101, + [4102] = 3928, + [4103] = 3810, + [4104] = 4041, + [4105] = 4000, + [4106] = 3946, + [4107] = 3944, + [4108] = 3927, + [4109] = 4109, + [4110] = 4041, + [4111] = 4000, + [4112] = 3944, + [4113] = 3915, + [4114] = 3912, + [4115] = 3944, + [4116] = 3944, + [4117] = 3944, + [4118] = 3907, + [4119] = 3792, + [4120] = 4065, + [4121] = 4052, + [4122] = 3899, + [4123] = 3921, + [4124] = 3897, + [4125] = 3930, + [4126] = 3881, + [4127] = 3788, + [4128] = 3794, + [4129] = 3846, + [4130] = 3929, + [4131] = 4073, + [4132] = 4067, + [4133] = 3978, + [4134] = 3962, + [4135] = 4006, + [4136] = 4038, + [4137] = 3798, + [4138] = 3820, + [4139] = 3925, + [4140] = 4140, + [4141] = 4141, + [4142] = 4142, + [4143] = 4143, + [4144] = 4144, + [4145] = 4145, + [4146] = 4146, }; static TSCharacterRange sym_identifier_character_set_1[] = { @@ -8249,7 +9079,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '\'', 144, '(', 75, ')', 76, - '*', 91, '+', 89, ',', 139, '.', 30, @@ -8302,6 +9131,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '-', 96, '.', 133, '/', 98, + ':', 82, ';', 73, '<', 129, '=', 122, @@ -8441,6 +9271,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '\'', 144, '(', 75, ')', 76, + '*', 91, '+', 89, ',', 139, '-', 42, @@ -10154,12 +10985,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [44] = {.lex_state = 5, .external_lex_state = 2}, [45] = {.lex_state = 3, .external_lex_state = 2}, [46] = {.lex_state = 5, .external_lex_state = 2}, - [47] = {.lex_state = 5, .external_lex_state = 2}, + [47] = {.lex_state = 3, .external_lex_state = 2}, [48] = {.lex_state = 5, .external_lex_state = 2}, [49] = {.lex_state = 5, .external_lex_state = 2}, [50] = {.lex_state = 5, .external_lex_state = 2}, [51] = {.lex_state = 5, .external_lex_state = 2}, - [52] = {.lex_state = 3, .external_lex_state = 2}, + [52] = {.lex_state = 5, .external_lex_state = 2}, [53] = {.lex_state = 3, .external_lex_state = 2}, [54] = {.lex_state = 3, .external_lex_state = 2}, [55] = {.lex_state = 3, .external_lex_state = 2}, @@ -10181,7 +11012,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [71] = {.lex_state = 2, .external_lex_state = 2}, [72] = {.lex_state = 2, .external_lex_state = 2}, [73] = {.lex_state = 2, .external_lex_state = 2}, - [74] = {.lex_state = 2, .external_lex_state = 2}, + [74] = {.lex_state = 4, .external_lex_state = 2}, [75] = {.lex_state = 2, .external_lex_state = 2}, [76] = {.lex_state = 2, .external_lex_state = 2}, [77] = {.lex_state = 2, .external_lex_state = 2}, @@ -10190,22 +11021,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [80] = {.lex_state = 2, .external_lex_state = 2}, [81] = {.lex_state = 2, .external_lex_state = 2}, [82] = {.lex_state = 2, .external_lex_state = 2}, - [83] = {.lex_state = 4, .external_lex_state = 2}, + [83] = {.lex_state = 2, .external_lex_state = 2}, [84] = {.lex_state = 4, .external_lex_state = 2}, [85] = {.lex_state = 4, .external_lex_state = 2}, [86] = {.lex_state = 4, .external_lex_state = 2}, [87] = {.lex_state = 4, .external_lex_state = 2}, - [88] = {.lex_state = 2, .external_lex_state = 2}, + [88] = {.lex_state = 4, .external_lex_state = 2}, [89] = {.lex_state = 2, .external_lex_state = 2}, - [90] = {.lex_state = 2, .external_lex_state = 2}, - [91] = {.lex_state = 2, .external_lex_state = 2}, - [92] = {.lex_state = 2, .external_lex_state = 2}, - [93] = {.lex_state = 2, .external_lex_state = 2}, - [94] = {.lex_state = 2, .external_lex_state = 2}, - [95] = {.lex_state = 2, .external_lex_state = 2}, - [96] = {.lex_state = 2, .external_lex_state = 2}, + [90] = {.lex_state = 4, .external_lex_state = 2}, + [91] = {.lex_state = 4, .external_lex_state = 2}, + [92] = {.lex_state = 4, .external_lex_state = 2}, + [93] = {.lex_state = 4, .external_lex_state = 2}, + [94] = {.lex_state = 4, .external_lex_state = 2}, + [95] = {.lex_state = 4, .external_lex_state = 2}, + [96] = {.lex_state = 4, .external_lex_state = 2}, [97] = {.lex_state = 4, .external_lex_state = 2}, - [98] = {.lex_state = 2, .external_lex_state = 2}, + [98] = {.lex_state = 4, .external_lex_state = 2}, [99] = {.lex_state = 4, .external_lex_state = 2}, [100] = {.lex_state = 4, .external_lex_state = 2}, [101] = {.lex_state = 4, .external_lex_state = 2}, @@ -10217,143 +11048,143 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [107] = {.lex_state = 4, .external_lex_state = 2}, [108] = {.lex_state = 4, .external_lex_state = 2}, [109] = {.lex_state = 4, .external_lex_state = 2}, - [110] = {.lex_state = 4, .external_lex_state = 2}, + [110] = {.lex_state = 2, .external_lex_state = 2}, [111] = {.lex_state = 4, .external_lex_state = 2}, [112] = {.lex_state = 4, .external_lex_state = 2}, [113] = {.lex_state = 4, .external_lex_state = 2}, - [114] = {.lex_state = 4, .external_lex_state = 2}, - [115] = {.lex_state = 4, .external_lex_state = 2}, + [114] = {.lex_state = 2, .external_lex_state = 2}, + [115] = {.lex_state = 2, .external_lex_state = 2}, [116] = {.lex_state = 4, .external_lex_state = 2}, [117] = {.lex_state = 4, .external_lex_state = 2}, [118] = {.lex_state = 4, .external_lex_state = 2}, - [119] = {.lex_state = 4, .external_lex_state = 2}, - [120] = {.lex_state = 4, .external_lex_state = 2}, - [121] = {.lex_state = 2, .external_lex_state = 2}, - [122] = {.lex_state = 4, .external_lex_state = 2}, - [123] = {.lex_state = 4, .external_lex_state = 2}, + [119] = {.lex_state = 2, .external_lex_state = 2}, + [120] = {.lex_state = 2, .external_lex_state = 2}, + [121] = {.lex_state = 4, .external_lex_state = 2}, + [122] = {.lex_state = 2, .external_lex_state = 2}, + [123] = {.lex_state = 2, .external_lex_state = 2}, [124] = {.lex_state = 4, .external_lex_state = 2}, - [125] = {.lex_state = 4, .external_lex_state = 2}, - [126] = {.lex_state = 4, .external_lex_state = 2}, - [127] = {.lex_state = 4, .external_lex_state = 2}, - [128] = {.lex_state = 4, .external_lex_state = 2}, - [129] = {.lex_state = 4, .external_lex_state = 2}, + [125] = {.lex_state = 2, .external_lex_state = 2}, + [126] = {.lex_state = 2, .external_lex_state = 2}, + [127] = {.lex_state = 2, .external_lex_state = 2}, + [128] = {.lex_state = 2, .external_lex_state = 2}, + [129] = {.lex_state = 2, .external_lex_state = 2}, [130] = {.lex_state = 2, .external_lex_state = 2}, - [131] = {.lex_state = 2, .external_lex_state = 2}, + [131] = {.lex_state = 4, .external_lex_state = 2}, [132] = {.lex_state = 4, .external_lex_state = 2}, - [133] = {.lex_state = 2, .external_lex_state = 2}, + [133] = {.lex_state = 4, .external_lex_state = 2}, [134] = {.lex_state = 11, .external_lex_state = 2}, [135] = {.lex_state = 11, .external_lex_state = 2}, - [136] = {.lex_state = 2, .external_lex_state = 2}, + [136] = {.lex_state = 11, .external_lex_state = 2}, [137] = {.lex_state = 2, .external_lex_state = 2}, [138] = {.lex_state = 11, .external_lex_state = 2}, [139] = {.lex_state = 11, .external_lex_state = 2}, [140] = {.lex_state = 11, .external_lex_state = 2}, [141] = {.lex_state = 11, .external_lex_state = 2}, - [142] = {.lex_state = 11, .external_lex_state = 2}, + [142] = {.lex_state = 2, .external_lex_state = 2}, [143] = {.lex_state = 2, .external_lex_state = 2}, [144] = {.lex_state = 11, .external_lex_state = 2}, [145] = {.lex_state = 11, .external_lex_state = 2}, [146] = {.lex_state = 11, .external_lex_state = 2}, - [147] = {.lex_state = 11, .external_lex_state = 2}, - [148] = {.lex_state = 11, .external_lex_state = 2}, - [149] = {.lex_state = 11, .external_lex_state = 2}, - [150] = {.lex_state = 2, .external_lex_state = 2}, - [151] = {.lex_state = 2, .external_lex_state = 2}, - [152] = {.lex_state = 2, .external_lex_state = 2}, + [147] = {.lex_state = 2, .external_lex_state = 2}, + [148] = {.lex_state = 2, .external_lex_state = 2}, + [149] = {.lex_state = 2, .external_lex_state = 2}, + [150] = {.lex_state = 4, .external_lex_state = 2}, + [151] = {.lex_state = 11, .external_lex_state = 2}, + [152] = {.lex_state = 11, .external_lex_state = 2}, [153] = {.lex_state = 11, .external_lex_state = 2}, [154] = {.lex_state = 11, .external_lex_state = 2}, - [155] = {.lex_state = 2, .external_lex_state = 2}, + [155] = {.lex_state = 11, .external_lex_state = 2}, [156] = {.lex_state = 2, .external_lex_state = 2}, - [157] = {.lex_state = 4, .external_lex_state = 2}, - [158] = {.lex_state = 11, .external_lex_state = 2}, + [157] = {.lex_state = 11, .external_lex_state = 2}, + [158] = {.lex_state = 2, .external_lex_state = 2}, [159] = {.lex_state = 2, .external_lex_state = 2}, - [160] = {.lex_state = 2, .external_lex_state = 2}, - [161] = {.lex_state = 2, .external_lex_state = 2}, + [160] = {.lex_state = 11, .external_lex_state = 2}, + [161] = {.lex_state = 11, .external_lex_state = 2}, [162] = {.lex_state = 11, .external_lex_state = 2}, - [163] = {.lex_state = 2, .external_lex_state = 2}, + [163] = {.lex_state = 11, .external_lex_state = 2}, [164] = {.lex_state = 11, .external_lex_state = 2}, [165] = {.lex_state = 11, .external_lex_state = 2}, - [166] = {.lex_state = 11, .external_lex_state = 2}, + [166] = {.lex_state = 2, .external_lex_state = 2}, [167] = {.lex_state = 11, .external_lex_state = 2}, [168] = {.lex_state = 11, .external_lex_state = 2}, [169] = {.lex_state = 11, .external_lex_state = 2}, - [170] = {.lex_state = 2, .external_lex_state = 2}, - [171] = {.lex_state = 2, .external_lex_state = 2}, + [170] = {.lex_state = 11, .external_lex_state = 2}, + [171] = {.lex_state = 11, .external_lex_state = 2}, [172] = {.lex_state = 2, .external_lex_state = 2}, - [173] = {.lex_state = 2, .external_lex_state = 2}, - [174] = {.lex_state = 2, .external_lex_state = 2}, + [173] = {.lex_state = 11, .external_lex_state = 2}, + [174] = {.lex_state = 11, .external_lex_state = 2}, [175] = {.lex_state = 2, .external_lex_state = 2}, [176] = {.lex_state = 2, .external_lex_state = 2}, - [177] = {.lex_state = 2, .external_lex_state = 2}, + [177] = {.lex_state = 4, .external_lex_state = 2}, [178] = {.lex_state = 11, .external_lex_state = 2}, - [179] = {.lex_state = 4, .external_lex_state = 2}, - [180] = {.lex_state = 2, .external_lex_state = 2}, - [181] = {.lex_state = 11, .external_lex_state = 2}, - [182] = {.lex_state = 2, .external_lex_state = 2}, + [179] = {.lex_state = 2, .external_lex_state = 2}, + [180] = {.lex_state = 11, .external_lex_state = 2}, + [181] = {.lex_state = 2, .external_lex_state = 2}, + [182] = {.lex_state = 11, .external_lex_state = 2}, [183] = {.lex_state = 11, .external_lex_state = 2}, [184] = {.lex_state = 2, .external_lex_state = 2}, [185] = {.lex_state = 2, .external_lex_state = 2}, [186] = {.lex_state = 11, .external_lex_state = 2}, [187] = {.lex_state = 11, .external_lex_state = 2}, [188] = {.lex_state = 11, .external_lex_state = 2}, - [189] = {.lex_state = 11, .external_lex_state = 2}, - [190] = {.lex_state = 11, .external_lex_state = 2}, - [191] = {.lex_state = 11, .external_lex_state = 2}, - [192] = {.lex_state = 11, .external_lex_state = 2}, - [193] = {.lex_state = 11, .external_lex_state = 2}, + [189] = {.lex_state = 2, .external_lex_state = 2}, + [190] = {.lex_state = 2, .external_lex_state = 2}, + [191] = {.lex_state = 2, .external_lex_state = 2}, + [192] = {.lex_state = 2, .external_lex_state = 2}, + [193] = {.lex_state = 2, .external_lex_state = 2}, [194] = {.lex_state = 11, .external_lex_state = 2}, - [195] = {.lex_state = 11, .external_lex_state = 2}, - [196] = {.lex_state = 11, .external_lex_state = 2}, + [195] = {.lex_state = 2, .external_lex_state = 2}, + [196] = {.lex_state = 2, .external_lex_state = 2}, [197] = {.lex_state = 2, .external_lex_state = 2}, [198] = {.lex_state = 4, .external_lex_state = 2}, - [199] = {.lex_state = 4, .external_lex_state = 2}, + [199] = {.lex_state = 11, .external_lex_state = 2}, [200] = {.lex_state = 4, .external_lex_state = 2}, [201] = {.lex_state = 11, .external_lex_state = 2}, [202] = {.lex_state = 4, .external_lex_state = 2}, [203] = {.lex_state = 4, .external_lex_state = 2}, [204] = {.lex_state = 4, .external_lex_state = 2}, - [205] = {.lex_state = 11, .external_lex_state = 2}, - [206] = {.lex_state = 4, .external_lex_state = 2}, - [207] = {.lex_state = 11, .external_lex_state = 2}, - [208] = {.lex_state = 11, .external_lex_state = 2}, - [209] = {.lex_state = 4, .external_lex_state = 2}, + [205] = {.lex_state = 4, .external_lex_state = 2}, + [206] = {.lex_state = 11, .external_lex_state = 2}, + [207] = {.lex_state = 4, .external_lex_state = 2}, + [208] = {.lex_state = 4, .external_lex_state = 2}, + [209] = {.lex_state = 11, .external_lex_state = 2}, [210] = {.lex_state = 4, .external_lex_state = 2}, [211] = {.lex_state = 11, .external_lex_state = 2}, - [212] = {.lex_state = 11, .external_lex_state = 2}, + [212] = {.lex_state = 4, .external_lex_state = 2}, [213] = {.lex_state = 4, .external_lex_state = 2}, - [214] = {.lex_state = 4, .external_lex_state = 2}, + [214] = {.lex_state = 11, .external_lex_state = 2}, [215] = {.lex_state = 11, .external_lex_state = 2}, - [216] = {.lex_state = 11, .external_lex_state = 2}, - [217] = {.lex_state = 11, .external_lex_state = 2}, + [216] = {.lex_state = 13, .external_lex_state = 2}, + [217] = {.lex_state = 13, .external_lex_state = 2}, [218] = {.lex_state = 11, .external_lex_state = 2}, - [219] = {.lex_state = 13, .external_lex_state = 2}, - [220] = {.lex_state = 13, .external_lex_state = 2}, + [219] = {.lex_state = 11, .external_lex_state = 2}, + [220] = {.lex_state = 11, .external_lex_state = 2}, [221] = {.lex_state = 11, .external_lex_state = 2}, - [222] = {.lex_state = 11, .external_lex_state = 2}, - [223] = {.lex_state = 13, .external_lex_state = 2}, + [222] = {.lex_state = 13, .external_lex_state = 2}, + [223] = {.lex_state = 11, .external_lex_state = 2}, [224] = {.lex_state = 11, .external_lex_state = 2}, [225] = {.lex_state = 13, .external_lex_state = 2}, - [226] = {.lex_state = 11, .external_lex_state = 2}, + [226] = {.lex_state = 13, .external_lex_state = 2}, [227] = {.lex_state = 13, .external_lex_state = 2}, - [228] = {.lex_state = 11, .external_lex_state = 2}, - [229] = {.lex_state = 11, .external_lex_state = 2}, - [230] = {.lex_state = 13, .external_lex_state = 2}, - [231] = {.lex_state = 13, .external_lex_state = 2}, + [228] = {.lex_state = 13, .external_lex_state = 2}, + [229] = {.lex_state = 13, .external_lex_state = 2}, + [230] = {.lex_state = 11, .external_lex_state = 2}, + [231] = {.lex_state = 11, .external_lex_state = 2}, [232] = {.lex_state = 13, .external_lex_state = 2}, [233] = {.lex_state = 13, .external_lex_state = 2}, [234] = {.lex_state = 13, .external_lex_state = 2}, [235] = {.lex_state = 13, .external_lex_state = 2}, - [236] = {.lex_state = 11, .external_lex_state = 2}, + [236] = {.lex_state = 13, .external_lex_state = 2}, [237] = {.lex_state = 11, .external_lex_state = 2}, [238] = {.lex_state = 11, .external_lex_state = 2}, - [239] = {.lex_state = 13, .external_lex_state = 2}, - [240] = {.lex_state = 11, .external_lex_state = 2}, + [239] = {.lex_state = 11, .external_lex_state = 2}, + [240] = {.lex_state = 13, .external_lex_state = 2}, [241] = {.lex_state = 11, .external_lex_state = 2}, [242] = {.lex_state = 13, .external_lex_state = 2}, - [243] = {.lex_state = 13, .external_lex_state = 2}, + [243] = {.lex_state = 11, .external_lex_state = 2}, [244] = {.lex_state = 11, .external_lex_state = 2}, [245] = {.lex_state = 11, .external_lex_state = 2}, - [246] = {.lex_state = 13, .external_lex_state = 2}, + [246] = {.lex_state = 11, .external_lex_state = 2}, [247] = {.lex_state = 11, .external_lex_state = 2}, [248] = {.lex_state = 11, .external_lex_state = 2}, [249] = {.lex_state = 11, .external_lex_state = 2}, @@ -10439,14 +11270,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [329] = {.lex_state = 11, .external_lex_state = 2}, [330] = {.lex_state = 11, .external_lex_state = 2}, [331] = {.lex_state = 11, .external_lex_state = 2}, - [332] = {.lex_state = 69, .external_lex_state = 2}, + [332] = {.lex_state = 11, .external_lex_state = 2}, [333] = {.lex_state = 11, .external_lex_state = 2}, [334] = {.lex_state = 11, .external_lex_state = 2}, [335] = {.lex_state = 11, .external_lex_state = 2}, [336] = {.lex_state = 11, .external_lex_state = 2}, [337] = {.lex_state = 11, .external_lex_state = 2}, [338] = {.lex_state = 11, .external_lex_state = 2}, - [339] = {.lex_state = 11, .external_lex_state = 2}, + [339] = {.lex_state = 69, .external_lex_state = 2}, [340] = {.lex_state = 11, .external_lex_state = 2}, [341] = {.lex_state = 11, .external_lex_state = 2}, [342] = {.lex_state = 11, .external_lex_state = 2}, @@ -10477,96 +11308,96 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [367] = {.lex_state = 11, .external_lex_state = 2}, [368] = {.lex_state = 11, .external_lex_state = 2}, [369] = {.lex_state = 11, .external_lex_state = 2}, - [370] = {.lex_state = 69, .external_lex_state = 2}, - [371] = {.lex_state = 69, .external_lex_state = 2}, - [372] = {.lex_state = 69, .external_lex_state = 2}, - [373] = {.lex_state = 69, .external_lex_state = 2}, - [374] = {.lex_state = 69, .external_lex_state = 2}, - [375] = {.lex_state = 69, .external_lex_state = 2}, - [376] = {.lex_state = 12, .external_lex_state = 2}, - [377] = {.lex_state = 69, .external_lex_state = 2}, + [370] = {.lex_state = 11, .external_lex_state = 2}, + [371] = {.lex_state = 11, .external_lex_state = 2}, + [372] = {.lex_state = 11, .external_lex_state = 2}, + [373] = {.lex_state = 11, .external_lex_state = 2}, + [374] = {.lex_state = 11, .external_lex_state = 2}, + [375] = {.lex_state = 11, .external_lex_state = 2}, + [376] = {.lex_state = 11, .external_lex_state = 2}, + [377] = {.lex_state = 11, .external_lex_state = 2}, [378] = {.lex_state = 69, .external_lex_state = 2}, [379] = {.lex_state = 69, .external_lex_state = 2}, - [380] = {.lex_state = 12, .external_lex_state = 2}, + [380] = {.lex_state = 69, .external_lex_state = 2}, [381] = {.lex_state = 69, .external_lex_state = 2}, [382] = {.lex_state = 69, .external_lex_state = 2}, [383] = {.lex_state = 69, .external_lex_state = 2}, [384] = {.lex_state = 69, .external_lex_state = 2}, [385] = {.lex_state = 69, .external_lex_state = 2}, [386] = {.lex_state = 69, .external_lex_state = 2}, - [387] = {.lex_state = 69, .external_lex_state = 2}, + [387] = {.lex_state = 12, .external_lex_state = 2}, [388] = {.lex_state = 69, .external_lex_state = 2}, - [389] = {.lex_state = 12, .external_lex_state = 2}, - [390] = {.lex_state = 12, .external_lex_state = 2}, + [389] = {.lex_state = 69, .external_lex_state = 2}, + [390] = {.lex_state = 69, .external_lex_state = 2}, [391] = {.lex_state = 69, .external_lex_state = 2}, - [392] = {.lex_state = 69, .external_lex_state = 2}, + [392] = {.lex_state = 12, .external_lex_state = 2}, [393] = {.lex_state = 69, .external_lex_state = 2}, - [394] = {.lex_state = 12, .external_lex_state = 2}, - [395] = {.lex_state = 69, .external_lex_state = 2}, + [394] = {.lex_state = 69, .external_lex_state = 2}, + [395] = {.lex_state = 12, .external_lex_state = 2}, [396] = {.lex_state = 69, .external_lex_state = 2}, [397] = {.lex_state = 69, .external_lex_state = 2}, - [398] = {.lex_state = 69, .external_lex_state = 2}, - [399] = {.lex_state = 69, .external_lex_state = 2}, + [398] = {.lex_state = 12, .external_lex_state = 2}, + [399] = {.lex_state = 12, .external_lex_state = 2}, [400] = {.lex_state = 69, .external_lex_state = 2}, - [401] = {.lex_state = 12, .external_lex_state = 2}, + [401] = {.lex_state = 69, .external_lex_state = 2}, [402] = {.lex_state = 69, .external_lex_state = 2}, [403] = {.lex_state = 69, .external_lex_state = 2}, [404] = {.lex_state = 69, .external_lex_state = 2}, [405] = {.lex_state = 69, .external_lex_state = 2}, - [406] = {.lex_state = 12, .external_lex_state = 2}, - [407] = {.lex_state = 12, .external_lex_state = 2}, - [408] = {.lex_state = 12, .external_lex_state = 2}, + [406] = {.lex_state = 69, .external_lex_state = 2}, + [407] = {.lex_state = 69, .external_lex_state = 2}, + [408] = {.lex_state = 69, .external_lex_state = 2}, [409] = {.lex_state = 69, .external_lex_state = 2}, - [410] = {.lex_state = 12, .external_lex_state = 2}, - [411] = {.lex_state = 12, .external_lex_state = 2}, + [410] = {.lex_state = 69, .external_lex_state = 2}, + [411] = {.lex_state = 69, .external_lex_state = 2}, [412] = {.lex_state = 12, .external_lex_state = 2}, - [413] = {.lex_state = 12, .external_lex_state = 2}, + [413] = {.lex_state = 69, .external_lex_state = 2}, [414] = {.lex_state = 12, .external_lex_state = 2}, - [415] = {.lex_state = 12, .external_lex_state = 2}, + [415] = {.lex_state = 69, .external_lex_state = 2}, [416] = {.lex_state = 12, .external_lex_state = 2}, - [417] = {.lex_state = 11, .external_lex_state = 2}, - [418] = {.lex_state = 11, .external_lex_state = 2}, - [419] = {.lex_state = 11, .external_lex_state = 2}, + [417] = {.lex_state = 12, .external_lex_state = 2}, + [418] = {.lex_state = 12, .external_lex_state = 2}, + [419] = {.lex_state = 12, .external_lex_state = 2}, [420] = {.lex_state = 12, .external_lex_state = 2}, [421] = {.lex_state = 12, .external_lex_state = 2}, [422] = {.lex_state = 12, .external_lex_state = 2}, [423] = {.lex_state = 12, .external_lex_state = 2}, [424] = {.lex_state = 11, .external_lex_state = 2}, - [425] = {.lex_state = 11, .external_lex_state = 2}, + [425] = {.lex_state = 12, .external_lex_state = 2}, [426] = {.lex_state = 11, .external_lex_state = 2}, [427] = {.lex_state = 11, .external_lex_state = 2}, - [428] = {.lex_state = 11, .external_lex_state = 2}, - [429] = {.lex_state = 11, .external_lex_state = 2}, - [430] = {.lex_state = 11, .external_lex_state = 2}, - [431] = {.lex_state = 11, .external_lex_state = 2}, + [428] = {.lex_state = 12, .external_lex_state = 2}, + [429] = {.lex_state = 12, .external_lex_state = 2}, + [430] = {.lex_state = 12, .external_lex_state = 2}, + [431] = {.lex_state = 12, .external_lex_state = 2}, [432] = {.lex_state = 11, .external_lex_state = 2}, [433] = {.lex_state = 11, .external_lex_state = 2}, [434] = {.lex_state = 11, .external_lex_state = 2}, - [435] = {.lex_state = 3, .external_lex_state = 2}, - [436] = {.lex_state = 5, .external_lex_state = 2}, - [437] = {.lex_state = 13, .external_lex_state = 2}, - [438] = {.lex_state = 13, .external_lex_state = 2}, + [435] = {.lex_state = 11, .external_lex_state = 2}, + [436] = {.lex_state = 11, .external_lex_state = 2}, + [437] = {.lex_state = 11, .external_lex_state = 2}, + [438] = {.lex_state = 11, .external_lex_state = 2}, [439] = {.lex_state = 11, .external_lex_state = 2}, [440] = {.lex_state = 11, .external_lex_state = 2}, [441] = {.lex_state = 11, .external_lex_state = 2}, [442] = {.lex_state = 11, .external_lex_state = 2}, - [443] = {.lex_state = 11, .external_lex_state = 2}, - [444] = {.lex_state = 11, .external_lex_state = 2}, - [445] = {.lex_state = 11, .external_lex_state = 2}, - [446] = {.lex_state = 11, .external_lex_state = 2}, + [443] = {.lex_state = 3, .external_lex_state = 2}, + [444] = {.lex_state = 5, .external_lex_state = 2}, + [445] = {.lex_state = 13, .external_lex_state = 2}, + [446] = {.lex_state = 13, .external_lex_state = 2}, [447] = {.lex_state = 11, .external_lex_state = 2}, [448] = {.lex_state = 11, .external_lex_state = 2}, [449] = {.lex_state = 11, .external_lex_state = 2}, [450] = {.lex_state = 11, .external_lex_state = 2}, [451] = {.lex_state = 11, .external_lex_state = 2}, - [452] = {.lex_state = 3, .external_lex_state = 2}, - [453] = {.lex_state = 3, .external_lex_state = 2}, - [454] = {.lex_state = 3, .external_lex_state = 2}, - [455] = {.lex_state = 3, .external_lex_state = 2}, - [456] = {.lex_state = 3, .external_lex_state = 2}, - [457] = {.lex_state = 3, .external_lex_state = 2}, - [458] = {.lex_state = 3, .external_lex_state = 2}, - [459] = {.lex_state = 3, .external_lex_state = 2}, + [452] = {.lex_state = 11, .external_lex_state = 2}, + [453] = {.lex_state = 11, .external_lex_state = 2}, + [454] = {.lex_state = 11, .external_lex_state = 2}, + [455] = {.lex_state = 11, .external_lex_state = 2}, + [456] = {.lex_state = 11, .external_lex_state = 2}, + [457] = {.lex_state = 11, .external_lex_state = 2}, + [458] = {.lex_state = 11, .external_lex_state = 2}, + [459] = {.lex_state = 11, .external_lex_state = 2}, [460] = {.lex_state = 3, .external_lex_state = 2}, [461] = {.lex_state = 3, .external_lex_state = 2}, [462] = {.lex_state = 3, .external_lex_state = 2}, @@ -10574,39 +11405,39 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [464] = {.lex_state = 3, .external_lex_state = 2}, [465] = {.lex_state = 3, .external_lex_state = 2}, [466] = {.lex_state = 3, .external_lex_state = 2}, - [467] = {.lex_state = 11, .external_lex_state = 2}, + [467] = {.lex_state = 3, .external_lex_state = 2}, [468] = {.lex_state = 3, .external_lex_state = 2}, [469] = {.lex_state = 3, .external_lex_state = 2}, [470] = {.lex_state = 3, .external_lex_state = 2}, [471] = {.lex_state = 3, .external_lex_state = 2}, - [472] = {.lex_state = 11, .external_lex_state = 2}, + [472] = {.lex_state = 3, .external_lex_state = 2}, [473] = {.lex_state = 3, .external_lex_state = 2}, - [474] = {.lex_state = 11, .external_lex_state = 2}, - [475] = {.lex_state = 11, .external_lex_state = 2}, + [474] = {.lex_state = 3, .external_lex_state = 2}, + [475] = {.lex_state = 3, .external_lex_state = 2}, [476] = {.lex_state = 3, .external_lex_state = 2}, - [477] = {.lex_state = 3, .external_lex_state = 2}, + [477] = {.lex_state = 11, .external_lex_state = 2}, [478] = {.lex_state = 3, .external_lex_state = 2}, [479] = {.lex_state = 3, .external_lex_state = 2}, - [480] = {.lex_state = 3, .external_lex_state = 2}, - [481] = {.lex_state = 3, .external_lex_state = 2}, - [482] = {.lex_state = 3, .external_lex_state = 2}, - [483] = {.lex_state = 11, .external_lex_state = 2}, - [484] = {.lex_state = 11, .external_lex_state = 2}, - [485] = {.lex_state = 11, .external_lex_state = 2}, - [486] = {.lex_state = 11, .external_lex_state = 2}, - [487] = {.lex_state = 71, .external_lex_state = 2}, - [488] = {.lex_state = 71, .external_lex_state = 2}, - [489] = {.lex_state = 71, .external_lex_state = 2}, - [490] = {.lex_state = 71, .external_lex_state = 2}, - [491] = {.lex_state = 71, .external_lex_state = 2}, - [492] = {.lex_state = 71, .external_lex_state = 2}, - [493] = {.lex_state = 71, .external_lex_state = 2}, - [494] = {.lex_state = 71, .external_lex_state = 2}, - [495] = {.lex_state = 71, .external_lex_state = 2}, - [496] = {.lex_state = 71, .external_lex_state = 2}, - [497] = {.lex_state = 71, .external_lex_state = 2}, - [498] = {.lex_state = 71, .external_lex_state = 2}, - [499] = {.lex_state = 71, .external_lex_state = 2}, + [480] = {.lex_state = 11, .external_lex_state = 2}, + [481] = {.lex_state = 11, .external_lex_state = 2}, + [482] = {.lex_state = 11, .external_lex_state = 2}, + [483] = {.lex_state = 3, .external_lex_state = 2}, + [484] = {.lex_state = 3, .external_lex_state = 2}, + [485] = {.lex_state = 3, .external_lex_state = 2}, + [486] = {.lex_state = 3, .external_lex_state = 2}, + [487] = {.lex_state = 3, .external_lex_state = 2}, + [488] = {.lex_state = 3, .external_lex_state = 2}, + [489] = {.lex_state = 3, .external_lex_state = 2}, + [490] = {.lex_state = 3, .external_lex_state = 2}, + [491] = {.lex_state = 11, .external_lex_state = 2}, + [492] = {.lex_state = 11, .external_lex_state = 2}, + [493] = {.lex_state = 11, .external_lex_state = 2}, + [494] = {.lex_state = 11, .external_lex_state = 2}, + [495] = {.lex_state = 10}, + [496] = {.lex_state = 10}, + [497] = {.lex_state = 10}, + [498] = {.lex_state = 10}, + [499] = {.lex_state = 10}, [500] = {.lex_state = 71, .external_lex_state = 2}, [501] = {.lex_state = 71, .external_lex_state = 2}, [502] = {.lex_state = 71, .external_lex_state = 2}, @@ -10648,7 +11479,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [538] = {.lex_state = 71, .external_lex_state = 2}, [539] = {.lex_state = 71, .external_lex_state = 2}, [540] = {.lex_state = 71, .external_lex_state = 2}, - [541] = {.lex_state = 71, .external_lex_state = 2}, + [541] = {.lex_state = 11, .external_lex_state = 2}, [542] = {.lex_state = 71, .external_lex_state = 2}, [543] = {.lex_state = 71, .external_lex_state = 2}, [544] = {.lex_state = 71, .external_lex_state = 2}, @@ -10746,7 +11577,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [636] = {.lex_state = 71, .external_lex_state = 2}, [637] = {.lex_state = 71, .external_lex_state = 2}, [638] = {.lex_state = 71, .external_lex_state = 2}, - [639] = {.lex_state = 10}, + [639] = {.lex_state = 71, .external_lex_state = 2}, [640] = {.lex_state = 71, .external_lex_state = 2}, [641] = {.lex_state = 71, .external_lex_state = 2}, [642] = {.lex_state = 71, .external_lex_state = 2}, @@ -10769,19 +11600,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [659] = {.lex_state = 71, .external_lex_state = 2}, [660] = {.lex_state = 71, .external_lex_state = 2}, [661] = {.lex_state = 71, .external_lex_state = 2}, - [662] = {.lex_state = 10}, + [662] = {.lex_state = 71, .external_lex_state = 2}, [663] = {.lex_state = 71, .external_lex_state = 2}, [664] = {.lex_state = 71, .external_lex_state = 2}, [665] = {.lex_state = 71, .external_lex_state = 2}, [666] = {.lex_state = 71, .external_lex_state = 2}, - [667] = {.lex_state = 10}, + [667] = {.lex_state = 71, .external_lex_state = 2}, [668] = {.lex_state = 71, .external_lex_state = 2}, [669] = {.lex_state = 71, .external_lex_state = 2}, [670] = {.lex_state = 71, .external_lex_state = 2}, [671] = {.lex_state = 71, .external_lex_state = 2}, [672] = {.lex_state = 71, .external_lex_state = 2}, [673] = {.lex_state = 71, .external_lex_state = 2}, - [674] = {.lex_state = 10}, + [674] = {.lex_state = 71, .external_lex_state = 2}, [675] = {.lex_state = 71, .external_lex_state = 2}, [676] = {.lex_state = 71, .external_lex_state = 2}, [677] = {.lex_state = 71, .external_lex_state = 2}, @@ -10806,8 +11637,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [696] = {.lex_state = 71, .external_lex_state = 2}, [697] = {.lex_state = 71, .external_lex_state = 2}, [698] = {.lex_state = 71, .external_lex_state = 2}, - [699] = {.lex_state = 11, .external_lex_state = 2}, - [700] = {.lex_state = 10}, + [699] = {.lex_state = 71, .external_lex_state = 2}, + [700] = {.lex_state = 71, .external_lex_state = 2}, [701] = {.lex_state = 71, .external_lex_state = 2}, [702] = {.lex_state = 71, .external_lex_state = 2}, [703] = {.lex_state = 71, .external_lex_state = 2}, @@ -10869,128 +11700,128 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [759] = {.lex_state = 71, .external_lex_state = 2}, [760] = {.lex_state = 71, .external_lex_state = 2}, [761] = {.lex_state = 71, .external_lex_state = 2}, - [762] = {.lex_state = 11, .external_lex_state = 2}, - [763] = {.lex_state = 11, .external_lex_state = 2}, - [764] = {.lex_state = 11, .external_lex_state = 2}, - [765] = {.lex_state = 11, .external_lex_state = 2}, - [766] = {.lex_state = 11, .external_lex_state = 2}, - [767] = {.lex_state = 11, .external_lex_state = 2}, - [768] = {.lex_state = 11, .external_lex_state = 2}, - [769] = {.lex_state = 11, .external_lex_state = 2}, - [770] = {.lex_state = 14}, - [771] = {.lex_state = 14}, - [772] = {.lex_state = 11, .external_lex_state = 2}, - [773] = {.lex_state = 14}, - [774] = {.lex_state = 14}, - [775] = {.lex_state = 14}, - [776] = {.lex_state = 14}, - [777] = {.lex_state = 14}, - [778] = {.lex_state = 14}, - [779] = {.lex_state = 14}, - [780] = {.lex_state = 11, .external_lex_state = 2}, - [781] = {.lex_state = 11, .external_lex_state = 2}, - [782] = {.lex_state = 14}, - [783] = {.lex_state = 14}, - [784] = {.lex_state = 11, .external_lex_state = 2}, - [785] = {.lex_state = 11, .external_lex_state = 2}, - [786] = {.lex_state = 11, .external_lex_state = 2}, - [787] = {.lex_state = 11, .external_lex_state = 2}, - [788] = {.lex_state = 11, .external_lex_state = 2}, - [789] = {.lex_state = 11, .external_lex_state = 2}, - [790] = {.lex_state = 11, .external_lex_state = 2}, - [791] = {.lex_state = 11, .external_lex_state = 2}, - [792] = {.lex_state = 11, .external_lex_state = 2}, - [793] = {.lex_state = 12, .external_lex_state = 2}, - [794] = {.lex_state = 11, .external_lex_state = 2}, - [795] = {.lex_state = 11, .external_lex_state = 2}, - [796] = {.lex_state = 11, .external_lex_state = 2}, - [797] = {.lex_state = 11, .external_lex_state = 2}, - [798] = {.lex_state = 11, .external_lex_state = 2}, - [799] = {.lex_state = 11, .external_lex_state = 2}, - [800] = {.lex_state = 11, .external_lex_state = 2}, - [801] = {.lex_state = 11, .external_lex_state = 2}, - [802] = {.lex_state = 11, .external_lex_state = 2}, - [803] = {.lex_state = 11, .external_lex_state = 2}, - [804] = {.lex_state = 11, .external_lex_state = 2}, - [805] = {.lex_state = 11, .external_lex_state = 2}, - [806] = {.lex_state = 11, .external_lex_state = 2}, - [807] = {.lex_state = 11, .external_lex_state = 2}, - [808] = {.lex_state = 11, .external_lex_state = 2}, - [809] = {.lex_state = 11, .external_lex_state = 2}, - [810] = {.lex_state = 11, .external_lex_state = 2}, - [811] = {.lex_state = 11, .external_lex_state = 2}, - [812] = {.lex_state = 11, .external_lex_state = 2}, - [813] = {.lex_state = 11, .external_lex_state = 2}, - [814] = {.lex_state = 11, .external_lex_state = 2}, - [815] = {.lex_state = 11, .external_lex_state = 2}, - [816] = {.lex_state = 11, .external_lex_state = 2}, - [817] = {.lex_state = 11, .external_lex_state = 2}, - [818] = {.lex_state = 11, .external_lex_state = 2}, - [819] = {.lex_state = 11, .external_lex_state = 2}, - [820] = {.lex_state = 11, .external_lex_state = 2}, - [821] = {.lex_state = 11, .external_lex_state = 2}, - [822] = {.lex_state = 11, .external_lex_state = 2}, - [823] = {.lex_state = 11, .external_lex_state = 2}, - [824] = {.lex_state = 11, .external_lex_state = 2}, - [825] = {.lex_state = 11, .external_lex_state = 2}, - [826] = {.lex_state = 11, .external_lex_state = 2}, - [827] = {.lex_state = 11, .external_lex_state = 2}, - [828] = {.lex_state = 11, .external_lex_state = 2}, - [829] = {.lex_state = 11, .external_lex_state = 2}, - [830] = {.lex_state = 11, .external_lex_state = 2}, - [831] = {.lex_state = 11, .external_lex_state = 2}, - [832] = {.lex_state = 11, .external_lex_state = 2}, - [833] = {.lex_state = 11, .external_lex_state = 2}, - [834] = {.lex_state = 11, .external_lex_state = 2}, - [835] = {.lex_state = 11, .external_lex_state = 2}, - [836] = {.lex_state = 11, .external_lex_state = 2}, - [837] = {.lex_state = 14}, - [838] = {.lex_state = 14}, - [839] = {.lex_state = 14}, - [840] = {.lex_state = 14}, - [841] = {.lex_state = 14}, - [842] = {.lex_state = 14}, - [843] = {.lex_state = 14}, - [844] = {.lex_state = 14}, - [845] = {.lex_state = 14}, - [846] = {.lex_state = 14}, - [847] = {.lex_state = 14}, - [848] = {.lex_state = 14}, - [849] = {.lex_state = 14}, - [850] = {.lex_state = 14}, - [851] = {.lex_state = 14}, - [852] = {.lex_state = 14}, - [853] = {.lex_state = 14}, - [854] = {.lex_state = 14}, - [855] = {.lex_state = 14}, - [856] = {.lex_state = 14}, - [857] = {.lex_state = 14}, - [858] = {.lex_state = 14}, - [859] = {.lex_state = 14}, - [860] = {.lex_state = 14}, - [861] = {.lex_state = 14}, - [862] = {.lex_state = 14}, - [863] = {.lex_state = 14}, - [864] = {.lex_state = 14}, - [865] = {.lex_state = 14}, - [866] = {.lex_state = 14}, - [867] = {.lex_state = 14}, - [868] = {.lex_state = 14}, - [869] = {.lex_state = 14}, - [870] = {.lex_state = 14}, - [871] = {.lex_state = 14}, - [872] = {.lex_state = 14}, - [873] = {.lex_state = 14}, - [874] = {.lex_state = 14}, - [875] = {.lex_state = 14}, - [876] = {.lex_state = 14}, - [877] = {.lex_state = 14}, - [878] = {.lex_state = 14}, - [879] = {.lex_state = 14}, - [880] = {.lex_state = 14}, - [881] = {.lex_state = 14}, + [762] = {.lex_state = 71, .external_lex_state = 2}, + [763] = {.lex_state = 71, .external_lex_state = 2}, + [764] = {.lex_state = 71, .external_lex_state = 2}, + [765] = {.lex_state = 71, .external_lex_state = 2}, + [766] = {.lex_state = 71, .external_lex_state = 2}, + [767] = {.lex_state = 71, .external_lex_state = 2}, + [768] = {.lex_state = 71, .external_lex_state = 2}, + [769] = {.lex_state = 71, .external_lex_state = 2}, + [770] = {.lex_state = 71, .external_lex_state = 2}, + [771] = {.lex_state = 71, .external_lex_state = 2}, + [772] = {.lex_state = 71, .external_lex_state = 2}, + [773] = {.lex_state = 71, .external_lex_state = 2}, + [774] = {.lex_state = 71, .external_lex_state = 2}, + [775] = {.lex_state = 71, .external_lex_state = 2}, + [776] = {.lex_state = 71, .external_lex_state = 2}, + [777] = {.lex_state = 71, .external_lex_state = 2}, + [778] = {.lex_state = 71, .external_lex_state = 2}, + [779] = {.lex_state = 71, .external_lex_state = 2}, + [780] = {.lex_state = 71, .external_lex_state = 2}, + [781] = {.lex_state = 71, .external_lex_state = 2}, + [782] = {.lex_state = 71, .external_lex_state = 2}, + [783] = {.lex_state = 71, .external_lex_state = 2}, + [784] = {.lex_state = 71, .external_lex_state = 2}, + [785] = {.lex_state = 71, .external_lex_state = 2}, + [786] = {.lex_state = 71, .external_lex_state = 2}, + [787] = {.lex_state = 71, .external_lex_state = 2}, + [788] = {.lex_state = 71, .external_lex_state = 2}, + [789] = {.lex_state = 71, .external_lex_state = 2}, + [790] = {.lex_state = 71, .external_lex_state = 2}, + [791] = {.lex_state = 71, .external_lex_state = 2}, + [792] = {.lex_state = 71, .external_lex_state = 2}, + [793] = {.lex_state = 71, .external_lex_state = 2}, + [794] = {.lex_state = 71, .external_lex_state = 2}, + [795] = {.lex_state = 71, .external_lex_state = 2}, + [796] = {.lex_state = 71, .external_lex_state = 2}, + [797] = {.lex_state = 71, .external_lex_state = 2}, + [798] = {.lex_state = 71, .external_lex_state = 2}, + [799] = {.lex_state = 71, .external_lex_state = 2}, + [800] = {.lex_state = 71, .external_lex_state = 2}, + [801] = {.lex_state = 71, .external_lex_state = 2}, + [802] = {.lex_state = 71, .external_lex_state = 2}, + [803] = {.lex_state = 71, .external_lex_state = 2}, + [804] = {.lex_state = 71, .external_lex_state = 2}, + [805] = {.lex_state = 71, .external_lex_state = 2}, + [806] = {.lex_state = 71, .external_lex_state = 2}, + [807] = {.lex_state = 71, .external_lex_state = 2}, + [808] = {.lex_state = 71, .external_lex_state = 2}, + [809] = {.lex_state = 71, .external_lex_state = 2}, + [810] = {.lex_state = 71, .external_lex_state = 2}, + [811] = {.lex_state = 71, .external_lex_state = 2}, + [812] = {.lex_state = 71, .external_lex_state = 2}, + [813] = {.lex_state = 71, .external_lex_state = 2}, + [814] = {.lex_state = 71, .external_lex_state = 2}, + [815] = {.lex_state = 71, .external_lex_state = 2}, + [816] = {.lex_state = 71, .external_lex_state = 2}, + [817] = {.lex_state = 71, .external_lex_state = 2}, + [818] = {.lex_state = 71, .external_lex_state = 2}, + [819] = {.lex_state = 71, .external_lex_state = 2}, + [820] = {.lex_state = 71, .external_lex_state = 2}, + [821] = {.lex_state = 71, .external_lex_state = 2}, + [822] = {.lex_state = 71, .external_lex_state = 2}, + [823] = {.lex_state = 71, .external_lex_state = 2}, + [824] = {.lex_state = 71, .external_lex_state = 2}, + [825] = {.lex_state = 71, .external_lex_state = 2}, + [826] = {.lex_state = 71, .external_lex_state = 2}, + [827] = {.lex_state = 71, .external_lex_state = 2}, + [828] = {.lex_state = 71, .external_lex_state = 2}, + [829] = {.lex_state = 71, .external_lex_state = 2}, + [830] = {.lex_state = 71, .external_lex_state = 2}, + [831] = {.lex_state = 71, .external_lex_state = 2}, + [832] = {.lex_state = 71, .external_lex_state = 2}, + [833] = {.lex_state = 71, .external_lex_state = 2}, + [834] = {.lex_state = 71, .external_lex_state = 2}, + [835] = {.lex_state = 71, .external_lex_state = 2}, + [836] = {.lex_state = 71, .external_lex_state = 2}, + [837] = {.lex_state = 71, .external_lex_state = 2}, + [838] = {.lex_state = 71, .external_lex_state = 2}, + [839] = {.lex_state = 71, .external_lex_state = 2}, + [840] = {.lex_state = 71, .external_lex_state = 2}, + [841] = {.lex_state = 71, .external_lex_state = 2}, + [842] = {.lex_state = 71, .external_lex_state = 2}, + [843] = {.lex_state = 71, .external_lex_state = 2}, + [844] = {.lex_state = 71, .external_lex_state = 2}, + [845] = {.lex_state = 71, .external_lex_state = 2}, + [846] = {.lex_state = 71, .external_lex_state = 2}, + [847] = {.lex_state = 71, .external_lex_state = 2}, + [848] = {.lex_state = 71, .external_lex_state = 2}, + [849] = {.lex_state = 71, .external_lex_state = 2}, + [850] = {.lex_state = 71, .external_lex_state = 2}, + [851] = {.lex_state = 71, .external_lex_state = 2}, + [852] = {.lex_state = 71, .external_lex_state = 2}, + [853] = {.lex_state = 71, .external_lex_state = 2}, + [854] = {.lex_state = 71, .external_lex_state = 2}, + [855] = {.lex_state = 71, .external_lex_state = 2}, + [856] = {.lex_state = 71, .external_lex_state = 2}, + [857] = {.lex_state = 71, .external_lex_state = 2}, + [858] = {.lex_state = 71, .external_lex_state = 2}, + [859] = {.lex_state = 71, .external_lex_state = 2}, + [860] = {.lex_state = 71, .external_lex_state = 2}, + [861] = {.lex_state = 71, .external_lex_state = 2}, + [862] = {.lex_state = 71, .external_lex_state = 2}, + [863] = {.lex_state = 71, .external_lex_state = 2}, + [864] = {.lex_state = 71, .external_lex_state = 2}, + [865] = {.lex_state = 71, .external_lex_state = 2}, + [866] = {.lex_state = 71, .external_lex_state = 2}, + [867] = {.lex_state = 71, .external_lex_state = 2}, + [868] = {.lex_state = 71, .external_lex_state = 2}, + [869] = {.lex_state = 71, .external_lex_state = 2}, + [870] = {.lex_state = 71, .external_lex_state = 2}, + [871] = {.lex_state = 71, .external_lex_state = 2}, + [872] = {.lex_state = 71, .external_lex_state = 2}, + [873] = {.lex_state = 71, .external_lex_state = 2}, + [874] = {.lex_state = 11, .external_lex_state = 2}, + [875] = {.lex_state = 11, .external_lex_state = 2}, + [876] = {.lex_state = 11, .external_lex_state = 2}, + [877] = {.lex_state = 11, .external_lex_state = 2}, + [878] = {.lex_state = 11, .external_lex_state = 2}, + [879] = {.lex_state = 11, .external_lex_state = 2}, + [880] = {.lex_state = 11, .external_lex_state = 2}, + [881] = {.lex_state = 11, .external_lex_state = 2}, [882] = {.lex_state = 14}, - [883] = {.lex_state = 14}, + [883] = {.lex_state = 11, .external_lex_state = 2}, [884] = {.lex_state = 14}, [885] = {.lex_state = 14}, [886] = {.lex_state = 14}, @@ -10998,68 +11829,68 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [888] = {.lex_state = 14}, [889] = {.lex_state = 14}, [890] = {.lex_state = 14}, - [891] = {.lex_state = 14}, - [892] = {.lex_state = 14}, - [893] = {.lex_state = 14}, - [894] = {.lex_state = 14}, + [891] = {.lex_state = 11, .external_lex_state = 2}, + [892] = {.lex_state = 11, .external_lex_state = 2}, + [893] = {.lex_state = 11, .external_lex_state = 2}, + [894] = {.lex_state = 11, .external_lex_state = 2}, [895] = {.lex_state = 14}, - [896] = {.lex_state = 14}, - [897] = {.lex_state = 14}, + [896] = {.lex_state = 11, .external_lex_state = 2}, + [897] = {.lex_state = 11, .external_lex_state = 2}, [898] = {.lex_state = 14}, - [899] = {.lex_state = 11, .external_lex_state = 2}, - [900] = {.lex_state = 14}, - [901] = {.lex_state = 14}, - [902] = {.lex_state = 14}, - [903] = {.lex_state = 14}, - [904] = {.lex_state = 14}, - [905] = {.lex_state = 14}, - [906] = {.lex_state = 14}, - [907] = {.lex_state = 14}, - [908] = {.lex_state = 14}, - [909] = {.lex_state = 14}, - [910] = {.lex_state = 14}, - [911] = {.lex_state = 14}, - [912] = {.lex_state = 14}, - [913] = {.lex_state = 14}, - [914] = {.lex_state = 14}, - [915] = {.lex_state = 14}, - [916] = {.lex_state = 14}, - [917] = {.lex_state = 14}, - [918] = {.lex_state = 14}, - [919] = {.lex_state = 14}, - [920] = {.lex_state = 14}, - [921] = {.lex_state = 14}, - [922] = {.lex_state = 14}, - [923] = {.lex_state = 14}, - [924] = {.lex_state = 14}, - [925] = {.lex_state = 14}, - [926] = {.lex_state = 14}, - [927] = {.lex_state = 14}, - [928] = {.lex_state = 14}, - [929] = {.lex_state = 14}, - [930] = {.lex_state = 14}, - [931] = {.lex_state = 14}, - [932] = {.lex_state = 14}, - [933] = {.lex_state = 14}, - [934] = {.lex_state = 14}, - [935] = {.lex_state = 14}, - [936] = {.lex_state = 14}, - [937] = {.lex_state = 14}, - [938] = {.lex_state = 14}, - [939] = {.lex_state = 14}, - [940] = {.lex_state = 14}, - [941] = {.lex_state = 14}, - [942] = {.lex_state = 14}, - [943] = {.lex_state = 14}, - [944] = {.lex_state = 14}, - [945] = {.lex_state = 14}, - [946] = {.lex_state = 14}, - [947] = {.lex_state = 14}, - [948] = {.lex_state = 14}, - [949] = {.lex_state = 14}, - [950] = {.lex_state = 14}, - [951] = {.lex_state = 14}, - [952] = {.lex_state = 14}, + [899] = {.lex_state = 14}, + [900] = {.lex_state = 11, .external_lex_state = 2}, + [901] = {.lex_state = 11, .external_lex_state = 2}, + [902] = {.lex_state = 11, .external_lex_state = 2}, + [903] = {.lex_state = 11, .external_lex_state = 2}, + [904] = {.lex_state = 11, .external_lex_state = 2}, + [905] = {.lex_state = 11, .external_lex_state = 2}, + [906] = {.lex_state = 11, .external_lex_state = 2}, + [907] = {.lex_state = 11, .external_lex_state = 2}, + [908] = {.lex_state = 11, .external_lex_state = 2}, + [909] = {.lex_state = 11, .external_lex_state = 2}, + [910] = {.lex_state = 11, .external_lex_state = 2}, + [911] = {.lex_state = 11, .external_lex_state = 2}, + [912] = {.lex_state = 11, .external_lex_state = 2}, + [913] = {.lex_state = 11, .external_lex_state = 2}, + [914] = {.lex_state = 11, .external_lex_state = 2}, + [915] = {.lex_state = 12, .external_lex_state = 2}, + [916] = {.lex_state = 11, .external_lex_state = 2}, + [917] = {.lex_state = 11, .external_lex_state = 2}, + [918] = {.lex_state = 11, .external_lex_state = 2}, + [919] = {.lex_state = 11, .external_lex_state = 2}, + [920] = {.lex_state = 11, .external_lex_state = 2}, + [921] = {.lex_state = 11, .external_lex_state = 2}, + [922] = {.lex_state = 11, .external_lex_state = 2}, + [923] = {.lex_state = 11, .external_lex_state = 2}, + [924] = {.lex_state = 11, .external_lex_state = 2}, + [925] = {.lex_state = 11, .external_lex_state = 2}, + [926] = {.lex_state = 11, .external_lex_state = 2}, + [927] = {.lex_state = 11, .external_lex_state = 2}, + [928] = {.lex_state = 11, .external_lex_state = 2}, + [929] = {.lex_state = 11, .external_lex_state = 2}, + [930] = {.lex_state = 11, .external_lex_state = 2}, + [931] = {.lex_state = 11, .external_lex_state = 2}, + [932] = {.lex_state = 11, .external_lex_state = 2}, + [933] = {.lex_state = 11, .external_lex_state = 2}, + [934] = {.lex_state = 11, .external_lex_state = 2}, + [935] = {.lex_state = 11, .external_lex_state = 2}, + [936] = {.lex_state = 11, .external_lex_state = 2}, + [937] = {.lex_state = 11, .external_lex_state = 2}, + [938] = {.lex_state = 11, .external_lex_state = 2}, + [939] = {.lex_state = 11, .external_lex_state = 2}, + [940] = {.lex_state = 11, .external_lex_state = 2}, + [941] = {.lex_state = 11, .external_lex_state = 2}, + [942] = {.lex_state = 11, .external_lex_state = 2}, + [943] = {.lex_state = 11, .external_lex_state = 2}, + [944] = {.lex_state = 11, .external_lex_state = 2}, + [945] = {.lex_state = 11, .external_lex_state = 2}, + [946] = {.lex_state = 11, .external_lex_state = 2}, + [947] = {.lex_state = 11, .external_lex_state = 2}, + [948] = {.lex_state = 11, .external_lex_state = 2}, + [949] = {.lex_state = 11, .external_lex_state = 2}, + [950] = {.lex_state = 11, .external_lex_state = 2}, + [951] = {.lex_state = 11, .external_lex_state = 2}, + [952] = {.lex_state = 11, .external_lex_state = 2}, [953] = {.lex_state = 14}, [954] = {.lex_state = 14}, [955] = {.lex_state = 14}, @@ -11117,208 +11948,208 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1007] = {.lex_state = 14}, [1008] = {.lex_state = 14}, [1009] = {.lex_state = 14}, - [1010] = {.lex_state = 11, .external_lex_state = 2}, - [1011] = {.lex_state = 11, .external_lex_state = 2}, - [1012] = {.lex_state = 13, .external_lex_state = 2}, - [1013] = {.lex_state = 13, .external_lex_state = 2}, - [1014] = {.lex_state = 11, .external_lex_state = 2}, - [1015] = {.lex_state = 12, .external_lex_state = 2}, + [1010] = {.lex_state = 14}, + [1011] = {.lex_state = 14}, + [1012] = {.lex_state = 14}, + [1013] = {.lex_state = 14}, + [1014] = {.lex_state = 14}, + [1015] = {.lex_state = 14}, [1016] = {.lex_state = 14}, - [1017] = {.lex_state = 11, .external_lex_state = 2}, - [1018] = {.lex_state = 11, .external_lex_state = 2}, - [1019] = {.lex_state = 7}, - [1020] = {.lex_state = 6}, - [1021] = {.lex_state = 10}, - [1022] = {.lex_state = 6}, - [1023] = {.lex_state = 10}, - [1024] = {.lex_state = 10}, - [1025] = {.lex_state = 10}, - [1026] = {.lex_state = 10}, - [1027] = {.lex_state = 10}, - [1028] = {.lex_state = 6}, - [1029] = {.lex_state = 10}, - [1030] = {.lex_state = 6}, - [1031] = {.lex_state = 10}, - [1032] = {.lex_state = 10}, - [1033] = {.lex_state = 22}, - [1034] = {.lex_state = 6}, - [1035] = {.lex_state = 22}, - [1036] = {.lex_state = 6}, - [1037] = {.lex_state = 22}, - [1038] = {.lex_state = 6}, - [1039] = {.lex_state = 22}, - [1040] = {.lex_state = 6}, - [1041] = {.lex_state = 6}, - [1042] = {.lex_state = 6}, - [1043] = {.lex_state = 6}, - [1044] = {.lex_state = 22}, - [1045] = {.lex_state = 11, .external_lex_state = 2}, - [1046] = {.lex_state = 6}, + [1017] = {.lex_state = 14}, + [1018] = {.lex_state = 14}, + [1019] = {.lex_state = 14}, + [1020] = {.lex_state = 14}, + [1021] = {.lex_state = 14}, + [1022] = {.lex_state = 14}, + [1023] = {.lex_state = 14}, + [1024] = {.lex_state = 14}, + [1025] = {.lex_state = 14}, + [1026] = {.lex_state = 14}, + [1027] = {.lex_state = 14}, + [1028] = {.lex_state = 14}, + [1029] = {.lex_state = 14}, + [1030] = {.lex_state = 14}, + [1031] = {.lex_state = 14}, + [1032] = {.lex_state = 14}, + [1033] = {.lex_state = 14}, + [1034] = {.lex_state = 14}, + [1035] = {.lex_state = 14}, + [1036] = {.lex_state = 14}, + [1037] = {.lex_state = 14}, + [1038] = {.lex_state = 14}, + [1039] = {.lex_state = 14}, + [1040] = {.lex_state = 14}, + [1041] = {.lex_state = 14}, + [1042] = {.lex_state = 14}, + [1043] = {.lex_state = 14}, + [1044] = {.lex_state = 14}, + [1045] = {.lex_state = 14}, + [1046] = {.lex_state = 14}, [1047] = {.lex_state = 14}, [1048] = {.lex_state = 14}, - [1049] = {.lex_state = 7}, - [1050] = {.lex_state = 7}, + [1049] = {.lex_state = 14}, + [1050] = {.lex_state = 14}, [1051] = {.lex_state = 14}, [1052] = {.lex_state = 14}, [1053] = {.lex_state = 14}, - [1054] = {.lex_state = 7}, + [1054] = {.lex_state = 14}, [1055] = {.lex_state = 14}, [1056] = {.lex_state = 14}, - [1057] = {.lex_state = 7}, + [1057] = {.lex_state = 14}, [1058] = {.lex_state = 14}, - [1059] = {.lex_state = 7}, - [1060] = {.lex_state = 7}, + [1059] = {.lex_state = 14}, + [1060] = {.lex_state = 14}, [1061] = {.lex_state = 14}, - [1062] = {.lex_state = 7}, + [1062] = {.lex_state = 14}, [1063] = {.lex_state = 14}, - [1064] = {.lex_state = 7}, + [1064] = {.lex_state = 14}, [1065] = {.lex_state = 14}, [1066] = {.lex_state = 14}, [1067] = {.lex_state = 14}, [1068] = {.lex_state = 14}, [1069] = {.lex_state = 14}, [1070] = {.lex_state = 11, .external_lex_state = 2}, - [1071] = {.lex_state = 7}, - [1072] = {.lex_state = 10}, - [1073] = {.lex_state = 7}, - [1074] = {.lex_state = 11, .external_lex_state = 2}, - [1075] = {.lex_state = 7}, - [1076] = {.lex_state = 7}, + [1071] = {.lex_state = 14}, + [1072] = {.lex_state = 14}, + [1073] = {.lex_state = 14}, + [1074] = {.lex_state = 14}, + [1075] = {.lex_state = 14}, + [1076] = {.lex_state = 14}, [1077] = {.lex_state = 14}, - [1078] = {.lex_state = 7}, - [1079] = {.lex_state = 19}, - [1080] = {.lex_state = 10}, - [1081] = {.lex_state = 7}, - [1082] = {.lex_state = 7}, - [1083] = {.lex_state = 7}, - [1084] = {.lex_state = 10}, - [1085] = {.lex_state = 10}, - [1086] = {.lex_state = 12, .external_lex_state = 2}, - [1087] = {.lex_state = 7}, - [1088] = {.lex_state = 12, .external_lex_state = 2}, - [1089] = {.lex_state = 7}, - [1090] = {.lex_state = 7}, - [1091] = {.lex_state = 19}, - [1092] = {.lex_state = 18}, - [1093] = {.lex_state = 7}, - [1094] = {.lex_state = 7}, - [1095] = {.lex_state = 18}, - [1096] = {.lex_state = 18}, - [1097] = {.lex_state = 10}, - [1098] = {.lex_state = 7}, - [1099] = {.lex_state = 10}, - [1100] = {.lex_state = 10}, - [1101] = {.lex_state = 10}, - [1102] = {.lex_state = 10}, - [1103] = {.lex_state = 10}, - [1104] = {.lex_state = 10}, - [1105] = {.lex_state = 10}, - [1106] = {.lex_state = 10}, - [1107] = {.lex_state = 10}, - [1108] = {.lex_state = 10}, - [1109] = {.lex_state = 10}, - [1110] = {.lex_state = 10}, - [1111] = {.lex_state = 10}, - [1112] = {.lex_state = 10}, - [1113] = {.lex_state = 10}, - [1114] = {.lex_state = 10}, - [1115] = {.lex_state = 6}, - [1116] = {.lex_state = 18}, - [1117] = {.lex_state = 18}, - [1118] = {.lex_state = 18}, - [1119] = {.lex_state = 18}, - [1120] = {.lex_state = 10}, - [1121] = {.lex_state = 10}, - [1122] = {.lex_state = 10}, - [1123] = {.lex_state = 10}, - [1124] = {.lex_state = 10}, - [1125] = {.lex_state = 10}, - [1126] = {.lex_state = 10}, - [1127] = {.lex_state = 10}, - [1128] = {.lex_state = 10}, - [1129] = {.lex_state = 10}, - [1130] = {.lex_state = 10}, - [1131] = {.lex_state = 10}, - [1132] = {.lex_state = 10}, - [1133] = {.lex_state = 10}, - [1134] = {.lex_state = 10}, - [1135] = {.lex_state = 10}, - [1136] = {.lex_state = 10}, - [1137] = {.lex_state = 10}, - [1138] = {.lex_state = 10}, - [1139] = {.lex_state = 10}, - [1140] = {.lex_state = 10}, - [1141] = {.lex_state = 10}, - [1142] = {.lex_state = 10}, - [1143] = {.lex_state = 10}, - [1144] = {.lex_state = 10}, - [1145] = {.lex_state = 10}, - [1146] = {.lex_state = 10}, - [1147] = {.lex_state = 10}, - [1148] = {.lex_state = 10}, - [1149] = {.lex_state = 10}, - [1150] = {.lex_state = 10}, - [1151] = {.lex_state = 10}, - [1152] = {.lex_state = 10}, - [1153] = {.lex_state = 10}, - [1154] = {.lex_state = 10}, - [1155] = {.lex_state = 10}, - [1156] = {.lex_state = 7}, - [1157] = {.lex_state = 18}, - [1158] = {.lex_state = 7}, - [1159] = {.lex_state = 18}, - [1160] = {.lex_state = 10}, - [1161] = {.lex_state = 10}, - [1162] = {.lex_state = 10}, - [1163] = {.lex_state = 10}, - [1164] = {.lex_state = 10}, - [1165] = {.lex_state = 10}, - [1166] = {.lex_state = 10}, + [1078] = {.lex_state = 14}, + [1079] = {.lex_state = 14}, + [1080] = {.lex_state = 14}, + [1081] = {.lex_state = 14}, + [1082] = {.lex_state = 14}, + [1083] = {.lex_state = 14}, + [1084] = {.lex_state = 14}, + [1085] = {.lex_state = 14}, + [1086] = {.lex_state = 14}, + [1087] = {.lex_state = 14}, + [1088] = {.lex_state = 14}, + [1089] = {.lex_state = 14}, + [1090] = {.lex_state = 14}, + [1091] = {.lex_state = 14}, + [1092] = {.lex_state = 14}, + [1093] = {.lex_state = 14}, + [1094] = {.lex_state = 14}, + [1095] = {.lex_state = 14}, + [1096] = {.lex_state = 14}, + [1097] = {.lex_state = 14}, + [1098] = {.lex_state = 14}, + [1099] = {.lex_state = 14}, + [1100] = {.lex_state = 14}, + [1101] = {.lex_state = 14}, + [1102] = {.lex_state = 14}, + [1103] = {.lex_state = 14}, + [1104] = {.lex_state = 14}, + [1105] = {.lex_state = 14}, + [1106] = {.lex_state = 14}, + [1107] = {.lex_state = 14}, + [1108] = {.lex_state = 14}, + [1109] = {.lex_state = 14}, + [1110] = {.lex_state = 14}, + [1111] = {.lex_state = 14}, + [1112] = {.lex_state = 14}, + [1113] = {.lex_state = 14}, + [1114] = {.lex_state = 14}, + [1115] = {.lex_state = 14}, + [1116] = {.lex_state = 14}, + [1117] = {.lex_state = 14}, + [1118] = {.lex_state = 14}, + [1119] = {.lex_state = 14}, + [1120] = {.lex_state = 14}, + [1121] = {.lex_state = 14}, + [1122] = {.lex_state = 14}, + [1123] = {.lex_state = 14}, + [1124] = {.lex_state = 14}, + [1125] = {.lex_state = 14}, + [1126] = {.lex_state = 14}, + [1127] = {.lex_state = 14}, + [1128] = {.lex_state = 14}, + [1129] = {.lex_state = 14}, + [1130] = {.lex_state = 14}, + [1131] = {.lex_state = 14}, + [1132] = {.lex_state = 14}, + [1133] = {.lex_state = 14}, + [1134] = {.lex_state = 14}, + [1135] = {.lex_state = 14}, + [1136] = {.lex_state = 14}, + [1137] = {.lex_state = 14}, + [1138] = {.lex_state = 14}, + [1139] = {.lex_state = 14}, + [1140] = {.lex_state = 14}, + [1141] = {.lex_state = 14}, + [1142] = {.lex_state = 14}, + [1143] = {.lex_state = 14}, + [1144] = {.lex_state = 14}, + [1145] = {.lex_state = 14}, + [1146] = {.lex_state = 14}, + [1147] = {.lex_state = 14}, + [1148] = {.lex_state = 14}, + [1149] = {.lex_state = 14}, + [1150] = {.lex_state = 14}, + [1151] = {.lex_state = 14}, + [1152] = {.lex_state = 14}, + [1153] = {.lex_state = 14}, + [1154] = {.lex_state = 14}, + [1155] = {.lex_state = 14}, + [1156] = {.lex_state = 11, .external_lex_state = 2}, + [1157] = {.lex_state = 11, .external_lex_state = 2}, + [1158] = {.lex_state = 13, .external_lex_state = 2}, + [1159] = {.lex_state = 13, .external_lex_state = 2}, + [1160] = {.lex_state = 11, .external_lex_state = 2}, + [1161] = {.lex_state = 12, .external_lex_state = 2}, + [1162] = {.lex_state = 14}, + [1163] = {.lex_state = 11, .external_lex_state = 2}, + [1164] = {.lex_state = 11, .external_lex_state = 2}, + [1165] = {.lex_state = 7}, + [1166] = {.lex_state = 6}, [1167] = {.lex_state = 10}, [1168] = {.lex_state = 10}, - [1169] = {.lex_state = 10}, + [1169] = {.lex_state = 6}, [1170] = {.lex_state = 10}, [1171] = {.lex_state = 10}, - [1172] = {.lex_state = 10}, + [1172] = {.lex_state = 6}, [1173] = {.lex_state = 10}, [1174] = {.lex_state = 10}, [1175] = {.lex_state = 10}, - [1176] = {.lex_state = 10}, + [1176] = {.lex_state = 6}, [1177] = {.lex_state = 10}, [1178] = {.lex_state = 10}, - [1179] = {.lex_state = 10}, - [1180] = {.lex_state = 10}, - [1181] = {.lex_state = 10}, - [1182] = {.lex_state = 10}, - [1183] = {.lex_state = 10}, - [1184] = {.lex_state = 10}, - [1185] = {.lex_state = 10}, - [1186] = {.lex_state = 10}, - [1187] = {.lex_state = 10}, - [1188] = {.lex_state = 10}, - [1189] = {.lex_state = 10}, - [1190] = {.lex_state = 10}, - [1191] = {.lex_state = 10}, - [1192] = {.lex_state = 10}, - [1193] = {.lex_state = 10}, - [1194] = {.lex_state = 10}, - [1195] = {.lex_state = 10}, - [1196] = {.lex_state = 10}, - [1197] = {.lex_state = 10}, - [1198] = {.lex_state = 10}, - [1199] = {.lex_state = 10}, - [1200] = {.lex_state = 10}, - [1201] = {.lex_state = 10}, - [1202] = {.lex_state = 10}, - [1203] = {.lex_state = 10}, - [1204] = {.lex_state = 10}, - [1205] = {.lex_state = 10}, - [1206] = {.lex_state = 10}, + [1179] = {.lex_state = 22}, + [1180] = {.lex_state = 6}, + [1181] = {.lex_state = 22}, + [1182] = {.lex_state = 22}, + [1183] = {.lex_state = 22}, + [1184] = {.lex_state = 6}, + [1185] = {.lex_state = 6}, + [1186] = {.lex_state = 6}, + [1187] = {.lex_state = 6}, + [1188] = {.lex_state = 22}, + [1189] = {.lex_state = 6}, + [1190] = {.lex_state = 6}, + [1191] = {.lex_state = 11, .external_lex_state = 2}, + [1192] = {.lex_state = 6}, + [1193] = {.lex_state = 7}, + [1194] = {.lex_state = 7}, + [1195] = {.lex_state = 7}, + [1196] = {.lex_state = 14}, + [1197] = {.lex_state = 14}, + [1198] = {.lex_state = 14}, + [1199] = {.lex_state = 14}, + [1200] = {.lex_state = 7}, + [1201] = {.lex_state = 7}, + [1202] = {.lex_state = 14}, + [1203] = {.lex_state = 14}, + [1204] = {.lex_state = 14}, + [1205] = {.lex_state = 7}, + [1206] = {.lex_state = 14}, [1207] = {.lex_state = 10}, [1208] = {.lex_state = 10}, [1209] = {.lex_state = 10}, - [1210] = {.lex_state = 7}, - [1211] = {.lex_state = 18}, + [1210] = {.lex_state = 10}, + [1211] = {.lex_state = 10}, [1212] = {.lex_state = 10}, [1213] = {.lex_state = 10}, [1214] = {.lex_state = 10}, @@ -11337,8 +12168,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1227] = {.lex_state = 10}, [1228] = {.lex_state = 10}, [1229] = {.lex_state = 10}, - [1230] = {.lex_state = 14}, - [1231] = {.lex_state = 10}, + [1230] = {.lex_state = 18}, + [1231] = {.lex_state = 7}, [1232] = {.lex_state = 10}, [1233] = {.lex_state = 10}, [1234] = {.lex_state = 10}, @@ -11359,7 +12190,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1249] = {.lex_state = 10}, [1250] = {.lex_state = 10}, [1251] = {.lex_state = 10}, - [1252] = {.lex_state = 10}, + [1252] = {.lex_state = 7}, [1253] = {.lex_state = 10}, [1254] = {.lex_state = 10}, [1255] = {.lex_state = 10}, @@ -11369,8 +12200,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1259] = {.lex_state = 10}, [1260] = {.lex_state = 10}, [1261] = {.lex_state = 10}, - [1262] = {.lex_state = 7}, - [1263] = {.lex_state = 18}, + [1262] = {.lex_state = 10}, + [1263] = {.lex_state = 10}, [1264] = {.lex_state = 10}, [1265] = {.lex_state = 10}, [1266] = {.lex_state = 10}, @@ -11385,10 +12216,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1275] = {.lex_state = 10}, [1276] = {.lex_state = 10}, [1277] = {.lex_state = 10}, - [1278] = {.lex_state = 10}, + [1278] = {.lex_state = 14}, [1279] = {.lex_state = 10}, [1280] = {.lex_state = 10}, - [1281] = {.lex_state = 10}, + [1281] = {.lex_state = 14}, [1282] = {.lex_state = 10}, [1283] = {.lex_state = 10}, [1284] = {.lex_state = 10}, @@ -11399,7 +12230,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1289] = {.lex_state = 10}, [1290] = {.lex_state = 10}, [1291] = {.lex_state = 10}, - [1292] = {.lex_state = 10}, + [1292] = {.lex_state = 14}, [1293] = {.lex_state = 10}, [1294] = {.lex_state = 10}, [1295] = {.lex_state = 10}, @@ -11416,12 +12247,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1306] = {.lex_state = 10}, [1307] = {.lex_state = 10}, [1308] = {.lex_state = 10}, - [1309] = {.lex_state = 10}, + [1309] = {.lex_state = 7}, [1310] = {.lex_state = 10}, [1311] = {.lex_state = 10}, - [1312] = {.lex_state = 7}, - [1313] = {.lex_state = 18}, - [1314] = {.lex_state = 10}, + [1312] = {.lex_state = 10}, + [1313] = {.lex_state = 10}, + [1314] = {.lex_state = 18}, [1315] = {.lex_state = 10}, [1316] = {.lex_state = 10}, [1317] = {.lex_state = 10}, @@ -11429,7 +12260,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1319] = {.lex_state = 10}, [1320] = {.lex_state = 10}, [1321] = {.lex_state = 10}, - [1322] = {.lex_state = 10}, + [1322] = {.lex_state = 7}, [1323] = {.lex_state = 10}, [1324] = {.lex_state = 10}, [1325] = {.lex_state = 10}, @@ -11447,7 +12278,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1337] = {.lex_state = 10}, [1338] = {.lex_state = 10}, [1339] = {.lex_state = 10}, - [1340] = {.lex_state = 10}, + [1340] = {.lex_state = 7}, [1341] = {.lex_state = 10}, [1342] = {.lex_state = 10}, [1343] = {.lex_state = 10}, @@ -11465,356 +12296,356 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1355] = {.lex_state = 10}, [1356] = {.lex_state = 10}, [1357] = {.lex_state = 10}, - [1358] = {.lex_state = 10}, + [1358] = {.lex_state = 7}, [1359] = {.lex_state = 10}, [1360] = {.lex_state = 10}, [1361] = {.lex_state = 10}, [1362] = {.lex_state = 10}, [1363] = {.lex_state = 10}, - [1364] = {.lex_state = 10}, - [1365] = {.lex_state = 7}, - [1366] = {.lex_state = 14}, - [1367] = {.lex_state = 14}, + [1364] = {.lex_state = 11, .external_lex_state = 2}, + [1365] = {.lex_state = 10}, + [1366] = {.lex_state = 7}, + [1367] = {.lex_state = 10}, [1368] = {.lex_state = 10}, - [1369] = {.lex_state = 7}, - [1370] = {.lex_state = 7}, - [1371] = {.lex_state = 7}, + [1369] = {.lex_state = 10}, + [1370] = {.lex_state = 10}, + [1371] = {.lex_state = 10}, [1372] = {.lex_state = 10}, - [1373] = {.lex_state = 7}, - [1374] = {.lex_state = 7}, - [1375] = {.lex_state = 7}, - [1376] = {.lex_state = 7}, - [1377] = {.lex_state = 7}, - [1378] = {.lex_state = 7}, - [1379] = {.lex_state = 7}, - [1380] = {.lex_state = 7}, - [1381] = {.lex_state = 7}, - [1382] = {.lex_state = 7}, - [1383] = {.lex_state = 7}, - [1384] = {.lex_state = 7}, - [1385] = {.lex_state = 7}, - [1386] = {.lex_state = 7}, - [1387] = {.lex_state = 7}, - [1388] = {.lex_state = 7}, - [1389] = {.lex_state = 7}, - [1390] = {.lex_state = 7}, - [1391] = {.lex_state = 7}, - [1392] = {.lex_state = 7}, - [1393] = {.lex_state = 7}, - [1394] = {.lex_state = 7}, - [1395] = {.lex_state = 7}, - [1396] = {.lex_state = 11, .external_lex_state = 2}, - [1397] = {.lex_state = 7}, + [1373] = {.lex_state = 10}, + [1374] = {.lex_state = 10}, + [1375] = {.lex_state = 10}, + [1376] = {.lex_state = 10}, + [1377] = {.lex_state = 10}, + [1378] = {.lex_state = 10}, + [1379] = {.lex_state = 10}, + [1380] = {.lex_state = 10}, + [1381] = {.lex_state = 10}, + [1382] = {.lex_state = 10}, + [1383] = {.lex_state = 10}, + [1384] = {.lex_state = 10}, + [1385] = {.lex_state = 10}, + [1386] = {.lex_state = 10}, + [1387] = {.lex_state = 10}, + [1388] = {.lex_state = 19}, + [1389] = {.lex_state = 10}, + [1390] = {.lex_state = 10}, + [1391] = {.lex_state = 10}, + [1392] = {.lex_state = 10}, + [1393] = {.lex_state = 10}, + [1394] = {.lex_state = 10}, + [1395] = {.lex_state = 10}, + [1396] = {.lex_state = 10}, + [1397] = {.lex_state = 10}, [1398] = {.lex_state = 7}, - [1399] = {.lex_state = 7}, - [1400] = {.lex_state = 7}, - [1401] = {.lex_state = 11, .external_lex_state = 2}, - [1402] = {.lex_state = 7}, - [1403] = {.lex_state = 7}, - [1404] = {.lex_state = 7}, - [1405] = {.lex_state = 14}, - [1406] = {.lex_state = 7}, - [1407] = {.lex_state = 7}, - [1408] = {.lex_state = 7}, + [1399] = {.lex_state = 10}, + [1400] = {.lex_state = 10}, + [1401] = {.lex_state = 10}, + [1402] = {.lex_state = 10}, + [1403] = {.lex_state = 10}, + [1404] = {.lex_state = 10}, + [1405] = {.lex_state = 10}, + [1406] = {.lex_state = 10}, + [1407] = {.lex_state = 10}, + [1408] = {.lex_state = 10}, [1409] = {.lex_state = 7}, [1410] = {.lex_state = 7}, - [1411] = {.lex_state = 7}, - [1412] = {.lex_state = 7}, - [1413] = {.lex_state = 7}, - [1414] = {.lex_state = 7}, - [1415] = {.lex_state = 7}, - [1416] = {.lex_state = 7}, - [1417] = {.lex_state = 7}, + [1411] = {.lex_state = 14}, + [1412] = {.lex_state = 10}, + [1413] = {.lex_state = 14}, + [1414] = {.lex_state = 14}, + [1415] = {.lex_state = 10}, + [1416] = {.lex_state = 10}, + [1417] = {.lex_state = 18}, [1418] = {.lex_state = 7}, - [1419] = {.lex_state = 7}, - [1420] = {.lex_state = 7}, - [1421] = {.lex_state = 7}, - [1422] = {.lex_state = 7}, - [1423] = {.lex_state = 7}, - [1424] = {.lex_state = 7}, - [1425] = {.lex_state = 7}, - [1426] = {.lex_state = 7}, + [1419] = {.lex_state = 10}, + [1420] = {.lex_state = 12, .external_lex_state = 2}, + [1421] = {.lex_state = 10}, + [1422] = {.lex_state = 10}, + [1423] = {.lex_state = 10}, + [1424] = {.lex_state = 10}, + [1425] = {.lex_state = 10}, + [1426] = {.lex_state = 10}, [1427] = {.lex_state = 7}, - [1428] = {.lex_state = 14}, - [1429] = {.lex_state = 7}, + [1428] = {.lex_state = 10}, + [1429] = {.lex_state = 10}, [1430] = {.lex_state = 7}, - [1431] = {.lex_state = 7}, - [1432] = {.lex_state = 7}, - [1433] = {.lex_state = 7}, - [1434] = {.lex_state = 7}, - [1435] = {.lex_state = 7}, - [1436] = {.lex_state = 7}, + [1431] = {.lex_state = 10}, + [1432] = {.lex_state = 10}, + [1433] = {.lex_state = 10}, + [1434] = {.lex_state = 10}, + [1435] = {.lex_state = 10}, + [1436] = {.lex_state = 10}, [1437] = {.lex_state = 7}, - [1438] = {.lex_state = 7}, - [1439] = {.lex_state = 7}, - [1440] = {.lex_state = 7}, - [1441] = {.lex_state = 7}, - [1442] = {.lex_state = 7}, + [1438] = {.lex_state = 10}, + [1439] = {.lex_state = 10}, + [1440] = {.lex_state = 10}, + [1441] = {.lex_state = 10}, + [1442] = {.lex_state = 10}, [1443] = {.lex_state = 7}, - [1444] = {.lex_state = 7}, - [1445] = {.lex_state = 7}, - [1446] = {.lex_state = 7}, + [1444] = {.lex_state = 12, .external_lex_state = 2}, + [1445] = {.lex_state = 10}, + [1446] = {.lex_state = 10}, [1447] = {.lex_state = 7}, - [1448] = {.lex_state = 14}, - [1449] = {.lex_state = 7}, - [1450] = {.lex_state = 7}, - [1451] = {.lex_state = 7}, - [1452] = {.lex_state = 7}, - [1453] = {.lex_state = 7}, - [1454] = {.lex_state = 7}, + [1448] = {.lex_state = 7}, + [1449] = {.lex_state = 10}, + [1450] = {.lex_state = 10}, + [1451] = {.lex_state = 19}, + [1452] = {.lex_state = 10}, + [1453] = {.lex_state = 18}, + [1454] = {.lex_state = 10}, [1455] = {.lex_state = 7}, - [1456] = {.lex_state = 7}, + [1456] = {.lex_state = 10}, [1457] = {.lex_state = 7}, - [1458] = {.lex_state = 7}, - [1459] = {.lex_state = 7}, - [1460] = {.lex_state = 7}, - [1461] = {.lex_state = 7}, - [1462] = {.lex_state = 14}, - [1463] = {.lex_state = 7}, - [1464] = {.lex_state = 11, .external_lex_state = 2}, - [1465] = {.lex_state = 8}, - [1466] = {.lex_state = 7}, - [1467] = {.lex_state = 7}, - [1468] = {.lex_state = 11, .external_lex_state = 2}, - [1469] = {.lex_state = 11, .external_lex_state = 2}, - [1470] = {.lex_state = 7}, - [1471] = {.lex_state = 7}, - [1472] = {.lex_state = 7}, - [1473] = {.lex_state = 7}, - [1474] = {.lex_state = 7}, - [1475] = {.lex_state = 7}, - [1476] = {.lex_state = 7}, - [1477] = {.lex_state = 7}, - [1478] = {.lex_state = 7}, - [1479] = {.lex_state = 7}, - [1480] = {.lex_state = 7}, - [1481] = {.lex_state = 7}, - [1482] = {.lex_state = 7}, - [1483] = {.lex_state = 7}, - [1484] = {.lex_state = 7}, - [1485] = {.lex_state = 7}, - [1486] = {.lex_state = 7}, - [1487] = {.lex_state = 7}, + [1458] = {.lex_state = 18}, + [1459] = {.lex_state = 10}, + [1460] = {.lex_state = 10}, + [1461] = {.lex_state = 10}, + [1462] = {.lex_state = 18}, + [1463] = {.lex_state = 10}, + [1464] = {.lex_state = 10}, + [1465] = {.lex_state = 10}, + [1466] = {.lex_state = 10}, + [1467] = {.lex_state = 10}, + [1468] = {.lex_state = 10}, + [1469] = {.lex_state = 10}, + [1470] = {.lex_state = 10}, + [1471] = {.lex_state = 10}, + [1472] = {.lex_state = 10}, + [1473] = {.lex_state = 10}, + [1474] = {.lex_state = 10}, + [1475] = {.lex_state = 10}, + [1476] = {.lex_state = 10}, + [1477] = {.lex_state = 10}, + [1478] = {.lex_state = 10}, + [1479] = {.lex_state = 10}, + [1480] = {.lex_state = 10}, + [1481] = {.lex_state = 10}, + [1482] = {.lex_state = 10}, + [1483] = {.lex_state = 10}, + [1484] = {.lex_state = 10}, + [1485] = {.lex_state = 10}, + [1486] = {.lex_state = 10}, + [1487] = {.lex_state = 10}, [1488] = {.lex_state = 7}, - [1489] = {.lex_state = 7}, - [1490] = {.lex_state = 7}, - [1491] = {.lex_state = 7}, - [1492] = {.lex_state = 7}, - [1493] = {.lex_state = 7}, - [1494] = {.lex_state = 7}, - [1495] = {.lex_state = 14}, + [1489] = {.lex_state = 10}, + [1490] = {.lex_state = 10}, + [1491] = {.lex_state = 10}, + [1492] = {.lex_state = 10}, + [1493] = {.lex_state = 10}, + [1494] = {.lex_state = 10}, + [1495] = {.lex_state = 10}, [1496] = {.lex_state = 7}, [1497] = {.lex_state = 7}, - [1498] = {.lex_state = 14}, - [1499] = {.lex_state = 7}, - [1500] = {.lex_state = 14}, - [1501] = {.lex_state = 7}, - [1502] = {.lex_state = 7}, - [1503] = {.lex_state = 7}, - [1504] = {.lex_state = 11, .external_lex_state = 2}, - [1505] = {.lex_state = 7}, - [1506] = {.lex_state = 7}, - [1507] = {.lex_state = 7}, - [1508] = {.lex_state = 7}, - [1509] = {.lex_state = 11, .external_lex_state = 2}, - [1510] = {.lex_state = 7}, - [1511] = {.lex_state = 7}, - [1512] = {.lex_state = 9}, - [1513] = {.lex_state = 7}, - [1514] = {.lex_state = 7}, - [1515] = {.lex_state = 7}, - [1516] = {.lex_state = 7}, - [1517] = {.lex_state = 7}, - [1518] = {.lex_state = 7}, - [1519] = {.lex_state = 7}, - [1520] = {.lex_state = 11, .external_lex_state = 2}, - [1521] = {.lex_state = 7}, - [1522] = {.lex_state = 7}, - [1523] = {.lex_state = 11, .external_lex_state = 2}, - [1524] = {.lex_state = 7}, - [1525] = {.lex_state = 7}, - [1526] = {.lex_state = 7}, - [1527] = {.lex_state = 7}, - [1528] = {.lex_state = 9}, - [1529] = {.lex_state = 14}, - [1530] = {.lex_state = 9}, - [1531] = {.lex_state = 14}, - [1532] = {.lex_state = 14}, - [1533] = {.lex_state = 14}, - [1534] = {.lex_state = 14}, - [1535] = {.lex_state = 14}, - [1536] = {.lex_state = 9}, - [1537] = {.lex_state = 14}, + [1498] = {.lex_state = 10}, + [1499] = {.lex_state = 10}, + [1500] = {.lex_state = 10}, + [1501] = {.lex_state = 10}, + [1502] = {.lex_state = 10}, + [1503] = {.lex_state = 10}, + [1504] = {.lex_state = 10}, + [1505] = {.lex_state = 10}, + [1506] = {.lex_state = 10}, + [1507] = {.lex_state = 10}, + [1508] = {.lex_state = 10}, + [1509] = {.lex_state = 10}, + [1510] = {.lex_state = 10}, + [1511] = {.lex_state = 10}, + [1512] = {.lex_state = 10}, + [1513] = {.lex_state = 10}, + [1514] = {.lex_state = 10}, + [1515] = {.lex_state = 14}, + [1516] = {.lex_state = 10}, + [1517] = {.lex_state = 10}, + [1518] = {.lex_state = 10}, + [1519] = {.lex_state = 10}, + [1520] = {.lex_state = 10}, + [1521] = {.lex_state = 10}, + [1522] = {.lex_state = 10}, + [1523] = {.lex_state = 10}, + [1524] = {.lex_state = 10}, + [1525] = {.lex_state = 10}, + [1526] = {.lex_state = 10}, + [1527] = {.lex_state = 14}, + [1528] = {.lex_state = 10}, + [1529] = {.lex_state = 10}, + [1530] = {.lex_state = 14}, + [1531] = {.lex_state = 10}, + [1532] = {.lex_state = 10}, + [1533] = {.lex_state = 18}, + [1534] = {.lex_state = 10}, + [1535] = {.lex_state = 10}, + [1536] = {.lex_state = 10}, + [1537] = {.lex_state = 10}, [1538] = {.lex_state = 7}, - [1539] = {.lex_state = 8}, - [1540] = {.lex_state = 9}, - [1541] = {.lex_state = 7}, - [1542] = {.lex_state = 8}, - [1543] = {.lex_state = 9}, - [1544] = {.lex_state = 9}, - [1545] = {.lex_state = 9}, - [1546] = {.lex_state = 9}, - [1547] = {.lex_state = 7}, - [1548] = {.lex_state = 9}, - [1549] = {.lex_state = 7}, - [1550] = {.lex_state = 8}, - [1551] = {.lex_state = 8}, - [1552] = {.lex_state = 7}, - [1553] = {.lex_state = 8}, - [1554] = {.lex_state = 7}, - [1555] = {.lex_state = 7}, - [1556] = {.lex_state = 9}, - [1557] = {.lex_state = 9}, - [1558] = {.lex_state = 7}, - [1559] = {.lex_state = 7}, - [1560] = {.lex_state = 7}, - [1561] = {.lex_state = 7}, - [1562] = {.lex_state = 7}, - [1563] = {.lex_state = 8}, - [1564] = {.lex_state = 7}, - [1565] = {.lex_state = 14}, - [1566] = {.lex_state = 7}, - [1567] = {.lex_state = 8}, - [1568] = {.lex_state = 7}, - [1569] = {.lex_state = 8}, - [1570] = {.lex_state = 8}, - [1571] = {.lex_state = 8}, - [1572] = {.lex_state = 7}, - [1573] = {.lex_state = 8}, - [1574] = {.lex_state = 7}, - [1575] = {.lex_state = 8}, - [1576] = {.lex_state = 7}, - [1577] = {.lex_state = 7}, - [1578] = {.lex_state = 8}, - [1579] = {.lex_state = 7}, - [1580] = {.lex_state = 7}, - [1581] = {.lex_state = 7}, - [1582] = {.lex_state = 7}, - [1583] = {.lex_state = 8}, - [1584] = {.lex_state = 14}, - [1585] = {.lex_state = 8}, - [1586] = {.lex_state = 8}, - [1587] = {.lex_state = 8}, - [1588] = {.lex_state = 8}, - [1589] = {.lex_state = 7}, - [1590] = {.lex_state = 8}, - [1591] = {.lex_state = 14}, - [1592] = {.lex_state = 7}, - [1593] = {.lex_state = 7}, - [1594] = {.lex_state = 8}, - [1595] = {.lex_state = 7}, - [1596] = {.lex_state = 7}, - [1597] = {.lex_state = 8}, - [1598] = {.lex_state = 8}, - [1599] = {.lex_state = 7}, - [1600] = {.lex_state = 7}, - [1601] = {.lex_state = 9}, - [1602] = {.lex_state = 20}, - [1603] = {.lex_state = 20}, - [1604] = {.lex_state = 7}, - [1605] = {.lex_state = 7}, - [1606] = {.lex_state = 7}, - [1607] = {.lex_state = 7}, - [1608] = {.lex_state = 7}, - [1609] = {.lex_state = 7}, - [1610] = {.lex_state = 20}, - [1611] = {.lex_state = 20}, - [1612] = {.lex_state = 8}, - [1613] = {.lex_state = 7}, - [1614] = {.lex_state = 7}, - [1615] = {.lex_state = 8}, - [1616] = {.lex_state = 20}, - [1617] = {.lex_state = 7}, - [1618] = {.lex_state = 8}, - [1619] = {.lex_state = 8}, - [1620] = {.lex_state = 8}, - [1621] = {.lex_state = 7}, - [1622] = {.lex_state = 20}, + [1539] = {.lex_state = 10}, + [1540] = {.lex_state = 10}, + [1541] = {.lex_state = 18}, + [1542] = {.lex_state = 10}, + [1543] = {.lex_state = 10}, + [1544] = {.lex_state = 10}, + [1545] = {.lex_state = 10}, + [1546] = {.lex_state = 10}, + [1547] = {.lex_state = 10}, + [1548] = {.lex_state = 10}, + [1549] = {.lex_state = 10}, + [1550] = {.lex_state = 7}, + [1551] = {.lex_state = 10}, + [1552] = {.lex_state = 10}, + [1553] = {.lex_state = 10}, + [1554] = {.lex_state = 10}, + [1555] = {.lex_state = 10}, + [1556] = {.lex_state = 7}, + [1557] = {.lex_state = 10}, + [1558] = {.lex_state = 10}, + [1559] = {.lex_state = 10}, + [1560] = {.lex_state = 10}, + [1561] = {.lex_state = 10}, + [1562] = {.lex_state = 10}, + [1563] = {.lex_state = 10}, + [1564] = {.lex_state = 10}, + [1565] = {.lex_state = 11, .external_lex_state = 2}, + [1566] = {.lex_state = 10}, + [1567] = {.lex_state = 10}, + [1568] = {.lex_state = 10}, + [1569] = {.lex_state = 10}, + [1570] = {.lex_state = 10}, + [1571] = {.lex_state = 10}, + [1572] = {.lex_state = 10}, + [1573] = {.lex_state = 10}, + [1574] = {.lex_state = 10}, + [1575] = {.lex_state = 10}, + [1576] = {.lex_state = 10}, + [1577] = {.lex_state = 10}, + [1578] = {.lex_state = 10}, + [1579] = {.lex_state = 10}, + [1580] = {.lex_state = 10}, + [1581] = {.lex_state = 10}, + [1582] = {.lex_state = 10}, + [1583] = {.lex_state = 10}, + [1584] = {.lex_state = 10}, + [1585] = {.lex_state = 10}, + [1586] = {.lex_state = 10}, + [1587] = {.lex_state = 10}, + [1588] = {.lex_state = 10}, + [1589] = {.lex_state = 10}, + [1590] = {.lex_state = 10}, + [1591] = {.lex_state = 10}, + [1592] = {.lex_state = 10}, + [1593] = {.lex_state = 10}, + [1594] = {.lex_state = 10}, + [1595] = {.lex_state = 10}, + [1596] = {.lex_state = 6}, + [1597] = {.lex_state = 10}, + [1598] = {.lex_state = 10}, + [1599] = {.lex_state = 10}, + [1600] = {.lex_state = 10}, + [1601] = {.lex_state = 10}, + [1602] = {.lex_state = 10}, + [1603] = {.lex_state = 10}, + [1604] = {.lex_state = 10}, + [1605] = {.lex_state = 10}, + [1606] = {.lex_state = 10}, + [1607] = {.lex_state = 14}, + [1608] = {.lex_state = 10}, + [1609] = {.lex_state = 14}, + [1610] = {.lex_state = 10}, + [1611] = {.lex_state = 18}, + [1612] = {.lex_state = 10}, + [1613] = {.lex_state = 10}, + [1614] = {.lex_state = 10}, + [1615] = {.lex_state = 10}, + [1616] = {.lex_state = 10}, + [1617] = {.lex_state = 18}, + [1618] = {.lex_state = 18}, + [1619] = {.lex_state = 10}, + [1620] = {.lex_state = 18}, + [1621] = {.lex_state = 10}, + [1622] = {.lex_state = 10}, [1623] = {.lex_state = 7}, [1624] = {.lex_state = 7}, - [1625] = {.lex_state = 20}, - [1626] = {.lex_state = 8}, + [1625] = {.lex_state = 7}, + [1626] = {.lex_state = 7}, [1627] = {.lex_state = 7}, - [1628] = {.lex_state = 8}, - [1629] = {.lex_state = 20}, + [1628] = {.lex_state = 14}, + [1629] = {.lex_state = 7}, [1630] = {.lex_state = 7}, [1631] = {.lex_state = 7}, [1632] = {.lex_state = 7}, - [1633] = {.lex_state = 8}, - [1634] = {.lex_state = 20}, - [1635] = {.lex_state = 8}, - [1636] = {.lex_state = 20}, - [1637] = {.lex_state = 8}, - [1638] = {.lex_state = 7}, + [1633] = {.lex_state = 7}, + [1634] = {.lex_state = 7}, + [1635] = {.lex_state = 7}, + [1636] = {.lex_state = 7}, + [1637] = {.lex_state = 7}, + [1638] = {.lex_state = 11, .external_lex_state = 2}, [1639] = {.lex_state = 7}, [1640] = {.lex_state = 7}, [1641] = {.lex_state = 7}, - [1642] = {.lex_state = 20}, - [1643] = {.lex_state = 14}, - [1644] = {.lex_state = 8}, + [1642] = {.lex_state = 7}, + [1643] = {.lex_state = 7}, + [1644] = {.lex_state = 14}, [1645] = {.lex_state = 7}, - [1646] = {.lex_state = 20}, - [1647] = {.lex_state = 8}, - [1648] = {.lex_state = 8}, - [1649] = {.lex_state = 8}, - [1650] = {.lex_state = 8}, - [1651] = {.lex_state = 8}, - [1652] = {.lex_state = 8}, + [1646] = {.lex_state = 7}, + [1647] = {.lex_state = 7}, + [1648] = {.lex_state = 7}, + [1649] = {.lex_state = 11, .external_lex_state = 2}, + [1650] = {.lex_state = 7}, + [1651] = {.lex_state = 7}, + [1652] = {.lex_state = 7}, [1653] = {.lex_state = 7}, - [1654] = {.lex_state = 7}, - [1655] = {.lex_state = 8}, + [1654] = {.lex_state = 11, .external_lex_state = 2}, + [1655] = {.lex_state = 7}, [1656] = {.lex_state = 7}, - [1657] = {.lex_state = 8}, + [1657] = {.lex_state = 7}, [1658] = {.lex_state = 7}, - [1659] = {.lex_state = 8}, - [1660] = {.lex_state = 8}, - [1661] = {.lex_state = 8}, + [1659] = {.lex_state = 7}, + [1660] = {.lex_state = 7}, + [1661] = {.lex_state = 7}, [1662] = {.lex_state = 7}, - [1663] = {.lex_state = 8}, - [1664] = {.lex_state = 8}, + [1663] = {.lex_state = 7}, + [1664] = {.lex_state = 7}, [1665] = {.lex_state = 7}, - [1666] = {.lex_state = 8}, - [1667] = {.lex_state = 8}, - [1668] = {.lex_state = 8}, - [1669] = {.lex_state = 8}, - [1670] = {.lex_state = 8}, - [1671] = {.lex_state = 8}, - [1672] = {.lex_state = 8}, - [1673] = {.lex_state = 8}, - [1674] = {.lex_state = 8}, - [1675] = {.lex_state = 8}, - [1676] = {.lex_state = 8}, - [1677] = {.lex_state = 8}, + [1666] = {.lex_state = 7}, + [1667] = {.lex_state = 7}, + [1668] = {.lex_state = 7}, + [1669] = {.lex_state = 7}, + [1670] = {.lex_state = 7}, + [1671] = {.lex_state = 7}, + [1672] = {.lex_state = 7}, + [1673] = {.lex_state = 11, .external_lex_state = 2}, + [1674] = {.lex_state = 7}, + [1675] = {.lex_state = 7}, + [1676] = {.lex_state = 7}, + [1677] = {.lex_state = 7}, [1678] = {.lex_state = 7}, [1679] = {.lex_state = 7}, - [1680] = {.lex_state = 8}, - [1681] = {.lex_state = 8}, - [1682] = {.lex_state = 8}, - [1683] = {.lex_state = 8}, - [1684] = {.lex_state = 8}, - [1685] = {.lex_state = 8}, - [1686] = {.lex_state = 8}, + [1680] = {.lex_state = 7}, + [1681] = {.lex_state = 7}, + [1682] = {.lex_state = 7}, + [1683] = {.lex_state = 7}, + [1684] = {.lex_state = 7}, + [1685] = {.lex_state = 7}, + [1686] = {.lex_state = 7}, [1687] = {.lex_state = 7}, [1688] = {.lex_state = 7}, - [1689] = {.lex_state = 8}, + [1689] = {.lex_state = 7}, [1690] = {.lex_state = 7}, - [1691] = {.lex_state = 8}, - [1692] = {.lex_state = 8}, - [1693] = {.lex_state = 8}, - [1694] = {.lex_state = 8}, - [1695] = {.lex_state = 7}, - [1696] = {.lex_state = 8}, - [1697] = {.lex_state = 8}, - [1698] = {.lex_state = 8}, - [1699] = {.lex_state = 8}, - [1700] = {.lex_state = 8}, - [1701] = {.lex_state = 8}, + [1691] = {.lex_state = 7}, + [1692] = {.lex_state = 7}, + [1693] = {.lex_state = 7}, + [1694] = {.lex_state = 7}, + [1695] = {.lex_state = 8}, + [1696] = {.lex_state = 7}, + [1697] = {.lex_state = 7}, + [1698] = {.lex_state = 7}, + [1699] = {.lex_state = 7}, + [1700] = {.lex_state = 7}, + [1701] = {.lex_state = 7}, [1702] = {.lex_state = 7}, [1703] = {.lex_state = 7}, [1704] = {.lex_state = 7}, [1705] = {.lex_state = 7}, - [1706] = {.lex_state = 8}, - [1707] = {.lex_state = 8}, + [1706] = {.lex_state = 7}, + [1707] = {.lex_state = 7}, [1708] = {.lex_state = 7}, [1709] = {.lex_state = 7}, [1710] = {.lex_state = 7}, @@ -11826,166 +12657,166 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1716] = {.lex_state = 7}, [1717] = {.lex_state = 7}, [1718] = {.lex_state = 7}, - [1719] = {.lex_state = 8}, - [1720] = {.lex_state = 8}, - [1721] = {.lex_state = 8}, - [1722] = {.lex_state = 8}, - [1723] = {.lex_state = 8}, - [1724] = {.lex_state = 8}, - [1725] = {.lex_state = 8}, + [1719] = {.lex_state = 7}, + [1720] = {.lex_state = 7}, + [1721] = {.lex_state = 7}, + [1722] = {.lex_state = 7}, + [1723] = {.lex_state = 7}, + [1724] = {.lex_state = 7}, + [1725] = {.lex_state = 7}, [1726] = {.lex_state = 7}, - [1727] = {.lex_state = 8}, - [1728] = {.lex_state = 8}, - [1729] = {.lex_state = 8}, - [1730] = {.lex_state = 8}, - [1731] = {.lex_state = 8}, - [1732] = {.lex_state = 14}, - [1733] = {.lex_state = 8}, - [1734] = {.lex_state = 8}, - [1735] = {.lex_state = 8}, - [1736] = {.lex_state = 8}, - [1737] = {.lex_state = 8}, - [1738] = {.lex_state = 8}, - [1739] = {.lex_state = 8}, + [1727] = {.lex_state = 7}, + [1728] = {.lex_state = 7}, + [1729] = {.lex_state = 7}, + [1730] = {.lex_state = 11, .external_lex_state = 2}, + [1731] = {.lex_state = 7}, + [1732] = {.lex_state = 7}, + [1733] = {.lex_state = 7}, + [1734] = {.lex_state = 7}, + [1735] = {.lex_state = 7}, + [1736] = {.lex_state = 7}, + [1737] = {.lex_state = 7}, + [1738] = {.lex_state = 7}, + [1739] = {.lex_state = 7}, [1740] = {.lex_state = 7}, - [1741] = {.lex_state = 8}, + [1741] = {.lex_state = 7}, [1742] = {.lex_state = 7}, - [1743] = {.lex_state = 8}, - [1744] = {.lex_state = 8}, - [1745] = {.lex_state = 8}, - [1746] = {.lex_state = 8}, - [1747] = {.lex_state = 8}, - [1748] = {.lex_state = 8}, - [1749] = {.lex_state = 8}, - [1750] = {.lex_state = 8}, - [1751] = {.lex_state = 7}, - [1752] = {.lex_state = 8}, - [1753] = {.lex_state = 8}, - [1754] = {.lex_state = 8}, + [1743] = {.lex_state = 7}, + [1744] = {.lex_state = 7}, + [1745] = {.lex_state = 14}, + [1746] = {.lex_state = 7}, + [1747] = {.lex_state = 14}, + [1748] = {.lex_state = 14}, + [1749] = {.lex_state = 14}, + [1750] = {.lex_state = 7}, + [1751] = {.lex_state = 14}, + [1752] = {.lex_state = 9}, + [1753] = {.lex_state = 7}, + [1754] = {.lex_state = 7}, [1755] = {.lex_state = 7}, - [1756] = {.lex_state = 8}, - [1757] = {.lex_state = 8}, - [1758] = {.lex_state = 7}, - [1759] = {.lex_state = 8}, - [1760] = {.lex_state = 8}, - [1761] = {.lex_state = 8}, - [1762] = {.lex_state = 8}, - [1763] = {.lex_state = 8}, - [1764] = {.lex_state = 8}, - [1765] = {.lex_state = 8}, - [1766] = {.lex_state = 8}, - [1767] = {.lex_state = 8}, - [1768] = {.lex_state = 8}, - [1769] = {.lex_state = 8}, - [1770] = {.lex_state = 8}, - [1771] = {.lex_state = 8}, - [1772] = {.lex_state = 8}, - [1773] = {.lex_state = 8}, - [1774] = {.lex_state = 8}, + [1756] = {.lex_state = 7}, + [1757] = {.lex_state = 7}, + [1758] = {.lex_state = 11, .external_lex_state = 2}, + [1759] = {.lex_state = 7}, + [1760] = {.lex_state = 7}, + [1761] = {.lex_state = 7}, + [1762] = {.lex_state = 7}, + [1763] = {.lex_state = 7}, + [1764] = {.lex_state = 7}, + [1765] = {.lex_state = 7}, + [1766] = {.lex_state = 11, .external_lex_state = 2}, + [1767] = {.lex_state = 7}, + [1768] = {.lex_state = 11, .external_lex_state = 2}, + [1769] = {.lex_state = 7}, + [1770] = {.lex_state = 7}, + [1771] = {.lex_state = 7}, + [1772] = {.lex_state = 7}, + [1773] = {.lex_state = 7}, + [1774] = {.lex_state = 11, .external_lex_state = 2}, [1775] = {.lex_state = 7}, - [1776] = {.lex_state = 8}, - [1777] = {.lex_state = 8}, + [1776] = {.lex_state = 7}, + [1777] = {.lex_state = 9}, [1778] = {.lex_state = 8}, - [1779] = {.lex_state = 8}, - [1780] = {.lex_state = 8}, - [1781] = {.lex_state = 8}, - [1782] = {.lex_state = 8}, - [1783] = {.lex_state = 8}, - [1784] = {.lex_state = 7}, - [1785] = {.lex_state = 8}, - [1786] = {.lex_state = 8}, - [1787] = {.lex_state = 8}, - [1788] = {.lex_state = 8}, - [1789] = {.lex_state = 8}, - [1790] = {.lex_state = 8}, - [1791] = {.lex_state = 8}, - [1792] = {.lex_state = 8}, - [1793] = {.lex_state = 8}, - [1794] = {.lex_state = 8}, - [1795] = {.lex_state = 8}, + [1779] = {.lex_state = 14}, + [1780] = {.lex_state = 14}, + [1781] = {.lex_state = 14}, + [1782] = {.lex_state = 14}, + [1783] = {.lex_state = 9}, + [1784] = {.lex_state = 14}, + [1785] = {.lex_state = 14}, + [1786] = {.lex_state = 7}, + [1787] = {.lex_state = 14}, + [1788] = {.lex_state = 7}, + [1789] = {.lex_state = 9}, + [1790] = {.lex_state = 7}, + [1791] = {.lex_state = 7}, + [1792] = {.lex_state = 9}, + [1793] = {.lex_state = 9}, + [1794] = {.lex_state = 7}, + [1795] = {.lex_state = 9}, [1796] = {.lex_state = 8}, - [1797] = {.lex_state = 8}, - [1798] = {.lex_state = 8}, + [1797] = {.lex_state = 9}, + [1798] = {.lex_state = 9}, [1799] = {.lex_state = 7}, - [1800] = {.lex_state = 7}, + [1800] = {.lex_state = 8}, [1801] = {.lex_state = 7}, - [1802] = {.lex_state = 7}, - [1803] = {.lex_state = 8}, - [1804] = {.lex_state = 7}, - [1805] = {.lex_state = 8}, - [1806] = {.lex_state = 7}, + [1802] = {.lex_state = 9}, + [1803] = {.lex_state = 7}, + [1804] = {.lex_state = 8}, + [1805] = {.lex_state = 9}, + [1806] = {.lex_state = 8}, [1807] = {.lex_state = 7}, - [1808] = {.lex_state = 7}, - [1809] = {.lex_state = 8}, + [1808] = {.lex_state = 9}, + [1809] = {.lex_state = 7}, [1810] = {.lex_state = 7}, - [1811] = {.lex_state = 14}, - [1812] = {.lex_state = 7}, + [1811] = {.lex_state = 7}, + [1812] = {.lex_state = 8}, [1813] = {.lex_state = 7}, [1814] = {.lex_state = 7}, [1815] = {.lex_state = 7}, - [1816] = {.lex_state = 7}, + [1816] = {.lex_state = 8}, [1817] = {.lex_state = 7}, [1818] = {.lex_state = 7}, - [1819] = {.lex_state = 7}, - [1820] = {.lex_state = 7}, - [1821] = {.lex_state = 8}, + [1819] = {.lex_state = 8}, + [1820] = {.lex_state = 14}, + [1821] = {.lex_state = 7}, [1822] = {.lex_state = 7}, - [1823] = {.lex_state = 7}, - [1824] = {.lex_state = 7}, - [1825] = {.lex_state = 7}, - [1826] = {.lex_state = 7}, - [1827] = {.lex_state = 7}, - [1828] = {.lex_state = 7}, + [1823] = {.lex_state = 8}, + [1824] = {.lex_state = 8}, + [1825] = {.lex_state = 8}, + [1826] = {.lex_state = 14}, + [1827] = {.lex_state = 8}, + [1828] = {.lex_state = 8}, [1829] = {.lex_state = 7}, - [1830] = {.lex_state = 8}, + [1830] = {.lex_state = 7}, [1831] = {.lex_state = 7}, - [1832] = {.lex_state = 7}, - [1833] = {.lex_state = 7}, - [1834] = {.lex_state = 7}, + [1832] = {.lex_state = 8}, + [1833] = {.lex_state = 8}, + [1834] = {.lex_state = 14}, [1835] = {.lex_state = 8}, [1836] = {.lex_state = 8}, [1837] = {.lex_state = 7}, - [1838] = {.lex_state = 7}, + [1838] = {.lex_state = 8}, [1839] = {.lex_state = 7}, [1840] = {.lex_state = 7}, - [1841] = {.lex_state = 7}, + [1841] = {.lex_state = 8}, [1842] = {.lex_state = 7}, [1843] = {.lex_state = 7}, [1844] = {.lex_state = 7}, [1845] = {.lex_state = 7}, - [1846] = {.lex_state = 7}, + [1846] = {.lex_state = 9}, [1847] = {.lex_state = 7}, [1848] = {.lex_state = 7}, - [1849] = {.lex_state = 7}, + [1849] = {.lex_state = 20}, [1850] = {.lex_state = 7}, - [1851] = {.lex_state = 7}, - [1852] = {.lex_state = 7}, - [1853] = {.lex_state = 7}, + [1851] = {.lex_state = 20}, + [1852] = {.lex_state = 20}, + [1853] = {.lex_state = 20}, [1854] = {.lex_state = 7}, - [1855] = {.lex_state = 7}, - [1856] = {.lex_state = 8}, - [1857] = {.lex_state = 8}, - [1858] = {.lex_state = 8}, - [1859] = {.lex_state = 8}, - [1860] = {.lex_state = 8}, + [1855] = {.lex_state = 20}, + [1856] = {.lex_state = 7}, + [1857] = {.lex_state = 20}, + [1858] = {.lex_state = 7}, + [1859] = {.lex_state = 7}, + [1860] = {.lex_state = 20}, [1861] = {.lex_state = 8}, - [1862] = {.lex_state = 7}, + [1862] = {.lex_state = 8}, [1863] = {.lex_state = 8}, - [1864] = {.lex_state = 7}, - [1865] = {.lex_state = 7}, + [1864] = {.lex_state = 8}, + [1865] = {.lex_state = 20}, [1866] = {.lex_state = 8}, - [1867] = {.lex_state = 8}, + [1867] = {.lex_state = 20}, [1868] = {.lex_state = 8}, [1869] = {.lex_state = 7}, - [1870] = {.lex_state = 14}, - [1871] = {.lex_state = 7}, - [1872] = {.lex_state = 7}, - [1873] = {.lex_state = 7}, + [1870] = {.lex_state = 8}, + [1871] = {.lex_state = 8}, + [1872] = {.lex_state = 8}, + [1873] = {.lex_state = 8}, [1874] = {.lex_state = 7}, [1875] = {.lex_state = 7}, - [1876] = {.lex_state = 7}, - [1877] = {.lex_state = 7}, - [1878] = {.lex_state = 14}, + [1876] = {.lex_state = 8}, + [1877] = {.lex_state = 8}, + [1878] = {.lex_state = 7}, [1879] = {.lex_state = 7}, [1880] = {.lex_state = 7}, [1881] = {.lex_state = 7}, @@ -11996,1355 +12827,1355 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1886] = {.lex_state = 7}, [1887] = {.lex_state = 7}, [1888] = {.lex_state = 7}, - [1889] = {.lex_state = 7}, + [1889] = {.lex_state = 8}, [1890] = {.lex_state = 7}, - [1891] = {.lex_state = 14}, - [1892] = {.lex_state = 7}, - [1893] = {.lex_state = 14}, - [1894] = {.lex_state = 7}, + [1891] = {.lex_state = 20}, + [1892] = {.lex_state = 20}, + [1893] = {.lex_state = 7}, + [1894] = {.lex_state = 20}, [1895] = {.lex_state = 7}, - [1896] = {.lex_state = 7}, - [1897] = {.lex_state = 7}, - [1898] = {.lex_state = 14}, - [1899] = {.lex_state = 7}, - [1900] = {.lex_state = 7}, - [1901] = {.lex_state = 14}, + [1896] = {.lex_state = 8}, + [1897] = {.lex_state = 8}, + [1898] = {.lex_state = 8}, + [1899] = {.lex_state = 8}, + [1900] = {.lex_state = 8}, + [1901] = {.lex_state = 8}, [1902] = {.lex_state = 14}, - [1903] = {.lex_state = 14}, - [1904] = {.lex_state = 14}, - [1905] = {.lex_state = 14}, - [1906] = {.lex_state = 14}, - [1907] = {.lex_state = 14}, - [1908] = {.lex_state = 14}, - [1909] = {.lex_state = 14}, - [1910] = {.lex_state = 14}, - [1911] = {.lex_state = 14}, - [1912] = {.lex_state = 14}, - [1913] = {.lex_state = 14}, - [1914] = {.lex_state = 14}, - [1915] = {.lex_state = 14}, - [1916] = {.lex_state = 14}, - [1917] = {.lex_state = 14}, - [1918] = {.lex_state = 14}, - [1919] = {.lex_state = 14}, - [1920] = {.lex_state = 14}, - [1921] = {.lex_state = 14}, - [1922] = {.lex_state = 16}, - [1923] = {.lex_state = 27}, - [1924] = {.lex_state = 27}, - [1925] = {.lex_state = 16}, - [1926] = {.lex_state = 16}, - [1927] = {.lex_state = 16}, - [1928] = {.lex_state = 16}, - [1929] = {.lex_state = 16}, - [1930] = {.lex_state = 16}, - [1931] = {.lex_state = 16}, - [1932] = {.lex_state = 16}, - [1933] = {.lex_state = 27}, - [1934] = {.lex_state = 16}, - [1935] = {.lex_state = 27}, - [1936] = {.lex_state = 27}, - [1937] = {.lex_state = 16}, - [1938] = {.lex_state = 27}, - [1939] = {.lex_state = 16}, - [1940] = {.lex_state = 16}, - [1941] = {.lex_state = 14}, - [1942] = {.lex_state = 14}, - [1943] = {.lex_state = 14}, - [1944] = {.lex_state = 14}, - [1945] = {.lex_state = 14}, - [1946] = {.lex_state = 14}, - [1947] = {.lex_state = 14}, - [1948] = {.lex_state = 27}, - [1949] = {.lex_state = 14}, - [1950] = {.lex_state = 14}, - [1951] = {.lex_state = 16}, - [1952] = {.lex_state = 14}, - [1953] = {.lex_state = 14}, - [1954] = {.lex_state = 14}, - [1955] = {.lex_state = 14}, - [1956] = {.lex_state = 16}, - [1957] = {.lex_state = 14}, - [1958] = {.lex_state = 27}, - [1959] = {.lex_state = 27}, - [1960] = {.lex_state = 27}, - [1961] = {.lex_state = 27}, - [1962] = {.lex_state = 14}, - [1963] = {.lex_state = 14}, - [1964] = {.lex_state = 27}, - [1965] = {.lex_state = 27}, - [1966] = {.lex_state = 14}, - [1967] = {.lex_state = 16}, - [1968] = {.lex_state = 16}, - [1969] = {.lex_state = 27}, - [1970] = {.lex_state = 14}, - [1971] = {.lex_state = 27}, - [1972] = {.lex_state = 14}, - [1973] = {.lex_state = 27}, - [1974] = {.lex_state = 16}, - [1975] = {.lex_state = 27}, - [1976] = {.lex_state = 27}, - [1977] = {.lex_state = 27}, - [1978] = {.lex_state = 14}, - [1979] = {.lex_state = 27}, - [1980] = {.lex_state = 14}, - [1981] = {.lex_state = 27}, - [1982] = {.lex_state = 27}, - [1983] = {.lex_state = 16}, - [1984] = {.lex_state = 27}, - [1985] = {.lex_state = 27}, - [1986] = {.lex_state = 27}, - [1987] = {.lex_state = 14}, - [1988] = {.lex_state = 14}, - [1989] = {.lex_state = 27}, - [1990] = {.lex_state = 16}, - [1991] = {.lex_state = 27}, - [1992] = {.lex_state = 27}, - [1993] = {.lex_state = 27}, - [1994] = {.lex_state = 27}, - [1995] = {.lex_state = 27}, - [1996] = {.lex_state = 27}, - [1997] = {.lex_state = 27}, - [1998] = {.lex_state = 27}, - [1999] = {.lex_state = 27}, - [2000] = {.lex_state = 14}, - [2001] = {.lex_state = 27}, - [2002] = {.lex_state = 27}, - [2003] = {.lex_state = 27}, - [2004] = {.lex_state = 27}, - [2005] = {.lex_state = 27}, - [2006] = {.lex_state = 27}, - [2007] = {.lex_state = 27}, - [2008] = {.lex_state = 27}, - [2009] = {.lex_state = 27}, - [2010] = {.lex_state = 27}, - [2011] = {.lex_state = 27}, - [2012] = {.lex_state = 27}, - [2013] = {.lex_state = 14}, - [2014] = {.lex_state = 27}, - [2015] = {.lex_state = 14}, - [2016] = {.lex_state = 27}, + [1903] = {.lex_state = 8}, + [1904] = {.lex_state = 8}, + [1905] = {.lex_state = 8}, + [1906] = {.lex_state = 8}, + [1907] = {.lex_state = 7}, + [1908] = {.lex_state = 7}, + [1909] = {.lex_state = 7}, + [1910] = {.lex_state = 8}, + [1911] = {.lex_state = 8}, + [1912] = {.lex_state = 7}, + [1913] = {.lex_state = 7}, + [1914] = {.lex_state = 8}, + [1915] = {.lex_state = 7}, + [1916] = {.lex_state = 8}, + [1917] = {.lex_state = 8}, + [1918] = {.lex_state = 8}, + [1919] = {.lex_state = 7}, + [1920] = {.lex_state = 7}, + [1921] = {.lex_state = 8}, + [1922] = {.lex_state = 8}, + [1923] = {.lex_state = 7}, + [1924] = {.lex_state = 8}, + [1925] = {.lex_state = 7}, + [1926] = {.lex_state = 7}, + [1927] = {.lex_state = 7}, + [1928] = {.lex_state = 7}, + [1929] = {.lex_state = 7}, + [1930] = {.lex_state = 7}, + [1931] = {.lex_state = 7}, + [1932] = {.lex_state = 8}, + [1933] = {.lex_state = 8}, + [1934] = {.lex_state = 8}, + [1935] = {.lex_state = 7}, + [1936] = {.lex_state = 8}, + [1937] = {.lex_state = 7}, + [1938] = {.lex_state = 7}, + [1939] = {.lex_state = 7}, + [1940] = {.lex_state = 8}, + [1941] = {.lex_state = 8}, + [1942] = {.lex_state = 8}, + [1943] = {.lex_state = 7}, + [1944] = {.lex_state = 8}, + [1945] = {.lex_state = 7}, + [1946] = {.lex_state = 8}, + [1947] = {.lex_state = 7}, + [1948] = {.lex_state = 8}, + [1949] = {.lex_state = 7}, + [1950] = {.lex_state = 7}, + [1951] = {.lex_state = 7}, + [1952] = {.lex_state = 7}, + [1953] = {.lex_state = 8}, + [1954] = {.lex_state = 7}, + [1955] = {.lex_state = 7}, + [1956] = {.lex_state = 7}, + [1957] = {.lex_state = 8}, + [1958] = {.lex_state = 8}, + [1959] = {.lex_state = 7}, + [1960] = {.lex_state = 8}, + [1961] = {.lex_state = 8}, + [1962] = {.lex_state = 8}, + [1963] = {.lex_state = 8}, + [1964] = {.lex_state = 8}, + [1965] = {.lex_state = 8}, + [1966] = {.lex_state = 8}, + [1967] = {.lex_state = 7}, + [1968] = {.lex_state = 8}, + [1969] = {.lex_state = 7}, + [1970] = {.lex_state = 8}, + [1971] = {.lex_state = 7}, + [1972] = {.lex_state = 7}, + [1973] = {.lex_state = 8}, + [1974] = {.lex_state = 8}, + [1975] = {.lex_state = 7}, + [1976] = {.lex_state = 8}, + [1977] = {.lex_state = 8}, + [1978] = {.lex_state = 8}, + [1979] = {.lex_state = 8}, + [1980] = {.lex_state = 8}, + [1981] = {.lex_state = 8}, + [1982] = {.lex_state = 8}, + [1983] = {.lex_state = 7}, + [1984] = {.lex_state = 7}, + [1985] = {.lex_state = 7}, + [1986] = {.lex_state = 8}, + [1987] = {.lex_state = 8}, + [1988] = {.lex_state = 7}, + [1989] = {.lex_state = 8}, + [1990] = {.lex_state = 8}, + [1991] = {.lex_state = 7}, + [1992] = {.lex_state = 8}, + [1993] = {.lex_state = 7}, + [1994] = {.lex_state = 7}, + [1995] = {.lex_state = 8}, + [1996] = {.lex_state = 7}, + [1997] = {.lex_state = 7}, + [1998] = {.lex_state = 8}, + [1999] = {.lex_state = 8}, + [2000] = {.lex_state = 8}, + [2001] = {.lex_state = 8}, + [2002] = {.lex_state = 8}, + [2003] = {.lex_state = 7}, + [2004] = {.lex_state = 8}, + [2005] = {.lex_state = 8}, + [2006] = {.lex_state = 8}, + [2007] = {.lex_state = 8}, + [2008] = {.lex_state = 7}, + [2009] = {.lex_state = 7}, + [2010] = {.lex_state = 8}, + [2011] = {.lex_state = 8}, + [2012] = {.lex_state = 8}, + [2013] = {.lex_state = 8}, + [2014] = {.lex_state = 8}, + [2015] = {.lex_state = 8}, + [2016] = {.lex_state = 7}, [2017] = {.lex_state = 14}, - [2018] = {.lex_state = 16}, - [2019] = {.lex_state = 27}, - [2020] = {.lex_state = 27}, - [2021] = {.lex_state = 14}, - [2022] = {.lex_state = 16}, - [2023] = {.lex_state = 16}, - [2024] = {.lex_state = 16}, - [2025] = {.lex_state = 27}, - [2026] = {.lex_state = 16}, - [2027] = {.lex_state = 16}, - [2028] = {.lex_state = 16}, - [2029] = {.lex_state = 16}, - [2030] = {.lex_state = 16}, - [2031] = {.lex_state = 16}, - [2032] = {.lex_state = 17}, - [2033] = {.lex_state = 16}, - [2034] = {.lex_state = 27}, - [2035] = {.lex_state = 16}, - [2036] = {.lex_state = 16}, - [2037] = {.lex_state = 27}, - [2038] = {.lex_state = 14}, - [2039] = {.lex_state = 14}, - [2040] = {.lex_state = 14}, - [2041] = {.lex_state = 14}, - [2042] = {.lex_state = 14}, - [2043] = {.lex_state = 14}, - [2044] = {.lex_state = 14}, - [2045] = {.lex_state = 14}, - [2046] = {.lex_state = 14}, - [2047] = {.lex_state = 14}, - [2048] = {.lex_state = 14}, - [2049] = {.lex_state = 14}, - [2050] = {.lex_state = 14}, - [2051] = {.lex_state = 14}, - [2052] = {.lex_state = 14}, - [2053] = {.lex_state = 14}, - [2054] = {.lex_state = 16}, - [2055] = {.lex_state = 16}, - [2056] = {.lex_state = 14}, - [2057] = {.lex_state = 21}, - [2058] = {.lex_state = 14}, - [2059] = {.lex_state = 14}, - [2060] = {.lex_state = 14}, - [2061] = {.lex_state = 14}, - [2062] = {.lex_state = 16}, - [2063] = {.lex_state = 16}, - [2064] = {.lex_state = 27}, - [2065] = {.lex_state = 27}, - [2066] = {.lex_state = 17}, - [2067] = {.lex_state = 17}, - [2068] = {.lex_state = 17}, - [2069] = {.lex_state = 17}, - [2070] = {.lex_state = 14}, - [2071] = {.lex_state = 14}, - [2072] = {.lex_state = 21}, - [2073] = {.lex_state = 14}, - [2074] = {.lex_state = 14}, - [2075] = {.lex_state = 14}, - [2076] = {.lex_state = 14}, - [2077] = {.lex_state = 14}, - [2078] = {.lex_state = 27}, - [2079] = {.lex_state = 14}, - [2080] = {.lex_state = 14}, - [2081] = {.lex_state = 14}, - [2082] = {.lex_state = 23}, - [2083] = {.lex_state = 14}, - [2084] = {.lex_state = 16}, - [2085] = {.lex_state = 23}, - [2086] = {.lex_state = 16}, - [2087] = {.lex_state = 27}, - [2088] = {.lex_state = 21}, - [2089] = {.lex_state = 21}, - [2090] = {.lex_state = 16}, - [2091] = {.lex_state = 16}, - [2092] = {.lex_state = 16}, - [2093] = {.lex_state = 27}, - [2094] = {.lex_state = 16}, + [2018] = {.lex_state = 7}, + [2019] = {.lex_state = 8}, + [2020] = {.lex_state = 7}, + [2021] = {.lex_state = 7}, + [2022] = {.lex_state = 8}, + [2023] = {.lex_state = 8}, + [2024] = {.lex_state = 7}, + [2025] = {.lex_state = 7}, + [2026] = {.lex_state = 8}, + [2027] = {.lex_state = 7}, + [2028] = {.lex_state = 8}, + [2029] = {.lex_state = 7}, + [2030] = {.lex_state = 8}, + [2031] = {.lex_state = 8}, + [2032] = {.lex_state = 8}, + [2033] = {.lex_state = 8}, + [2034] = {.lex_state = 8}, + [2035] = {.lex_state = 8}, + [2036] = {.lex_state = 8}, + [2037] = {.lex_state = 8}, + [2038] = {.lex_state = 7}, + [2039] = {.lex_state = 8}, + [2040] = {.lex_state = 7}, + [2041] = {.lex_state = 8}, + [2042] = {.lex_state = 8}, + [2043] = {.lex_state = 8}, + [2044] = {.lex_state = 8}, + [2045] = {.lex_state = 8}, + [2046] = {.lex_state = 8}, + [2047] = {.lex_state = 8}, + [2048] = {.lex_state = 8}, + [2049] = {.lex_state = 7}, + [2050] = {.lex_state = 7}, + [2051] = {.lex_state = 8}, + [2052] = {.lex_state = 7}, + [2053] = {.lex_state = 7}, + [2054] = {.lex_state = 8}, + [2055] = {.lex_state = 7}, + [2056] = {.lex_state = 7}, + [2057] = {.lex_state = 7}, + [2058] = {.lex_state = 7}, + [2059] = {.lex_state = 7}, + [2060] = {.lex_state = 7}, + [2061] = {.lex_state = 8}, + [2062] = {.lex_state = 8}, + [2063] = {.lex_state = 7}, + [2064] = {.lex_state = 8}, + [2065] = {.lex_state = 8}, + [2066] = {.lex_state = 7}, + [2067] = {.lex_state = 8}, + [2068] = {.lex_state = 8}, + [2069] = {.lex_state = 7}, + [2070] = {.lex_state = 8}, + [2071] = {.lex_state = 7}, + [2072] = {.lex_state = 8}, + [2073] = {.lex_state = 7}, + [2074] = {.lex_state = 8}, + [2075] = {.lex_state = 8}, + [2076] = {.lex_state = 7}, + [2077] = {.lex_state = 7}, + [2078] = {.lex_state = 8}, + [2079] = {.lex_state = 8}, + [2080] = {.lex_state = 8}, + [2081] = {.lex_state = 7}, + [2082] = {.lex_state = 8}, + [2083] = {.lex_state = 8}, + [2084] = {.lex_state = 8}, + [2085] = {.lex_state = 8}, + [2086] = {.lex_state = 8}, + [2087] = {.lex_state = 8}, + [2088] = {.lex_state = 7}, + [2089] = {.lex_state = 8}, + [2090] = {.lex_state = 7}, + [2091] = {.lex_state = 8}, + [2092] = {.lex_state = 8}, + [2093] = {.lex_state = 8}, + [2094] = {.lex_state = 8}, [2095] = {.lex_state = 14}, - [2096] = {.lex_state = 27}, - [2097] = {.lex_state = 16}, - [2098] = {.lex_state = 27}, - [2099] = {.lex_state = 27}, - [2100] = {.lex_state = 27}, - [2101] = {.lex_state = 27}, - [2102] = {.lex_state = 27}, - [2103] = {.lex_state = 27}, - [2104] = {.lex_state = 27}, - [2105] = {.lex_state = 27}, - [2106] = {.lex_state = 27}, - [2107] = {.lex_state = 27}, - [2108] = {.lex_state = 27}, - [2109] = {.lex_state = 23}, - [2110] = {.lex_state = 16}, - [2111] = {.lex_state = 27}, - [2112] = {.lex_state = 16}, - [2113] = {.lex_state = 27}, - [2114] = {.lex_state = 27}, - [2115] = {.lex_state = 27}, - [2116] = {.lex_state = 27}, - [2117] = {.lex_state = 23}, - [2118] = {.lex_state = 16}, - [2119] = {.lex_state = 27}, - [2120] = {.lex_state = 27}, - [2121] = {.lex_state = 27}, - [2122] = {.lex_state = 27}, - [2123] = {.lex_state = 23}, - [2124] = {.lex_state = 27}, - [2125] = {.lex_state = 10}, - [2126] = {.lex_state = 27}, - [2127] = {.lex_state = 14}, - [2128] = {.lex_state = 27}, - [2129] = {.lex_state = 27}, - [2130] = {.lex_state = 14}, - [2131] = {.lex_state = 27}, - [2132] = {.lex_state = 16}, - [2133] = {.lex_state = 14}, - [2134] = {.lex_state = 27}, - [2135] = {.lex_state = 27}, - [2136] = {.lex_state = 27}, - [2137] = {.lex_state = 27}, - [2138] = {.lex_state = 23}, - [2139] = {.lex_state = 17}, - [2140] = {.lex_state = 27}, - [2141] = {.lex_state = 14}, - [2142] = {.lex_state = 27}, - [2143] = {.lex_state = 27}, - [2144] = {.lex_state = 27}, - [2145] = {.lex_state = 27}, - [2146] = {.lex_state = 14}, - [2147] = {.lex_state = 27}, + [2096] = {.lex_state = 8}, + [2097] = {.lex_state = 8}, + [2098] = {.lex_state = 7}, + [2099] = {.lex_state = 7}, + [2100] = {.lex_state = 8}, + [2101] = {.lex_state = 7}, + [2102] = {.lex_state = 8}, + [2103] = {.lex_state = 8}, + [2104] = {.lex_state = 7}, + [2105] = {.lex_state = 8}, + [2106] = {.lex_state = 8}, + [2107] = {.lex_state = 7}, + [2108] = {.lex_state = 8}, + [2109] = {.lex_state = 8}, + [2110] = {.lex_state = 7}, + [2111] = {.lex_state = 8}, + [2112] = {.lex_state = 7}, + [2113] = {.lex_state = 8}, + [2114] = {.lex_state = 7}, + [2115] = {.lex_state = 8}, + [2116] = {.lex_state = 7}, + [2117] = {.lex_state = 7}, + [2118] = {.lex_state = 7}, + [2119] = {.lex_state = 7}, + [2120] = {.lex_state = 7}, + [2121] = {.lex_state = 7}, + [2122] = {.lex_state = 14}, + [2123] = {.lex_state = 7}, + [2124] = {.lex_state = 7}, + [2125] = {.lex_state = 8}, + [2126] = {.lex_state = 7}, + [2127] = {.lex_state = 7}, + [2128] = {.lex_state = 7}, + [2129] = {.lex_state = 14}, + [2130] = {.lex_state = 8}, + [2131] = {.lex_state = 7}, + [2132] = {.lex_state = 7}, + [2133] = {.lex_state = 7}, + [2134] = {.lex_state = 7}, + [2135] = {.lex_state = 14}, + [2136] = {.lex_state = 7}, + [2137] = {.lex_state = 7}, + [2138] = {.lex_state = 7}, + [2139] = {.lex_state = 7}, + [2140] = {.lex_state = 14}, + [2141] = {.lex_state = 8}, + [2142] = {.lex_state = 7}, + [2143] = {.lex_state = 7}, + [2144] = {.lex_state = 7}, + [2145] = {.lex_state = 7}, + [2146] = {.lex_state = 7}, + [2147] = {.lex_state = 7}, [2148] = {.lex_state = 14}, - [2149] = {.lex_state = 14}, - [2150] = {.lex_state = 14}, - [2151] = {.lex_state = 17}, - [2152] = {.lex_state = 16}, - [2153] = {.lex_state = 10}, - [2154] = {.lex_state = 14}, - [2155] = {.lex_state = 16}, - [2156] = {.lex_state = 23}, - [2157] = {.lex_state = 14}, - [2158] = {.lex_state = 17}, - [2159] = {.lex_state = 17}, - [2160] = {.lex_state = 14}, - [2161] = {.lex_state = 17}, - [2162] = {.lex_state = 17}, - [2163] = {.lex_state = 10}, - [2164] = {.lex_state = 6}, + [2149] = {.lex_state = 7}, + [2150] = {.lex_state = 7}, + [2151] = {.lex_state = 14}, + [2152] = {.lex_state = 7}, + [2153] = {.lex_state = 7}, + [2154] = {.lex_state = 7}, + [2155] = {.lex_state = 7}, + [2156] = {.lex_state = 7}, + [2157] = {.lex_state = 7}, + [2158] = {.lex_state = 7}, + [2159] = {.lex_state = 14}, + [2160] = {.lex_state = 7}, + [2161] = {.lex_state = 14}, + [2162] = {.lex_state = 14}, + [2163] = {.lex_state = 14}, + [2164] = {.lex_state = 14}, [2165] = {.lex_state = 14}, [2166] = {.lex_state = 14}, - [2167] = {.lex_state = 16}, - [2168] = {.lex_state = 16}, + [2167] = {.lex_state = 14}, + [2168] = {.lex_state = 14}, [2169] = {.lex_state = 14}, [2170] = {.lex_state = 14}, [2171] = {.lex_state = 14}, [2172] = {.lex_state = 14}, - [2173] = {.lex_state = 6}, + [2173] = {.lex_state = 14}, [2174] = {.lex_state = 14}, - [2175] = {.lex_state = 16}, + [2175] = {.lex_state = 14}, [2176] = {.lex_state = 14}, - [2177] = {.lex_state = 10}, + [2177] = {.lex_state = 14}, [2178] = {.lex_state = 14}, [2179] = {.lex_state = 14}, [2180] = {.lex_state = 14}, [2181] = {.lex_state = 14}, [2182] = {.lex_state = 14}, [2183] = {.lex_state = 14}, - [2184] = {.lex_state = 6}, + [2184] = {.lex_state = 14}, [2185] = {.lex_state = 14}, - [2186] = {.lex_state = 70}, + [2186] = {.lex_state = 14}, [2187] = {.lex_state = 14}, - [2188] = {.lex_state = 16}, + [2188] = {.lex_state = 14}, [2189] = {.lex_state = 14}, - [2190] = {.lex_state = 14}, - [2191] = {.lex_state = 10}, - [2192] = {.lex_state = 16}, + [2190] = {.lex_state = 27}, + [2191] = {.lex_state = 16}, + [2192] = {.lex_state = 27}, [2193] = {.lex_state = 16}, [2194] = {.lex_state = 16}, - [2195] = {.lex_state = 14}, - [2196] = {.lex_state = 14}, - [2197] = {.lex_state = 14}, - [2198] = {.lex_state = 14}, - [2199] = {.lex_state = 14}, - [2200] = {.lex_state = 14}, - [2201] = {.lex_state = 14}, - [2202] = {.lex_state = 14}, - [2203] = {.lex_state = 23}, - [2204] = {.lex_state = 23}, - [2205] = {.lex_state = 14}, - [2206] = {.lex_state = 23}, - [2207] = {.lex_state = 14}, - [2208] = {.lex_state = 23}, - [2209] = {.lex_state = 23}, - [2210] = {.lex_state = 23}, + [2195] = {.lex_state = 16}, + [2196] = {.lex_state = 16}, + [2197] = {.lex_state = 16}, + [2198] = {.lex_state = 16}, + [2199] = {.lex_state = 16}, + [2200] = {.lex_state = 16}, + [2201] = {.lex_state = 27}, + [2202] = {.lex_state = 27}, + [2203] = {.lex_state = 27}, + [2204] = {.lex_state = 27}, + [2205] = {.lex_state = 16}, + [2206] = {.lex_state = 16}, + [2207] = {.lex_state = 16}, + [2208] = {.lex_state = 16}, + [2209] = {.lex_state = 27}, + [2210] = {.lex_state = 14}, [2211] = {.lex_state = 14}, - [2212] = {.lex_state = 23}, + [2212] = {.lex_state = 14}, [2213] = {.lex_state = 14}, [2214] = {.lex_state = 14}, [2215] = {.lex_state = 14}, [2216] = {.lex_state = 14}, - [2217] = {.lex_state = 23}, - [2218] = {.lex_state = 14}, + [2217] = {.lex_state = 14}, + [2218] = {.lex_state = 16}, [2219] = {.lex_state = 14}, [2220] = {.lex_state = 14}, [2221] = {.lex_state = 14}, - [2222] = {.lex_state = 14}, + [2222] = {.lex_state = 16}, [2223] = {.lex_state = 14}, [2224] = {.lex_state = 14}, [2225] = {.lex_state = 14}, [2226] = {.lex_state = 14}, - [2227] = {.lex_state = 14}, + [2227] = {.lex_state = 27}, [2228] = {.lex_state = 14}, - [2229] = {.lex_state = 14}, - [2230] = {.lex_state = 14}, + [2229] = {.lex_state = 27}, + [2230] = {.lex_state = 27}, [2231] = {.lex_state = 14}, - [2232] = {.lex_state = 23}, - [2233] = {.lex_state = 21}, - [2234] = {.lex_state = 14}, - [2235] = {.lex_state = 14}, - [2236] = {.lex_state = 14}, - [2237] = {.lex_state = 14}, + [2232] = {.lex_state = 27}, + [2233] = {.lex_state = 27}, + [2234] = {.lex_state = 27}, + [2235] = {.lex_state = 27}, + [2236] = {.lex_state = 16}, + [2237] = {.lex_state = 27}, [2238] = {.lex_state = 14}, - [2239] = {.lex_state = 14}, + [2239] = {.lex_state = 27}, [2240] = {.lex_state = 14}, - [2241] = {.lex_state = 23}, - [2242] = {.lex_state = 10}, + [2241] = {.lex_state = 14}, + [2242] = {.lex_state = 16}, [2243] = {.lex_state = 14}, - [2244] = {.lex_state = 14}, - [2245] = {.lex_state = 14}, + [2244] = {.lex_state = 27}, + [2245] = {.lex_state = 27}, [2246] = {.lex_state = 14}, - [2247] = {.lex_state = 23}, - [2248] = {.lex_state = 14}, - [2249] = {.lex_state = 23}, - [2250] = {.lex_state = 14}, - [2251] = {.lex_state = 14}, - [2252] = {.lex_state = 23}, - [2253] = {.lex_state = 70}, - [2254] = {.lex_state = 70}, - [2255] = {.lex_state = 70}, + [2247] = {.lex_state = 16}, + [2248] = {.lex_state = 27}, + [2249] = {.lex_state = 27}, + [2250] = {.lex_state = 27}, + [2251] = {.lex_state = 27}, + [2252] = {.lex_state = 14}, + [2253] = {.lex_state = 27}, + [2254] = {.lex_state = 16}, + [2255] = {.lex_state = 27}, [2256] = {.lex_state = 14}, - [2257] = {.lex_state = 70}, - [2258] = {.lex_state = 14}, - [2259] = {.lex_state = 14}, - [2260] = {.lex_state = 14}, - [2261] = {.lex_state = 70}, - [2262] = {.lex_state = 23}, - [2263] = {.lex_state = 23}, - [2264] = {.lex_state = 70}, - [2265] = {.lex_state = 14}, - [2266] = {.lex_state = 16}, - [2267] = {.lex_state = 70}, - [2268] = {.lex_state = 70}, - [2269] = {.lex_state = 23}, - [2270] = {.lex_state = 70}, - [2271] = {.lex_state = 70}, + [2257] = {.lex_state = 16}, + [2258] = {.lex_state = 27}, + [2259] = {.lex_state = 27}, + [2260] = {.lex_state = 27}, + [2261] = {.lex_state = 27}, + [2262] = {.lex_state = 27}, + [2263] = {.lex_state = 27}, + [2264] = {.lex_state = 27}, + [2265] = {.lex_state = 27}, + [2266] = {.lex_state = 27}, + [2267] = {.lex_state = 27}, + [2268] = {.lex_state = 27}, + [2269] = {.lex_state = 27}, + [2270] = {.lex_state = 27}, + [2271] = {.lex_state = 27}, [2272] = {.lex_state = 14}, [2273] = {.lex_state = 14}, - [2274] = {.lex_state = 70}, - [2275] = {.lex_state = 70}, - [2276] = {.lex_state = 70}, - [2277] = {.lex_state = 70}, - [2278] = {.lex_state = 70}, - [2279] = {.lex_state = 16}, - [2280] = {.lex_state = 3}, - [2281] = {.lex_state = 70}, - [2282] = {.lex_state = 70}, - [2283] = {.lex_state = 70}, - [2284] = {.lex_state = 70}, - [2285] = {.lex_state = 3}, - [2286] = {.lex_state = 10}, - [2287] = {.lex_state = 17}, + [2274] = {.lex_state = 27}, + [2275] = {.lex_state = 27}, + [2276] = {.lex_state = 27}, + [2277] = {.lex_state = 27}, + [2278] = {.lex_state = 14}, + [2279] = {.lex_state = 27}, + [2280] = {.lex_state = 27}, + [2281] = {.lex_state = 14}, + [2282] = {.lex_state = 27}, + [2283] = {.lex_state = 27}, + [2284] = {.lex_state = 27}, + [2285] = {.lex_state = 27}, + [2286] = {.lex_state = 14}, + [2287] = {.lex_state = 27}, [2288] = {.lex_state = 14}, - [2289] = {.lex_state = 3}, - [2290] = {.lex_state = 23}, - [2291] = {.lex_state = 23}, - [2292] = {.lex_state = 70}, - [2293] = {.lex_state = 70}, - [2294] = {.lex_state = 70}, - [2295] = {.lex_state = 70}, - [2296] = {.lex_state = 70}, - [2297] = {.lex_state = 70}, - [2298] = {.lex_state = 70}, - [2299] = {.lex_state = 70}, - [2300] = {.lex_state = 10}, - [2301] = {.lex_state = 70}, - [2302] = {.lex_state = 23}, - [2303] = {.lex_state = 167}, - [2304] = {.lex_state = 14}, - [2305] = {.lex_state = 70}, - [2306] = {.lex_state = 70}, - [2307] = {.lex_state = 10}, - [2308] = {.lex_state = 14}, - [2309] = {.lex_state = 23}, + [2289] = {.lex_state = 16}, + [2290] = {.lex_state = 27}, + [2291] = {.lex_state = 27}, + [2292] = {.lex_state = 14}, + [2293] = {.lex_state = 16}, + [2294] = {.lex_state = 17}, + [2295] = {.lex_state = 16}, + [2296] = {.lex_state = 27}, + [2297] = {.lex_state = 16}, + [2298] = {.lex_state = 16}, + [2299] = {.lex_state = 27}, + [2300] = {.lex_state = 16}, + [2301] = {.lex_state = 27}, + [2302] = {.lex_state = 16}, + [2303] = {.lex_state = 16}, + [2304] = {.lex_state = 16}, + [2305] = {.lex_state = 16}, + [2306] = {.lex_state = 16}, + [2307] = {.lex_state = 16}, + [2308] = {.lex_state = 16}, + [2309] = {.lex_state = 14}, [2310] = {.lex_state = 14}, - [2311] = {.lex_state = 19}, + [2311] = {.lex_state = 14}, [2312] = {.lex_state = 14}, [2313] = {.lex_state = 14}, - [2314] = {.lex_state = 19}, + [2314] = {.lex_state = 14}, [2315] = {.lex_state = 14}, [2316] = {.lex_state = 14}, [2317] = {.lex_state = 14}, [2318] = {.lex_state = 14}, [2319] = {.lex_state = 14}, [2320] = {.lex_state = 14}, - [2321] = {.lex_state = 17}, + [2321] = {.lex_state = 14}, [2322] = {.lex_state = 14}, [2323] = {.lex_state = 14}, [2324] = {.lex_state = 14}, [2325] = {.lex_state = 14}, - [2326] = {.lex_state = 14}, - [2327] = {.lex_state = 14}, - [2328] = {.lex_state = 14}, - [2329] = {.lex_state = 13}, - [2330] = {.lex_state = 17}, - [2331] = {.lex_state = 14}, - [2332] = {.lex_state = 14}, - [2333] = {.lex_state = 13}, + [2326] = {.lex_state = 16}, + [2327] = {.lex_state = 23}, + [2328] = {.lex_state = 16}, + [2329] = {.lex_state = 14}, + [2330] = {.lex_state = 14}, + [2331] = {.lex_state = 17}, + [2332] = {.lex_state = 17}, + [2333] = {.lex_state = 14}, [2334] = {.lex_state = 14}, - [2335] = {.lex_state = 14}, + [2335] = {.lex_state = 23}, [2336] = {.lex_state = 27}, [2337] = {.lex_state = 14}, - [2338] = {.lex_state = 27}, - [2339] = {.lex_state = 27}, - [2340] = {.lex_state = 27}, - [2341] = {.lex_state = 27}, + [2338] = {.lex_state = 14}, + [2339] = {.lex_state = 14}, + [2340] = {.lex_state = 16}, + [2341] = {.lex_state = 21}, [2342] = {.lex_state = 14}, - [2343] = {.lex_state = 27}, - [2344] = {.lex_state = 27}, - [2345] = {.lex_state = 14}, - [2346] = {.lex_state = 14}, - [2347] = {.lex_state = 70}, - [2348] = {.lex_state = 14}, - [2349] = {.lex_state = 14}, - [2350] = {.lex_state = 14}, - [2351] = {.lex_state = 14}, - [2352] = {.lex_state = 19}, + [2343] = {.lex_state = 14}, + [2344] = {.lex_state = 14}, + [2345] = {.lex_state = 21}, + [2346] = {.lex_state = 16}, + [2347] = {.lex_state = 27}, + [2348] = {.lex_state = 16}, + [2349] = {.lex_state = 16}, + [2350] = {.lex_state = 16}, + [2351] = {.lex_state = 16}, + [2352] = {.lex_state = 27}, [2353] = {.lex_state = 27}, - [2354] = {.lex_state = 14}, + [2354] = {.lex_state = 21}, [2355] = {.lex_state = 14}, - [2356] = {.lex_state = 14}, + [2356] = {.lex_state = 16}, [2357] = {.lex_state = 14}, - [2358] = {.lex_state = 70}, - [2359] = {.lex_state = 14}, - [2360] = {.lex_state = 27}, - [2361] = {.lex_state = 14}, - [2362] = {.lex_state = 27}, - [2363] = {.lex_state = 14}, - [2364] = {.lex_state = 17}, - [2365] = {.lex_state = 14}, - [2366] = {.lex_state = 14}, - [2367] = {.lex_state = 27}, - [2368] = {.lex_state = 14}, - [2369] = {.lex_state = 27}, - [2370] = {.lex_state = 27}, - [2371] = {.lex_state = 14}, - [2372] = {.lex_state = 27}, - [2373] = {.lex_state = 14}, - [2374] = {.lex_state = 19}, + [2358] = {.lex_state = 14}, + [2359] = {.lex_state = 16}, + [2360] = {.lex_state = 21}, + [2361] = {.lex_state = 16}, + [2362] = {.lex_state = 16}, + [2363] = {.lex_state = 16}, + [2364] = {.lex_state = 16}, + [2365] = {.lex_state = 17}, + [2366] = {.lex_state = 21}, + [2367] = {.lex_state = 14}, + [2368] = {.lex_state = 21}, + [2369] = {.lex_state = 17}, + [2370] = {.lex_state = 14}, + [2371] = {.lex_state = 27}, + [2372] = {.lex_state = 14}, + [2373] = {.lex_state = 27}, + [2374] = {.lex_state = 27}, [2375] = {.lex_state = 27}, - [2376] = {.lex_state = 19}, - [2377] = {.lex_state = 3}, - [2378] = {.lex_state = 14}, - [2379] = {.lex_state = 27}, - [2380] = {.lex_state = 14}, - [2381] = {.lex_state = 3}, + [2376] = {.lex_state = 27}, + [2377] = {.lex_state = 27}, + [2378] = {.lex_state = 27}, + [2379] = {.lex_state = 14}, + [2380] = {.lex_state = 27}, + [2381] = {.lex_state = 27}, [2382] = {.lex_state = 27}, - [2383] = {.lex_state = 14}, - [2384] = {.lex_state = 3}, - [2385] = {.lex_state = 14}, - [2386] = {.lex_state = 19}, - [2387] = {.lex_state = 14}, + [2383] = {.lex_state = 27}, + [2384] = {.lex_state = 27}, + [2385] = {.lex_state = 27}, + [2386] = {.lex_state = 27}, + [2387] = {.lex_state = 27}, [2388] = {.lex_state = 27}, - [2389] = {.lex_state = 17}, - [2390] = {.lex_state = 14}, - [2391] = {.lex_state = 17}, - [2392] = {.lex_state = 17}, - [2393] = {.lex_state = 17}, - [2394] = {.lex_state = 14}, - [2395] = {.lex_state = 23}, - [2396] = {.lex_state = 14}, - [2397] = {.lex_state = 14}, - [2398] = {.lex_state = 14}, - [2399] = {.lex_state = 14}, - [2400] = {.lex_state = 14}, - [2401] = {.lex_state = 14}, + [2389] = {.lex_state = 27}, + [2390] = {.lex_state = 27}, + [2391] = {.lex_state = 16}, + [2392] = {.lex_state = 14}, + [2393] = {.lex_state = 16}, + [2394] = {.lex_state = 16}, + [2395] = {.lex_state = 27}, + [2396] = {.lex_state = 23}, + [2397] = {.lex_state = 10}, + [2398] = {.lex_state = 27}, + [2399] = {.lex_state = 27}, + [2400] = {.lex_state = 27}, + [2401] = {.lex_state = 27}, [2402] = {.lex_state = 14}, - [2403] = {.lex_state = 14}, - [2404] = {.lex_state = 14}, - [2405] = {.lex_state = 14}, - [2406] = {.lex_state = 3}, - [2407] = {.lex_state = 14}, - [2408] = {.lex_state = 14}, - [2409] = {.lex_state = 6}, - [2410] = {.lex_state = 27}, + [2403] = {.lex_state = 27}, + [2404] = {.lex_state = 27}, + [2405] = {.lex_state = 27}, + [2406] = {.lex_state = 16}, + [2407] = {.lex_state = 27}, + [2408] = {.lex_state = 27}, + [2409] = {.lex_state = 27}, + [2410] = {.lex_state = 23}, [2411] = {.lex_state = 27}, [2412] = {.lex_state = 27}, - [2413] = {.lex_state = 10}, - [2414] = {.lex_state = 14}, - [2415] = {.lex_state = 10}, - [2416] = {.lex_state = 10}, + [2413] = {.lex_state = 27}, + [2414] = {.lex_state = 27}, + [2415] = {.lex_state = 23}, + [2416] = {.lex_state = 14}, [2417] = {.lex_state = 27}, - [2418] = {.lex_state = 10}, + [2418] = {.lex_state = 14}, [2419] = {.lex_state = 27}, [2420] = {.lex_state = 27}, - [2421] = {.lex_state = 14}, + [2421] = {.lex_state = 27}, [2422] = {.lex_state = 27}, - [2423] = {.lex_state = 10}, - [2424] = {.lex_state = 10}, - [2425] = {.lex_state = 27}, - [2426] = {.lex_state = 27}, - [2427] = {.lex_state = 10}, - [2428] = {.lex_state = 27}, + [2423] = {.lex_state = 17}, + [2424] = {.lex_state = 23}, + [2425] = {.lex_state = 14}, + [2426] = {.lex_state = 17}, + [2427] = {.lex_state = 14}, + [2428] = {.lex_state = 6}, [2429] = {.lex_state = 14}, - [2430] = {.lex_state = 27}, - [2431] = {.lex_state = 27}, + [2430] = {.lex_state = 14}, + [2431] = {.lex_state = 14}, [2432] = {.lex_state = 27}, - [2433] = {.lex_state = 27}, - [2434] = {.lex_state = 10}, - [2435] = {.lex_state = 14}, - [2436] = {.lex_state = 27}, - [2437] = {.lex_state = 10}, - [2438] = {.lex_state = 10}, - [2439] = {.lex_state = 27}, + [2433] = {.lex_state = 6}, + [2434] = {.lex_state = 23}, + [2435] = {.lex_state = 27}, + [2436] = {.lex_state = 10}, + [2437] = {.lex_state = 14}, + [2438] = {.lex_state = 14}, + [2439] = {.lex_state = 16}, [2440] = {.lex_state = 14}, - [2441] = {.lex_state = 10}, - [2442] = {.lex_state = 10}, - [2443] = {.lex_state = 10}, - [2444] = {.lex_state = 27}, + [2441] = {.lex_state = 27}, + [2442] = {.lex_state = 14}, + [2443] = {.lex_state = 27}, + [2444] = {.lex_state = 14}, [2445] = {.lex_state = 14}, - [2446] = {.lex_state = 27}, + [2446] = {.lex_state = 17}, [2447] = {.lex_state = 14}, [2448] = {.lex_state = 10}, - [2449] = {.lex_state = 10}, - [2450] = {.lex_state = 10}, - [2451] = {.lex_state = 10}, - [2452] = {.lex_state = 27}, - [2453] = {.lex_state = 14}, - [2454] = {.lex_state = 10}, - [2455] = {.lex_state = 10}, - [2456] = {.lex_state = 10}, - [2457] = {.lex_state = 10}, - [2458] = {.lex_state = 10}, - [2459] = {.lex_state = 10}, - [2460] = {.lex_state = 27}, - [2461] = {.lex_state = 14}, - [2462] = {.lex_state = 27}, - [2463] = {.lex_state = 27}, + [2449] = {.lex_state = 14}, + [2450] = {.lex_state = 70}, + [2451] = {.lex_state = 14}, + [2452] = {.lex_state = 14}, + [2453] = {.lex_state = 27}, + [2454] = {.lex_state = 14}, + [2455] = {.lex_state = 14}, + [2456] = {.lex_state = 14}, + [2457] = {.lex_state = 17}, + [2458] = {.lex_state = 27}, + [2459] = {.lex_state = 27}, + [2460] = {.lex_state = 14}, + [2461] = {.lex_state = 17}, + [2462] = {.lex_state = 17}, + [2463] = {.lex_state = 10}, [2464] = {.lex_state = 14}, - [2465] = {.lex_state = 10}, + [2465] = {.lex_state = 14}, [2466] = {.lex_state = 14}, [2467] = {.lex_state = 27}, - [2468] = {.lex_state = 14}, + [2468] = {.lex_state = 6}, [2469] = {.lex_state = 14}, - [2470] = {.lex_state = 6}, - [2471] = {.lex_state = 14}, - [2472] = {.lex_state = 27}, + [2470] = {.lex_state = 27}, + [2471] = {.lex_state = 27}, + [2472] = {.lex_state = 10}, [2473] = {.lex_state = 14}, [2474] = {.lex_state = 14}, [2475] = {.lex_state = 27}, - [2476] = {.lex_state = 27}, + [2476] = {.lex_state = 14}, [2477] = {.lex_state = 14}, - [2478] = {.lex_state = 10}, - [2479] = {.lex_state = 14}, + [2478] = {.lex_state = 14}, + [2479] = {.lex_state = 27}, [2480] = {.lex_state = 14}, - [2481] = {.lex_state = 10, .external_lex_state = 3}, - [2482] = {.lex_state = 27}, + [2481] = {.lex_state = 23}, + [2482] = {.lex_state = 23}, [2483] = {.lex_state = 14}, - [2484] = {.lex_state = 10}, + [2484] = {.lex_state = 14}, [2485] = {.lex_state = 14}, - [2486] = {.lex_state = 27}, - [2487] = {.lex_state = 10}, - [2488] = {.lex_state = 10}, - [2489] = {.lex_state = 70}, - [2490] = {.lex_state = 6}, - [2491] = {.lex_state = 27}, - [2492] = {.lex_state = 10}, - [2493] = {.lex_state = 27}, - [2494] = {.lex_state = 10}, - [2495] = {.lex_state = 27}, - [2496] = {.lex_state = 27}, - [2497] = {.lex_state = 27}, - [2498] = {.lex_state = 27}, - [2499] = {.lex_state = 27}, - [2500] = {.lex_state = 70}, - [2501] = {.lex_state = 27}, - [2502] = {.lex_state = 27}, - [2503] = {.lex_state = 27}, - [2504] = {.lex_state = 10}, + [2486] = {.lex_state = 14}, + [2487] = {.lex_state = 14}, + [2488] = {.lex_state = 14}, + [2489] = {.lex_state = 14}, + [2490] = {.lex_state = 14}, + [2491] = {.lex_state = 14}, + [2492] = {.lex_state = 14}, + [2493] = {.lex_state = 23}, + [2494] = {.lex_state = 23}, + [2495] = {.lex_state = 14}, + [2496] = {.lex_state = 23}, + [2497] = {.lex_state = 14}, + [2498] = {.lex_state = 23}, + [2499] = {.lex_state = 14}, + [2500] = {.lex_state = 14}, + [2501] = {.lex_state = 23}, + [2502] = {.lex_state = 14}, + [2503] = {.lex_state = 14}, + [2504] = {.lex_state = 14}, [2505] = {.lex_state = 14}, [2506] = {.lex_state = 14}, - [2507] = {.lex_state = 10}, + [2507] = {.lex_state = 14}, [2508] = {.lex_state = 14}, - [2509] = {.lex_state = 3}, - [2510] = {.lex_state = 3}, - [2511] = {.lex_state = 10}, - [2512] = {.lex_state = 6}, - [2513] = {.lex_state = 27}, - [2514] = {.lex_state = 70}, - [2515] = {.lex_state = 6}, - [2516] = {.lex_state = 6}, + [2509] = {.lex_state = 14}, + [2510] = {.lex_state = 14}, + [2511] = {.lex_state = 21}, + [2512] = {.lex_state = 23}, + [2513] = {.lex_state = 14}, + [2514] = {.lex_state = 23}, + [2515] = {.lex_state = 14}, + [2516] = {.lex_state = 14}, [2517] = {.lex_state = 14}, - [2518] = {.lex_state = 29}, - [2519] = {.lex_state = 10}, - [2520] = {.lex_state = 6}, + [2518] = {.lex_state = 14}, + [2519] = {.lex_state = 14}, + [2520] = {.lex_state = 14}, [2521] = {.lex_state = 14}, [2522] = {.lex_state = 14}, [2523] = {.lex_state = 14}, - [2524] = {.lex_state = 10, .external_lex_state = 4}, - [2525] = {.lex_state = 10}, - [2526] = {.lex_state = 10}, - [2527] = {.lex_state = 10}, - [2528] = {.lex_state = 6}, - [2529] = {.lex_state = 6}, - [2530] = {.lex_state = 27}, - [2531] = {.lex_state = 10}, - [2532] = {.lex_state = 70}, - [2533] = {.lex_state = 70}, + [2524] = {.lex_state = 14}, + [2525] = {.lex_state = 14}, + [2526] = {.lex_state = 14}, + [2527] = {.lex_state = 14}, + [2528] = {.lex_state = 14}, + [2529] = {.lex_state = 23}, + [2530] = {.lex_state = 14}, + [2531] = {.lex_state = 23}, + [2532] = {.lex_state = 23}, + [2533] = {.lex_state = 23}, [2534] = {.lex_state = 10}, - [2535] = {.lex_state = 10}, - [2536] = {.lex_state = 70}, - [2537] = {.lex_state = 3}, - [2538] = {.lex_state = 6}, - [2539] = {.lex_state = 70}, - [2540] = {.lex_state = 70}, + [2535] = {.lex_state = 23}, + [2536] = {.lex_state = 14}, + [2537] = {.lex_state = 14}, + [2538] = {.lex_state = 14}, + [2539] = {.lex_state = 23}, + [2540] = {.lex_state = 14}, [2541] = {.lex_state = 14}, - [2542] = {.lex_state = 10}, - [2543] = {.lex_state = 6}, - [2544] = {.lex_state = 10}, - [2545] = {.lex_state = 10}, - [2546] = {.lex_state = 10, .external_lex_state = 4}, + [2542] = {.lex_state = 23}, + [2543] = {.lex_state = 14}, + [2544] = {.lex_state = 14}, + [2545] = {.lex_state = 14}, + [2546] = {.lex_state = 14}, [2547] = {.lex_state = 14}, - [2548] = {.lex_state = 10}, - [2549] = {.lex_state = 10}, + [2548] = {.lex_state = 14}, + [2549] = {.lex_state = 14}, [2550] = {.lex_state = 14}, - [2551] = {.lex_state = 14}, - [2552] = {.lex_state = 10}, - [2553] = {.lex_state = 16}, + [2551] = {.lex_state = 23}, + [2552] = {.lex_state = 17}, + [2553] = {.lex_state = 70}, [2554] = {.lex_state = 14}, - [2555] = {.lex_state = 10}, - [2556] = {.lex_state = 10}, - [2557] = {.lex_state = 10}, - [2558] = {.lex_state = 70}, - [2559] = {.lex_state = 10}, - [2560] = {.lex_state = 10}, - [2561] = {.lex_state = 6}, - [2562] = {.lex_state = 10}, + [2555] = {.lex_state = 14}, + [2556] = {.lex_state = 70}, + [2557] = {.lex_state = 70}, + [2558] = {.lex_state = 14}, + [2559] = {.lex_state = 23}, + [2560] = {.lex_state = 23}, + [2561] = {.lex_state = 14}, + [2562] = {.lex_state = 70}, [2563] = {.lex_state = 14}, - [2564] = {.lex_state = 10, .external_lex_state = 4}, - [2565] = {.lex_state = 70}, - [2566] = {.lex_state = 6}, - [2567] = {.lex_state = 6}, - [2568] = {.lex_state = 6}, - [2569] = {.lex_state = 6}, - [2570] = {.lex_state = 6}, - [2571] = {.lex_state = 70}, - [2572] = {.lex_state = 27}, - [2573] = {.lex_state = 14}, - [2574] = {.lex_state = 6}, + [2564] = {.lex_state = 14}, + [2565] = {.lex_state = 23}, + [2566] = {.lex_state = 23}, + [2567] = {.lex_state = 10}, + [2568] = {.lex_state = 3}, + [2569] = {.lex_state = 70}, + [2570] = {.lex_state = 23}, + [2571] = {.lex_state = 3}, + [2572] = {.lex_state = 70}, + [2573] = {.lex_state = 70}, + [2574] = {.lex_state = 70}, [2575] = {.lex_state = 70}, - [2576] = {.lex_state = 14}, - [2577] = {.lex_state = 10}, - [2578] = {.lex_state = 27}, + [2576] = {.lex_state = 70}, + [2577] = {.lex_state = 70}, + [2578] = {.lex_state = 70}, [2579] = {.lex_state = 14}, - [2580] = {.lex_state = 10}, - [2581] = {.lex_state = 70}, - [2582] = {.lex_state = 10}, + [2580] = {.lex_state = 14}, + [2581] = {.lex_state = 14}, + [2582] = {.lex_state = 14}, [2583] = {.lex_state = 14}, [2584] = {.lex_state = 70}, - [2585] = {.lex_state = 70}, - [2586] = {.lex_state = 14}, - [2587] = {.lex_state = 10}, - [2588] = {.lex_state = 10}, - [2589] = {.lex_state = 70}, - [2590] = {.lex_state = 10}, - [2591] = {.lex_state = 6}, + [2585] = {.lex_state = 27}, + [2586] = {.lex_state = 23}, + [2587] = {.lex_state = 23}, + [2588] = {.lex_state = 27}, + [2589] = {.lex_state = 14}, + [2590] = {.lex_state = 14}, + [2591] = {.lex_state = 14}, [2592] = {.lex_state = 70}, - [2593] = {.lex_state = 27}, - [2594] = {.lex_state = 17}, - [2595] = {.lex_state = 14}, - [2596] = {.lex_state = 10}, - [2597] = {.lex_state = 10}, - [2598] = {.lex_state = 10, .external_lex_state = 4}, - [2599] = {.lex_state = 10}, + [2593] = {.lex_state = 70}, + [2594] = {.lex_state = 70}, + [2595] = {.lex_state = 70}, + [2596] = {.lex_state = 70}, + [2597] = {.lex_state = 167}, + [2598] = {.lex_state = 70}, + [2599] = {.lex_state = 70}, [2600] = {.lex_state = 70}, - [2601] = {.lex_state = 10}, + [2601] = {.lex_state = 70}, [2602] = {.lex_state = 70}, - [2603] = {.lex_state = 10}, - [2604] = {.lex_state = 10}, - [2605] = {.lex_state = 10}, - [2606] = {.lex_state = 10, .external_lex_state = 4}, + [2603] = {.lex_state = 70}, + [2604] = {.lex_state = 70}, + [2605] = {.lex_state = 70}, + [2606] = {.lex_state = 10}, [2607] = {.lex_state = 70}, - [2608] = {.lex_state = 6}, - [2609] = {.lex_state = 6}, + [2608] = {.lex_state = 70}, + [2609] = {.lex_state = 70}, [2610] = {.lex_state = 70}, - [2611] = {.lex_state = 70}, - [2612] = {.lex_state = 27}, + [2611] = {.lex_state = 14}, + [2612] = {.lex_state = 3}, [2613] = {.lex_state = 10}, - [2614] = {.lex_state = 17}, - [2615] = {.lex_state = 10}, - [2616] = {.lex_state = 6}, - [2617] = {.lex_state = 10}, - [2618] = {.lex_state = 70}, - [2619] = {.lex_state = 10, .external_lex_state = 4}, - [2620] = {.lex_state = 10}, + [2614] = {.lex_state = 14}, + [2615] = {.lex_state = 14}, + [2616] = {.lex_state = 14}, + [2617] = {.lex_state = 17}, + [2618] = {.lex_state = 14}, + [2619] = {.lex_state = 14}, + [2620] = {.lex_state = 17}, [2621] = {.lex_state = 14}, - [2622] = {.lex_state = 70}, - [2623] = {.lex_state = 10, .external_lex_state = 4}, - [2624] = {.lex_state = 70}, - [2625] = {.lex_state = 6}, - [2626] = {.lex_state = 6}, - [2627] = {.lex_state = 10}, - [2628] = {.lex_state = 17}, - [2629] = {.lex_state = 10}, - [2630] = {.lex_state = 10, .external_lex_state = 4}, - [2631] = {.lex_state = 10, .external_lex_state = 4}, - [2632] = {.lex_state = 17}, - [2633] = {.lex_state = 6}, - [2634] = {.lex_state = 6}, - [2635] = {.lex_state = 10, .external_lex_state = 4}, - [2636] = {.lex_state = 70}, - [2637] = {.lex_state = 10}, - [2638] = {.lex_state = 70}, - [2639] = {.lex_state = 6}, - [2640] = {.lex_state = 6}, - [2641] = {.lex_state = 70}, + [2622] = {.lex_state = 14}, + [2623] = {.lex_state = 18}, + [2624] = {.lex_state = 27}, + [2625] = {.lex_state = 27}, + [2626] = {.lex_state = 14}, + [2627] = {.lex_state = 14}, + [2628] = {.lex_state = 14}, + [2629] = {.lex_state = 27}, + [2630] = {.lex_state = 27}, + [2631] = {.lex_state = 27}, + [2632] = {.lex_state = 14}, + [2633] = {.lex_state = 18}, + [2634] = {.lex_state = 14}, + [2635] = {.lex_state = 27}, + [2636] = {.lex_state = 27}, + [2637] = {.lex_state = 14}, + [2638] = {.lex_state = 14}, + [2639] = {.lex_state = 3}, + [2640] = {.lex_state = 14}, + [2641] = {.lex_state = 14}, [2642] = {.lex_state = 14}, - [2643] = {.lex_state = 6}, - [2644] = {.lex_state = 6}, - [2645] = {.lex_state = 6}, + [2643] = {.lex_state = 14}, + [2644] = {.lex_state = 14}, + [2645] = {.lex_state = 14}, [2646] = {.lex_state = 14}, - [2647] = {.lex_state = 6}, - [2648] = {.lex_state = 6}, - [2649] = {.lex_state = 6}, - [2650] = {.lex_state = 6}, - [2651] = {.lex_state = 6}, - [2652] = {.lex_state = 6}, - [2653] = {.lex_state = 27}, - [2654] = {.lex_state = 10}, - [2655] = {.lex_state = 6}, - [2656] = {.lex_state = 10}, - [2657] = {.lex_state = 3}, - [2658] = {.lex_state = 70}, - [2659] = {.lex_state = 16}, - [2660] = {.lex_state = 70}, - [2661] = {.lex_state = 70}, + [2647] = {.lex_state = 14}, + [2648] = {.lex_state = 14}, + [2649] = {.lex_state = 14}, + [2650] = {.lex_state = 14}, + [2651] = {.lex_state = 27}, + [2652] = {.lex_state = 14}, + [2653] = {.lex_state = 14}, + [2654] = {.lex_state = 3}, + [2655] = {.lex_state = 14}, + [2656] = {.lex_state = 27}, + [2657] = {.lex_state = 14}, + [2658] = {.lex_state = 14}, + [2659] = {.lex_state = 13}, + [2660] = {.lex_state = 14}, + [2661] = {.lex_state = 27}, [2662] = {.lex_state = 14}, - [2663] = {.lex_state = 14}, - [2664] = {.lex_state = 10}, - [2665] = {.lex_state = 3}, - [2666] = {.lex_state = 14}, - [2667] = {.lex_state = 27}, - [2668] = {.lex_state = 16}, - [2669] = {.lex_state = 70}, - [2670] = {.lex_state = 70}, - [2671] = {.lex_state = 70}, - [2672] = {.lex_state = 10}, - [2673] = {.lex_state = 29}, - [2674] = {.lex_state = 70}, - [2675] = {.lex_state = 70}, - [2676] = {.lex_state = 10}, - [2677] = {.lex_state = 70}, + [2663] = {.lex_state = 27}, + [2664] = {.lex_state = 18}, + [2665] = {.lex_state = 14}, + [2666] = {.lex_state = 3}, + [2667] = {.lex_state = 14}, + [2668] = {.lex_state = 13}, + [2669] = {.lex_state = 17}, + [2670] = {.lex_state = 14}, + [2671] = {.lex_state = 14}, + [2672] = {.lex_state = 14}, + [2673] = {.lex_state = 14}, + [2674] = {.lex_state = 14}, + [2675] = {.lex_state = 14}, + [2676] = {.lex_state = 14}, + [2677] = {.lex_state = 17}, [2678] = {.lex_state = 14}, - [2679] = {.lex_state = 10}, - [2680] = {.lex_state = 14}, - [2681] = {.lex_state = 10}, + [2679] = {.lex_state = 17}, + [2680] = {.lex_state = 27}, + [2681] = {.lex_state = 18}, [2682] = {.lex_state = 14}, - [2683] = {.lex_state = 17}, + [2683] = {.lex_state = 14}, [2684] = {.lex_state = 14}, - [2685] = {.lex_state = 29}, - [2686] = {.lex_state = 14}, - [2687] = {.lex_state = 6}, - [2688] = {.lex_state = 10}, - [2689] = {.lex_state = 27}, - [2690] = {.lex_state = 27}, - [2691] = {.lex_state = 29}, + [2685] = {.lex_state = 27}, + [2686] = {.lex_state = 18}, + [2687] = {.lex_state = 14}, + [2688] = {.lex_state = 17}, + [2689] = {.lex_state = 3}, + [2690] = {.lex_state = 14}, + [2691] = {.lex_state = 17}, [2692] = {.lex_state = 14}, - [2693] = {.lex_state = 70}, - [2694] = {.lex_state = 70}, - [2695] = {.lex_state = 10}, - [2696] = {.lex_state = 10}, - [2697] = {.lex_state = 10}, - [2698] = {.lex_state = 27}, - [2699] = {.lex_state = 17}, - [2700] = {.lex_state = 70}, + [2693] = {.lex_state = 27}, + [2694] = {.lex_state = 14}, + [2695] = {.lex_state = 14}, + [2696] = {.lex_state = 14}, + [2697] = {.lex_state = 14}, + [2698] = {.lex_state = 14}, + [2699] = {.lex_state = 27}, + [2700] = {.lex_state = 14}, [2701] = {.lex_state = 14}, - [2702] = {.lex_state = 10, .external_lex_state = 4}, - [2703] = {.lex_state = 70}, - [2704] = {.lex_state = 10}, - [2705] = {.lex_state = 10}, + [2702] = {.lex_state = 14}, + [2703] = {.lex_state = 14}, + [2704] = {.lex_state = 14}, + [2705] = {.lex_state = 14}, [2706] = {.lex_state = 27}, - [2707] = {.lex_state = 10}, - [2708] = {.lex_state = 6}, - [2709] = {.lex_state = 70}, - [2710] = {.lex_state = 10}, + [2707] = {.lex_state = 27}, + [2708] = {.lex_state = 27}, + [2709] = {.lex_state = 14}, + [2710] = {.lex_state = 14}, [2711] = {.lex_state = 14}, - [2712] = {.lex_state = 17}, - [2713] = {.lex_state = 10, .external_lex_state = 4}, - [2714] = {.lex_state = 6}, - [2715] = {.lex_state = 10}, - [2716] = {.lex_state = 10}, - [2717] = {.lex_state = 3}, - [2718] = {.lex_state = 17}, + [2712] = {.lex_state = 14}, + [2713] = {.lex_state = 23}, + [2714] = {.lex_state = 70}, + [2715] = {.lex_state = 14}, + [2716] = {.lex_state = 27}, + [2717] = {.lex_state = 14}, + [2718] = {.lex_state = 14}, [2719] = {.lex_state = 14}, [2720] = {.lex_state = 14}, - [2721] = {.lex_state = 27}, - [2722] = {.lex_state = 27}, - [2723] = {.lex_state = 70}, - [2724] = {.lex_state = 70}, - [2725] = {.lex_state = 10}, - [2726] = {.lex_state = 10}, + [2721] = {.lex_state = 18}, + [2722] = {.lex_state = 18}, + [2723] = {.lex_state = 14}, + [2724] = {.lex_state = 14}, + [2725] = {.lex_state = 14}, + [2726] = {.lex_state = 14}, [2727] = {.lex_state = 14}, - [2728] = {.lex_state = 70}, - [2729] = {.lex_state = 3}, - [2730] = {.lex_state = 70}, - [2731] = {.lex_state = 14}, - [2732] = {.lex_state = 10}, + [2728] = {.lex_state = 27}, + [2729] = {.lex_state = 14}, + [2730] = {.lex_state = 14}, + [2731] = {.lex_state = 18}, + [2732] = {.lex_state = 14}, [2733] = {.lex_state = 14}, - [2734] = {.lex_state = 10, .external_lex_state = 4}, + [2734] = {.lex_state = 70}, [2735] = {.lex_state = 14}, [2736] = {.lex_state = 14}, - [2737] = {.lex_state = 70}, - [2738] = {.lex_state = 70}, - [2739] = {.lex_state = 6}, - [2740] = {.lex_state = 6}, - [2741] = {.lex_state = 6}, - [2742] = {.lex_state = 6}, - [2743] = {.lex_state = 14}, - [2744] = {.lex_state = 6}, - [2745] = {.lex_state = 14}, - [2746] = {.lex_state = 70}, - [2747] = {.lex_state = 70}, - [2748] = {.lex_state = 6}, - [2749] = {.lex_state = 6}, - [2750] = {.lex_state = 14}, - [2751] = {.lex_state = 6}, - [2752] = {.lex_state = 6}, - [2753] = {.lex_state = 14}, - [2754] = {.lex_state = 70}, - [2755] = {.lex_state = 10}, - [2756] = {.lex_state = 6}, - [2757] = {.lex_state = 17}, - [2758] = {.lex_state = 70}, - [2759] = {.lex_state = 6}, - [2760] = {.lex_state = 70}, - [2761] = {.lex_state = 70}, - [2762] = {.lex_state = 70}, - [2763] = {.lex_state = 70}, - [2764] = {.lex_state = 6}, - [2765] = {.lex_state = 70}, - [2766] = {.lex_state = 70}, - [2767] = {.lex_state = 70}, - [2768] = {.lex_state = 70}, - [2769] = {.lex_state = 70}, - [2770] = {.lex_state = 17}, - [2771] = {.lex_state = 70}, - [2772] = {.lex_state = 17}, - [2773] = {.lex_state = 70}, - [2774] = {.lex_state = 70}, + [2737] = {.lex_state = 14}, + [2738] = {.lex_state = 14}, + [2739] = {.lex_state = 14}, + [2740] = {.lex_state = 14}, + [2741] = {.lex_state = 14}, + [2742] = {.lex_state = 10}, + [2743] = {.lex_state = 10}, + [2744] = {.lex_state = 27}, + [2745] = {.lex_state = 6}, + [2746] = {.lex_state = 10}, + [2747] = {.lex_state = 14}, + [2748] = {.lex_state = 27}, + [2749] = {.lex_state = 27}, + [2750] = {.lex_state = 10}, + [2751] = {.lex_state = 27}, + [2752] = {.lex_state = 10}, + [2753] = {.lex_state = 6}, + [2754] = {.lex_state = 10}, + [2755] = {.lex_state = 27}, + [2756] = {.lex_state = 70}, + [2757] = {.lex_state = 3}, + [2758] = {.lex_state = 27}, + [2759] = {.lex_state = 10}, + [2760] = {.lex_state = 27}, + [2761] = {.lex_state = 10}, + [2762] = {.lex_state = 27}, + [2763] = {.lex_state = 27}, + [2764] = {.lex_state = 10}, + [2765] = {.lex_state = 14}, + [2766] = {.lex_state = 27}, + [2767] = {.lex_state = 14}, + [2768] = {.lex_state = 10}, + [2769] = {.lex_state = 14}, + [2770] = {.lex_state = 14}, + [2771] = {.lex_state = 10}, + [2772] = {.lex_state = 27}, + [2773] = {.lex_state = 27}, + [2774] = {.lex_state = 6}, [2775] = {.lex_state = 70}, - [2776] = {.lex_state = 70}, - [2777] = {.lex_state = 70}, - [2778] = {.lex_state = 70}, - [2779] = {.lex_state = 70}, - [2780] = {.lex_state = 70}, - [2781] = {.lex_state = 70}, - [2782] = {.lex_state = 70}, - [2783] = {.lex_state = 70}, - [2784] = {.lex_state = 70}, - [2785] = {.lex_state = 70}, - [2786] = {.lex_state = 17}, - [2787] = {.lex_state = 70}, - [2788] = {.lex_state = 70}, - [2789] = {.lex_state = 14}, - [2790] = {.lex_state = 6}, - [2791] = {.lex_state = 17}, - [2792] = {.lex_state = 17}, - [2793] = {.lex_state = 70}, - [2794] = {.lex_state = 17}, - [2795] = {.lex_state = 70}, - [2796] = {.lex_state = 70}, - [2797] = {.lex_state = 70}, - [2798] = {.lex_state = 70}, - [2799] = {.lex_state = 70}, + [2776] = {.lex_state = 10}, + [2777] = {.lex_state = 27}, + [2778] = {.lex_state = 10}, + [2779] = {.lex_state = 27}, + [2780] = {.lex_state = 27}, + [2781] = {.lex_state = 27}, + [2782] = {.lex_state = 27}, + [2783] = {.lex_state = 14}, + [2784] = {.lex_state = 27}, + [2785] = {.lex_state = 14}, + [2786] = {.lex_state = 27}, + [2787] = {.lex_state = 10}, + [2788] = {.lex_state = 14}, + [2789] = {.lex_state = 27}, + [2790] = {.lex_state = 10}, + [2791] = {.lex_state = 10}, + [2792] = {.lex_state = 10}, + [2793] = {.lex_state = 10, .external_lex_state = 3}, + [2794] = {.lex_state = 10}, + [2795] = {.lex_state = 10}, + [2796] = {.lex_state = 27}, + [2797] = {.lex_state = 3}, + [2798] = {.lex_state = 10}, + [2799] = {.lex_state = 10}, [2800] = {.lex_state = 14}, - [2801] = {.lex_state = 70}, - [2802] = {.lex_state = 70}, - [2803] = {.lex_state = 14}, - [2804] = {.lex_state = 70}, - [2805] = {.lex_state = 14}, - [2806] = {.lex_state = 70}, - [2807] = {.lex_state = 70}, - [2808] = {.lex_state = 70}, - [2809] = {.lex_state = 70}, - [2810] = {.lex_state = 14}, - [2811] = {.lex_state = 70}, - [2812] = {.lex_state = 70}, - [2813] = {.lex_state = 70}, - [2814] = {.lex_state = 27}, - [2815] = {.lex_state = 70}, - [2816] = {.lex_state = 70}, - [2817] = {.lex_state = 70}, - [2818] = {.lex_state = 70}, - [2819] = {.lex_state = 70}, - [2820] = {.lex_state = 70}, - [2821] = {.lex_state = 70}, - [2822] = {.lex_state = 70}, - [2823] = {.lex_state = 70}, - [2824] = {.lex_state = 70}, - [2825] = {.lex_state = 70}, - [2826] = {.lex_state = 70}, - [2827] = {.lex_state = 70}, - [2828] = {.lex_state = 70}, - [2829] = {.lex_state = 70}, - [2830] = {.lex_state = 70}, - [2831] = {.lex_state = 14}, - [2832] = {.lex_state = 70}, - [2833] = {.lex_state = 70}, - [2834] = {.lex_state = 70}, - [2835] = {.lex_state = 70}, - [2836] = {.lex_state = 70}, - [2837] = {.lex_state = 70}, - [2838] = {.lex_state = 70}, - [2839] = {.lex_state = 70}, - [2840] = {.lex_state = 70}, - [2841] = {.lex_state = 6}, - [2842] = {.lex_state = 70}, - [2843] = {.lex_state = 70}, - [2844] = {.lex_state = 70}, - [2845] = {.lex_state = 70}, - [2846] = {.lex_state = 70}, - [2847] = {.lex_state = 70}, - [2848] = {.lex_state = 70}, - [2849] = {.lex_state = 70}, - [2850] = {.lex_state = 70}, - [2851] = {.lex_state = 70}, - [2852] = {.lex_state = 17}, - [2853] = {.lex_state = 70}, - [2854] = {.lex_state = 14}, - [2855] = {.lex_state = 17}, - [2856] = {.lex_state = 19}, - [2857] = {.lex_state = 70}, - [2858] = {.lex_state = 70}, - [2859] = {.lex_state = 19}, - [2860] = {.lex_state = 70}, - [2861] = {.lex_state = 70}, - [2862] = {.lex_state = 70}, + [2801] = {.lex_state = 6}, + [2802] = {.lex_state = 27}, + [2803] = {.lex_state = 10}, + [2804] = {.lex_state = 27}, + [2805] = {.lex_state = 27}, + [2806] = {.lex_state = 14}, + [2807] = {.lex_state = 14}, + [2808] = {.lex_state = 14}, + [2809] = {.lex_state = 10}, + [2810] = {.lex_state = 10}, + [2811] = {.lex_state = 27}, + [2812] = {.lex_state = 27}, + [2813] = {.lex_state = 14}, + [2814] = {.lex_state = 14}, + [2815] = {.lex_state = 10}, + [2816] = {.lex_state = 27}, + [2817] = {.lex_state = 14}, + [2818] = {.lex_state = 27}, + [2819] = {.lex_state = 14}, + [2820] = {.lex_state = 14}, + [2821] = {.lex_state = 10}, + [2822] = {.lex_state = 14}, + [2823] = {.lex_state = 27}, + [2824] = {.lex_state = 27}, + [2825] = {.lex_state = 27}, + [2826] = {.lex_state = 10}, + [2827] = {.lex_state = 10}, + [2828] = {.lex_state = 10}, + [2829] = {.lex_state = 10}, + [2830] = {.lex_state = 10}, + [2831] = {.lex_state = 27}, + [2832] = {.lex_state = 10}, + [2833] = {.lex_state = 14}, + [2834] = {.lex_state = 27}, + [2835] = {.lex_state = 27}, + [2836] = {.lex_state = 27}, + [2837] = {.lex_state = 10}, + [2838] = {.lex_state = 14}, + [2839] = {.lex_state = 14}, + [2840] = {.lex_state = 10}, + [2841] = {.lex_state = 27}, + [2842] = {.lex_state = 10}, + [2843] = {.lex_state = 10}, + [2844] = {.lex_state = 14}, + [2845] = {.lex_state = 27}, + [2846] = {.lex_state = 14}, + [2847] = {.lex_state = 27}, + [2848] = {.lex_state = 10}, + [2849] = {.lex_state = 27}, + [2850] = {.lex_state = 14}, + [2851] = {.lex_state = 10}, + [2852] = {.lex_state = 27}, + [2853] = {.lex_state = 27}, + [2854] = {.lex_state = 10}, + [2855] = {.lex_state = 27}, + [2856] = {.lex_state = 10}, + [2857] = {.lex_state = 10}, + [2858] = {.lex_state = 27}, + [2859] = {.lex_state = 14}, + [2860] = {.lex_state = 14}, + [2861] = {.lex_state = 10}, + [2862] = {.lex_state = 6}, [2863] = {.lex_state = 70}, - [2864] = {.lex_state = 17}, + [2864] = {.lex_state = 6}, [2865] = {.lex_state = 70}, - [2866] = {.lex_state = 70}, - [2867] = {.lex_state = 70}, - [2868] = {.lex_state = 70}, - [2869] = {.lex_state = 70}, + [2866] = {.lex_state = 10}, + [2867] = {.lex_state = 10}, + [2868] = {.lex_state = 14}, + [2869] = {.lex_state = 14}, [2870] = {.lex_state = 70}, - [2871] = {.lex_state = 70}, - [2872] = {.lex_state = 17}, - [2873] = {.lex_state = 17}, - [2874] = {.lex_state = 70}, - [2875] = {.lex_state = 70}, - [2876] = {.lex_state = 17}, - [2877] = {.lex_state = 17}, - [2878] = {.lex_state = 70}, + [2871] = {.lex_state = 10}, + [2872] = {.lex_state = 10}, + [2873] = {.lex_state = 70}, + [2874] = {.lex_state = 14}, + [2875] = {.lex_state = 6}, + [2876] = {.lex_state = 6}, + [2877] = {.lex_state = 6}, + [2878] = {.lex_state = 6}, [2879] = {.lex_state = 70}, - [2880] = {.lex_state = 70}, - [2881] = {.lex_state = 70}, - [2882] = {.lex_state = 17}, - [2883] = {.lex_state = 10}, - [2884] = {.lex_state = 17}, - [2885] = {.lex_state = 17}, - [2886] = {.lex_state = 17}, - [2887] = {.lex_state = 10}, - [2888] = {.lex_state = 14}, - [2889] = {.lex_state = 70}, - [2890] = {.lex_state = 70}, - [2891] = {.lex_state = 14}, - [2892] = {.lex_state = 70}, - [2893] = {.lex_state = 70}, - [2894] = {.lex_state = 70}, - [2895] = {.lex_state = 70}, - [2896] = {.lex_state = 70}, - [2897] = {.lex_state = 70}, - [2898] = {.lex_state = 70}, - [2899] = {.lex_state = 70}, - [2900] = {.lex_state = 70}, - [2901] = {.lex_state = 70}, - [2902] = {.lex_state = 19}, - [2903] = {.lex_state = 14}, - [2904] = {.lex_state = 70}, - [2905] = {.lex_state = 70}, - [2906] = {.lex_state = 70}, - [2907] = {.lex_state = 17}, - [2908] = {.lex_state = 70}, - [2909] = {.lex_state = 70}, - [2910] = {.lex_state = 70}, + [2880] = {.lex_state = 6}, + [2881] = {.lex_state = 10, .external_lex_state = 4}, + [2882] = {.lex_state = 14}, + [2883] = {.lex_state = 6}, + [2884] = {.lex_state = 10}, + [2885] = {.lex_state = 10}, + [2886] = {.lex_state = 10}, + [2887] = {.lex_state = 70}, + [2888] = {.lex_state = 10}, + [2889] = {.lex_state = 6}, + [2890] = {.lex_state = 14}, + [2891] = {.lex_state = 70}, + [2892] = {.lex_state = 10, .external_lex_state = 4}, + [2893] = {.lex_state = 10}, + [2894] = {.lex_state = 16}, + [2895] = {.lex_state = 6}, + [2896] = {.lex_state = 10}, + [2897] = {.lex_state = 10}, + [2898] = {.lex_state = 10}, + [2899] = {.lex_state = 10}, + [2900] = {.lex_state = 14}, + [2901] = {.lex_state = 10}, + [2902] = {.lex_state = 6}, + [2903] = {.lex_state = 70}, + [2904] = {.lex_state = 10}, + [2905] = {.lex_state = 10, .external_lex_state = 4}, + [2906] = {.lex_state = 10}, + [2907] = {.lex_state = 10}, + [2908] = {.lex_state = 10, .external_lex_state = 4}, + [2909] = {.lex_state = 27}, + [2910] = {.lex_state = 10}, [2911] = {.lex_state = 14}, - [2912] = {.lex_state = 70}, + [2912] = {.lex_state = 10}, [2913] = {.lex_state = 70}, - [2914] = {.lex_state = 6}, - [2915] = {.lex_state = 17}, - [2916] = {.lex_state = 70}, + [2914] = {.lex_state = 10}, + [2915] = {.lex_state = 70}, + [2916] = {.lex_state = 10, .external_lex_state = 4}, [2917] = {.lex_state = 70}, - [2918] = {.lex_state = 17}, - [2919] = {.lex_state = 17}, - [2920] = {.lex_state = 70}, - [2921] = {.lex_state = 70}, - [2922] = {.lex_state = 70}, + [2918] = {.lex_state = 10}, + [2919] = {.lex_state = 10}, + [2920] = {.lex_state = 6}, + [2921] = {.lex_state = 27}, + [2922] = {.lex_state = 27}, [2923] = {.lex_state = 70}, - [2924] = {.lex_state = 14}, - [2925] = {.lex_state = 70}, - [2926] = {.lex_state = 70}, - [2927] = {.lex_state = 70}, - [2928] = {.lex_state = 70}, + [2924] = {.lex_state = 6}, + [2925] = {.lex_state = 10, .external_lex_state = 4}, + [2926] = {.lex_state = 10}, + [2927] = {.lex_state = 6}, + [2928] = {.lex_state = 27}, [2929] = {.lex_state = 70}, - [2930] = {.lex_state = 70}, - [2931] = {.lex_state = 70}, - [2932] = {.lex_state = 70}, - [2933] = {.lex_state = 70}, - [2934] = {.lex_state = 70}, - [2935] = {.lex_state = 17}, - [2936] = {.lex_state = 17}, - [2937] = {.lex_state = 6}, - [2938] = {.lex_state = 14}, + [2930] = {.lex_state = 10}, + [2931] = {.lex_state = 10, .external_lex_state = 4}, + [2932] = {.lex_state = 10}, + [2933] = {.lex_state = 27}, + [2934] = {.lex_state = 14}, + [2935] = {.lex_state = 70}, + [2936] = {.lex_state = 10, .external_lex_state = 4}, + [2937] = {.lex_state = 70}, + [2938] = {.lex_state = 6}, [2939] = {.lex_state = 6}, - [2940] = {.lex_state = 70}, - [2941] = {.lex_state = 70}, - [2942] = {.lex_state = 17}, - [2943] = {.lex_state = 70}, + [2940] = {.lex_state = 10}, + [2941] = {.lex_state = 14}, + [2942] = {.lex_state = 10, .external_lex_state = 4}, + [2943] = {.lex_state = 14}, [2944] = {.lex_state = 14}, - [2945] = {.lex_state = 70}, - [2946] = {.lex_state = 6}, - [2947] = {.lex_state = 70}, - [2948] = {.lex_state = 70}, - [2949] = {.lex_state = 70}, - [2950] = {.lex_state = 14}, + [2945] = {.lex_state = 10}, + [2946] = {.lex_state = 10, .external_lex_state = 4}, + [2947] = {.lex_state = 6}, + [2948] = {.lex_state = 10}, + [2949] = {.lex_state = 10}, + [2950] = {.lex_state = 6}, [2951] = {.lex_state = 70}, - [2952] = {.lex_state = 14}, - [2953] = {.lex_state = 70}, - [2954] = {.lex_state = 70}, - [2955] = {.lex_state = 70}, - [2956] = {.lex_state = 70}, + [2952] = {.lex_state = 70}, + [2953] = {.lex_state = 17}, + [2954] = {.lex_state = 6}, + [2955] = {.lex_state = 14}, + [2956] = {.lex_state = 27}, [2957] = {.lex_state = 70}, [2958] = {.lex_state = 70}, - [2959] = {.lex_state = 14}, - [2960] = {.lex_state = 14}, + [2959] = {.lex_state = 70}, + [2960] = {.lex_state = 6}, [2961] = {.lex_state = 70}, - [2962] = {.lex_state = 70}, + [2962] = {.lex_state = 6}, [2963] = {.lex_state = 70}, - [2964] = {.lex_state = 70}, - [2965] = {.lex_state = 70}, + [2964] = {.lex_state = 6}, + [2965] = {.lex_state = 14}, [2966] = {.lex_state = 14}, - [2967] = {.lex_state = 70}, - [2968] = {.lex_state = 10, .external_lex_state = 4}, - [2969] = {.lex_state = 70}, + [2967] = {.lex_state = 14}, + [2968] = {.lex_state = 70}, + [2969] = {.lex_state = 6}, [2970] = {.lex_state = 70}, [2971] = {.lex_state = 14}, - [2972] = {.lex_state = 17}, - [2973] = {.lex_state = 70}, - [2974] = {.lex_state = 70}, - [2975] = {.lex_state = 17}, - [2976] = {.lex_state = 70}, - [2977] = {.lex_state = 70}, - [2978] = {.lex_state = 17}, - [2979] = {.lex_state = 70}, - [2980] = {.lex_state = 27}, - [2981] = {.lex_state = 70}, - [2982] = {.lex_state = 6}, - [2983] = {.lex_state = 70}, - [2984] = {.lex_state = 17}, - [2985] = {.lex_state = 17}, - [2986] = {.lex_state = 17}, - [2987] = {.lex_state = 70}, - [2988] = {.lex_state = 17}, - [2989] = {.lex_state = 70}, - [2990] = {.lex_state = 70}, + [2972] = {.lex_state = 6}, + [2973] = {.lex_state = 14}, + [2974] = {.lex_state = 6}, + [2975] = {.lex_state = 6}, + [2976] = {.lex_state = 6}, + [2977] = {.lex_state = 10}, + [2978] = {.lex_state = 6}, + [2979] = {.lex_state = 10}, + [2980] = {.lex_state = 10, .external_lex_state = 4}, + [2981] = {.lex_state = 6}, + [2982] = {.lex_state = 3}, + [2983] = {.lex_state = 6}, + [2984] = {.lex_state = 6}, + [2985] = {.lex_state = 14}, + [2986] = {.lex_state = 10}, + [2987] = {.lex_state = 17}, + [2988] = {.lex_state = 10}, + [2989] = {.lex_state = 6}, + [2990] = {.lex_state = 6}, [2991] = {.lex_state = 70}, - [2992] = {.lex_state = 19}, - [2993] = {.lex_state = 70}, - [2994] = {.lex_state = 14}, - [2995] = {.lex_state = 70}, - [2996] = {.lex_state = 70}, - [2997] = {.lex_state = 70}, - [2998] = {.lex_state = 70}, - [2999] = {.lex_state = 70}, - [3000] = {.lex_state = 70}, - [3001] = {.lex_state = 70}, - [3002] = {.lex_state = 70}, - [3003] = {.lex_state = 70}, + [2992] = {.lex_state = 27}, + [2993] = {.lex_state = 17}, + [2994] = {.lex_state = 10}, + [2995] = {.lex_state = 6}, + [2996] = {.lex_state = 6}, + [2997] = {.lex_state = 14}, + [2998] = {.lex_state = 6}, + [2999] = {.lex_state = 14}, + [3000] = {.lex_state = 6}, + [3001] = {.lex_state = 3}, + [3002] = {.lex_state = 10}, + [3003] = {.lex_state = 6}, [3004] = {.lex_state = 70}, - [3005] = {.lex_state = 17}, - [3006] = {.lex_state = 17}, + [3005] = {.lex_state = 6}, + [3006] = {.lex_state = 14}, [3007] = {.lex_state = 70}, - [3008] = {.lex_state = 17}, - [3009] = {.lex_state = 70}, + [3008] = {.lex_state = 14}, + [3009] = {.lex_state = 16}, [3010] = {.lex_state = 14}, - [3011] = {.lex_state = 17}, - [3012] = {.lex_state = 70}, - [3013] = {.lex_state = 70}, - [3014] = {.lex_state = 70}, - [3015] = {.lex_state = 70}, + [3011] = {.lex_state = 6}, + [3012] = {.lex_state = 27}, + [3013] = {.lex_state = 14}, + [3014] = {.lex_state = 10}, + [3015] = {.lex_state = 14}, [3016] = {.lex_state = 70}, - [3017] = {.lex_state = 10}, - [3018] = {.lex_state = 70}, - [3019] = {.lex_state = 70}, - [3020] = {.lex_state = 70}, - [3021] = {.lex_state = 17}, + [3017] = {.lex_state = 14}, + [3018] = {.lex_state = 10}, + [3019] = {.lex_state = 14}, + [3020] = {.lex_state = 14}, + [3021] = {.lex_state = 10}, [3022] = {.lex_state = 70}, - [3023] = {.lex_state = 70}, - [3024] = {.lex_state = 70}, - [3025] = {.lex_state = 70}, - [3026] = {.lex_state = 70}, + [3023] = {.lex_state = 14}, + [3024] = {.lex_state = 10}, + [3025] = {.lex_state = 14}, + [3026] = {.lex_state = 29}, [3027] = {.lex_state = 70}, - [3028] = {.lex_state = 70}, + [3028] = {.lex_state = 14}, [3029] = {.lex_state = 70}, - [3030] = {.lex_state = 70}, - [3031] = {.lex_state = 70}, - [3032] = {.lex_state = 6}, - [3033] = {.lex_state = 70}, - [3034] = {.lex_state = 70}, - [3035] = {.lex_state = 70}, - [3036] = {.lex_state = 14}, + [3030] = {.lex_state = 27}, + [3031] = {.lex_state = 3}, + [3032] = {.lex_state = 70}, + [3033] = {.lex_state = 10}, + [3034] = {.lex_state = 14}, + [3035] = {.lex_state = 10, .external_lex_state = 4}, + [3036] = {.lex_state = 27}, [3037] = {.lex_state = 70}, - [3038] = {.lex_state = 70}, - [3039] = {.lex_state = 70}, + [3038] = {.lex_state = 6}, + [3039] = {.lex_state = 17}, [3040] = {.lex_state = 70}, - [3041] = {.lex_state = 70}, - [3042] = {.lex_state = 6}, - [3043] = {.lex_state = 19}, - [3044] = {.lex_state = 70}, - [3045] = {.lex_state = 70}, - [3046] = {.lex_state = 70}, - [3047] = {.lex_state = 70}, - [3048] = {.lex_state = 6}, - [3049] = {.lex_state = 14}, - [3050] = {.lex_state = 6}, - [3051] = {.lex_state = 70}, - [3052] = {.lex_state = 6}, - [3053] = {.lex_state = 14}, + [3041] = {.lex_state = 17}, + [3042] = {.lex_state = 17}, + [3043] = {.lex_state = 17}, + [3044] = {.lex_state = 27}, + [3045] = {.lex_state = 27}, + [3046] = {.lex_state = 10}, + [3047] = {.lex_state = 6}, + [3048] = {.lex_state = 10}, + [3049] = {.lex_state = 10}, + [3050] = {.lex_state = 10}, + [3051] = {.lex_state = 14}, + [3052] = {.lex_state = 14}, + [3053] = {.lex_state = 10}, [3054] = {.lex_state = 70}, [3055] = {.lex_state = 70}, - [3056] = {.lex_state = 10}, - [3057] = {.lex_state = 14}, - [3058] = {.lex_state = 70}, - [3059] = {.lex_state = 70}, + [3056] = {.lex_state = 14}, + [3057] = {.lex_state = 6}, + [3058] = {.lex_state = 10}, + [3059] = {.lex_state = 14}, [3060] = {.lex_state = 70}, - [3061] = {.lex_state = 70}, + [3061] = {.lex_state = 3}, [3062] = {.lex_state = 70}, - [3063] = {.lex_state = 70}, - [3064] = {.lex_state = 70}, + [3063] = {.lex_state = 3}, + [3064] = {.lex_state = 10}, [3065] = {.lex_state = 70}, - [3066] = {.lex_state = 14}, - [3067] = {.lex_state = 14}, + [3066] = {.lex_state = 6}, + [3067] = {.lex_state = 27}, [3068] = {.lex_state = 14}, - [3069] = {.lex_state = 70}, - [3070] = {.lex_state = 70}, - [3071] = {.lex_state = 70}, - [3072] = {.lex_state = 70}, - [3073] = {.lex_state = 14}, - [3074] = {.lex_state = 14}, - [3075] = {.lex_state = 14}, - [3076] = {.lex_state = 14}, - [3077] = {.lex_state = 70}, - [3078] = {.lex_state = 70}, + [3069] = {.lex_state = 10}, + [3070] = {.lex_state = 14}, + [3071] = {.lex_state = 6}, + [3072] = {.lex_state = 17}, + [3073] = {.lex_state = 70}, + [3074] = {.lex_state = 10}, + [3075] = {.lex_state = 10}, + [3076] = {.lex_state = 6}, + [3077] = {.lex_state = 14}, + [3078] = {.lex_state = 6}, [3079] = {.lex_state = 14}, - [3080] = {.lex_state = 70}, - [3081] = {.lex_state = 14}, - [3082] = {.lex_state = 70}, - [3083] = {.lex_state = 70}, - [3084] = {.lex_state = 14}, - [3085] = {.lex_state = 14}, - [3086] = {.lex_state = 14}, - [3087] = {.lex_state = 14}, - [3088] = {.lex_state = 14}, + [3080] = {.lex_state = 14}, + [3081] = {.lex_state = 10, .external_lex_state = 4}, + [3082] = {.lex_state = 14}, + [3083] = {.lex_state = 14}, + [3084] = {.lex_state = 10}, + [3085] = {.lex_state = 10}, + [3086] = {.lex_state = 10}, + [3087] = {.lex_state = 6}, + [3088] = {.lex_state = 70}, [3089] = {.lex_state = 70}, [3090] = {.lex_state = 14}, - [3091] = {.lex_state = 70}, + [3091] = {.lex_state = 14}, [3092] = {.lex_state = 14}, [3093] = {.lex_state = 14}, - [3094] = {.lex_state = 70}, - [3095] = {.lex_state = 70}, + [3094] = {.lex_state = 29}, + [3095] = {.lex_state = 14}, [3096] = {.lex_state = 70}, - [3097] = {.lex_state = 70}, - [3098] = {.lex_state = 14}, + [3097] = {.lex_state = 10}, + [3098] = {.lex_state = 10}, [3099] = {.lex_state = 70}, - [3100] = {.lex_state = 70}, - [3101] = {.lex_state = 70}, - [3102] = {.lex_state = 70}, + [3100] = {.lex_state = 10}, + [3101] = {.lex_state = 6}, + [3102] = {.lex_state = 14}, [3103] = {.lex_state = 10}, - [3104] = {.lex_state = 14}, + [3104] = {.lex_state = 6}, [3105] = {.lex_state = 70}, [3106] = {.lex_state = 70}, - [3107] = {.lex_state = 14}, - [3108] = {.lex_state = 70}, - [3109] = {.lex_state = 14}, + [3107] = {.lex_state = 10}, + [3108] = {.lex_state = 10}, + [3109] = {.lex_state = 10}, [3110] = {.lex_state = 14}, - [3111] = {.lex_state = 14}, + [3111] = {.lex_state = 29}, [3112] = {.lex_state = 70}, - [3113] = {.lex_state = 14}, - [3114] = {.lex_state = 14}, - [3115] = {.lex_state = 70}, - [3116] = {.lex_state = 70}, - [3117] = {.lex_state = 27}, + [3113] = {.lex_state = 70}, + [3114] = {.lex_state = 10}, + [3115] = {.lex_state = 10}, + [3116] = {.lex_state = 14}, + [3117] = {.lex_state = 70}, [3118] = {.lex_state = 70}, - [3119] = {.lex_state = 70}, - [3120] = {.lex_state = 14}, + [3119] = {.lex_state = 29}, + [3120] = {.lex_state = 10}, [3121] = {.lex_state = 70}, - [3122] = {.lex_state = 14}, - [3123] = {.lex_state = 14}, - [3124] = {.lex_state = 70}, - [3125] = {.lex_state = 14}, + [3122] = {.lex_state = 10}, + [3123] = {.lex_state = 6}, + [3124] = {.lex_state = 10}, + [3125] = {.lex_state = 10}, [3126] = {.lex_state = 14}, - [3127] = {.lex_state = 70}, + [3127] = {.lex_state = 10}, [3128] = {.lex_state = 14}, - [3129] = {.lex_state = 27}, + [3129] = {.lex_state = 16}, [3130] = {.lex_state = 70}, [3131] = {.lex_state = 70}, - [3132] = {.lex_state = 14}, - [3133] = {.lex_state = 14}, + [3132] = {.lex_state = 17}, + [3133] = {.lex_state = 17}, [3134] = {.lex_state = 70}, [3135] = {.lex_state = 70}, - [3136] = {.lex_state = 70}, - [3137] = {.lex_state = 70}, - [3138] = {.lex_state = 14}, + [3136] = {.lex_state = 14}, + [3137] = {.lex_state = 17}, + [3138] = {.lex_state = 17}, [3139] = {.lex_state = 14}, - [3140] = {.lex_state = 70}, - [3141] = {.lex_state = 14}, - [3142] = {.lex_state = 14}, - [3143] = {.lex_state = 70}, - [3144] = {.lex_state = 70}, - [3145] = {.lex_state = 70}, - [3146] = {.lex_state = 70}, - [3147] = {.lex_state = 70}, - [3148] = {.lex_state = 14}, + [3140] = {.lex_state = 14}, + [3141] = {.lex_state = 17}, + [3142] = {.lex_state = 17}, + [3143] = {.lex_state = 6}, + [3144] = {.lex_state = 17}, + [3145] = {.lex_state = 17}, + [3146] = {.lex_state = 6}, + [3147] = {.lex_state = 6}, + [3148] = {.lex_state = 70}, [3149] = {.lex_state = 14}, - [3150] = {.lex_state = 70}, - [3151] = {.lex_state = 70}, + [3150] = {.lex_state = 17}, + [3151] = {.lex_state = 17}, [3152] = {.lex_state = 70}, - [3153] = {.lex_state = 70}, + [3153] = {.lex_state = 17}, [3154] = {.lex_state = 70}, - [3155] = {.lex_state = 14}, + [3155] = {.lex_state = 17}, [3156] = {.lex_state = 70}, - [3157] = {.lex_state = 70}, + [3157] = {.lex_state = 6}, [3158] = {.lex_state = 70}, - [3159] = {.lex_state = 14}, - [3160] = {.lex_state = 14}, - [3161] = {.lex_state = 14}, - [3162] = {.lex_state = 14}, - [3163] = {.lex_state = 70}, + [3159] = {.lex_state = 17}, + [3160] = {.lex_state = 6}, + [3161] = {.lex_state = 17}, + [3162] = {.lex_state = 70}, + [3163] = {.lex_state = 17}, [3164] = {.lex_state = 70}, [3165] = {.lex_state = 70}, - [3166] = {.lex_state = 70}, - [3167] = {.lex_state = 70}, + [3166] = {.lex_state = 14}, + [3167] = {.lex_state = 17}, [3168] = {.lex_state = 70}, - [3169] = {.lex_state = 70}, - [3170] = {.lex_state = 14}, - [3171] = {.lex_state = 70}, - [3172] = {.lex_state = 14}, - [3173] = {.lex_state = 14}, - [3174] = {.lex_state = 14}, + [3169] = {.lex_state = 6}, + [3170] = {.lex_state = 70}, + [3171] = {.lex_state = 17}, + [3172] = {.lex_state = 70}, + [3173] = {.lex_state = 17}, + [3174] = {.lex_state = 17}, [3175] = {.lex_state = 70}, - [3176] = {.lex_state = 70}, - [3177] = {.lex_state = 70}, - [3178] = {.lex_state = 14}, - [3179] = {.lex_state = 70}, - [3180] = {.lex_state = 70}, - [3181] = {.lex_state = 14}, - [3182] = {.lex_state = 14}, - [3183] = {.lex_state = 14}, - [3184] = {.lex_state = 14}, - [3185] = {.lex_state = 14}, - [3186] = {.lex_state = 14}, - [3187] = {.lex_state = 10}, - [3188] = {.lex_state = 70}, - [3189] = {.lex_state = 70, .external_lex_state = 5}, - [3190] = {.lex_state = 14}, - [3191] = {.lex_state = 14}, - [3192] = {.lex_state = 14}, - [3193] = {.lex_state = 14}, - [3194] = {.lex_state = 14}, - [3195] = {.lex_state = 70}, - [3196] = {.lex_state = 14}, - [3197] = {.lex_state = 70}, - [3198] = {.lex_state = 14}, - [3199] = {.lex_state = 14}, - [3200] = {.lex_state = 14}, - [3201] = {.lex_state = 14}, + [3176] = {.lex_state = 14}, + [3177] = {.lex_state = 17}, + [3178] = {.lex_state = 17}, + [3179] = {.lex_state = 17}, + [3180] = {.lex_state = 17}, + [3181] = {.lex_state = 6}, + [3182] = {.lex_state = 70}, + [3183] = {.lex_state = 70}, + [3184] = {.lex_state = 70}, + [3185] = {.lex_state = 17}, + [3186] = {.lex_state = 17}, + [3187] = {.lex_state = 17}, + [3188] = {.lex_state = 14}, + [3189] = {.lex_state = 70}, + [3190] = {.lex_state = 70}, + [3191] = {.lex_state = 70}, + [3192] = {.lex_state = 17}, + [3193] = {.lex_state = 17}, + [3194] = {.lex_state = 17}, + [3195] = {.lex_state = 17}, + [3196] = {.lex_state = 70}, + [3197] = {.lex_state = 6}, + [3198] = {.lex_state = 70}, + [3199] = {.lex_state = 17}, + [3200] = {.lex_state = 70}, + [3201] = {.lex_state = 70}, [3202] = {.lex_state = 70}, - [3203] = {.lex_state = 14}, - [3204] = {.lex_state = 14}, - [3205] = {.lex_state = 70}, - [3206] = {.lex_state = 14}, - [3207] = {.lex_state = 14}, - [3208] = {.lex_state = 14}, + [3203] = {.lex_state = 17}, + [3204] = {.lex_state = 17}, + [3205] = {.lex_state = 17}, + [3206] = {.lex_state = 70}, + [3207] = {.lex_state = 70}, + [3208] = {.lex_state = 27}, [3209] = {.lex_state = 14}, [3210] = {.lex_state = 70}, - [3211] = {.lex_state = 14}, - [3212] = {.lex_state = 14}, + [3211] = {.lex_state = 70}, + [3212] = {.lex_state = 70}, [3213] = {.lex_state = 70}, [3214] = {.lex_state = 70}, - [3215] = {.lex_state = 14}, + [3215] = {.lex_state = 70}, [3216] = {.lex_state = 70}, - [3217] = {.lex_state = 70}, - [3218] = {.lex_state = 14}, + [3217] = {.lex_state = 6}, + [3218] = {.lex_state = 10}, [3219] = {.lex_state = 70}, - [3220] = {.lex_state = 70}, - [3221] = {.lex_state = 70}, - [3222] = {.lex_state = 14}, + [3220] = {.lex_state = 10}, + [3221] = {.lex_state = 14}, + [3222] = {.lex_state = 70}, [3223] = {.lex_state = 70}, [3224] = {.lex_state = 70}, [3225] = {.lex_state = 70}, - [3226] = {.lex_state = 5}, + [3226] = {.lex_state = 70}, [3227] = {.lex_state = 70}, - [3228] = {.lex_state = 5}, - [3229] = {.lex_state = 70}, + [3228] = {.lex_state = 70}, + [3229] = {.lex_state = 14}, [3230] = {.lex_state = 70}, [3231] = {.lex_state = 70}, - [3232] = {.lex_state = 14}, + [3232] = {.lex_state = 70}, [3233] = {.lex_state = 70}, [3234] = {.lex_state = 70}, [3235] = {.lex_state = 70}, [3236] = {.lex_state = 70}, - [3237] = {.lex_state = 14}, + [3237] = {.lex_state = 70}, [3238] = {.lex_state = 70}, [3239] = {.lex_state = 70}, [3240] = {.lex_state = 70}, @@ -13352,24 +14183,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3242] = {.lex_state = 70}, [3243] = {.lex_state = 70}, [3244] = {.lex_state = 70}, - [3245] = {.lex_state = 70}, + [3245] = {.lex_state = 10, .external_lex_state = 4}, [3246] = {.lex_state = 70}, [3247] = {.lex_state = 70}, - [3248] = {.lex_state = 70}, - [3249] = {.lex_state = 14}, - [3250] = {.lex_state = 14}, - [3251] = {.lex_state = 14}, - [3252] = {.lex_state = 6}, - [3253] = {.lex_state = 14}, - [3254] = {.lex_state = 10, .external_lex_state = 6}, - [3255] = {.lex_state = 70}, - [3256] = {.lex_state = 27}, + [3248] = {.lex_state = 6}, + [3249] = {.lex_state = 70}, + [3250] = {.lex_state = 17}, + [3251] = {.lex_state = 70}, + [3252] = {.lex_state = 70}, + [3253] = {.lex_state = 70}, + [3254] = {.lex_state = 70}, + [3255] = {.lex_state = 14}, + [3256] = {.lex_state = 14}, [3257] = {.lex_state = 70}, [3258] = {.lex_state = 70}, - [3259] = {.lex_state = 6}, - [3260] = {.lex_state = 27}, + [3259] = {.lex_state = 70}, + [3260] = {.lex_state = 70}, [3261] = {.lex_state = 70}, - [3262] = {.lex_state = 27}, + [3262] = {.lex_state = 18}, [3263] = {.lex_state = 14}, [3264] = {.lex_state = 70}, [3265] = {.lex_state = 70}, @@ -13379,383 +14210,881 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3269] = {.lex_state = 70}, [3270] = {.lex_state = 70}, [3271] = {.lex_state = 70}, - [3272] = {.lex_state = 14}, + [3272] = {.lex_state = 70}, [3273] = {.lex_state = 70}, [3274] = {.lex_state = 70}, [3275] = {.lex_state = 70}, [3276] = {.lex_state = 70}, [3277] = {.lex_state = 70}, - [3278] = {.lex_state = 70}, - [3279] = {.lex_state = 14}, - [3280] = {.lex_state = 14}, + [3278] = {.lex_state = 14}, + [3279] = {.lex_state = 70}, + [3280] = {.lex_state = 70}, [3281] = {.lex_state = 70}, [3282] = {.lex_state = 70}, - [3283] = {.lex_state = 14}, + [3283] = {.lex_state = 70}, [3284] = {.lex_state = 70}, - [3285] = {.lex_state = 14}, + [3285] = {.lex_state = 70}, [3286] = {.lex_state = 70}, [3287] = {.lex_state = 70}, [3288] = {.lex_state = 70}, - [3289] = {.lex_state = 70}, + [3289] = {.lex_state = 14}, [3290] = {.lex_state = 70}, [3291] = {.lex_state = 70}, - [3292] = {.lex_state = 70}, - [3293] = {.lex_state = 19}, - [3294] = {.lex_state = 70}, - [3295] = {.lex_state = 70}, - [3296] = {.lex_state = 10, .external_lex_state = 6}, + [3292] = {.lex_state = 14}, + [3293] = {.lex_state = 70}, + [3294] = {.lex_state = 6}, + [3295] = {.lex_state = 6}, + [3296] = {.lex_state = 70}, [3297] = {.lex_state = 70}, - [3298] = {.lex_state = 14}, - [3299] = {.lex_state = 14}, + [3298] = {.lex_state = 70}, + [3299] = {.lex_state = 70}, [3300] = {.lex_state = 70}, - [3301] = {.lex_state = 70}, - [3302] = {.lex_state = 14}, - [3303] = {.lex_state = 14}, + [3301] = {.lex_state = 6}, + [3302] = {.lex_state = 70}, + [3303] = {.lex_state = 70}, [3304] = {.lex_state = 70}, - [3305] = {.lex_state = 14}, + [3305] = {.lex_state = 70}, [3306] = {.lex_state = 70}, - [3307] = {.lex_state = 14}, - [3308] = {.lex_state = 14}, + [3307] = {.lex_state = 70}, + [3308] = {.lex_state = 70}, [3309] = {.lex_state = 70}, [3310] = {.lex_state = 70}, [3311] = {.lex_state = 70}, - [3312] = {.lex_state = 14}, + [3312] = {.lex_state = 70}, [3313] = {.lex_state = 70}, [3314] = {.lex_state = 70}, - [3315] = {.lex_state = 14}, - [3316] = {.lex_state = 14}, - [3317] = {.lex_state = 70}, - [3318] = {.lex_state = 14}, - [3319] = {.lex_state = 14}, + [3315] = {.lex_state = 70}, + [3316] = {.lex_state = 70}, + [3317] = {.lex_state = 6}, + [3318] = {.lex_state = 70}, + [3319] = {.lex_state = 70}, [3320] = {.lex_state = 70}, - [3321] = {.lex_state = 14}, + [3321] = {.lex_state = 70}, [3322] = {.lex_state = 70}, [3323] = {.lex_state = 70}, [3324] = {.lex_state = 70}, - [3325] = {.lex_state = 27}, - [3326] = {.lex_state = 14}, + [3325] = {.lex_state = 70}, + [3326] = {.lex_state = 70}, [3327] = {.lex_state = 70}, - [3328] = {.lex_state = 14}, + [3328] = {.lex_state = 70}, [3329] = {.lex_state = 70}, - [3330] = {.lex_state = 14}, - [3331] = {.lex_state = 14}, + [3330] = {.lex_state = 70}, + [3331] = {.lex_state = 70}, [3332] = {.lex_state = 14}, - [3333] = {.lex_state = 14}, - [3334] = {.lex_state = 10, .external_lex_state = 6}, - [3335] = {.lex_state = 14}, - [3336] = {.lex_state = 70, .external_lex_state = 5}, - [3337] = {.lex_state = 70}, - [3338] = {.lex_state = 14}, - [3339] = {.lex_state = 70}, - [3340] = {.lex_state = 14}, + [3333] = {.lex_state = 70}, + [3334] = {.lex_state = 70}, + [3335] = {.lex_state = 70}, + [3336] = {.lex_state = 70}, + [3337] = {.lex_state = 14}, + [3338] = {.lex_state = 70}, + [3339] = {.lex_state = 14}, + [3340] = {.lex_state = 70}, [3341] = {.lex_state = 14}, [3342] = {.lex_state = 70}, - [3343] = {.lex_state = 14}, + [3343] = {.lex_state = 10}, [3344] = {.lex_state = 14}, - [3345] = {.lex_state = 14}, - [3346] = {.lex_state = 14}, + [3345] = {.lex_state = 70}, + [3346] = {.lex_state = 70}, [3347] = {.lex_state = 70}, - [3348] = {.lex_state = 70}, - [3349] = {.lex_state = 14}, - [3350] = {.lex_state = 14}, + [3348] = {.lex_state = 17}, + [3349] = {.lex_state = 70}, + [3350] = {.lex_state = 70}, [3351] = {.lex_state = 70}, - [3352] = {.lex_state = 71}, + [3352] = {.lex_state = 14}, [3353] = {.lex_state = 70}, [3354] = {.lex_state = 70}, - [3355] = {.lex_state = 19}, + [3355] = {.lex_state = 70}, [3356] = {.lex_state = 70}, - [3357] = {.lex_state = 19}, - [3358] = {.lex_state = 70}, + [3357] = {.lex_state = 14}, + [3358] = {.lex_state = 18}, [3359] = {.lex_state = 70}, [3360] = {.lex_state = 70}, [3361] = {.lex_state = 70}, - [3362] = {.lex_state = 14}, - [3363] = {.lex_state = 14}, - [3364] = {.lex_state = 14}, - [3365] = {.lex_state = 70}, + [3362] = {.lex_state = 6}, + [3363] = {.lex_state = 70}, + [3364] = {.lex_state = 70}, + [3365] = {.lex_state = 18}, [3366] = {.lex_state = 14}, - [3367] = {.lex_state = 14}, - [3368] = {.lex_state = 70}, + [3367] = {.lex_state = 6}, + [3368] = {.lex_state = 14}, [3369] = {.lex_state = 70}, [3370] = {.lex_state = 70}, [3371] = {.lex_state = 70}, [3372] = {.lex_state = 70}, - [3373] = {.lex_state = 19}, - [3374] = {.lex_state = 70}, - [3375] = {.lex_state = 14}, + [3373] = {.lex_state = 14}, + [3374] = {.lex_state = 14}, + [3375] = {.lex_state = 70}, [3376] = {.lex_state = 70}, [3377] = {.lex_state = 14}, - [3378] = {.lex_state = 14}, + [3378] = {.lex_state = 70}, [3379] = {.lex_state = 70}, - [3380] = {.lex_state = 14}, - [3381] = {.lex_state = 14}, - [3382] = {.lex_state = 14}, - [3383] = {.lex_state = 14}, - [3384] = {.lex_state = 14}, + [3380] = {.lex_state = 70}, + [3381] = {.lex_state = 70}, + [3382] = {.lex_state = 70}, + [3383] = {.lex_state = 70}, + [3384] = {.lex_state = 70}, [3385] = {.lex_state = 70}, - [3386] = {.lex_state = 14}, - [3387] = {.lex_state = 14}, - [3388] = {.lex_state = 71}, + [3386] = {.lex_state = 70}, + [3387] = {.lex_state = 70}, + [3388] = {.lex_state = 70}, [3389] = {.lex_state = 70}, - [3390] = {.lex_state = 19}, - [3391] = {.lex_state = 70}, + [3390] = {.lex_state = 14}, + [3391] = {.lex_state = 14}, [3392] = {.lex_state = 70}, [3393] = {.lex_state = 70}, [3394] = {.lex_state = 70}, - [3395] = {.lex_state = 70, .external_lex_state = 7}, - [3396] = {.lex_state = 19}, + [3395] = {.lex_state = 70}, + [3396] = {.lex_state = 70}, [3397] = {.lex_state = 70}, - [3398] = {.lex_state = 19}, + [3398] = {.lex_state = 70}, [3399] = {.lex_state = 70}, - [3400] = {.lex_state = 14}, + [3400] = {.lex_state = 70}, [3401] = {.lex_state = 70}, [3402] = {.lex_state = 70}, [3403] = {.lex_state = 70}, [3404] = {.lex_state = 70}, [3405] = {.lex_state = 70}, - [3406] = {.lex_state = 70}, + [3406] = {.lex_state = 6}, [3407] = {.lex_state = 14}, [3408] = {.lex_state = 70}, [3409] = {.lex_state = 70}, - [3410] = {.lex_state = 70}, - [3411] = {.lex_state = 14}, + [3410] = {.lex_state = 6}, + [3411] = {.lex_state = 70}, [3412] = {.lex_state = 70}, [3413] = {.lex_state = 70}, [3414] = {.lex_state = 70}, [3415] = {.lex_state = 14}, [3416] = {.lex_state = 70}, [3417] = {.lex_state = 70}, - [3418] = {.lex_state = 14}, - [3419] = {.lex_state = 14}, - [3420] = {.lex_state = 14}, - [3421] = {.lex_state = 14}, + [3418] = {.lex_state = 70}, + [3419] = {.lex_state = 70}, + [3420] = {.lex_state = 70}, + [3421] = {.lex_state = 70}, [3422] = {.lex_state = 70}, - [3423] = {.lex_state = 70}, - [3424] = {.lex_state = 19}, + [3423] = {.lex_state = 14}, + [3424] = {.lex_state = 70}, [3425] = {.lex_state = 70}, [3426] = {.lex_state = 70}, [3427] = {.lex_state = 70}, - [3428] = {.lex_state = 70, .external_lex_state = 8}, - [3429] = {.lex_state = 14}, - [3430] = {.lex_state = 14}, + [3428] = {.lex_state = 14}, + [3429] = {.lex_state = 70}, + [3430] = {.lex_state = 70}, [3431] = {.lex_state = 70}, [3432] = {.lex_state = 70}, - [3433] = {.lex_state = 14}, - [3434] = {.lex_state = 14}, - [3435] = {.lex_state = 14}, + [3433] = {.lex_state = 70}, + [3434] = {.lex_state = 70}, + [3435] = {.lex_state = 27}, [3436] = {.lex_state = 70}, [3437] = {.lex_state = 70}, [3438] = {.lex_state = 70}, [3439] = {.lex_state = 70}, - [3440] = {.lex_state = 70}, + [3440] = {.lex_state = 18}, [3441] = {.lex_state = 70}, [3442] = {.lex_state = 70}, [3443] = {.lex_state = 70}, - [3444] = {.lex_state = 71}, - [3445] = {.lex_state = 70}, + [3444] = {.lex_state = 70}, + [3445] = {.lex_state = 10}, [3446] = {.lex_state = 70}, - [3447] = {.lex_state = 70}, + [3447] = {.lex_state = 17}, [3448] = {.lex_state = 70}, [3449] = {.lex_state = 70}, - [3450] = {.lex_state = 14}, + [3450] = {.lex_state = 70}, [3451] = {.lex_state = 70}, [3452] = {.lex_state = 70}, [3453] = {.lex_state = 70}, - [3454] = {.lex_state = 14}, + [3454] = {.lex_state = 70}, [3455] = {.lex_state = 70}, - [3456] = {.lex_state = 70, .external_lex_state = 8}, + [3456] = {.lex_state = 70}, [3457] = {.lex_state = 70}, - [3458] = {.lex_state = 165}, - [3459] = {.lex_state = 14}, + [3458] = {.lex_state = 70}, + [3459] = {.lex_state = 70}, [3460] = {.lex_state = 70}, [3461] = {.lex_state = 70}, [3462] = {.lex_state = 70}, [3463] = {.lex_state = 70}, [3464] = {.lex_state = 70}, - [3465] = {.lex_state = 70}, + [3465] = {.lex_state = 18}, [3466] = {.lex_state = 70}, [3467] = {.lex_state = 70}, - [3468] = {.lex_state = 70}, - [3469] = {.lex_state = 70, .external_lex_state = 8}, + [3468] = {.lex_state = 14}, + [3469] = {.lex_state = 14}, [3470] = {.lex_state = 70}, [3471] = {.lex_state = 70}, - [3472] = {.lex_state = 14}, - [3473] = {.lex_state = 14}, - [3474] = {.lex_state = 70, .external_lex_state = 8}, + [3472] = {.lex_state = 70}, + [3473] = {.lex_state = 70}, + [3474] = {.lex_state = 70}, [3475] = {.lex_state = 70}, - [3476] = {.lex_state = 19}, + [3476] = {.lex_state = 70}, [3477] = {.lex_state = 70}, - [3478] = {.lex_state = 70, .external_lex_state = 7}, - [3479] = {.lex_state = 10}, - [3480] = {.lex_state = 19}, + [3478] = {.lex_state = 70}, + [3479] = {.lex_state = 14}, + [3480] = {.lex_state = 70}, [3481] = {.lex_state = 14}, - [3482] = {.lex_state = 19}, - [3483] = {.lex_state = 70}, - [3484] = {.lex_state = 71}, + [3482] = {.lex_state = 70}, + [3483] = {.lex_state = 14}, + [3484] = {.lex_state = 14}, [3485] = {.lex_state = 70}, - [3486] = {.lex_state = 70}, - [3487] = {.lex_state = 71}, + [3486] = {.lex_state = 14}, + [3487] = {.lex_state = 70}, [3488] = {.lex_state = 70}, [3489] = {.lex_state = 14}, - [3490] = {.lex_state = 70, .external_lex_state = 9}, + [3490] = {.lex_state = 14}, [3491] = {.lex_state = 70}, [3492] = {.lex_state = 70}, [3493] = {.lex_state = 70}, - [3494] = {.lex_state = 70}, - [3495] = {.lex_state = 70}, + [3494] = {.lex_state = 14}, + [3495] = {.lex_state = 14}, [3496] = {.lex_state = 14}, [3497] = {.lex_state = 70}, [3498] = {.lex_state = 70}, - [3499] = {.lex_state = 70}, + [3499] = {.lex_state = 14}, [3500] = {.lex_state = 70}, - [3501] = {.lex_state = 70}, + [3501] = {.lex_state = 14}, [3502] = {.lex_state = 70}, [3503] = {.lex_state = 70}, - [3504] = {.lex_state = 14}, + [3504] = {.lex_state = 70}, [3505] = {.lex_state = 70}, - [3506] = {.lex_state = 70}, - [3507] = {.lex_state = 70}, + [3506] = {.lex_state = 14}, + [3507] = {.lex_state = 14}, [3508] = {.lex_state = 70}, - [3509] = {.lex_state = 70}, + [3509] = {.lex_state = 14}, [3510] = {.lex_state = 70}, [3511] = {.lex_state = 70}, [3512] = {.lex_state = 70}, - [3513] = {.lex_state = 70}, + [3513] = {.lex_state = 14}, [3514] = {.lex_state = 14}, [3515] = {.lex_state = 70}, - [3516] = {.lex_state = 70}, + [3516] = {.lex_state = 27}, [3517] = {.lex_state = 70}, - [3518] = {.lex_state = 70, .external_lex_state = 7}, - [3519] = {.lex_state = 70}, - [3520] = {.lex_state = 14}, + [3518] = {.lex_state = 70}, + [3519] = {.lex_state = 14}, + [3520] = {.lex_state = 70}, [3521] = {.lex_state = 70}, - [3522] = {.lex_state = 70}, - [3523] = {.lex_state = 14}, - [3524] = {.lex_state = 70}, - [3525] = {.lex_state = 70, .external_lex_state = 9}, - [3526] = {.lex_state = 70, .external_lex_state = 8}, - [3527] = {.lex_state = 70}, - [3528] = {.lex_state = 70}, - [3529] = {.lex_state = 70}, + [3522] = {.lex_state = 14}, + [3523] = {.lex_state = 70}, + [3524] = {.lex_state = 14}, + [3525] = {.lex_state = 14}, + [3526] = {.lex_state = 14}, + [3527] = {.lex_state = 14}, + [3528] = {.lex_state = 14}, + [3529] = {.lex_state = 14}, [3530] = {.lex_state = 70}, - [3531] = {.lex_state = 70}, + [3531] = {.lex_state = 14}, [3532] = {.lex_state = 70}, - [3533] = {.lex_state = 70}, + [3533] = {.lex_state = 14}, [3534] = {.lex_state = 70}, [3535] = {.lex_state = 70}, - [3536] = {.lex_state = 71}, + [3536] = {.lex_state = 14}, [3537] = {.lex_state = 70}, [3538] = {.lex_state = 70}, - [3539] = {.lex_state = 70}, - [3540] = {.lex_state = 10}, + [3539] = {.lex_state = 14}, + [3540] = {.lex_state = 70}, [3541] = {.lex_state = 70}, - [3542] = {.lex_state = 70}, - [3543] = {.lex_state = 70, .external_lex_state = 9}, - [3544] = {.lex_state = 70}, + [3542] = {.lex_state = 14}, + [3543] = {.lex_state = 70}, + [3544] = {.lex_state = 14}, [3545] = {.lex_state = 70}, - [3546] = {.lex_state = 70}, - [3547] = {.lex_state = 14}, + [3546] = {.lex_state = 14}, + [3547] = {.lex_state = 70}, [3548] = {.lex_state = 70}, - [3549] = {.lex_state = 70, .external_lex_state = 9}, + [3549] = {.lex_state = 70}, [3550] = {.lex_state = 70}, [3551] = {.lex_state = 70}, - [3552] = {.lex_state = 70}, - [3553] = {.lex_state = 70}, - [3554] = {.lex_state = 70}, - [3555] = {.lex_state = 70}, - [3556] = {.lex_state = 70}, - [3557] = {.lex_state = 70}, - [3558] = {.lex_state = 70}, - [3559] = {.lex_state = 70}, - [3560] = {.lex_state = 70}, - [3561] = {.lex_state = 70}, - [3562] = {.lex_state = 70, .external_lex_state = 7}, - [3563] = {.lex_state = 70, .external_lex_state = 9}, - [3564] = {.lex_state = 14}, - [3565] = {.lex_state = 19}, + [3552] = {.lex_state = 14}, + [3553] = {.lex_state = 14}, + [3554] = {.lex_state = 14}, + [3555] = {.lex_state = 14}, + [3556] = {.lex_state = 14}, + [3557] = {.lex_state = 14}, + [3558] = {.lex_state = 10, .external_lex_state = 5}, + [3559] = {.lex_state = 14}, + [3560] = {.lex_state = 10, .external_lex_state = 5}, + [3561] = {.lex_state = 14}, + [3562] = {.lex_state = 14}, + [3563] = {.lex_state = 14}, + [3564] = {.lex_state = 70}, + [3565] = {.lex_state = 70}, [3566] = {.lex_state = 70}, - [3567] = {.lex_state = 70}, + [3567] = {.lex_state = 10, .external_lex_state = 5}, [3568] = {.lex_state = 70}, - [3569] = {.lex_state = 19}, - [3570] = {.lex_state = 19}, + [3569] = {.lex_state = 70}, + [3570] = {.lex_state = 70}, [3571] = {.lex_state = 70}, [3572] = {.lex_state = 70}, - [3573] = {.lex_state = 14}, + [3573] = {.lex_state = 70}, [3574] = {.lex_state = 70}, - [3575] = {.lex_state = 19}, + [3575] = {.lex_state = 70}, [3576] = {.lex_state = 70}, - [3577] = {.lex_state = 19}, + [3577] = {.lex_state = 14}, [3578] = {.lex_state = 14}, [3579] = {.lex_state = 70}, - [3580] = {.lex_state = 70}, + [3580] = {.lex_state = 14}, [3581] = {.lex_state = 70}, - [3582] = {.lex_state = 14}, - [3583] = {.lex_state = 70}, - [3584] = {.lex_state = 70}, - [3585] = {.lex_state = 19}, + [3582] = {.lex_state = 70}, + [3583] = {.lex_state = 14}, + [3584] = {.lex_state = 70, .external_lex_state = 6}, + [3585] = {.lex_state = 70}, [3586] = {.lex_state = 14}, [3587] = {.lex_state = 70}, [3588] = {.lex_state = 70}, - [3589] = {.lex_state = 19}, - [3590] = {.lex_state = 70}, + [3589] = {.lex_state = 70}, + [3590] = {.lex_state = 14}, [3591] = {.lex_state = 70}, [3592] = {.lex_state = 70}, - [3593] = {.lex_state = 70, .external_lex_state = 8}, + [3593] = {.lex_state = 14}, [3594] = {.lex_state = 70}, - [3595] = {.lex_state = 19}, - [3596] = {.lex_state = 71}, + [3595] = {.lex_state = 70}, + [3596] = {.lex_state = 14}, [3597] = {.lex_state = 14}, - [3598] = {.lex_state = 19}, + [3598] = {.lex_state = 70}, [3599] = {.lex_state = 70}, - [3600] = {.lex_state = 19}, + [3600] = {.lex_state = 70}, [3601] = {.lex_state = 70}, [3602] = {.lex_state = 70}, [3603] = {.lex_state = 14}, - [3604] = {.lex_state = 14}, + [3604] = {.lex_state = 70}, [3605] = {.lex_state = 70}, - [3606] = {.lex_state = 19}, - [3607] = {.lex_state = 14}, - [3608] = {.lex_state = 19}, + [3606] = {.lex_state = 70}, + [3607] = {.lex_state = 70}, + [3608] = {.lex_state = 70}, [3609] = {.lex_state = 70}, [3610] = {.lex_state = 70}, - [3611] = {.lex_state = 19}, - [3612] = {.lex_state = 14}, + [3611] = {.lex_state = 70}, + [3612] = {.lex_state = 70}, [3613] = {.lex_state = 70}, - [3614] = {.lex_state = 19}, - [3615] = {.lex_state = 19}, - [3616] = {.lex_state = 71}, + [3614] = {.lex_state = 70}, + [3615] = {.lex_state = 14}, + [3616] = {.lex_state = 70}, [3617] = {.lex_state = 14}, - [3618] = {.lex_state = 19}, - [3619] = {.lex_state = 19}, - [3620] = {.lex_state = 19}, + [3618] = {.lex_state = 14}, + [3619] = {.lex_state = 27}, + [3620] = {.lex_state = 70}, [3621] = {.lex_state = 70}, - [3622] = {.lex_state = 14}, + [3622] = {.lex_state = 70}, [3623] = {.lex_state = 70}, [3624] = {.lex_state = 70}, - [3625] = {.lex_state = 14}, + [3625] = {.lex_state = 70}, [3626] = {.lex_state = 14}, [3627] = {.lex_state = 70}, - [3628] = {.lex_state = 14}, + [3628] = {.lex_state = 70}, [3629] = {.lex_state = 14}, - [3630] = {.lex_state = 70, .external_lex_state = 9}, - [3631] = {.lex_state = 14}, - [3632] = {.lex_state = 14}, + [3630] = {.lex_state = 70}, + [3631] = {.lex_state = 70}, + [3632] = {.lex_state = 70}, [3633] = {.lex_state = 14}, - [3634] = {.lex_state = 14}, + [3634] = {.lex_state = 70}, [3635] = {.lex_state = 70}, [3636] = {.lex_state = 14}, - [3637] = {.lex_state = 70}, - [3638] = {.lex_state = 70, .external_lex_state = 7}, - [3639] = {.lex_state = 70}, + [3637] = {.lex_state = 14}, + [3638] = {.lex_state = 14}, + [3639] = {.lex_state = 14}, [3640] = {.lex_state = 70}, - [3641] = {.lex_state = 70}, - [3642] = {(TSStateId)(-1)}, - [3643] = {(TSStateId)(-1)}, - [3644] = {(TSStateId)(-1)}, - [3645] = {(TSStateId)(-1)}, - [3646] = {(TSStateId)(-1)}, - [3647] = {(TSStateId)(-1)}, - [3648] = {(TSStateId)(-1)}, + [3641] = {.lex_state = 14}, + [3642] = {.lex_state = 70}, + [3643] = {.lex_state = 70}, + [3644] = {.lex_state = 70}, + [3645] = {.lex_state = 70}, + [3646] = {.lex_state = 70}, + [3647] = {.lex_state = 14}, + [3648] = {.lex_state = 70}, + [3649] = {.lex_state = 70}, + [3650] = {.lex_state = 14}, + [3651] = {.lex_state = 70}, + [3652] = {.lex_state = 14}, + [3653] = {.lex_state = 70}, + [3654] = {.lex_state = 14}, + [3655] = {.lex_state = 14}, + [3656] = {.lex_state = 70}, + [3657] = {.lex_state = 14}, + [3658] = {.lex_state = 70}, + [3659] = {.lex_state = 70}, + [3660] = {.lex_state = 70}, + [3661] = {.lex_state = 70, .external_lex_state = 6}, + [3662] = {.lex_state = 14}, + [3663] = {.lex_state = 70}, + [3664] = {.lex_state = 70}, + [3665] = {.lex_state = 14}, + [3666] = {.lex_state = 14}, + [3667] = {.lex_state = 70}, + [3668] = {.lex_state = 14}, + [3669] = {.lex_state = 70}, + [3670] = {.lex_state = 14}, + [3671] = {.lex_state = 70}, + [3672] = {.lex_state = 14}, + [3673] = {.lex_state = 14}, + [3674] = {.lex_state = 14}, + [3675] = {.lex_state = 14}, + [3676] = {.lex_state = 70}, + [3677] = {.lex_state = 14}, + [3678] = {.lex_state = 70}, + [3679] = {.lex_state = 14}, + [3680] = {.lex_state = 70}, + [3681] = {.lex_state = 70}, + [3682] = {.lex_state = 70}, + [3683] = {.lex_state = 70}, + [3684] = {.lex_state = 70}, + [3685] = {.lex_state = 14}, + [3686] = {.lex_state = 70}, + [3687] = {.lex_state = 70}, + [3688] = {.lex_state = 70}, + [3689] = {.lex_state = 70}, + [3690] = {.lex_state = 70}, + [3691] = {.lex_state = 14}, + [3692] = {.lex_state = 70}, + [3693] = {.lex_state = 14}, + [3694] = {.lex_state = 14}, + [3695] = {.lex_state = 70}, + [3696] = {.lex_state = 70}, + [3697] = {.lex_state = 70}, + [3698] = {.lex_state = 14}, + [3699] = {.lex_state = 70}, + [3700] = {.lex_state = 70}, + [3701] = {.lex_state = 70}, + [3702] = {.lex_state = 27}, + [3703] = {.lex_state = 70}, + [3704] = {.lex_state = 6}, + [3705] = {.lex_state = 70}, + [3706] = {.lex_state = 10}, + [3707] = {.lex_state = 70}, + [3708] = {.lex_state = 70}, + [3709] = {.lex_state = 70}, + [3710] = {.lex_state = 70}, + [3711] = {.lex_state = 14}, + [3712] = {.lex_state = 5}, + [3713] = {.lex_state = 70}, + [3714] = {.lex_state = 14}, + [3715] = {.lex_state = 70}, + [3716] = {.lex_state = 14}, + [3717] = {.lex_state = 14}, + [3718] = {.lex_state = 70}, + [3719] = {.lex_state = 5}, + [3720] = {.lex_state = 70}, + [3721] = {.lex_state = 27}, + [3722] = {.lex_state = 70}, + [3723] = {.lex_state = 70}, + [3724] = {.lex_state = 70}, + [3725] = {.lex_state = 70}, + [3726] = {.lex_state = 70}, + [3727] = {.lex_state = 70}, + [3728] = {.lex_state = 14}, + [3729] = {.lex_state = 14}, + [3730] = {.lex_state = 70}, + [3731] = {.lex_state = 70}, + [3732] = {.lex_state = 14}, + [3733] = {.lex_state = 70}, + [3734] = {.lex_state = 14}, + [3735] = {.lex_state = 70}, + [3736] = {.lex_state = 14}, + [3737] = {.lex_state = 14}, + [3738] = {.lex_state = 14}, + [3739] = {.lex_state = 70}, + [3740] = {.lex_state = 14}, + [3741] = {.lex_state = 70}, + [3742] = {.lex_state = 70}, + [3743] = {.lex_state = 14}, + [3744] = {.lex_state = 14}, + [3745] = {.lex_state = 70}, + [3746] = {.lex_state = 14}, + [3747] = {.lex_state = 14}, + [3748] = {.lex_state = 70}, + [3749] = {.lex_state = 14}, + [3750] = {.lex_state = 6}, + [3751] = {.lex_state = 14}, + [3752] = {.lex_state = 14}, + [3753] = {.lex_state = 70}, + [3754] = {.lex_state = 14}, + [3755] = {.lex_state = 27}, + [3756] = {.lex_state = 14}, + [3757] = {.lex_state = 14}, + [3758] = {.lex_state = 27}, + [3759] = {.lex_state = 14}, + [3760] = {.lex_state = 14}, + [3761] = {.lex_state = 14}, + [3762] = {.lex_state = 14}, + [3763] = {.lex_state = 70}, + [3764] = {.lex_state = 14}, + [3765] = {.lex_state = 18}, + [3766] = {.lex_state = 14}, + [3767] = {.lex_state = 14}, + [3768] = {.lex_state = 70}, + [3769] = {.lex_state = 14}, + [3770] = {.lex_state = 70}, + [3771] = {.lex_state = 14}, + [3772] = {.lex_state = 70}, + [3773] = {.lex_state = 14}, + [3774] = {.lex_state = 10}, + [3775] = {.lex_state = 70}, + [3776] = {.lex_state = 14}, + [3777] = {.lex_state = 70}, + [3778] = {.lex_state = 70}, + [3779] = {.lex_state = 14}, + [3780] = {.lex_state = 70}, + [3781] = {.lex_state = 14}, + [3782] = {.lex_state = 70}, + [3783] = {.lex_state = 70}, + [3784] = {.lex_state = 70}, + [3785] = {.lex_state = 14}, + [3786] = {.lex_state = 70}, + [3787] = {.lex_state = 14}, + [3788] = {.lex_state = 14}, + [3789] = {.lex_state = 14}, + [3790] = {.lex_state = 70}, + [3791] = {.lex_state = 14}, + [3792] = {.lex_state = 14}, + [3793] = {.lex_state = 70}, + [3794] = {.lex_state = 14}, + [3795] = {.lex_state = 70}, + [3796] = {.lex_state = 70}, + [3797] = {.lex_state = 70}, + [3798] = {.lex_state = 14}, + [3799] = {.lex_state = 70}, + [3800] = {.lex_state = 70, .external_lex_state = 7}, + [3801] = {.lex_state = 14}, + [3802] = {.lex_state = 70}, + [3803] = {.lex_state = 70}, + [3804] = {.lex_state = 70}, + [3805] = {.lex_state = 70}, + [3806] = {.lex_state = 14}, + [3807] = {.lex_state = 70}, + [3808] = {.lex_state = 14}, + [3809] = {.lex_state = 70}, + [3810] = {.lex_state = 18}, + [3811] = {.lex_state = 70}, + [3812] = {.lex_state = 14}, + [3813] = {.lex_state = 70}, + [3814] = {.lex_state = 14}, + [3815] = {.lex_state = 14}, + [3816] = {.lex_state = 14}, + [3817] = {.lex_state = 14}, + [3818] = {.lex_state = 14}, + [3819] = {.lex_state = 70}, + [3820] = {.lex_state = 14}, + [3821] = {.lex_state = 14}, + [3822] = {.lex_state = 70}, + [3823] = {.lex_state = 70}, + [3824] = {.lex_state = 14}, + [3825] = {.lex_state = 70, .external_lex_state = 7}, + [3826] = {.lex_state = 14}, + [3827] = {.lex_state = 71}, + [3828] = {.lex_state = 70}, + [3829] = {.lex_state = 70}, + [3830] = {.lex_state = 70}, + [3831] = {.lex_state = 71}, + [3832] = {.lex_state = 18}, + [3833] = {.lex_state = 70}, + [3834] = {.lex_state = 70}, + [3835] = {.lex_state = 70}, + [3836] = {.lex_state = 70}, + [3837] = {.lex_state = 14}, + [3838] = {.lex_state = 70}, + [3839] = {.lex_state = 70}, + [3840] = {.lex_state = 70}, + [3841] = {.lex_state = 70}, + [3842] = {.lex_state = 70}, + [3843] = {.lex_state = 70}, + [3844] = {.lex_state = 70, .external_lex_state = 8}, + [3845] = {.lex_state = 70}, + [3846] = {.lex_state = 14}, + [3847] = {.lex_state = 18}, + [3848] = {.lex_state = 70}, + [3849] = {.lex_state = 70}, + [3850] = {.lex_state = 10}, + [3851] = {.lex_state = 70, .external_lex_state = 7}, + [3852] = {.lex_state = 70}, + [3853] = {.lex_state = 14}, + [3854] = {.lex_state = 14}, + [3855] = {.lex_state = 70}, + [3856] = {.lex_state = 14}, + [3857] = {.lex_state = 14}, + [3858] = {.lex_state = 70}, + [3859] = {.lex_state = 70}, + [3860] = {.lex_state = 70}, + [3861] = {.lex_state = 70}, + [3862] = {.lex_state = 14}, + [3863] = {.lex_state = 14}, + [3864] = {.lex_state = 14}, + [3865] = {.lex_state = 14}, + [3866] = {.lex_state = 70}, + [3867] = {.lex_state = 70}, + [3868] = {.lex_state = 70}, + [3869] = {.lex_state = 14}, + [3870] = {.lex_state = 71}, + [3871] = {.lex_state = 70}, + [3872] = {.lex_state = 70}, + [3873] = {.lex_state = 70, .external_lex_state = 8}, + [3874] = {.lex_state = 70}, + [3875] = {.lex_state = 70}, + [3876] = {.lex_state = 18}, + [3877] = {.lex_state = 70}, + [3878] = {.lex_state = 70}, + [3879] = {.lex_state = 70}, + [3880] = {.lex_state = 14}, + [3881] = {.lex_state = 14}, + [3882] = {.lex_state = 14}, + [3883] = {.lex_state = 70}, + [3884] = {.lex_state = 14}, + [3885] = {.lex_state = 14}, + [3886] = {.lex_state = 70}, + [3887] = {.lex_state = 70}, + [3888] = {.lex_state = 70}, + [3889] = {.lex_state = 18}, + [3890] = {.lex_state = 70}, + [3891] = {.lex_state = 70}, + [3892] = {.lex_state = 14}, + [3893] = {.lex_state = 14}, + [3894] = {.lex_state = 14}, + [3895] = {.lex_state = 14}, + [3896] = {.lex_state = 70}, + [3897] = {.lex_state = 70}, + [3898] = {.lex_state = 70}, + [3899] = {.lex_state = 70}, + [3900] = {.lex_state = 70}, + [3901] = {.lex_state = 14}, + [3902] = {.lex_state = 14}, + [3903] = {.lex_state = 70}, + [3904] = {.lex_state = 70}, + [3905] = {.lex_state = 70}, + [3906] = {.lex_state = 70}, + [3907] = {.lex_state = 70}, + [3908] = {.lex_state = 14}, + [3909] = {.lex_state = 70}, + [3910] = {.lex_state = 71}, + [3911] = {.lex_state = 70}, + [3912] = {.lex_state = 70}, + [3913] = {.lex_state = 70}, + [3914] = {.lex_state = 70}, + [3915] = {.lex_state = 70}, + [3916] = {.lex_state = 14}, + [3917] = {.lex_state = 14}, + [3918] = {.lex_state = 70}, + [3919] = {.lex_state = 18}, + [3920] = {.lex_state = 14}, + [3921] = {.lex_state = 14}, + [3922] = {.lex_state = 70, .external_lex_state = 8}, + [3923] = {.lex_state = 14}, + [3924] = {.lex_state = 70}, + [3925] = {.lex_state = 14}, + [3926] = {.lex_state = 70}, + [3927] = {.lex_state = 70}, + [3928] = {.lex_state = 70}, + [3929] = {.lex_state = 70}, + [3930] = {.lex_state = 70}, + [3931] = {.lex_state = 70}, + [3932] = {.lex_state = 70}, + [3933] = {.lex_state = 70}, + [3934] = {.lex_state = 70}, + [3935] = {.lex_state = 70}, + [3936] = {.lex_state = 70}, + [3937] = {.lex_state = 70}, + [3938] = {.lex_state = 70}, + [3939] = {.lex_state = 14}, + [3940] = {.lex_state = 70}, + [3941] = {.lex_state = 70}, + [3942] = {.lex_state = 70}, + [3943] = {.lex_state = 18}, + [3944] = {.lex_state = 18}, + [3945] = {.lex_state = 18}, + [3946] = {.lex_state = 70}, + [3947] = {.lex_state = 14}, + [3948] = {.lex_state = 14}, + [3949] = {.lex_state = 14}, + [3950] = {.lex_state = 70}, + [3951] = {.lex_state = 70}, + [3952] = {.lex_state = 70}, + [3953] = {.lex_state = 70}, + [3954] = {.lex_state = 70}, + [3955] = {.lex_state = 70}, + [3956] = {.lex_state = 70}, + [3957] = {.lex_state = 14}, + [3958] = {.lex_state = 70, .external_lex_state = 8}, + [3959] = {.lex_state = 70}, + [3960] = {.lex_state = 70}, + [3961] = {.lex_state = 14}, + [3962] = {.lex_state = 70}, + [3963] = {.lex_state = 14}, + [3964] = {.lex_state = 18}, + [3965] = {.lex_state = 70}, + [3966] = {.lex_state = 70}, + [3967] = {.lex_state = 70}, + [3968] = {.lex_state = 70}, + [3969] = {.lex_state = 70}, + [3970] = {.lex_state = 70}, + [3971] = {.lex_state = 70}, + [3972] = {.lex_state = 70}, + [3973] = {.lex_state = 70}, + [3974] = {.lex_state = 70}, + [3975] = {.lex_state = 70}, + [3976] = {.lex_state = 70}, + [3977] = {.lex_state = 70}, + [3978] = {.lex_state = 70}, + [3979] = {.lex_state = 14}, + [3980] = {.lex_state = 70, .external_lex_state = 9}, + [3981] = {.lex_state = 70}, + [3982] = {.lex_state = 70}, + [3983] = {.lex_state = 18}, + [3984] = {.lex_state = 70}, + [3985] = {.lex_state = 71}, + [3986] = {.lex_state = 70}, + [3987] = {.lex_state = 70}, + [3988] = {.lex_state = 70}, + [3989] = {.lex_state = 70}, + [3990] = {.lex_state = 14}, + [3991] = {.lex_state = 71}, + [3992] = {.lex_state = 70}, + [3993] = {.lex_state = 14}, + [3994] = {.lex_state = 70}, + [3995] = {.lex_state = 14}, + [3996] = {.lex_state = 70}, + [3997] = {.lex_state = 70}, + [3998] = {.lex_state = 14}, + [3999] = {.lex_state = 70}, + [4000] = {.lex_state = 70}, + [4001] = {.lex_state = 70, .external_lex_state = 7}, + [4002] = {.lex_state = 14}, + [4003] = {.lex_state = 70}, + [4004] = {.lex_state = 70, .external_lex_state = 8}, + [4005] = {.lex_state = 70}, + [4006] = {.lex_state = 14}, + [4007] = {.lex_state = 70}, + [4008] = {.lex_state = 70}, + [4009] = {.lex_state = 70}, + [4010] = {.lex_state = 14}, + [4011] = {.lex_state = 70}, + [4012] = {.lex_state = 10}, + [4013] = {.lex_state = 14}, + [4014] = {.lex_state = 70}, + [4015] = {.lex_state = 70}, + [4016] = {.lex_state = 70}, + [4017] = {.lex_state = 14}, + [4018] = {.lex_state = 70, .external_lex_state = 9}, + [4019] = {.lex_state = 70}, + [4020] = {.lex_state = 70, .external_lex_state = 7}, + [4021] = {.lex_state = 70}, + [4022] = {.lex_state = 70}, + [4023] = {.lex_state = 70}, + [4024] = {.lex_state = 70}, + [4025] = {.lex_state = 70, .external_lex_state = 7}, + [4026] = {.lex_state = 70}, + [4027] = {.lex_state = 70}, + [4028] = {.lex_state = 70}, + [4029] = {.lex_state = 70}, + [4030] = {.lex_state = 70}, + [4031] = {.lex_state = 70}, + [4032] = {.lex_state = 70}, + [4033] = {.lex_state = 70}, + [4034] = {.lex_state = 70}, + [4035] = {.lex_state = 70}, + [4036] = {.lex_state = 70}, + [4037] = {.lex_state = 70}, + [4038] = {.lex_state = 14}, + [4039] = {.lex_state = 70}, + [4040] = {.lex_state = 70, .external_lex_state = 9}, + [4041] = {.lex_state = 18}, + [4042] = {.lex_state = 70}, + [4043] = {.lex_state = 70, .external_lex_state = 9}, + [4044] = {.lex_state = 70}, + [4045] = {.lex_state = 18}, + [4046] = {.lex_state = 18}, + [4047] = {.lex_state = 18}, + [4048] = {.lex_state = 70, .external_lex_state = 9}, + [4049] = {.lex_state = 18}, + [4050] = {.lex_state = 70}, + [4051] = {.lex_state = 18}, + [4052] = {.lex_state = 70}, + [4053] = {.lex_state = 70}, + [4054] = {.lex_state = 165}, + [4055] = {.lex_state = 18}, + [4056] = {.lex_state = 70}, + [4057] = {.lex_state = 70}, + [4058] = {.lex_state = 71}, + [4059] = {.lex_state = 14}, + [4060] = {.lex_state = 70}, + [4061] = {.lex_state = 70}, + [4062] = {.lex_state = 18}, + [4063] = {.lex_state = 70}, + [4064] = {.lex_state = 70}, + [4065] = {.lex_state = 14}, + [4066] = {.lex_state = 18}, + [4067] = {.lex_state = 70}, + [4068] = {.lex_state = 71}, + [4069] = {.lex_state = 14}, + [4070] = {.lex_state = 70}, + [4071] = {.lex_state = 70}, + [4072] = {.lex_state = 70}, + [4073] = {.lex_state = 70}, + [4074] = {.lex_state = 18}, + [4075] = {.lex_state = 70}, + [4076] = {.lex_state = 70}, + [4077] = {.lex_state = 14}, + [4078] = {.lex_state = 70}, + [4079] = {.lex_state = 70}, + [4080] = {.lex_state = 70}, + [4081] = {.lex_state = 70}, + [4082] = {.lex_state = 70}, + [4083] = {.lex_state = 18}, + [4084] = {.lex_state = 14}, + [4085] = {.lex_state = 70, .external_lex_state = 8}, + [4086] = {.lex_state = 18}, + [4087] = {.lex_state = 70}, + [4088] = {.lex_state = 70}, + [4089] = {.lex_state = 70}, + [4090] = {.lex_state = 14}, + [4091] = {.lex_state = 70}, + [4092] = {.lex_state = 18}, + [4093] = {.lex_state = 70}, + [4094] = {.lex_state = 70}, + [4095] = {.lex_state = 70}, + [4096] = {.lex_state = 14}, + [4097] = {.lex_state = 70}, + [4098] = {.lex_state = 14}, + [4099] = {.lex_state = 70}, + [4100] = {.lex_state = 70}, + [4101] = {.lex_state = 14}, + [4102] = {.lex_state = 70}, + [4103] = {.lex_state = 18}, + [4104] = {.lex_state = 18}, + [4105] = {.lex_state = 70}, + [4106] = {.lex_state = 70}, + [4107] = {.lex_state = 18}, + [4108] = {.lex_state = 70}, + [4109] = {.lex_state = 14}, + [4110] = {.lex_state = 18}, + [4111] = {.lex_state = 70}, + [4112] = {.lex_state = 18}, + [4113] = {.lex_state = 70}, + [4114] = {.lex_state = 70}, + [4115] = {.lex_state = 18}, + [4116] = {.lex_state = 18}, + [4117] = {.lex_state = 18}, + [4118] = {.lex_state = 70}, + [4119] = {.lex_state = 14}, + [4120] = {.lex_state = 14}, + [4121] = {.lex_state = 70}, + [4122] = {.lex_state = 70}, + [4123] = {.lex_state = 14}, + [4124] = {.lex_state = 70}, + [4125] = {.lex_state = 70}, + [4126] = {.lex_state = 14}, + [4127] = {.lex_state = 14}, + [4128] = {.lex_state = 14}, + [4129] = {.lex_state = 14}, + [4130] = {.lex_state = 70}, + [4131] = {.lex_state = 70}, + [4132] = {.lex_state = 70}, + [4133] = {.lex_state = 70}, + [4134] = {.lex_state = 70}, + [4135] = {.lex_state = 14}, + [4136] = {.lex_state = 14}, + [4137] = {.lex_state = 14}, + [4138] = {.lex_state = 14}, + [4139] = {.lex_state = 14}, + [4140] = {(TSStateId)(-1)}, + [4141] = {(TSStateId)(-1)}, + [4142] = {(TSStateId)(-1)}, + [4143] = {(TSStateId)(-1)}, + [4144] = {(TSStateId)(-1)}, + [4145] = {(TSStateId)(-1)}, + [4146] = {(TSStateId)(-1)}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -13914,83 +15243,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__error_sentinel] = ACTIONS(1), }, [1] = { - [sym_source_file] = STATE(3457), - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(665), - [sym_expression_statement] = STATE(665), - [sym_macro_definition] = STATE(665), - [sym_attribute_item] = STATE(665), - [sym_inner_attribute_item] = STATE(665), - [sym_mod_item] = STATE(665), - [sym_foreign_mod_item] = STATE(665), - [sym_struct_item] = STATE(665), - [sym_union_item] = STATE(665), - [sym_enum_item] = STATE(665), - [sym_extern_crate_declaration] = STATE(665), - [sym_const_item] = STATE(665), - [sym_static_item] = STATE(665), - [sym_type_item] = STATE(665), - [sym_function_item] = STATE(665), - [sym_function_signature_item] = STATE(665), - [sym_function_modifiers] = STATE(3607), - [sym_impl_item] = STATE(665), - [sym_trait_item] = STATE(665), - [sym_associated_type] = STATE(665), - [sym_let_declaration] = STATE(665), - [sym_use_declaration] = STATE(665), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1950), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1886), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3577), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [sym_source_file] = STATE(4070), + [sym__statement] = STATE(578), + [sym_empty_statement] = STATE(600), + [sym_expression_statement] = STATE(600), + [sym_macro_definition] = STATE(600), + [sym_attribute_item] = STATE(2189), + [sym_inner_attribute_item] = STATE(600), + [sym_mod_item] = STATE(600), + [sym_foreign_mod_item] = STATE(600), + [sym_struct_item] = STATE(600), + [sym_union_item] = STATE(600), + [sym_enum_item] = STATE(600), + [sym_extern_crate_declaration] = STATE(600), + [sym_const_item] = STATE(600), + [sym_static_item] = STATE(600), + [sym_type_item] = STATE(600), + [sym_function_item] = STATE(600), + [sym_function_signature_item] = STATE(600), + [sym_function_modifiers] = STATE(4065), + [sym_impl_item] = STATE(600), + [sym_trait_item] = STATE(600), + [sym_associated_type] = STATE(600), + [sym_let_declaration] = STATE(600), + [sym_use_declaration] = STATE(600), + [sym_extern_modifier] = STATE(2447), + [sym_visibility_modifier] = STATE(2223), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2126), + [sym_macro_invocation] = STATE(404), + [sym_scoped_identifier] = STATE(1801), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(407), + [sym_match_expression] = STATE(407), + [sym_while_expression] = STATE(407), + [sym_loop_expression] = STATE(407), + [sym_for_expression] = STATE(407), + [sym_const_block] = STATE(407), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4055), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(407), + [sym_async_block] = STATE(407), + [sym_gen_block] = STATE(407), + [sym_try_block] = STATE(407), + [sym_block] = STATE(407), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), [sym_line_comment] = STATE(1), [sym_block_comment] = STATE(1), - [aux_sym_source_file_repeat1] = STATE(34), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [aux_sym_source_file_repeat1] = STATE(33), + [aux_sym_mod_item_repeat1] = STATE(2186), + [aux_sym_function_modifiers_repeat1] = STATE(2519), [ts_builtin_sym_end] = ACTIONS(7), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), @@ -14070,82 +15400,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [2] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(665), - [sym_expression_statement] = STATE(665), - [sym_macro_definition] = STATE(665), - [sym_attribute_item] = STATE(665), - [sym_inner_attribute_item] = STATE(665), - [sym_mod_item] = STATE(665), - [sym_foreign_mod_item] = STATE(665), - [sym_struct_item] = STATE(665), - [sym_union_item] = STATE(665), - [sym_enum_item] = STATE(665), - [sym_extern_crate_declaration] = STATE(665), - [sym_const_item] = STATE(665), - [sym_static_item] = STATE(665), - [sym_type_item] = STATE(665), - [sym_function_item] = STATE(665), - [sym_function_signature_item] = STATE(665), - [sym_function_modifiers] = STATE(3607), - [sym_impl_item] = STATE(665), - [sym_trait_item] = STATE(665), - [sym_associated_type] = STATE(665), - [sym_let_declaration] = STATE(665), - [sym_use_declaration] = STATE(665), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1950), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1806), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3577), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [sym__statement] = STATE(578), + [sym_empty_statement] = STATE(600), + [sym_expression_statement] = STATE(600), + [sym_macro_definition] = STATE(600), + [sym_attribute_item] = STATE(2189), + [sym_inner_attribute_item] = STATE(600), + [sym_mod_item] = STATE(600), + [sym_foreign_mod_item] = STATE(600), + [sym_struct_item] = STATE(600), + [sym_union_item] = STATE(600), + [sym_enum_item] = STATE(600), + [sym_extern_crate_declaration] = STATE(600), + [sym_const_item] = STATE(600), + [sym_static_item] = STATE(600), + [sym_type_item] = STATE(600), + [sym_function_item] = STATE(600), + [sym_function_signature_item] = STATE(600), + [sym_function_modifiers] = STATE(4065), + [sym_impl_item] = STATE(600), + [sym_trait_item] = STATE(600), + [sym_associated_type] = STATE(600), + [sym_let_declaration] = STATE(600), + [sym_use_declaration] = STATE(600), + [sym_extern_modifier] = STATE(2447), + [sym_visibility_modifier] = STATE(2223), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2099), + [sym_macro_invocation] = STATE(404), + [sym_scoped_identifier] = STATE(1801), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(407), + [sym_match_expression] = STATE(407), + [sym_while_expression] = STATE(407), + [sym_loop_expression] = STATE(407), + [sym_for_expression] = STATE(407), + [sym_const_block] = STATE(407), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4055), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(407), + [sym_async_block] = STATE(407), + [sym_gen_block] = STATE(407), + [sym_try_block] = STATE(407), + [sym_block] = STATE(407), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), [sym_line_comment] = STATE(2), [sym_block_comment] = STATE(2), - [aux_sym_source_file_repeat1] = STATE(5), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [aux_sym_source_file_repeat1] = STATE(9), + [aux_sym_mod_item_repeat1] = STATE(2186), + [aux_sym_function_modifiers_repeat1] = STATE(2519), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -14224,82 +15555,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [3] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(665), - [sym_expression_statement] = STATE(665), - [sym_macro_definition] = STATE(665), - [sym_attribute_item] = STATE(665), - [sym_inner_attribute_item] = STATE(665), - [sym_mod_item] = STATE(665), - [sym_foreign_mod_item] = STATE(665), - [sym_struct_item] = STATE(665), - [sym_union_item] = STATE(665), - [sym_enum_item] = STATE(665), - [sym_extern_crate_declaration] = STATE(665), - [sym_const_item] = STATE(665), - [sym_static_item] = STATE(665), - [sym_type_item] = STATE(665), - [sym_function_item] = STATE(665), - [sym_function_signature_item] = STATE(665), - [sym_function_modifiers] = STATE(3607), - [sym_impl_item] = STATE(665), - [sym_trait_item] = STATE(665), - [sym_associated_type] = STATE(665), - [sym_let_declaration] = STATE(665), - [sym_use_declaration] = STATE(665), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1950), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1854), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3577), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [sym__statement] = STATE(578), + [sym_empty_statement] = STATE(600), + [sym_expression_statement] = STATE(600), + [sym_macro_definition] = STATE(600), + [sym_attribute_item] = STATE(2189), + [sym_inner_attribute_item] = STATE(600), + [sym_mod_item] = STATE(600), + [sym_foreign_mod_item] = STATE(600), + [sym_struct_item] = STATE(600), + [sym_union_item] = STATE(600), + [sym_enum_item] = STATE(600), + [sym_extern_crate_declaration] = STATE(600), + [sym_const_item] = STATE(600), + [sym_static_item] = STATE(600), + [sym_type_item] = STATE(600), + [sym_function_item] = STATE(600), + [sym_function_signature_item] = STATE(600), + [sym_function_modifiers] = STATE(4065), + [sym_impl_item] = STATE(600), + [sym_trait_item] = STATE(600), + [sym_associated_type] = STATE(600), + [sym_let_declaration] = STATE(600), + [sym_use_declaration] = STATE(600), + [sym_extern_modifier] = STATE(2447), + [sym_visibility_modifier] = STATE(2223), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2063), + [sym_macro_invocation] = STATE(404), + [sym_scoped_identifier] = STATE(1801), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(407), + [sym_match_expression] = STATE(407), + [sym_while_expression] = STATE(407), + [sym_loop_expression] = STATE(407), + [sym_for_expression] = STATE(407), + [sym_const_block] = STATE(407), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4055), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(407), + [sym_async_block] = STATE(407), + [sym_gen_block] = STATE(407), + [sym_try_block] = STATE(407), + [sym_block] = STATE(407), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), [sym_line_comment] = STATE(3), [sym_block_comment] = STATE(3), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [aux_sym_source_file_repeat1] = STATE(23), + [aux_sym_mod_item_repeat1] = STATE(2186), + [aux_sym_function_modifiers_repeat1] = STATE(2519), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -14378,89 +15710,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [4] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(665), - [sym_expression_statement] = STATE(665), - [sym_macro_definition] = STATE(665), - [sym_attribute_item] = STATE(665), - [sym_inner_attribute_item] = STATE(665), - [sym_mod_item] = STATE(665), - [sym_foreign_mod_item] = STATE(665), - [sym_struct_item] = STATE(665), - [sym_union_item] = STATE(665), - [sym_enum_item] = STATE(665), - [sym_extern_crate_declaration] = STATE(665), - [sym_const_item] = STATE(665), - [sym_static_item] = STATE(665), - [sym_type_item] = STATE(665), - [sym_function_item] = STATE(665), - [sym_function_signature_item] = STATE(665), - [sym_function_modifiers] = STATE(3607), - [sym_impl_item] = STATE(665), - [sym_trait_item] = STATE(665), - [sym_associated_type] = STATE(665), - [sym_let_declaration] = STATE(665), - [sym_use_declaration] = STATE(665), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1950), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1886), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3577), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [sym__statement] = STATE(578), + [sym_empty_statement] = STATE(600), + [sym_expression_statement] = STATE(600), + [sym_macro_definition] = STATE(600), + [sym_attribute_item] = STATE(2189), + [sym_inner_attribute_item] = STATE(600), + [sym_mod_item] = STATE(600), + [sym_foreign_mod_item] = STATE(600), + [sym_struct_item] = STATE(600), + [sym_union_item] = STATE(600), + [sym_enum_item] = STATE(600), + [sym_extern_crate_declaration] = STATE(600), + [sym_const_item] = STATE(600), + [sym_static_item] = STATE(600), + [sym_type_item] = STATE(600), + [sym_function_item] = STATE(600), + [sym_function_signature_item] = STATE(600), + [sym_function_modifiers] = STATE(4065), + [sym_impl_item] = STATE(600), + [sym_trait_item] = STATE(600), + [sym_associated_type] = STATE(600), + [sym_let_declaration] = STATE(600), + [sym_use_declaration] = STATE(600), + [sym_extern_modifier] = STATE(2447), + [sym_visibility_modifier] = STATE(2223), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2025), + [sym_macro_invocation] = STATE(404), + [sym_scoped_identifier] = STATE(1801), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(407), + [sym_match_expression] = STATE(407), + [sym_while_expression] = STATE(407), + [sym_loop_expression] = STATE(407), + [sym_for_expression] = STATE(407), + [sym_const_block] = STATE(407), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4055), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(407), + [sym_async_block] = STATE(407), + [sym_gen_block] = STATE(407), + [sym_try_block] = STATE(407), + [sym_block] = STATE(407), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), [sym_line_comment] = STATE(4), [sym_block_comment] = STATE(4), - [aux_sym_source_file_repeat1] = STATE(6), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [ts_builtin_sym_end] = ACTIONS(125), + [aux_sym_source_file_repeat1] = STATE(26), + [aux_sym_mod_item_repeat1] = STATE(2186), + [aux_sym_function_modifiers_repeat1] = STATE(2519), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(125), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -14532,82 +15865,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [5] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(665), - [sym_expression_statement] = STATE(665), - [sym_macro_definition] = STATE(665), - [sym_attribute_item] = STATE(665), - [sym_inner_attribute_item] = STATE(665), - [sym_mod_item] = STATE(665), - [sym_foreign_mod_item] = STATE(665), - [sym_struct_item] = STATE(665), - [sym_union_item] = STATE(665), - [sym_enum_item] = STATE(665), - [sym_extern_crate_declaration] = STATE(665), - [sym_const_item] = STATE(665), - [sym_static_item] = STATE(665), - [sym_type_item] = STATE(665), - [sym_function_item] = STATE(665), - [sym_function_signature_item] = STATE(665), - [sym_function_modifiers] = STATE(3607), - [sym_impl_item] = STATE(665), - [sym_trait_item] = STATE(665), - [sym_associated_type] = STATE(665), - [sym_let_declaration] = STATE(665), - [sym_use_declaration] = STATE(665), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1950), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1654), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3577), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [sym__statement] = STATE(578), + [sym_empty_statement] = STATE(600), + [sym_expression_statement] = STATE(600), + [sym_macro_definition] = STATE(600), + [sym_attribute_item] = STATE(2189), + [sym_inner_attribute_item] = STATE(600), + [sym_mod_item] = STATE(600), + [sym_foreign_mod_item] = STATE(600), + [sym_struct_item] = STATE(600), + [sym_union_item] = STATE(600), + [sym_enum_item] = STATE(600), + [sym_extern_crate_declaration] = STATE(600), + [sym_const_item] = STATE(600), + [sym_static_item] = STATE(600), + [sym_type_item] = STATE(600), + [sym_function_item] = STATE(600), + [sym_function_signature_item] = STATE(600), + [sym_function_modifiers] = STATE(4065), + [sym_impl_item] = STATE(600), + [sym_trait_item] = STATE(600), + [sym_associated_type] = STATE(600), + [sym_let_declaration] = STATE(600), + [sym_use_declaration] = STATE(600), + [sym_extern_modifier] = STATE(2447), + [sym_visibility_modifier] = STATE(2223), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1969), + [sym_macro_invocation] = STATE(404), + [sym_scoped_identifier] = STATE(1801), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(407), + [sym_match_expression] = STATE(407), + [sym_while_expression] = STATE(407), + [sym_loop_expression] = STATE(407), + [sym_for_expression] = STATE(407), + [sym_const_block] = STATE(407), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4055), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(407), + [sym_async_block] = STATE(407), + [sym_gen_block] = STATE(407), + [sym_try_block] = STATE(407), + [sym_block] = STATE(407), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), [sym_line_comment] = STATE(5), [sym_block_comment] = STATE(5), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [aux_sym_source_file_repeat1] = STATE(23), + [aux_sym_mod_item_repeat1] = STATE(2186), + [aux_sym_function_modifiers_repeat1] = STATE(2519), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -14686,89 +16020,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [6] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(665), - [sym_expression_statement] = STATE(665), - [sym_macro_definition] = STATE(665), - [sym_attribute_item] = STATE(665), - [sym_inner_attribute_item] = STATE(665), - [sym_mod_item] = STATE(665), - [sym_foreign_mod_item] = STATE(665), - [sym_struct_item] = STATE(665), - [sym_union_item] = STATE(665), - [sym_enum_item] = STATE(665), - [sym_extern_crate_declaration] = STATE(665), - [sym_const_item] = STATE(665), - [sym_static_item] = STATE(665), - [sym_type_item] = STATE(665), - [sym_function_item] = STATE(665), - [sym_function_signature_item] = STATE(665), - [sym_function_modifiers] = STATE(3607), - [sym_impl_item] = STATE(665), - [sym_trait_item] = STATE(665), - [sym_associated_type] = STATE(665), - [sym_let_declaration] = STATE(665), - [sym_use_declaration] = STATE(665), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1950), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1886), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3577), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [sym__statement] = STATE(578), + [sym_empty_statement] = STATE(600), + [sym_expression_statement] = STATE(600), + [sym_macro_definition] = STATE(600), + [sym_attribute_item] = STATE(2189), + [sym_inner_attribute_item] = STATE(600), + [sym_mod_item] = STATE(600), + [sym_foreign_mod_item] = STATE(600), + [sym_struct_item] = STATE(600), + [sym_union_item] = STATE(600), + [sym_enum_item] = STATE(600), + [sym_extern_crate_declaration] = STATE(600), + [sym_const_item] = STATE(600), + [sym_static_item] = STATE(600), + [sym_type_item] = STATE(600), + [sym_function_item] = STATE(600), + [sym_function_signature_item] = STATE(600), + [sym_function_modifiers] = STATE(4065), + [sym_impl_item] = STATE(600), + [sym_trait_item] = STATE(600), + [sym_associated_type] = STATE(600), + [sym_let_declaration] = STATE(600), + [sym_use_declaration] = STATE(600), + [sym_extern_modifier] = STATE(2447), + [sym_visibility_modifier] = STATE(2223), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1952), + [sym_macro_invocation] = STATE(404), + [sym_scoped_identifier] = STATE(1801), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(407), + [sym_match_expression] = STATE(407), + [sym_while_expression] = STATE(407), + [sym_loop_expression] = STATE(407), + [sym_for_expression] = STATE(407), + [sym_const_block] = STATE(407), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4055), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(407), + [sym_async_block] = STATE(407), + [sym_gen_block] = STATE(407), + [sym_try_block] = STATE(407), + [sym_block] = STATE(407), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), [sym_line_comment] = STATE(6), [sym_block_comment] = STATE(6), - [aux_sym_source_file_repeat1] = STATE(7), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [ts_builtin_sym_end] = ACTIONS(129), + [aux_sym_source_file_repeat1] = STATE(5), + [aux_sym_mod_item_repeat1] = STATE(2186), + [aux_sym_function_modifiers_repeat1] = STATE(2519), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(129), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -14840,243 +16175,245 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [7] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(665), - [sym_expression_statement] = STATE(665), - [sym_macro_definition] = STATE(665), - [sym_attribute_item] = STATE(665), - [sym_inner_attribute_item] = STATE(665), - [sym_mod_item] = STATE(665), - [sym_foreign_mod_item] = STATE(665), - [sym_struct_item] = STATE(665), - [sym_union_item] = STATE(665), - [sym_enum_item] = STATE(665), - [sym_extern_crate_declaration] = STATE(665), - [sym_const_item] = STATE(665), - [sym_static_item] = STATE(665), - [sym_type_item] = STATE(665), - [sym_function_item] = STATE(665), - [sym_function_signature_item] = STATE(665), - [sym_function_modifiers] = STATE(3607), - [sym_impl_item] = STATE(665), - [sym_trait_item] = STATE(665), - [sym_associated_type] = STATE(665), - [sym_let_declaration] = STATE(665), - [sym_use_declaration] = STATE(665), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1950), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1886), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3577), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [sym__statement] = STATE(578), + [sym_empty_statement] = STATE(600), + [sym_expression_statement] = STATE(600), + [sym_macro_definition] = STATE(600), + [sym_attribute_item] = STATE(2189), + [sym_inner_attribute_item] = STATE(600), + [sym_mod_item] = STATE(600), + [sym_foreign_mod_item] = STATE(600), + [sym_struct_item] = STATE(600), + [sym_union_item] = STATE(600), + [sym_enum_item] = STATE(600), + [sym_extern_crate_declaration] = STATE(600), + [sym_const_item] = STATE(600), + [sym_static_item] = STATE(600), + [sym_type_item] = STATE(600), + [sym_function_item] = STATE(600), + [sym_function_signature_item] = STATE(600), + [sym_function_modifiers] = STATE(4065), + [sym_impl_item] = STATE(600), + [sym_trait_item] = STATE(600), + [sym_associated_type] = STATE(600), + [sym_let_declaration] = STATE(600), + [sym_use_declaration] = STATE(600), + [sym_extern_modifier] = STATE(2447), + [sym_visibility_modifier] = STATE(2223), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2107), + [sym_macro_invocation] = STATE(404), + [sym_scoped_identifier] = STATE(1801), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(407), + [sym_match_expression] = STATE(407), + [sym_while_expression] = STATE(407), + [sym_loop_expression] = STATE(407), + [sym_for_expression] = STATE(407), + [sym_const_block] = STATE(407), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4055), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(407), + [sym_async_block] = STATE(407), + [sym_gen_block] = STATE(407), + [sym_try_block] = STATE(407), + [sym_block] = STATE(407), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), [sym_line_comment] = STATE(7), [sym_block_comment] = STATE(7), - [aux_sym_source_file_repeat1] = STATE(7), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [ts_builtin_sym_end] = ACTIONS(131), - [sym_identifier] = ACTIONS(133), - [anon_sym_SEMI] = ACTIONS(136), - [anon_sym_macro_rules_BANG] = ACTIONS(139), - [anon_sym_LPAREN] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(148), - [anon_sym_STAR] = ACTIONS(151), - [anon_sym_u8] = ACTIONS(154), - [anon_sym_i8] = ACTIONS(154), - [anon_sym_u16] = ACTIONS(154), - [anon_sym_i16] = ACTIONS(154), - [anon_sym_u32] = ACTIONS(154), - [anon_sym_i32] = ACTIONS(154), - [anon_sym_u64] = ACTIONS(154), - [anon_sym_i64] = ACTIONS(154), - [anon_sym_u128] = ACTIONS(154), - [anon_sym_i128] = ACTIONS(154), - [anon_sym_isize] = ACTIONS(154), - [anon_sym_usize] = ACTIONS(154), - [anon_sym_f32] = ACTIONS(154), - [anon_sym_f64] = ACTIONS(154), - [anon_sym_bool] = ACTIONS(154), - [anon_sym_str] = ACTIONS(154), - [anon_sym_char] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(151), - [anon_sym_BANG] = ACTIONS(151), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_PIPE] = ACTIONS(160), - [anon_sym_LT] = ACTIONS(163), - [anon_sym_DOT_DOT] = ACTIONS(166), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_POUND] = ACTIONS(172), - [anon_sym_SQUOTE] = ACTIONS(175), - [anon_sym_async] = ACTIONS(178), - [anon_sym_break] = ACTIONS(181), - [anon_sym_const] = ACTIONS(184), - [anon_sym_continue] = ACTIONS(187), - [anon_sym_default] = ACTIONS(190), - [anon_sym_enum] = ACTIONS(193), - [anon_sym_fn] = ACTIONS(196), - [anon_sym_for] = ACTIONS(199), - [anon_sym_gen] = ACTIONS(202), - [anon_sym_if] = ACTIONS(205), - [anon_sym_impl] = ACTIONS(208), - [anon_sym_let] = ACTIONS(211), - [anon_sym_loop] = ACTIONS(214), - [anon_sym_match] = ACTIONS(217), - [anon_sym_mod] = ACTIONS(220), - [anon_sym_pub] = ACTIONS(223), - [anon_sym_return] = ACTIONS(226), - [anon_sym_static] = ACTIONS(229), - [anon_sym_struct] = ACTIONS(232), - [anon_sym_trait] = ACTIONS(235), - [anon_sym_type] = ACTIONS(238), - [anon_sym_union] = ACTIONS(241), - [anon_sym_unsafe] = ACTIONS(244), - [anon_sym_use] = ACTIONS(247), - [anon_sym_while] = ACTIONS(250), - [anon_sym_extern] = ACTIONS(253), - [anon_sym_yield] = ACTIONS(256), - [anon_sym_move] = ACTIONS(259), - [anon_sym_try] = ACTIONS(262), - [sym_integer_literal] = ACTIONS(265), - [aux_sym_string_literal_token1] = ACTIONS(268), - [sym_char_literal] = ACTIONS(265), - [anon_sym_true] = ACTIONS(271), - [anon_sym_false] = ACTIONS(271), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(274), - [sym_super] = ACTIONS(277), - [sym_crate] = ACTIONS(280), - [sym_metavariable] = ACTIONS(283), - [sym__raw_string_literal_start] = ACTIONS(286), - [sym_float_literal] = ACTIONS(265), + [aux_sym_source_file_repeat1] = STATE(23), + [aux_sym_mod_item_repeat1] = STATE(2186), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(9), + [anon_sym_SEMI] = ACTIONS(11), + [anon_sym_macro_rules_BANG] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(131), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(39), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(47), + [anon_sym_enum] = ACTIONS(49), + [anon_sym_fn] = ACTIONS(51), + [anon_sym_for] = ACTIONS(53), + [anon_sym_gen] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [8] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(665), - [sym_expression_statement] = STATE(665), - [sym_macro_definition] = STATE(665), - [sym_attribute_item] = STATE(665), - [sym_inner_attribute_item] = STATE(665), - [sym_mod_item] = STATE(665), - [sym_foreign_mod_item] = STATE(665), - [sym_struct_item] = STATE(665), - [sym_union_item] = STATE(665), - [sym_enum_item] = STATE(665), - [sym_extern_crate_declaration] = STATE(665), - [sym_const_item] = STATE(665), - [sym_static_item] = STATE(665), - [sym_type_item] = STATE(665), - [sym_function_item] = STATE(665), - [sym_function_signature_item] = STATE(665), - [sym_function_modifiers] = STATE(3607), - [sym_impl_item] = STATE(665), - [sym_trait_item] = STATE(665), - [sym_associated_type] = STATE(665), - [sym_let_declaration] = STATE(665), - [sym_use_declaration] = STATE(665), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1950), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1831), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3577), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [sym__statement] = STATE(578), + [sym_empty_statement] = STATE(600), + [sym_expression_statement] = STATE(600), + [sym_macro_definition] = STATE(600), + [sym_attribute_item] = STATE(2189), + [sym_inner_attribute_item] = STATE(600), + [sym_mod_item] = STATE(600), + [sym_foreign_mod_item] = STATE(600), + [sym_struct_item] = STATE(600), + [sym_union_item] = STATE(600), + [sym_enum_item] = STATE(600), + [sym_extern_crate_declaration] = STATE(600), + [sym_const_item] = STATE(600), + [sym_static_item] = STATE(600), + [sym_type_item] = STATE(600), + [sym_function_item] = STATE(600), + [sym_function_signature_item] = STATE(600), + [sym_function_modifiers] = STATE(4065), + [sym_impl_item] = STATE(600), + [sym_trait_item] = STATE(600), + [sym_associated_type] = STATE(600), + [sym_let_declaration] = STATE(600), + [sym_use_declaration] = STATE(600), + [sym_extern_modifier] = STATE(2447), + [sym_visibility_modifier] = STATE(2223), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2126), + [sym_macro_invocation] = STATE(404), + [sym_scoped_identifier] = STATE(1801), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(407), + [sym_match_expression] = STATE(407), + [sym_while_expression] = STATE(407), + [sym_loop_expression] = STATE(407), + [sym_for_expression] = STATE(407), + [sym_const_block] = STATE(407), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4055), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(407), + [sym_async_block] = STATE(407), + [sym_gen_block] = STATE(407), + [sym_try_block] = STATE(407), + [sym_block] = STATE(407), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), [sym_line_comment] = STATE(8), [sym_block_comment] = STATE(8), - [aux_sym_source_file_repeat1] = STATE(9), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [aux_sym_source_file_repeat1] = STATE(20), + [aux_sym_mod_item_repeat1] = STATE(2186), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [ts_builtin_sym_end] = ACTIONS(133), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(289), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -15148,89 +16485,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [9] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(665), - [sym_expression_statement] = STATE(665), - [sym_macro_definition] = STATE(665), - [sym_attribute_item] = STATE(665), - [sym_inner_attribute_item] = STATE(665), - [sym_mod_item] = STATE(665), - [sym_foreign_mod_item] = STATE(665), - [sym_struct_item] = STATE(665), - [sym_union_item] = STATE(665), - [sym_enum_item] = STATE(665), - [sym_extern_crate_declaration] = STATE(665), - [sym_const_item] = STATE(665), - [sym_static_item] = STATE(665), - [sym_type_item] = STATE(665), - [sym_function_item] = STATE(665), - [sym_function_signature_item] = STATE(665), - [sym_function_modifiers] = STATE(3607), - [sym_impl_item] = STATE(665), - [sym_trait_item] = STATE(665), - [sym_associated_type] = STATE(665), - [sym_let_declaration] = STATE(665), - [sym_use_declaration] = STATE(665), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1950), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1832), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3577), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [sym__statement] = STATE(578), + [sym_empty_statement] = STATE(600), + [sym_expression_statement] = STATE(600), + [sym_macro_definition] = STATE(600), + [sym_attribute_item] = STATE(2189), + [sym_inner_attribute_item] = STATE(600), + [sym_mod_item] = STATE(600), + [sym_foreign_mod_item] = STATE(600), + [sym_struct_item] = STATE(600), + [sym_union_item] = STATE(600), + [sym_enum_item] = STATE(600), + [sym_extern_crate_declaration] = STATE(600), + [sym_const_item] = STATE(600), + [sym_static_item] = STATE(600), + [sym_type_item] = STATE(600), + [sym_function_item] = STATE(600), + [sym_function_signature_item] = STATE(600), + [sym_function_modifiers] = STATE(4065), + [sym_impl_item] = STATE(600), + [sym_trait_item] = STATE(600), + [sym_associated_type] = STATE(600), + [sym_let_declaration] = STATE(600), + [sym_use_declaration] = STATE(600), + [sym_extern_modifier] = STATE(2447), + [sym_visibility_modifier] = STATE(2223), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2050), + [sym_macro_invocation] = STATE(404), + [sym_scoped_identifier] = STATE(1801), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(407), + [sym_match_expression] = STATE(407), + [sym_while_expression] = STATE(407), + [sym_loop_expression] = STATE(407), + [sym_for_expression] = STATE(407), + [sym_const_block] = STATE(407), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4055), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(407), + [sym_async_block] = STATE(407), + [sym_gen_block] = STATE(407), + [sym_try_block] = STATE(407), + [sym_block] = STATE(407), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), [sym_line_comment] = STATE(9), [sym_block_comment] = STATE(9), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [aux_sym_source_file_repeat1] = STATE(23), + [aux_sym_mod_item_repeat1] = STATE(2186), + [aux_sym_function_modifiers_repeat1] = STATE(2519), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(291), + [anon_sym_RBRACE] = ACTIONS(135), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -15302,89 +16640,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [10] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(665), - [sym_expression_statement] = STATE(665), - [sym_macro_definition] = STATE(665), - [sym_attribute_item] = STATE(665), - [sym_inner_attribute_item] = STATE(665), - [sym_mod_item] = STATE(665), - [sym_foreign_mod_item] = STATE(665), - [sym_struct_item] = STATE(665), - [sym_union_item] = STATE(665), - [sym_enum_item] = STATE(665), - [sym_extern_crate_declaration] = STATE(665), - [sym_const_item] = STATE(665), - [sym_static_item] = STATE(665), - [sym_type_item] = STATE(665), - [sym_function_item] = STATE(665), - [sym_function_signature_item] = STATE(665), - [sym_function_modifiers] = STATE(3607), - [sym_impl_item] = STATE(665), - [sym_trait_item] = STATE(665), - [sym_associated_type] = STATE(665), - [sym_let_declaration] = STATE(665), - [sym_use_declaration] = STATE(665), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1950), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1801), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3577), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [sym__statement] = STATE(578), + [sym_empty_statement] = STATE(600), + [sym_expression_statement] = STATE(600), + [sym_macro_definition] = STATE(600), + [sym_attribute_item] = STATE(2189), + [sym_inner_attribute_item] = STATE(600), + [sym_mod_item] = STATE(600), + [sym_foreign_mod_item] = STATE(600), + [sym_struct_item] = STATE(600), + [sym_union_item] = STATE(600), + [sym_enum_item] = STATE(600), + [sym_extern_crate_declaration] = STATE(600), + [sym_const_item] = STATE(600), + [sym_static_item] = STATE(600), + [sym_type_item] = STATE(600), + [sym_function_item] = STATE(600), + [sym_function_signature_item] = STATE(600), + [sym_function_modifiers] = STATE(4065), + [sym_impl_item] = STATE(600), + [sym_trait_item] = STATE(600), + [sym_associated_type] = STATE(600), + [sym_let_declaration] = STATE(600), + [sym_use_declaration] = STATE(600), + [sym_extern_modifier] = STATE(2447), + [sym_visibility_modifier] = STATE(2223), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2057), + [sym_macro_invocation] = STATE(404), + [sym_scoped_identifier] = STATE(1801), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(407), + [sym_match_expression] = STATE(407), + [sym_while_expression] = STATE(407), + [sym_loop_expression] = STATE(407), + [sym_for_expression] = STATE(407), + [sym_const_block] = STATE(407), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4055), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(407), + [sym_async_block] = STATE(407), + [sym_gen_block] = STATE(407), + [sym_try_block] = STATE(407), + [sym_block] = STATE(407), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), [sym_line_comment] = STATE(10), [sym_block_comment] = STATE(10), - [aux_sym_source_file_repeat1] = STATE(11), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_mod_item_repeat1] = STATE(2186), + [aux_sym_function_modifiers_repeat1] = STATE(2519), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(293), + [anon_sym_RBRACE] = ACTIONS(137), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -15456,89 +16795,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [11] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(665), - [sym_expression_statement] = STATE(665), - [sym_macro_definition] = STATE(665), - [sym_attribute_item] = STATE(665), - [sym_inner_attribute_item] = STATE(665), - [sym_mod_item] = STATE(665), - [sym_foreign_mod_item] = STATE(665), - [sym_struct_item] = STATE(665), - [sym_union_item] = STATE(665), - [sym_enum_item] = STATE(665), - [sym_extern_crate_declaration] = STATE(665), - [sym_const_item] = STATE(665), - [sym_static_item] = STATE(665), - [sym_type_item] = STATE(665), - [sym_function_item] = STATE(665), - [sym_function_signature_item] = STATE(665), - [sym_function_modifiers] = STATE(3607), - [sym_impl_item] = STATE(665), - [sym_trait_item] = STATE(665), - [sym_associated_type] = STATE(665), - [sym_let_declaration] = STATE(665), - [sym_use_declaration] = STATE(665), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1950), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1807), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3577), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [sym__statement] = STATE(578), + [sym_empty_statement] = STATE(600), + [sym_expression_statement] = STATE(600), + [sym_macro_definition] = STATE(600), + [sym_attribute_item] = STATE(2189), + [sym_inner_attribute_item] = STATE(600), + [sym_mod_item] = STATE(600), + [sym_foreign_mod_item] = STATE(600), + [sym_struct_item] = STATE(600), + [sym_union_item] = STATE(600), + [sym_enum_item] = STATE(600), + [sym_extern_crate_declaration] = STATE(600), + [sym_const_item] = STATE(600), + [sym_static_item] = STATE(600), + [sym_type_item] = STATE(600), + [sym_function_item] = STATE(600), + [sym_function_signature_item] = STATE(600), + [sym_function_modifiers] = STATE(4065), + [sym_impl_item] = STATE(600), + [sym_trait_item] = STATE(600), + [sym_associated_type] = STATE(600), + [sym_let_declaration] = STATE(600), + [sym_use_declaration] = STATE(600), + [sym_extern_modifier] = STATE(2447), + [sym_visibility_modifier] = STATE(2223), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2003), + [sym_macro_invocation] = STATE(404), + [sym_scoped_identifier] = STATE(1801), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(407), + [sym_match_expression] = STATE(407), + [sym_while_expression] = STATE(407), + [sym_loop_expression] = STATE(407), + [sym_for_expression] = STATE(407), + [sym_const_block] = STATE(407), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4055), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(407), + [sym_async_block] = STATE(407), + [sym_gen_block] = STATE(407), + [sym_try_block] = STATE(407), + [sym_block] = STATE(407), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), [sym_line_comment] = STATE(11), [sym_block_comment] = STATE(11), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [aux_sym_source_file_repeat1] = STATE(24), + [aux_sym_mod_item_repeat1] = STATE(2186), + [aux_sym_function_modifiers_repeat1] = STATE(2519), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(295), + [anon_sym_RBRACE] = ACTIONS(139), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -15610,551 +16950,555 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [12] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(665), - [sym_expression_statement] = STATE(665), - [sym_macro_definition] = STATE(665), - [sym_attribute_item] = STATE(665), - [sym_inner_attribute_item] = STATE(665), - [sym_mod_item] = STATE(665), - [sym_foreign_mod_item] = STATE(665), - [sym_struct_item] = STATE(665), - [sym_union_item] = STATE(665), - [sym_enum_item] = STATE(665), - [sym_extern_crate_declaration] = STATE(665), - [sym_const_item] = STATE(665), - [sym_static_item] = STATE(665), - [sym_type_item] = STATE(665), - [sym_function_item] = STATE(665), - [sym_function_signature_item] = STATE(665), - [sym_function_modifiers] = STATE(3607), - [sym_impl_item] = STATE(665), - [sym_trait_item] = STATE(665), - [sym_associated_type] = STATE(665), - [sym_let_declaration] = STATE(665), - [sym_use_declaration] = STATE(665), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1950), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1886), - [sym_macro_invocation] = STATE(409), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3577), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [sym__statement] = STATE(578), + [sym_empty_statement] = STATE(600), + [sym_expression_statement] = STATE(600), + [sym_macro_definition] = STATE(600), + [sym_attribute_item] = STATE(2189), + [sym_inner_attribute_item] = STATE(600), + [sym_mod_item] = STATE(600), + [sym_foreign_mod_item] = STATE(600), + [sym_struct_item] = STATE(600), + [sym_union_item] = STATE(600), + [sym_enum_item] = STATE(600), + [sym_extern_crate_declaration] = STATE(600), + [sym_const_item] = STATE(600), + [sym_static_item] = STATE(600), + [sym_type_item] = STATE(600), + [sym_function_item] = STATE(600), + [sym_function_signature_item] = STATE(600), + [sym_function_modifiers] = STATE(4065), + [sym_impl_item] = STATE(600), + [sym_trait_item] = STATE(600), + [sym_associated_type] = STATE(600), + [sym_let_declaration] = STATE(600), + [sym_use_declaration] = STATE(600), + [sym_extern_modifier] = STATE(2447), + [sym_visibility_modifier] = STATE(2223), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1943), + [sym_macro_invocation] = STATE(404), + [sym_scoped_identifier] = STATE(1801), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(407), + [sym_match_expression] = STATE(407), + [sym_while_expression] = STATE(407), + [sym_loop_expression] = STATE(407), + [sym_for_expression] = STATE(407), + [sym_const_block] = STATE(407), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4055), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(407), + [sym_async_block] = STATE(407), + [sym_gen_block] = STATE(407), + [sym_try_block] = STATE(407), + [sym_block] = STATE(407), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), [sym_line_comment] = STATE(12), [sym_block_comment] = STATE(12), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(133), - [anon_sym_SEMI] = ACTIONS(136), - [anon_sym_macro_rules_BANG] = ACTIONS(139), - [anon_sym_LPAREN] = ACTIONS(142), - [anon_sym_LBRACK] = ACTIONS(145), - [anon_sym_LBRACE] = ACTIONS(148), - [anon_sym_RBRACE] = ACTIONS(131), - [anon_sym_STAR] = ACTIONS(151), - [anon_sym_u8] = ACTIONS(154), - [anon_sym_i8] = ACTIONS(154), - [anon_sym_u16] = ACTIONS(154), - [anon_sym_i16] = ACTIONS(154), - [anon_sym_u32] = ACTIONS(154), - [anon_sym_i32] = ACTIONS(154), - [anon_sym_u64] = ACTIONS(154), - [anon_sym_i64] = ACTIONS(154), - [anon_sym_u128] = ACTIONS(154), - [anon_sym_i128] = ACTIONS(154), - [anon_sym_isize] = ACTIONS(154), - [anon_sym_usize] = ACTIONS(154), - [anon_sym_f32] = ACTIONS(154), - [anon_sym_f64] = ACTIONS(154), - [anon_sym_bool] = ACTIONS(154), - [anon_sym_str] = ACTIONS(154), - [anon_sym_char] = ACTIONS(154), - [anon_sym_DASH] = ACTIONS(151), - [anon_sym_BANG] = ACTIONS(151), - [anon_sym_AMP] = ACTIONS(157), - [anon_sym_PIPE] = ACTIONS(160), - [anon_sym_LT] = ACTIONS(163), - [anon_sym_DOT_DOT] = ACTIONS(166), - [anon_sym_COLON_COLON] = ACTIONS(169), - [anon_sym_POUND] = ACTIONS(172), - [anon_sym_SQUOTE] = ACTIONS(175), - [anon_sym_async] = ACTIONS(178), - [anon_sym_break] = ACTIONS(181), - [anon_sym_const] = ACTIONS(184), - [anon_sym_continue] = ACTIONS(187), - [anon_sym_default] = ACTIONS(190), - [anon_sym_enum] = ACTIONS(193), - [anon_sym_fn] = ACTIONS(196), - [anon_sym_for] = ACTIONS(199), - [anon_sym_gen] = ACTIONS(202), - [anon_sym_if] = ACTIONS(205), - [anon_sym_impl] = ACTIONS(208), - [anon_sym_let] = ACTIONS(211), - [anon_sym_loop] = ACTIONS(214), - [anon_sym_match] = ACTIONS(217), - [anon_sym_mod] = ACTIONS(220), - [anon_sym_pub] = ACTIONS(223), - [anon_sym_return] = ACTIONS(226), - [anon_sym_static] = ACTIONS(229), - [anon_sym_struct] = ACTIONS(232), - [anon_sym_trait] = ACTIONS(235), - [anon_sym_type] = ACTIONS(238), - [anon_sym_union] = ACTIONS(241), - [anon_sym_unsafe] = ACTIONS(244), - [anon_sym_use] = ACTIONS(247), - [anon_sym_while] = ACTIONS(250), - [anon_sym_extern] = ACTIONS(253), - [anon_sym_yield] = ACTIONS(256), - [anon_sym_move] = ACTIONS(259), - [anon_sym_try] = ACTIONS(262), - [sym_integer_literal] = ACTIONS(265), - [aux_sym_string_literal_token1] = ACTIONS(268), - [sym_char_literal] = ACTIONS(265), - [anon_sym_true] = ACTIONS(271), - [anon_sym_false] = ACTIONS(271), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(274), - [sym_super] = ACTIONS(277), - [sym_crate] = ACTIONS(280), - [sym_metavariable] = ACTIONS(283), - [sym__raw_string_literal_start] = ACTIONS(286), - [sym_float_literal] = ACTIONS(265), + [aux_sym_source_file_repeat1] = STATE(23), + [aux_sym_mod_item_repeat1] = STATE(2186), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(9), + [anon_sym_SEMI] = ACTIONS(11), + [anon_sym_macro_rules_BANG] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(141), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(39), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(47), + [anon_sym_enum] = ACTIONS(49), + [anon_sym_fn] = ACTIONS(51), + [anon_sym_for] = ACTIONS(53), + [anon_sym_gen] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [13] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(665), - [sym_expression_statement] = STATE(665), - [sym_macro_definition] = STATE(665), - [sym_attribute_item] = STATE(665), - [sym_inner_attribute_item] = STATE(665), - [sym_mod_item] = STATE(665), - [sym_foreign_mod_item] = STATE(665), - [sym_struct_item] = STATE(665), - [sym_union_item] = STATE(665), - [sym_enum_item] = STATE(665), - [sym_extern_crate_declaration] = STATE(665), - [sym_const_item] = STATE(665), - [sym_static_item] = STATE(665), - [sym_type_item] = STATE(665), - [sym_function_item] = STATE(665), - [sym_function_signature_item] = STATE(665), - [sym_function_modifiers] = STATE(3607), - [sym_impl_item] = STATE(665), - [sym_trait_item] = STATE(665), - [sym_associated_type] = STATE(665), - [sym_let_declaration] = STATE(665), - [sym_use_declaration] = STATE(665), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1950), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1814), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3577), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [sym__statement] = STATE(578), + [sym_empty_statement] = STATE(600), + [sym_expression_statement] = STATE(600), + [sym_macro_definition] = STATE(600), + [sym_attribute_item] = STATE(2189), + [sym_inner_attribute_item] = STATE(600), + [sym_mod_item] = STATE(600), + [sym_foreign_mod_item] = STATE(600), + [sym_struct_item] = STATE(600), + [sym_union_item] = STATE(600), + [sym_enum_item] = STATE(600), + [sym_extern_crate_declaration] = STATE(600), + [sym_const_item] = STATE(600), + [sym_static_item] = STATE(600), + [sym_type_item] = STATE(600), + [sym_function_item] = STATE(600), + [sym_function_signature_item] = STATE(600), + [sym_function_modifiers] = STATE(4065), + [sym_impl_item] = STATE(600), + [sym_trait_item] = STATE(600), + [sym_associated_type] = STATE(600), + [sym_let_declaration] = STATE(600), + [sym_use_declaration] = STATE(600), + [sym_extern_modifier] = STATE(2447), + [sym_visibility_modifier] = STATE(2223), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1907), + [sym_macro_invocation] = STATE(404), + [sym_scoped_identifier] = STATE(1801), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(407), + [sym_match_expression] = STATE(407), + [sym_while_expression] = STATE(407), + [sym_loop_expression] = STATE(407), + [sym_for_expression] = STATE(407), + [sym_const_block] = STATE(407), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4055), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(407), + [sym_async_block] = STATE(407), + [sym_gen_block] = STATE(407), + [sym_try_block] = STATE(407), + [sym_block] = STATE(407), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), [sym_line_comment] = STATE(13), [sym_block_comment] = STATE(13), + [aux_sym_source_file_repeat1] = STATE(18), + [aux_sym_mod_item_repeat1] = STATE(2186), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(9), + [anon_sym_SEMI] = ACTIONS(11), + [anon_sym_macro_rules_BANG] = ACTIONS(13), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(143), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(121), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(39), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(47), + [anon_sym_enum] = ACTIONS(49), + [anon_sym_fn] = ACTIONS(51), + [anon_sym_for] = ACTIONS(53), + [anon_sym_gen] = ACTIONS(55), + [anon_sym_if] = ACTIONS(57), + [anon_sym_impl] = ACTIONS(59), + [anon_sym_let] = ACTIONS(61), + [anon_sym_loop] = ACTIONS(63), + [anon_sym_match] = ACTIONS(65), + [anon_sym_mod] = ACTIONS(67), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(73), + [anon_sym_struct] = ACTIONS(75), + [anon_sym_trait] = ACTIONS(77), + [anon_sym_type] = ACTIONS(79), + [anon_sym_union] = ACTIONS(81), + [anon_sym_unsafe] = ACTIONS(83), + [anon_sym_use] = ACTIONS(85), + [anon_sym_while] = ACTIONS(87), + [anon_sym_extern] = ACTIONS(89), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(95), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(113), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [14] = { + [sym__statement] = STATE(578), + [sym_empty_statement] = STATE(600), + [sym_expression_statement] = STATE(600), + [sym_macro_definition] = STATE(600), + [sym_attribute_item] = STATE(2189), + [sym_inner_attribute_item] = STATE(600), + [sym_mod_item] = STATE(600), + [sym_foreign_mod_item] = STATE(600), + [sym_struct_item] = STATE(600), + [sym_union_item] = STATE(600), + [sym_enum_item] = STATE(600), + [sym_extern_crate_declaration] = STATE(600), + [sym_const_item] = STATE(600), + [sym_static_item] = STATE(600), + [sym_type_item] = STATE(600), + [sym_function_item] = STATE(600), + [sym_function_signature_item] = STATE(600), + [sym_function_modifiers] = STATE(4065), + [sym_impl_item] = STATE(600), + [sym_trait_item] = STATE(600), + [sym_associated_type] = STATE(600), + [sym_let_declaration] = STATE(600), + [sym_use_declaration] = STATE(600), + [sym_extern_modifier] = STATE(2447), + [sym_visibility_modifier] = STATE(2223), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2126), + [sym_macro_invocation] = STATE(404), + [sym_scoped_identifier] = STATE(1801), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(407), + [sym_match_expression] = STATE(407), + [sym_while_expression] = STATE(407), + [sym_loop_expression] = STATE(407), + [sym_for_expression] = STATE(407), + [sym_const_block] = STATE(407), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4055), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(407), + [sym_async_block] = STATE(407), + [sym_gen_block] = STATE(407), + [sym_try_block] = STATE(407), + [sym_block] = STATE(407), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(14), + [sym_block_comment] = STATE(14), [aux_sym_source_file_repeat1] = STATE(14), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [aux_sym_mod_item_repeat1] = STATE(2186), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [ts_builtin_sym_end] = ACTIONS(145), + [sym_identifier] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(150), + [anon_sym_macro_rules_BANG] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(156), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LBRACE] = ACTIONS(162), + [anon_sym_STAR] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(168), + [anon_sym_i8] = ACTIONS(168), + [anon_sym_u16] = ACTIONS(168), + [anon_sym_i16] = ACTIONS(168), + [anon_sym_u32] = ACTIONS(168), + [anon_sym_i32] = ACTIONS(168), + [anon_sym_u64] = ACTIONS(168), + [anon_sym_i64] = ACTIONS(168), + [anon_sym_u128] = ACTIONS(168), + [anon_sym_i128] = ACTIONS(168), + [anon_sym_isize] = ACTIONS(168), + [anon_sym_usize] = ACTIONS(168), + [anon_sym_f32] = ACTIONS(168), + [anon_sym_f64] = ACTIONS(168), + [anon_sym_bool] = ACTIONS(168), + [anon_sym_str] = ACTIONS(168), + [anon_sym_char] = ACTIONS(168), + [anon_sym_DASH] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(171), + [anon_sym_PIPE] = ACTIONS(174), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_DOT_DOT] = ACTIONS(180), + [anon_sym_COLON_COLON] = ACTIONS(183), + [anon_sym_POUND] = ACTIONS(186), + [anon_sym_SQUOTE] = ACTIONS(189), + [anon_sym_async] = ACTIONS(192), + [anon_sym_break] = ACTIONS(195), + [anon_sym_const] = ACTIONS(198), + [anon_sym_continue] = ACTIONS(201), + [anon_sym_default] = ACTIONS(204), + [anon_sym_enum] = ACTIONS(207), + [anon_sym_fn] = ACTIONS(210), + [anon_sym_for] = ACTIONS(213), + [anon_sym_gen] = ACTIONS(216), + [anon_sym_if] = ACTIONS(219), + [anon_sym_impl] = ACTIONS(222), + [anon_sym_let] = ACTIONS(225), + [anon_sym_loop] = ACTIONS(228), + [anon_sym_match] = ACTIONS(231), + [anon_sym_mod] = ACTIONS(234), + [anon_sym_pub] = ACTIONS(237), + [anon_sym_return] = ACTIONS(240), + [anon_sym_static] = ACTIONS(243), + [anon_sym_struct] = ACTIONS(246), + [anon_sym_trait] = ACTIONS(249), + [anon_sym_type] = ACTIONS(252), + [anon_sym_union] = ACTIONS(255), + [anon_sym_unsafe] = ACTIONS(258), + [anon_sym_use] = ACTIONS(261), + [anon_sym_while] = ACTIONS(264), + [anon_sym_extern] = ACTIONS(267), + [anon_sym_yield] = ACTIONS(270), + [anon_sym_move] = ACTIONS(273), + [anon_sym_try] = ACTIONS(276), + [sym_integer_literal] = ACTIONS(279), + [aux_sym_string_literal_token1] = ACTIONS(282), + [sym_char_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(285), + [anon_sym_false] = ACTIONS(285), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(288), + [sym_super] = ACTIONS(291), + [sym_crate] = ACTIONS(294), + [sym_metavariable] = ACTIONS(297), + [sym__raw_string_literal_start] = ACTIONS(300), + [sym_float_literal] = ACTIONS(279), + }, + [15] = { + [sym__statement] = STATE(578), + [sym_empty_statement] = STATE(600), + [sym_expression_statement] = STATE(600), + [sym_macro_definition] = STATE(600), + [sym_attribute_item] = STATE(2189), + [sym_inner_attribute_item] = STATE(600), + [sym_mod_item] = STATE(600), + [sym_foreign_mod_item] = STATE(600), + [sym_struct_item] = STATE(600), + [sym_union_item] = STATE(600), + [sym_enum_item] = STATE(600), + [sym_extern_crate_declaration] = STATE(600), + [sym_const_item] = STATE(600), + [sym_static_item] = STATE(600), + [sym_type_item] = STATE(600), + [sym_function_item] = STATE(600), + [sym_function_signature_item] = STATE(600), + [sym_function_modifiers] = STATE(4065), + [sym_impl_item] = STATE(600), + [sym_trait_item] = STATE(600), + [sym_associated_type] = STATE(600), + [sym_let_declaration] = STATE(600), + [sym_use_declaration] = STATE(600), + [sym_extern_modifier] = STATE(2447), + [sym_visibility_modifier] = STATE(2223), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2110), + [sym_macro_invocation] = STATE(404), + [sym_scoped_identifier] = STATE(1801), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(407), + [sym_match_expression] = STATE(407), + [sym_while_expression] = STATE(407), + [sym_loop_expression] = STATE(407), + [sym_for_expression] = STATE(407), + [sym_const_block] = STATE(407), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4055), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(407), + [sym_async_block] = STATE(407), + [sym_gen_block] = STATE(407), + [sym_try_block] = STATE(407), + [sym_block] = STATE(407), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(15), + [sym_block_comment] = STATE(15), + [aux_sym_source_file_repeat1] = STATE(7), + [aux_sym_mod_item_repeat1] = STATE(2186), + [aux_sym_function_modifiers_repeat1] = STATE(2519), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(297), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_fn] = ACTIONS(51), - [anon_sym_for] = ACTIONS(53), - [anon_sym_gen] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_impl] = ACTIONS(59), - [anon_sym_let] = ACTIONS(61), - [anon_sym_loop] = ACTIONS(63), - [anon_sym_match] = ACTIONS(65), - [anon_sym_mod] = ACTIONS(67), - [anon_sym_pub] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(73), - [anon_sym_struct] = ACTIONS(75), - [anon_sym_trait] = ACTIONS(77), - [anon_sym_type] = ACTIONS(79), - [anon_sym_union] = ACTIONS(81), - [anon_sym_unsafe] = ACTIONS(83), - [anon_sym_use] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_extern] = ACTIONS(89), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(95), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [14] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(665), - [sym_expression_statement] = STATE(665), - [sym_macro_definition] = STATE(665), - [sym_attribute_item] = STATE(665), - [sym_inner_attribute_item] = STATE(665), - [sym_mod_item] = STATE(665), - [sym_foreign_mod_item] = STATE(665), - [sym_struct_item] = STATE(665), - [sym_union_item] = STATE(665), - [sym_enum_item] = STATE(665), - [sym_extern_crate_declaration] = STATE(665), - [sym_const_item] = STATE(665), - [sym_static_item] = STATE(665), - [sym_type_item] = STATE(665), - [sym_function_item] = STATE(665), - [sym_function_signature_item] = STATE(665), - [sym_function_modifiers] = STATE(3607), - [sym_impl_item] = STATE(665), - [sym_trait_item] = STATE(665), - [sym_associated_type] = STATE(665), - [sym_let_declaration] = STATE(665), - [sym_use_declaration] = STATE(665), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1950), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1818), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3577), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(14), - [sym_block_comment] = STATE(14), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(9), - [anon_sym_SEMI] = ACTIONS(11), - [anon_sym_macro_rules_BANG] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(299), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_fn] = ACTIONS(51), - [anon_sym_for] = ACTIONS(53), - [anon_sym_gen] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_impl] = ACTIONS(59), - [anon_sym_let] = ACTIONS(61), - [anon_sym_loop] = ACTIONS(63), - [anon_sym_match] = ACTIONS(65), - [anon_sym_mod] = ACTIONS(67), - [anon_sym_pub] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(73), - [anon_sym_struct] = ACTIONS(75), - [anon_sym_trait] = ACTIONS(77), - [anon_sym_type] = ACTIONS(79), - [anon_sym_union] = ACTIONS(81), - [anon_sym_unsafe] = ACTIONS(83), - [anon_sym_use] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_extern] = ACTIONS(89), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(95), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [15] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(665), - [sym_expression_statement] = STATE(665), - [sym_macro_definition] = STATE(665), - [sym_attribute_item] = STATE(665), - [sym_inner_attribute_item] = STATE(665), - [sym_mod_item] = STATE(665), - [sym_foreign_mod_item] = STATE(665), - [sym_struct_item] = STATE(665), - [sym_union_item] = STATE(665), - [sym_enum_item] = STATE(665), - [sym_extern_crate_declaration] = STATE(665), - [sym_const_item] = STATE(665), - [sym_static_item] = STATE(665), - [sym_type_item] = STATE(665), - [sym_function_item] = STATE(665), - [sym_function_signature_item] = STATE(665), - [sym_function_modifiers] = STATE(3607), - [sym_impl_item] = STATE(665), - [sym_trait_item] = STATE(665), - [sym_associated_type] = STATE(665), - [sym_let_declaration] = STATE(665), - [sym_use_declaration] = STATE(665), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1950), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1823), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3577), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(15), - [sym_block_comment] = STATE(15), - [aux_sym_source_file_repeat1] = STATE(16), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(9), - [anon_sym_SEMI] = ACTIONS(11), - [anon_sym_macro_rules_BANG] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(301), + [anon_sym_RBRACE] = ACTIONS(303), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -16226,89 +17570,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [16] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(665), - [sym_expression_statement] = STATE(665), - [sym_macro_definition] = STATE(665), - [sym_attribute_item] = STATE(665), - [sym_inner_attribute_item] = STATE(665), - [sym_mod_item] = STATE(665), - [sym_foreign_mod_item] = STATE(665), - [sym_struct_item] = STATE(665), - [sym_union_item] = STATE(665), - [sym_enum_item] = STATE(665), - [sym_extern_crate_declaration] = STATE(665), - [sym_const_item] = STATE(665), - [sym_static_item] = STATE(665), - [sym_type_item] = STATE(665), - [sym_function_item] = STATE(665), - [sym_function_signature_item] = STATE(665), - [sym_function_modifiers] = STATE(3607), - [sym_impl_item] = STATE(665), - [sym_trait_item] = STATE(665), - [sym_associated_type] = STATE(665), - [sym_let_declaration] = STATE(665), - [sym_use_declaration] = STATE(665), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1950), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1829), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3577), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [sym__statement] = STATE(578), + [sym_empty_statement] = STATE(600), + [sym_expression_statement] = STATE(600), + [sym_macro_definition] = STATE(600), + [sym_attribute_item] = STATE(2189), + [sym_inner_attribute_item] = STATE(600), + [sym_mod_item] = STATE(600), + [sym_foreign_mod_item] = STATE(600), + [sym_struct_item] = STATE(600), + [sym_union_item] = STATE(600), + [sym_enum_item] = STATE(600), + [sym_extern_crate_declaration] = STATE(600), + [sym_const_item] = STATE(600), + [sym_static_item] = STATE(600), + [sym_type_item] = STATE(600), + [sym_function_item] = STATE(600), + [sym_function_signature_item] = STATE(600), + [sym_function_modifiers] = STATE(4065), + [sym_impl_item] = STATE(600), + [sym_trait_item] = STATE(600), + [sym_associated_type] = STATE(600), + [sym_let_declaration] = STATE(600), + [sym_use_declaration] = STATE(600), + [sym_extern_modifier] = STATE(2447), + [sym_visibility_modifier] = STATE(2223), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1937), + [sym_macro_invocation] = STATE(404), + [sym_scoped_identifier] = STATE(1801), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(407), + [sym_match_expression] = STATE(407), + [sym_while_expression] = STATE(407), + [sym_loop_expression] = STATE(407), + [sym_for_expression] = STATE(407), + [sym_const_block] = STATE(407), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4055), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(407), + [sym_async_block] = STATE(407), + [sym_gen_block] = STATE(407), + [sym_try_block] = STATE(407), + [sym_block] = STATE(407), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), [sym_line_comment] = STATE(16), [sym_block_comment] = STATE(16), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [aux_sym_source_file_repeat1] = STATE(28), + [aux_sym_mod_item_repeat1] = STATE(2186), + [aux_sym_function_modifiers_repeat1] = STATE(2519), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(303), + [anon_sym_RBRACE] = ACTIONS(305), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -16380,89 +17725,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [17] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(665), - [sym_expression_statement] = STATE(665), - [sym_macro_definition] = STATE(665), - [sym_attribute_item] = STATE(665), - [sym_inner_attribute_item] = STATE(665), - [sym_mod_item] = STATE(665), - [sym_foreign_mod_item] = STATE(665), - [sym_struct_item] = STATE(665), - [sym_union_item] = STATE(665), - [sym_enum_item] = STATE(665), - [sym_extern_crate_declaration] = STATE(665), - [sym_const_item] = STATE(665), - [sym_static_item] = STATE(665), - [sym_type_item] = STATE(665), - [sym_function_item] = STATE(665), - [sym_function_signature_item] = STATE(665), - [sym_function_modifiers] = STATE(3607), - [sym_impl_item] = STATE(665), - [sym_trait_item] = STATE(665), - [sym_associated_type] = STATE(665), - [sym_let_declaration] = STATE(665), - [sym_use_declaration] = STATE(665), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1950), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1833), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3577), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [sym__statement] = STATE(578), + [sym_empty_statement] = STATE(600), + [sym_expression_statement] = STATE(600), + [sym_macro_definition] = STATE(600), + [sym_attribute_item] = STATE(2189), + [sym_inner_attribute_item] = STATE(600), + [sym_mod_item] = STATE(600), + [sym_foreign_mod_item] = STATE(600), + [sym_struct_item] = STATE(600), + [sym_union_item] = STATE(600), + [sym_enum_item] = STATE(600), + [sym_extern_crate_declaration] = STATE(600), + [sym_const_item] = STATE(600), + [sym_static_item] = STATE(600), + [sym_type_item] = STATE(600), + [sym_function_item] = STATE(600), + [sym_function_signature_item] = STATE(600), + [sym_function_modifiers] = STATE(4065), + [sym_impl_item] = STATE(600), + [sym_trait_item] = STATE(600), + [sym_associated_type] = STATE(600), + [sym_let_declaration] = STATE(600), + [sym_use_declaration] = STATE(600), + [sym_extern_modifier] = STATE(2447), + [sym_visibility_modifier] = STATE(2223), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2027), + [sym_macro_invocation] = STATE(404), + [sym_scoped_identifier] = STATE(1801), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(407), + [sym_match_expression] = STATE(407), + [sym_while_expression] = STATE(407), + [sym_loop_expression] = STATE(407), + [sym_for_expression] = STATE(407), + [sym_const_block] = STATE(407), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4055), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(407), + [sym_async_block] = STATE(407), + [sym_gen_block] = STATE(407), + [sym_try_block] = STATE(407), + [sym_block] = STATE(407), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), [sym_line_comment] = STATE(17), [sym_block_comment] = STATE(17), - [aux_sym_source_file_repeat1] = STATE(18), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [aux_sym_source_file_repeat1] = STATE(23), + [aux_sym_mod_item_repeat1] = STATE(2186), + [aux_sym_function_modifiers_repeat1] = STATE(2519), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(305), + [anon_sym_RBRACE] = ACTIONS(307), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -16534,89 +17880,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [18] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(665), - [sym_expression_statement] = STATE(665), - [sym_macro_definition] = STATE(665), - [sym_attribute_item] = STATE(665), - [sym_inner_attribute_item] = STATE(665), - [sym_mod_item] = STATE(665), - [sym_foreign_mod_item] = STATE(665), - [sym_struct_item] = STATE(665), - [sym_union_item] = STATE(665), - [sym_enum_item] = STATE(665), - [sym_extern_crate_declaration] = STATE(665), - [sym_const_item] = STATE(665), - [sym_static_item] = STATE(665), - [sym_type_item] = STATE(665), - [sym_function_item] = STATE(665), - [sym_function_signature_item] = STATE(665), - [sym_function_modifiers] = STATE(3607), - [sym_impl_item] = STATE(665), - [sym_trait_item] = STATE(665), - [sym_associated_type] = STATE(665), - [sym_let_declaration] = STATE(665), - [sym_use_declaration] = STATE(665), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1950), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1834), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3577), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [sym__statement] = STATE(578), + [sym_empty_statement] = STATE(600), + [sym_expression_statement] = STATE(600), + [sym_macro_definition] = STATE(600), + [sym_attribute_item] = STATE(2189), + [sym_inner_attribute_item] = STATE(600), + [sym_mod_item] = STATE(600), + [sym_foreign_mod_item] = STATE(600), + [sym_struct_item] = STATE(600), + [sym_union_item] = STATE(600), + [sym_enum_item] = STATE(600), + [sym_extern_crate_declaration] = STATE(600), + [sym_const_item] = STATE(600), + [sym_static_item] = STATE(600), + [sym_type_item] = STATE(600), + [sym_function_item] = STATE(600), + [sym_function_signature_item] = STATE(600), + [sym_function_modifiers] = STATE(4065), + [sym_impl_item] = STATE(600), + [sym_trait_item] = STATE(600), + [sym_associated_type] = STATE(600), + [sym_let_declaration] = STATE(600), + [sym_use_declaration] = STATE(600), + [sym_extern_modifier] = STATE(2447), + [sym_visibility_modifier] = STATE(2223), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1929), + [sym_macro_invocation] = STATE(404), + [sym_scoped_identifier] = STATE(1801), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(407), + [sym_match_expression] = STATE(407), + [sym_while_expression] = STATE(407), + [sym_loop_expression] = STATE(407), + [sym_for_expression] = STATE(407), + [sym_const_block] = STATE(407), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4055), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(407), + [sym_async_block] = STATE(407), + [sym_gen_block] = STATE(407), + [sym_try_block] = STATE(407), + [sym_block] = STATE(407), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), [sym_line_comment] = STATE(18), [sym_block_comment] = STATE(18), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [aux_sym_source_file_repeat1] = STATE(23), + [aux_sym_mod_item_repeat1] = STATE(2186), + [aux_sym_function_modifiers_repeat1] = STATE(2519), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(307), + [anon_sym_RBRACE] = ACTIONS(309), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -16688,89 +18035,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [19] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(665), - [sym_expression_statement] = STATE(665), - [sym_macro_definition] = STATE(665), - [sym_attribute_item] = STATE(665), - [sym_inner_attribute_item] = STATE(665), - [sym_mod_item] = STATE(665), - [sym_foreign_mod_item] = STATE(665), - [sym_struct_item] = STATE(665), - [sym_union_item] = STATE(665), - [sym_enum_item] = STATE(665), - [sym_extern_crate_declaration] = STATE(665), - [sym_const_item] = STATE(665), - [sym_static_item] = STATE(665), - [sym_type_item] = STATE(665), - [sym_function_item] = STATE(665), - [sym_function_signature_item] = STATE(665), - [sym_function_modifiers] = STATE(3607), - [sym_impl_item] = STATE(665), - [sym_trait_item] = STATE(665), - [sym_associated_type] = STATE(665), - [sym_let_declaration] = STATE(665), - [sym_use_declaration] = STATE(665), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1950), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1837), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3577), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [sym__statement] = STATE(578), + [sym_empty_statement] = STATE(600), + [sym_expression_statement] = STATE(600), + [sym_macro_definition] = STATE(600), + [sym_attribute_item] = STATE(2189), + [sym_inner_attribute_item] = STATE(600), + [sym_mod_item] = STATE(600), + [sym_foreign_mod_item] = STATE(600), + [sym_struct_item] = STATE(600), + [sym_union_item] = STATE(600), + [sym_enum_item] = STATE(600), + [sym_extern_crate_declaration] = STATE(600), + [sym_const_item] = STATE(600), + [sym_static_item] = STATE(600), + [sym_type_item] = STATE(600), + [sym_function_item] = STATE(600), + [sym_function_signature_item] = STATE(600), + [sym_function_modifiers] = STATE(4065), + [sym_impl_item] = STATE(600), + [sym_trait_item] = STATE(600), + [sym_associated_type] = STATE(600), + [sym_let_declaration] = STATE(600), + [sym_use_declaration] = STATE(600), + [sym_extern_modifier] = STATE(2447), + [sym_visibility_modifier] = STATE(2223), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1994), + [sym_macro_invocation] = STATE(404), + [sym_scoped_identifier] = STATE(1801), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(407), + [sym_match_expression] = STATE(407), + [sym_while_expression] = STATE(407), + [sym_loop_expression] = STATE(407), + [sym_for_expression] = STATE(407), + [sym_const_block] = STATE(407), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4055), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(407), + [sym_async_block] = STATE(407), + [sym_gen_block] = STATE(407), + [sym_try_block] = STATE(407), + [sym_block] = STATE(407), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), [sym_line_comment] = STATE(19), [sym_block_comment] = STATE(19), - [aux_sym_source_file_repeat1] = STATE(20), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [aux_sym_source_file_repeat1] = STATE(17), + [aux_sym_mod_item_repeat1] = STATE(2186), + [aux_sym_function_modifiers_repeat1] = STATE(2519), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(309), + [anon_sym_RBRACE] = ACTIONS(311), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -16842,89 +18190,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [20] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(665), - [sym_expression_statement] = STATE(665), - [sym_macro_definition] = STATE(665), - [sym_attribute_item] = STATE(665), - [sym_inner_attribute_item] = STATE(665), - [sym_mod_item] = STATE(665), - [sym_foreign_mod_item] = STATE(665), - [sym_struct_item] = STATE(665), - [sym_union_item] = STATE(665), - [sym_enum_item] = STATE(665), - [sym_extern_crate_declaration] = STATE(665), - [sym_const_item] = STATE(665), - [sym_static_item] = STATE(665), - [sym_type_item] = STATE(665), - [sym_function_item] = STATE(665), - [sym_function_signature_item] = STATE(665), - [sym_function_modifiers] = STATE(3607), - [sym_impl_item] = STATE(665), - [sym_trait_item] = STATE(665), - [sym_associated_type] = STATE(665), - [sym_let_declaration] = STATE(665), - [sym_use_declaration] = STATE(665), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1950), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1839), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3577), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [sym__statement] = STATE(578), + [sym_empty_statement] = STATE(600), + [sym_expression_statement] = STATE(600), + [sym_macro_definition] = STATE(600), + [sym_attribute_item] = STATE(2189), + [sym_inner_attribute_item] = STATE(600), + [sym_mod_item] = STATE(600), + [sym_foreign_mod_item] = STATE(600), + [sym_struct_item] = STATE(600), + [sym_union_item] = STATE(600), + [sym_enum_item] = STATE(600), + [sym_extern_crate_declaration] = STATE(600), + [sym_const_item] = STATE(600), + [sym_static_item] = STATE(600), + [sym_type_item] = STATE(600), + [sym_function_item] = STATE(600), + [sym_function_signature_item] = STATE(600), + [sym_function_modifiers] = STATE(4065), + [sym_impl_item] = STATE(600), + [sym_trait_item] = STATE(600), + [sym_associated_type] = STATE(600), + [sym_let_declaration] = STATE(600), + [sym_use_declaration] = STATE(600), + [sym_extern_modifier] = STATE(2447), + [sym_visibility_modifier] = STATE(2223), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2126), + [sym_macro_invocation] = STATE(404), + [sym_scoped_identifier] = STATE(1801), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(407), + [sym_match_expression] = STATE(407), + [sym_while_expression] = STATE(407), + [sym_loop_expression] = STATE(407), + [sym_for_expression] = STATE(407), + [sym_const_block] = STATE(407), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4055), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(407), + [sym_async_block] = STATE(407), + [sym_gen_block] = STATE(407), + [sym_try_block] = STATE(407), + [sym_block] = STATE(407), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), [sym_line_comment] = STATE(20), [sym_block_comment] = STATE(20), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [aux_sym_source_file_repeat1] = STATE(14), + [aux_sym_mod_item_repeat1] = STATE(2186), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [ts_builtin_sym_end] = ACTIONS(313), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(311), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -16996,89 +18345,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [21] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(665), - [sym_expression_statement] = STATE(665), - [sym_macro_definition] = STATE(665), - [sym_attribute_item] = STATE(665), - [sym_inner_attribute_item] = STATE(665), - [sym_mod_item] = STATE(665), - [sym_foreign_mod_item] = STATE(665), - [sym_struct_item] = STATE(665), - [sym_union_item] = STATE(665), - [sym_enum_item] = STATE(665), - [sym_extern_crate_declaration] = STATE(665), - [sym_const_item] = STATE(665), - [sym_static_item] = STATE(665), - [sym_type_item] = STATE(665), - [sym_function_item] = STATE(665), - [sym_function_signature_item] = STATE(665), - [sym_function_modifiers] = STATE(3607), - [sym_impl_item] = STATE(665), - [sym_trait_item] = STATE(665), - [sym_associated_type] = STATE(665), - [sym_let_declaration] = STATE(665), - [sym_use_declaration] = STATE(665), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1950), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1840), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3577), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [sym__statement] = STATE(578), + [sym_empty_statement] = STATE(600), + [sym_expression_statement] = STATE(600), + [sym_macro_definition] = STATE(600), + [sym_attribute_item] = STATE(2189), + [sym_inner_attribute_item] = STATE(600), + [sym_mod_item] = STATE(600), + [sym_foreign_mod_item] = STATE(600), + [sym_struct_item] = STATE(600), + [sym_union_item] = STATE(600), + [sym_enum_item] = STATE(600), + [sym_extern_crate_declaration] = STATE(600), + [sym_const_item] = STATE(600), + [sym_static_item] = STATE(600), + [sym_type_item] = STATE(600), + [sym_function_item] = STATE(600), + [sym_function_signature_item] = STATE(600), + [sym_function_modifiers] = STATE(4065), + [sym_impl_item] = STATE(600), + [sym_trait_item] = STATE(600), + [sym_associated_type] = STATE(600), + [sym_let_declaration] = STATE(600), + [sym_use_declaration] = STATE(600), + [sym_extern_modifier] = STATE(2447), + [sym_visibility_modifier] = STATE(2223), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2066), + [sym_macro_invocation] = STATE(404), + [sym_scoped_identifier] = STATE(1801), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(407), + [sym_match_expression] = STATE(407), + [sym_while_expression] = STATE(407), + [sym_loop_expression] = STATE(407), + [sym_for_expression] = STATE(407), + [sym_const_block] = STATE(407), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4055), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(407), + [sym_async_block] = STATE(407), + [sym_gen_block] = STATE(407), + [sym_try_block] = STATE(407), + [sym_block] = STATE(407), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), [sym_line_comment] = STATE(21), [sym_block_comment] = STATE(21), - [aux_sym_source_file_repeat1] = STATE(22), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [aux_sym_source_file_repeat1] = STATE(3), + [aux_sym_mod_item_repeat1] = STATE(2186), + [aux_sym_function_modifiers_repeat1] = STATE(2519), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(313), + [anon_sym_RBRACE] = ACTIONS(315), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -17150,89 +18500,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [22] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(665), - [sym_expression_statement] = STATE(665), - [sym_macro_definition] = STATE(665), - [sym_attribute_item] = STATE(665), - [sym_inner_attribute_item] = STATE(665), - [sym_mod_item] = STATE(665), - [sym_foreign_mod_item] = STATE(665), - [sym_struct_item] = STATE(665), - [sym_union_item] = STATE(665), - [sym_enum_item] = STATE(665), - [sym_extern_crate_declaration] = STATE(665), - [sym_const_item] = STATE(665), - [sym_static_item] = STATE(665), - [sym_type_item] = STATE(665), - [sym_function_item] = STATE(665), - [sym_function_signature_item] = STATE(665), - [sym_function_modifiers] = STATE(3607), - [sym_impl_item] = STATE(665), - [sym_trait_item] = STATE(665), - [sym_associated_type] = STATE(665), - [sym_let_declaration] = STATE(665), - [sym_use_declaration] = STATE(665), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1950), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1841), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3577), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [sym__statement] = STATE(578), + [sym_empty_statement] = STATE(600), + [sym_expression_statement] = STATE(600), + [sym_macro_definition] = STATE(600), + [sym_attribute_item] = STATE(2189), + [sym_inner_attribute_item] = STATE(600), + [sym_mod_item] = STATE(600), + [sym_foreign_mod_item] = STATE(600), + [sym_struct_item] = STATE(600), + [sym_union_item] = STATE(600), + [sym_enum_item] = STATE(600), + [sym_extern_crate_declaration] = STATE(600), + [sym_const_item] = STATE(600), + [sym_static_item] = STATE(600), + [sym_type_item] = STATE(600), + [sym_function_item] = STATE(600), + [sym_function_signature_item] = STATE(600), + [sym_function_modifiers] = STATE(4065), + [sym_impl_item] = STATE(600), + [sym_trait_item] = STATE(600), + [sym_associated_type] = STATE(600), + [sym_let_declaration] = STATE(600), + [sym_use_declaration] = STATE(600), + [sym_extern_modifier] = STATE(2447), + [sym_visibility_modifier] = STATE(2223), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2058), + [sym_macro_invocation] = STATE(404), + [sym_scoped_identifier] = STATE(1801), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(407), + [sym_match_expression] = STATE(407), + [sym_while_expression] = STATE(407), + [sym_loop_expression] = STATE(407), + [sym_for_expression] = STATE(407), + [sym_const_block] = STATE(407), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4055), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(407), + [sym_async_block] = STATE(407), + [sym_gen_block] = STATE(407), + [sym_try_block] = STATE(407), + [sym_block] = STATE(407), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), [sym_line_comment] = STATE(22), [sym_block_comment] = STATE(22), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [aux_sym_source_file_repeat1] = STATE(23), + [aux_sym_mod_item_repeat1] = STATE(2186), + [aux_sym_function_modifiers_repeat1] = STATE(2519), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(315), + [anon_sym_RBRACE] = ACTIONS(317), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -17304,89 +18655,245 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [23] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(665), - [sym_expression_statement] = STATE(665), - [sym_macro_definition] = STATE(665), - [sym_attribute_item] = STATE(665), - [sym_inner_attribute_item] = STATE(665), - [sym_mod_item] = STATE(665), - [sym_foreign_mod_item] = STATE(665), - [sym_struct_item] = STATE(665), - [sym_union_item] = STATE(665), - [sym_enum_item] = STATE(665), - [sym_extern_crate_declaration] = STATE(665), - [sym_const_item] = STATE(665), - [sym_static_item] = STATE(665), - [sym_type_item] = STATE(665), - [sym_function_item] = STATE(665), - [sym_function_signature_item] = STATE(665), - [sym_function_modifiers] = STATE(3607), - [sym_impl_item] = STATE(665), - [sym_trait_item] = STATE(665), - [sym_associated_type] = STATE(665), - [sym_let_declaration] = STATE(665), - [sym_use_declaration] = STATE(665), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1950), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1842), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3577), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [sym__statement] = STATE(578), + [sym_empty_statement] = STATE(600), + [sym_expression_statement] = STATE(600), + [sym_macro_definition] = STATE(600), + [sym_attribute_item] = STATE(2189), + [sym_inner_attribute_item] = STATE(600), + [sym_mod_item] = STATE(600), + [sym_foreign_mod_item] = STATE(600), + [sym_struct_item] = STATE(600), + [sym_union_item] = STATE(600), + [sym_enum_item] = STATE(600), + [sym_extern_crate_declaration] = STATE(600), + [sym_const_item] = STATE(600), + [sym_static_item] = STATE(600), + [sym_type_item] = STATE(600), + [sym_function_item] = STATE(600), + [sym_function_signature_item] = STATE(600), + [sym_function_modifiers] = STATE(4065), + [sym_impl_item] = STATE(600), + [sym_trait_item] = STATE(600), + [sym_associated_type] = STATE(600), + [sym_let_declaration] = STATE(600), + [sym_use_declaration] = STATE(600), + [sym_extern_modifier] = STATE(2447), + [sym_visibility_modifier] = STATE(2223), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2126), + [sym_macro_invocation] = STATE(415), + [sym_scoped_identifier] = STATE(1801), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(407), + [sym_match_expression] = STATE(407), + [sym_while_expression] = STATE(407), + [sym_loop_expression] = STATE(407), + [sym_for_expression] = STATE(407), + [sym_const_block] = STATE(407), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4055), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(407), + [sym_async_block] = STATE(407), + [sym_gen_block] = STATE(407), + [sym_try_block] = STATE(407), + [sym_block] = STATE(407), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), [sym_line_comment] = STATE(23), [sym_block_comment] = STATE(23), - [aux_sym_source_file_repeat1] = STATE(24), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [aux_sym_source_file_repeat1] = STATE(23), + [aux_sym_mod_item_repeat1] = STATE(2186), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(150), + [anon_sym_macro_rules_BANG] = ACTIONS(153), + [anon_sym_LPAREN] = ACTIONS(156), + [anon_sym_LBRACK] = ACTIONS(159), + [anon_sym_LBRACE] = ACTIONS(162), + [anon_sym_RBRACE] = ACTIONS(145), + [anon_sym_STAR] = ACTIONS(165), + [anon_sym_u8] = ACTIONS(168), + [anon_sym_i8] = ACTIONS(168), + [anon_sym_u16] = ACTIONS(168), + [anon_sym_i16] = ACTIONS(168), + [anon_sym_u32] = ACTIONS(168), + [anon_sym_i32] = ACTIONS(168), + [anon_sym_u64] = ACTIONS(168), + [anon_sym_i64] = ACTIONS(168), + [anon_sym_u128] = ACTIONS(168), + [anon_sym_i128] = ACTIONS(168), + [anon_sym_isize] = ACTIONS(168), + [anon_sym_usize] = ACTIONS(168), + [anon_sym_f32] = ACTIONS(168), + [anon_sym_f64] = ACTIONS(168), + [anon_sym_bool] = ACTIONS(168), + [anon_sym_str] = ACTIONS(168), + [anon_sym_char] = ACTIONS(168), + [anon_sym_DASH] = ACTIONS(165), + [anon_sym_BANG] = ACTIONS(165), + [anon_sym_AMP] = ACTIONS(171), + [anon_sym_PIPE] = ACTIONS(174), + [anon_sym_LT] = ACTIONS(177), + [anon_sym_DOT_DOT] = ACTIONS(180), + [anon_sym_COLON_COLON] = ACTIONS(183), + [anon_sym_POUND] = ACTIONS(186), + [anon_sym_SQUOTE] = ACTIONS(189), + [anon_sym_async] = ACTIONS(192), + [anon_sym_break] = ACTIONS(195), + [anon_sym_const] = ACTIONS(198), + [anon_sym_continue] = ACTIONS(201), + [anon_sym_default] = ACTIONS(204), + [anon_sym_enum] = ACTIONS(207), + [anon_sym_fn] = ACTIONS(210), + [anon_sym_for] = ACTIONS(213), + [anon_sym_gen] = ACTIONS(216), + [anon_sym_if] = ACTIONS(219), + [anon_sym_impl] = ACTIONS(222), + [anon_sym_let] = ACTIONS(225), + [anon_sym_loop] = ACTIONS(228), + [anon_sym_match] = ACTIONS(231), + [anon_sym_mod] = ACTIONS(234), + [anon_sym_pub] = ACTIONS(237), + [anon_sym_return] = ACTIONS(240), + [anon_sym_static] = ACTIONS(243), + [anon_sym_struct] = ACTIONS(246), + [anon_sym_trait] = ACTIONS(249), + [anon_sym_type] = ACTIONS(252), + [anon_sym_union] = ACTIONS(255), + [anon_sym_unsafe] = ACTIONS(258), + [anon_sym_use] = ACTIONS(261), + [anon_sym_while] = ACTIONS(264), + [anon_sym_extern] = ACTIONS(267), + [anon_sym_yield] = ACTIONS(270), + [anon_sym_move] = ACTIONS(273), + [anon_sym_try] = ACTIONS(276), + [sym_integer_literal] = ACTIONS(279), + [aux_sym_string_literal_token1] = ACTIONS(282), + [sym_char_literal] = ACTIONS(279), + [anon_sym_true] = ACTIONS(285), + [anon_sym_false] = ACTIONS(285), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(288), + [sym_super] = ACTIONS(291), + [sym_crate] = ACTIONS(294), + [sym_metavariable] = ACTIONS(297), + [sym__raw_string_literal_start] = ACTIONS(300), + [sym_float_literal] = ACTIONS(279), + }, + [24] = { + [sym__statement] = STATE(578), + [sym_empty_statement] = STATE(600), + [sym_expression_statement] = STATE(600), + [sym_macro_definition] = STATE(600), + [sym_attribute_item] = STATE(2189), + [sym_inner_attribute_item] = STATE(600), + [sym_mod_item] = STATE(600), + [sym_foreign_mod_item] = STATE(600), + [sym_struct_item] = STATE(600), + [sym_union_item] = STATE(600), + [sym_enum_item] = STATE(600), + [sym_extern_crate_declaration] = STATE(600), + [sym_const_item] = STATE(600), + [sym_static_item] = STATE(600), + [sym_type_item] = STATE(600), + [sym_function_item] = STATE(600), + [sym_function_signature_item] = STATE(600), + [sym_function_modifiers] = STATE(4065), + [sym_impl_item] = STATE(600), + [sym_trait_item] = STATE(600), + [sym_associated_type] = STATE(600), + [sym_let_declaration] = STATE(600), + [sym_use_declaration] = STATE(600), + [sym_extern_modifier] = STATE(2447), + [sym_visibility_modifier] = STATE(2223), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2038), + [sym_macro_invocation] = STATE(404), + [sym_scoped_identifier] = STATE(1801), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(407), + [sym_match_expression] = STATE(407), + [sym_while_expression] = STATE(407), + [sym_loop_expression] = STATE(407), + [sym_for_expression] = STATE(407), + [sym_const_block] = STATE(407), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4055), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(407), + [sym_async_block] = STATE(407), + [sym_gen_block] = STATE(407), + [sym_try_block] = STATE(407), + [sym_block] = STATE(407), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(24), + [sym_block_comment] = STATE(24), + [aux_sym_source_file_repeat1] = STATE(23), + [aux_sym_mod_item_repeat1] = STATE(2186), + [aux_sym_function_modifiers_repeat1] = STATE(2519), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(317), + [anon_sym_RBRACE] = ACTIONS(319), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -17457,90 +18964,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [24] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(665), - [sym_expression_statement] = STATE(665), - [sym_macro_definition] = STATE(665), - [sym_attribute_item] = STATE(665), - [sym_inner_attribute_item] = STATE(665), - [sym_mod_item] = STATE(665), - [sym_foreign_mod_item] = STATE(665), - [sym_struct_item] = STATE(665), - [sym_union_item] = STATE(665), - [sym_enum_item] = STATE(665), - [sym_extern_crate_declaration] = STATE(665), - [sym_const_item] = STATE(665), - [sym_static_item] = STATE(665), - [sym_type_item] = STATE(665), - [sym_function_item] = STATE(665), - [sym_function_signature_item] = STATE(665), - [sym_function_modifiers] = STATE(3607), - [sym_impl_item] = STATE(665), - [sym_trait_item] = STATE(665), - [sym_associated_type] = STATE(665), - [sym_let_declaration] = STATE(665), - [sym_use_declaration] = STATE(665), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1950), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1843), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3577), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(24), - [sym_block_comment] = STATE(24), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [25] = { + [sym__statement] = STATE(578), + [sym_empty_statement] = STATE(600), + [sym_expression_statement] = STATE(600), + [sym_macro_definition] = STATE(600), + [sym_attribute_item] = STATE(2189), + [sym_inner_attribute_item] = STATE(600), + [sym_mod_item] = STATE(600), + [sym_foreign_mod_item] = STATE(600), + [sym_struct_item] = STATE(600), + [sym_union_item] = STATE(600), + [sym_enum_item] = STATE(600), + [sym_extern_crate_declaration] = STATE(600), + [sym_const_item] = STATE(600), + [sym_static_item] = STATE(600), + [sym_type_item] = STATE(600), + [sym_function_item] = STATE(600), + [sym_function_signature_item] = STATE(600), + [sym_function_modifiers] = STATE(4065), + [sym_impl_item] = STATE(600), + [sym_trait_item] = STATE(600), + [sym_associated_type] = STATE(600), + [sym_let_declaration] = STATE(600), + [sym_use_declaration] = STATE(600), + [sym_extern_modifier] = STATE(2447), + [sym_visibility_modifier] = STATE(2223), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2055), + [sym_macro_invocation] = STATE(404), + [sym_scoped_identifier] = STATE(1801), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(407), + [sym_match_expression] = STATE(407), + [sym_while_expression] = STATE(407), + [sym_loop_expression] = STATE(407), + [sym_for_expression] = STATE(407), + [sym_const_block] = STATE(407), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4055), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(407), + [sym_async_block] = STATE(407), + [sym_gen_block] = STATE(407), + [sym_try_block] = STATE(407), + [sym_block] = STATE(407), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(25), + [sym_block_comment] = STATE(25), + [aux_sym_source_file_repeat1] = STATE(31), + [aux_sym_mod_item_repeat1] = STATE(2186), + [aux_sym_function_modifiers_repeat1] = STATE(2519), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(319), + [anon_sym_RBRACE] = ACTIONS(321), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -17611,90 +19119,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [25] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(665), - [sym_expression_statement] = STATE(665), - [sym_macro_definition] = STATE(665), - [sym_attribute_item] = STATE(665), - [sym_inner_attribute_item] = STATE(665), - [sym_mod_item] = STATE(665), - [sym_foreign_mod_item] = STATE(665), - [sym_struct_item] = STATE(665), - [sym_union_item] = STATE(665), - [sym_enum_item] = STATE(665), - [sym_extern_crate_declaration] = STATE(665), - [sym_const_item] = STATE(665), - [sym_static_item] = STATE(665), - [sym_type_item] = STATE(665), - [sym_function_item] = STATE(665), - [sym_function_signature_item] = STATE(665), - [sym_function_modifiers] = STATE(3607), - [sym_impl_item] = STATE(665), - [sym_trait_item] = STATE(665), - [sym_associated_type] = STATE(665), - [sym_let_declaration] = STATE(665), - [sym_use_declaration] = STATE(665), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1950), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1845), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3577), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(25), - [sym_block_comment] = STATE(25), - [aux_sym_source_file_repeat1] = STATE(26), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [26] = { + [sym__statement] = STATE(578), + [sym_empty_statement] = STATE(600), + [sym_expression_statement] = STATE(600), + [sym_macro_definition] = STATE(600), + [sym_attribute_item] = STATE(2189), + [sym_inner_attribute_item] = STATE(600), + [sym_mod_item] = STATE(600), + [sym_foreign_mod_item] = STATE(600), + [sym_struct_item] = STATE(600), + [sym_union_item] = STATE(600), + [sym_enum_item] = STATE(600), + [sym_extern_crate_declaration] = STATE(600), + [sym_const_item] = STATE(600), + [sym_static_item] = STATE(600), + [sym_type_item] = STATE(600), + [sym_function_item] = STATE(600), + [sym_function_signature_item] = STATE(600), + [sym_function_modifiers] = STATE(4065), + [sym_impl_item] = STATE(600), + [sym_trait_item] = STATE(600), + [sym_associated_type] = STATE(600), + [sym_let_declaration] = STATE(600), + [sym_use_declaration] = STATE(600), + [sym_extern_modifier] = STATE(2447), + [sym_visibility_modifier] = STATE(2223), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2059), + [sym_macro_invocation] = STATE(404), + [sym_scoped_identifier] = STATE(1801), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(407), + [sym_match_expression] = STATE(407), + [sym_while_expression] = STATE(407), + [sym_loop_expression] = STATE(407), + [sym_for_expression] = STATE(407), + [sym_const_block] = STATE(407), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4055), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(407), + [sym_async_block] = STATE(407), + [sym_gen_block] = STATE(407), + [sym_try_block] = STATE(407), + [sym_block] = STATE(407), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(26), + [sym_block_comment] = STATE(26), + [aux_sym_source_file_repeat1] = STATE(23), + [aux_sym_mod_item_repeat1] = STATE(2186), + [aux_sym_function_modifiers_repeat1] = STATE(2519), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(321), + [anon_sym_RBRACE] = ACTIONS(323), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -17765,90 +19274,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [26] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(665), - [sym_expression_statement] = STATE(665), - [sym_macro_definition] = STATE(665), - [sym_attribute_item] = STATE(665), - [sym_inner_attribute_item] = STATE(665), - [sym_mod_item] = STATE(665), - [sym_foreign_mod_item] = STATE(665), - [sym_struct_item] = STATE(665), - [sym_union_item] = STATE(665), - [sym_enum_item] = STATE(665), - [sym_extern_crate_declaration] = STATE(665), - [sym_const_item] = STATE(665), - [sym_static_item] = STATE(665), - [sym_type_item] = STATE(665), - [sym_function_item] = STATE(665), - [sym_function_signature_item] = STATE(665), - [sym_function_modifiers] = STATE(3607), - [sym_impl_item] = STATE(665), - [sym_trait_item] = STATE(665), - [sym_associated_type] = STATE(665), - [sym_let_declaration] = STATE(665), - [sym_use_declaration] = STATE(665), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1950), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1846), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3577), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(26), - [sym_block_comment] = STATE(26), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [27] = { + [sym__statement] = STATE(578), + [sym_empty_statement] = STATE(600), + [sym_expression_statement] = STATE(600), + [sym_macro_definition] = STATE(600), + [sym_attribute_item] = STATE(2189), + [sym_inner_attribute_item] = STATE(600), + [sym_mod_item] = STATE(600), + [sym_foreign_mod_item] = STATE(600), + [sym_struct_item] = STATE(600), + [sym_union_item] = STATE(600), + [sym_enum_item] = STATE(600), + [sym_extern_crate_declaration] = STATE(600), + [sym_const_item] = STATE(600), + [sym_static_item] = STATE(600), + [sym_type_item] = STATE(600), + [sym_function_item] = STATE(600), + [sym_function_signature_item] = STATE(600), + [sym_function_modifiers] = STATE(4065), + [sym_impl_item] = STATE(600), + [sym_trait_item] = STATE(600), + [sym_associated_type] = STATE(600), + [sym_let_declaration] = STATE(600), + [sym_use_declaration] = STATE(600), + [sym_extern_modifier] = STATE(2447), + [sym_visibility_modifier] = STATE(2223), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1931), + [sym_macro_invocation] = STATE(404), + [sym_scoped_identifier] = STATE(1801), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(407), + [sym_match_expression] = STATE(407), + [sym_while_expression] = STATE(407), + [sym_loop_expression] = STATE(407), + [sym_for_expression] = STATE(407), + [sym_const_block] = STATE(407), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4055), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(407), + [sym_async_block] = STATE(407), + [sym_gen_block] = STATE(407), + [sym_try_block] = STATE(407), + [sym_block] = STATE(407), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(27), + [sym_block_comment] = STATE(27), + [aux_sym_source_file_repeat1] = STATE(30), + [aux_sym_mod_item_repeat1] = STATE(2186), + [aux_sym_function_modifiers_repeat1] = STATE(2519), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(323), + [anon_sym_RBRACE] = ACTIONS(325), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -17919,90 +19429,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [27] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(665), - [sym_expression_statement] = STATE(665), - [sym_macro_definition] = STATE(665), - [sym_attribute_item] = STATE(665), - [sym_inner_attribute_item] = STATE(665), - [sym_mod_item] = STATE(665), - [sym_foreign_mod_item] = STATE(665), - [sym_struct_item] = STATE(665), - [sym_union_item] = STATE(665), - [sym_enum_item] = STATE(665), - [sym_extern_crate_declaration] = STATE(665), - [sym_const_item] = STATE(665), - [sym_static_item] = STATE(665), - [sym_type_item] = STATE(665), - [sym_function_item] = STATE(665), - [sym_function_signature_item] = STATE(665), - [sym_function_modifiers] = STATE(3607), - [sym_impl_item] = STATE(665), - [sym_trait_item] = STATE(665), - [sym_associated_type] = STATE(665), - [sym_let_declaration] = STATE(665), - [sym_use_declaration] = STATE(665), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1950), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1847), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3577), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(27), - [sym_block_comment] = STATE(27), - [aux_sym_source_file_repeat1] = STATE(28), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [28] = { + [sym__statement] = STATE(578), + [sym_empty_statement] = STATE(600), + [sym_expression_statement] = STATE(600), + [sym_macro_definition] = STATE(600), + [sym_attribute_item] = STATE(2189), + [sym_inner_attribute_item] = STATE(600), + [sym_mod_item] = STATE(600), + [sym_foreign_mod_item] = STATE(600), + [sym_struct_item] = STATE(600), + [sym_union_item] = STATE(600), + [sym_enum_item] = STATE(600), + [sym_extern_crate_declaration] = STATE(600), + [sym_const_item] = STATE(600), + [sym_static_item] = STATE(600), + [sym_type_item] = STATE(600), + [sym_function_item] = STATE(600), + [sym_function_signature_item] = STATE(600), + [sym_function_modifiers] = STATE(4065), + [sym_impl_item] = STATE(600), + [sym_trait_item] = STATE(600), + [sym_associated_type] = STATE(600), + [sym_let_declaration] = STATE(600), + [sym_use_declaration] = STATE(600), + [sym_extern_modifier] = STATE(2447), + [sym_visibility_modifier] = STATE(2223), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1935), + [sym_macro_invocation] = STATE(404), + [sym_scoped_identifier] = STATE(1801), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(407), + [sym_match_expression] = STATE(407), + [sym_while_expression] = STATE(407), + [sym_loop_expression] = STATE(407), + [sym_for_expression] = STATE(407), + [sym_const_block] = STATE(407), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4055), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(407), + [sym_async_block] = STATE(407), + [sym_gen_block] = STATE(407), + [sym_try_block] = STATE(407), + [sym_block] = STATE(407), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(28), + [sym_block_comment] = STATE(28), + [aux_sym_source_file_repeat1] = STATE(23), + [aux_sym_mod_item_repeat1] = STATE(2186), + [aux_sym_function_modifiers_repeat1] = STATE(2519), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(325), + [anon_sym_RBRACE] = ACTIONS(327), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -18073,90 +19584,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [28] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(665), - [sym_expression_statement] = STATE(665), - [sym_macro_definition] = STATE(665), - [sym_attribute_item] = STATE(665), - [sym_inner_attribute_item] = STATE(665), - [sym_mod_item] = STATE(665), - [sym_foreign_mod_item] = STATE(665), - [sym_struct_item] = STATE(665), - [sym_union_item] = STATE(665), - [sym_enum_item] = STATE(665), - [sym_extern_crate_declaration] = STATE(665), - [sym_const_item] = STATE(665), - [sym_static_item] = STATE(665), - [sym_type_item] = STATE(665), - [sym_function_item] = STATE(665), - [sym_function_signature_item] = STATE(665), - [sym_function_modifiers] = STATE(3607), - [sym_impl_item] = STATE(665), - [sym_trait_item] = STATE(665), - [sym_associated_type] = STATE(665), - [sym_let_declaration] = STATE(665), - [sym_use_declaration] = STATE(665), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1950), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1848), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3577), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(28), - [sym_block_comment] = STATE(28), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [29] = { + [sym__statement] = STATE(578), + [sym_empty_statement] = STATE(600), + [sym_expression_statement] = STATE(600), + [sym_macro_definition] = STATE(600), + [sym_attribute_item] = STATE(2189), + [sym_inner_attribute_item] = STATE(600), + [sym_mod_item] = STATE(600), + [sym_foreign_mod_item] = STATE(600), + [sym_struct_item] = STATE(600), + [sym_union_item] = STATE(600), + [sym_enum_item] = STATE(600), + [sym_extern_crate_declaration] = STATE(600), + [sym_const_item] = STATE(600), + [sym_static_item] = STATE(600), + [sym_type_item] = STATE(600), + [sym_function_item] = STATE(600), + [sym_function_signature_item] = STATE(600), + [sym_function_modifiers] = STATE(4065), + [sym_impl_item] = STATE(600), + [sym_trait_item] = STATE(600), + [sym_associated_type] = STATE(600), + [sym_let_declaration] = STATE(600), + [sym_use_declaration] = STATE(600), + [sym_extern_modifier] = STATE(2447), + [sym_visibility_modifier] = STATE(2223), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1959), + [sym_macro_invocation] = STATE(404), + [sym_scoped_identifier] = STATE(1801), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(407), + [sym_match_expression] = STATE(407), + [sym_while_expression] = STATE(407), + [sym_loop_expression] = STATE(407), + [sym_for_expression] = STATE(407), + [sym_const_block] = STATE(407), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4055), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(407), + [sym_async_block] = STATE(407), + [sym_gen_block] = STATE(407), + [sym_try_block] = STATE(407), + [sym_block] = STATE(407), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(29), + [sym_block_comment] = STATE(29), + [aux_sym_source_file_repeat1] = STATE(34), + [aux_sym_mod_item_repeat1] = STATE(2186), + [aux_sym_function_modifiers_repeat1] = STATE(2519), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(327), + [anon_sym_RBRACE] = ACTIONS(329), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -18227,90 +19739,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [29] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(665), - [sym_expression_statement] = STATE(665), - [sym_macro_definition] = STATE(665), - [sym_attribute_item] = STATE(665), - [sym_inner_attribute_item] = STATE(665), - [sym_mod_item] = STATE(665), - [sym_foreign_mod_item] = STATE(665), - [sym_struct_item] = STATE(665), - [sym_union_item] = STATE(665), - [sym_enum_item] = STATE(665), - [sym_extern_crate_declaration] = STATE(665), - [sym_const_item] = STATE(665), - [sym_static_item] = STATE(665), - [sym_type_item] = STATE(665), - [sym_function_item] = STATE(665), - [sym_function_signature_item] = STATE(665), - [sym_function_modifiers] = STATE(3607), - [sym_impl_item] = STATE(665), - [sym_trait_item] = STATE(665), - [sym_associated_type] = STATE(665), - [sym_let_declaration] = STATE(665), - [sym_use_declaration] = STATE(665), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1950), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1849), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3577), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(29), - [sym_block_comment] = STATE(29), - [aux_sym_source_file_repeat1] = STATE(30), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [30] = { + [sym__statement] = STATE(578), + [sym_empty_statement] = STATE(600), + [sym_expression_statement] = STATE(600), + [sym_macro_definition] = STATE(600), + [sym_attribute_item] = STATE(2189), + [sym_inner_attribute_item] = STATE(600), + [sym_mod_item] = STATE(600), + [sym_foreign_mod_item] = STATE(600), + [sym_struct_item] = STATE(600), + [sym_union_item] = STATE(600), + [sym_enum_item] = STATE(600), + [sym_extern_crate_declaration] = STATE(600), + [sym_const_item] = STATE(600), + [sym_static_item] = STATE(600), + [sym_type_item] = STATE(600), + [sym_function_item] = STATE(600), + [sym_function_signature_item] = STATE(600), + [sym_function_modifiers] = STATE(4065), + [sym_impl_item] = STATE(600), + [sym_trait_item] = STATE(600), + [sym_associated_type] = STATE(600), + [sym_let_declaration] = STATE(600), + [sym_use_declaration] = STATE(600), + [sym_extern_modifier] = STATE(2447), + [sym_visibility_modifier] = STATE(2223), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1915), + [sym_macro_invocation] = STATE(404), + [sym_scoped_identifier] = STATE(1801), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(407), + [sym_match_expression] = STATE(407), + [sym_while_expression] = STATE(407), + [sym_loop_expression] = STATE(407), + [sym_for_expression] = STATE(407), + [sym_const_block] = STATE(407), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4055), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(407), + [sym_async_block] = STATE(407), + [sym_gen_block] = STATE(407), + [sym_try_block] = STATE(407), + [sym_block] = STATE(407), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(30), + [sym_block_comment] = STATE(30), + [aux_sym_source_file_repeat1] = STATE(23), + [aux_sym_mod_item_repeat1] = STATE(2186), + [aux_sym_function_modifiers_repeat1] = STATE(2519), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(329), + [anon_sym_RBRACE] = ACTIONS(331), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -18381,244 +19894,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [30] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(665), - [sym_expression_statement] = STATE(665), - [sym_macro_definition] = STATE(665), - [sym_attribute_item] = STATE(665), - [sym_inner_attribute_item] = STATE(665), - [sym_mod_item] = STATE(665), - [sym_foreign_mod_item] = STATE(665), - [sym_struct_item] = STATE(665), - [sym_union_item] = STATE(665), - [sym_enum_item] = STATE(665), - [sym_extern_crate_declaration] = STATE(665), - [sym_const_item] = STATE(665), - [sym_static_item] = STATE(665), - [sym_type_item] = STATE(665), - [sym_function_item] = STATE(665), - [sym_function_signature_item] = STATE(665), - [sym_function_modifiers] = STATE(3607), - [sym_impl_item] = STATE(665), - [sym_trait_item] = STATE(665), - [sym_associated_type] = STATE(665), - [sym_let_declaration] = STATE(665), - [sym_use_declaration] = STATE(665), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1950), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1850), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3577), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(30), - [sym_block_comment] = STATE(30), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [31] = { + [sym__statement] = STATE(578), + [sym_empty_statement] = STATE(600), + [sym_expression_statement] = STATE(600), + [sym_macro_definition] = STATE(600), + [sym_attribute_item] = STATE(2189), + [sym_inner_attribute_item] = STATE(600), + [sym_mod_item] = STATE(600), + [sym_foreign_mod_item] = STATE(600), + [sym_struct_item] = STATE(600), + [sym_union_item] = STATE(600), + [sym_enum_item] = STATE(600), + [sym_extern_crate_declaration] = STATE(600), + [sym_const_item] = STATE(600), + [sym_static_item] = STATE(600), + [sym_type_item] = STATE(600), + [sym_function_item] = STATE(600), + [sym_function_signature_item] = STATE(600), + [sym_function_modifiers] = STATE(4065), + [sym_impl_item] = STATE(600), + [sym_trait_item] = STATE(600), + [sym_associated_type] = STATE(600), + [sym_let_declaration] = STATE(600), + [sym_use_declaration] = STATE(600), + [sym_extern_modifier] = STATE(2447), + [sym_visibility_modifier] = STATE(2223), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1996), + [sym_macro_invocation] = STATE(404), + [sym_scoped_identifier] = STATE(1801), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(407), + [sym_match_expression] = STATE(407), + [sym_while_expression] = STATE(407), + [sym_loop_expression] = STATE(407), + [sym_for_expression] = STATE(407), + [sym_const_block] = STATE(407), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4055), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(407), + [sym_async_block] = STATE(407), + [sym_gen_block] = STATE(407), + [sym_try_block] = STATE(407), + [sym_block] = STATE(407), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(31), + [sym_block_comment] = STATE(31), + [aux_sym_source_file_repeat1] = STATE(23), + [aux_sym_mod_item_repeat1] = STATE(2186), + [aux_sym_function_modifiers_repeat1] = STATE(2519), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(331), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(121), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_fn] = ACTIONS(51), - [anon_sym_for] = ACTIONS(53), - [anon_sym_gen] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_impl] = ACTIONS(59), - [anon_sym_let] = ACTIONS(61), - [anon_sym_loop] = ACTIONS(63), - [anon_sym_match] = ACTIONS(65), - [anon_sym_mod] = ACTIONS(67), - [anon_sym_pub] = ACTIONS(69), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(73), - [anon_sym_struct] = ACTIONS(75), - [anon_sym_trait] = ACTIONS(77), - [anon_sym_type] = ACTIONS(79), - [anon_sym_union] = ACTIONS(81), - [anon_sym_unsafe] = ACTIONS(83), - [anon_sym_use] = ACTIONS(85), - [anon_sym_while] = ACTIONS(87), - [anon_sym_extern] = ACTIONS(89), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(95), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(113), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [31] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(665), - [sym_expression_statement] = STATE(665), - [sym_macro_definition] = STATE(665), - [sym_attribute_item] = STATE(665), - [sym_inner_attribute_item] = STATE(665), - [sym_mod_item] = STATE(665), - [sym_foreign_mod_item] = STATE(665), - [sym_struct_item] = STATE(665), - [sym_union_item] = STATE(665), - [sym_enum_item] = STATE(665), - [sym_extern_crate_declaration] = STATE(665), - [sym_const_item] = STATE(665), - [sym_static_item] = STATE(665), - [sym_type_item] = STATE(665), - [sym_function_item] = STATE(665), - [sym_function_signature_item] = STATE(665), - [sym_function_modifiers] = STATE(3607), - [sym_impl_item] = STATE(665), - [sym_trait_item] = STATE(665), - [sym_associated_type] = STATE(665), - [sym_let_declaration] = STATE(665), - [sym_use_declaration] = STATE(665), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1950), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1851), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3577), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(31), - [sym_block_comment] = STATE(31), - [aux_sym_source_file_repeat1] = STATE(32), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(9), - [anon_sym_SEMI] = ACTIONS(11), - [anon_sym_macro_rules_BANG] = ACTIONS(13), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(333), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -18690,82 +20050,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [32] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(665), - [sym_expression_statement] = STATE(665), - [sym_macro_definition] = STATE(665), - [sym_attribute_item] = STATE(665), - [sym_inner_attribute_item] = STATE(665), - [sym_mod_item] = STATE(665), - [sym_foreign_mod_item] = STATE(665), - [sym_struct_item] = STATE(665), - [sym_union_item] = STATE(665), - [sym_enum_item] = STATE(665), - [sym_extern_crate_declaration] = STATE(665), - [sym_const_item] = STATE(665), - [sym_static_item] = STATE(665), - [sym_type_item] = STATE(665), - [sym_function_item] = STATE(665), - [sym_function_signature_item] = STATE(665), - [sym_function_modifiers] = STATE(3607), - [sym_impl_item] = STATE(665), - [sym_trait_item] = STATE(665), - [sym_associated_type] = STATE(665), - [sym_let_declaration] = STATE(665), - [sym_use_declaration] = STATE(665), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1950), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1852), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3577), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [sym__statement] = STATE(578), + [sym_empty_statement] = STATE(600), + [sym_expression_statement] = STATE(600), + [sym_macro_definition] = STATE(600), + [sym_attribute_item] = STATE(2189), + [sym_inner_attribute_item] = STATE(600), + [sym_mod_item] = STATE(600), + [sym_foreign_mod_item] = STATE(600), + [sym_struct_item] = STATE(600), + [sym_union_item] = STATE(600), + [sym_enum_item] = STATE(600), + [sym_extern_crate_declaration] = STATE(600), + [sym_const_item] = STATE(600), + [sym_static_item] = STATE(600), + [sym_type_item] = STATE(600), + [sym_function_item] = STATE(600), + [sym_function_signature_item] = STATE(600), + [sym_function_modifiers] = STATE(4065), + [sym_impl_item] = STATE(600), + [sym_trait_item] = STATE(600), + [sym_associated_type] = STATE(600), + [sym_let_declaration] = STATE(600), + [sym_use_declaration] = STATE(600), + [sym_extern_modifier] = STATE(2447), + [sym_visibility_modifier] = STATE(2223), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1972), + [sym_macro_invocation] = STATE(404), + [sym_scoped_identifier] = STATE(1801), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(407), + [sym_match_expression] = STATE(407), + [sym_while_expression] = STATE(407), + [sym_loop_expression] = STATE(407), + [sym_for_expression] = STATE(407), + [sym_const_block] = STATE(407), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4055), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(407), + [sym_async_block] = STATE(407), + [sym_gen_block] = STATE(407), + [sym_try_block] = STATE(407), + [sym_block] = STATE(407), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), [sym_line_comment] = STATE(32), [sym_block_comment] = STATE(32), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [aux_sym_source_file_repeat1] = STATE(22), + [aux_sym_mod_item_repeat1] = STATE(2186), + [aux_sym_function_modifiers_repeat1] = STATE(2519), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -18844,89 +20205,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [33] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(665), - [sym_expression_statement] = STATE(665), - [sym_macro_definition] = STATE(665), - [sym_attribute_item] = STATE(665), - [sym_inner_attribute_item] = STATE(665), - [sym_mod_item] = STATE(665), - [sym_foreign_mod_item] = STATE(665), - [sym_struct_item] = STATE(665), - [sym_union_item] = STATE(665), - [sym_enum_item] = STATE(665), - [sym_extern_crate_declaration] = STATE(665), - [sym_const_item] = STATE(665), - [sym_static_item] = STATE(665), - [sym_type_item] = STATE(665), - [sym_function_item] = STATE(665), - [sym_function_signature_item] = STATE(665), - [sym_function_modifiers] = STATE(3607), - [sym_impl_item] = STATE(665), - [sym_trait_item] = STATE(665), - [sym_associated_type] = STATE(665), - [sym_let_declaration] = STATE(665), - [sym_use_declaration] = STATE(665), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1950), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1853), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3577), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [sym__statement] = STATE(578), + [sym_empty_statement] = STATE(600), + [sym_expression_statement] = STATE(600), + [sym_macro_definition] = STATE(600), + [sym_attribute_item] = STATE(2189), + [sym_inner_attribute_item] = STATE(600), + [sym_mod_item] = STATE(600), + [sym_foreign_mod_item] = STATE(600), + [sym_struct_item] = STATE(600), + [sym_union_item] = STATE(600), + [sym_enum_item] = STATE(600), + [sym_extern_crate_declaration] = STATE(600), + [sym_const_item] = STATE(600), + [sym_static_item] = STATE(600), + [sym_type_item] = STATE(600), + [sym_function_item] = STATE(600), + [sym_function_signature_item] = STATE(600), + [sym_function_modifiers] = STATE(4065), + [sym_impl_item] = STATE(600), + [sym_trait_item] = STATE(600), + [sym_associated_type] = STATE(600), + [sym_let_declaration] = STATE(600), + [sym_use_declaration] = STATE(600), + [sym_extern_modifier] = STATE(2447), + [sym_visibility_modifier] = STATE(2223), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2126), + [sym_macro_invocation] = STATE(404), + [sym_scoped_identifier] = STATE(1801), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(407), + [sym_match_expression] = STATE(407), + [sym_while_expression] = STATE(407), + [sym_loop_expression] = STATE(407), + [sym_for_expression] = STATE(407), + [sym_const_block] = STATE(407), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4055), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(407), + [sym_async_block] = STATE(407), + [sym_gen_block] = STATE(407), + [sym_try_block] = STATE(407), + [sym_block] = STATE(407), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), [sym_line_comment] = STATE(33), [sym_block_comment] = STATE(33), - [aux_sym_source_file_repeat1] = STATE(3), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [aux_sym_source_file_repeat1] = STATE(14), + [aux_sym_mod_item_repeat1] = STATE(2186), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [ts_builtin_sym_end] = ACTIONS(133), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(337), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -18998,89 +20360,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [34] = { - [sym__statement] = STATE(659), - [sym_empty_statement] = STATE(665), - [sym_expression_statement] = STATE(665), - [sym_macro_definition] = STATE(665), - [sym_attribute_item] = STATE(665), - [sym_inner_attribute_item] = STATE(665), - [sym_mod_item] = STATE(665), - [sym_foreign_mod_item] = STATE(665), - [sym_struct_item] = STATE(665), - [sym_union_item] = STATE(665), - [sym_enum_item] = STATE(665), - [sym_extern_crate_declaration] = STATE(665), - [sym_const_item] = STATE(665), - [sym_static_item] = STATE(665), - [sym_type_item] = STATE(665), - [sym_function_item] = STATE(665), - [sym_function_signature_item] = STATE(665), - [sym_function_modifiers] = STATE(3607), - [sym_impl_item] = STATE(665), - [sym_trait_item] = STATE(665), - [sym_associated_type] = STATE(665), - [sym_let_declaration] = STATE(665), - [sym_use_declaration] = STATE(665), - [sym_extern_modifier] = STATE(2160), - [sym_visibility_modifier] = STATE(1950), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1886), - [sym_macro_invocation] = STATE(399), - [sym_scoped_identifier] = STATE(1552), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(377), - [sym_match_expression] = STATE(377), - [sym_while_expression] = STATE(377), - [sym_loop_expression] = STATE(377), - [sym_for_expression] = STATE(377), - [sym_const_block] = STATE(377), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3577), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(377), - [sym_async_block] = STATE(377), - [sym_gen_block] = STATE(377), - [sym_try_block] = STATE(377), - [sym_block] = STATE(377), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [sym__statement] = STATE(578), + [sym_empty_statement] = STATE(600), + [sym_expression_statement] = STATE(600), + [sym_macro_definition] = STATE(600), + [sym_attribute_item] = STATE(2189), + [sym_inner_attribute_item] = STATE(600), + [sym_mod_item] = STATE(600), + [sym_foreign_mod_item] = STATE(600), + [sym_struct_item] = STATE(600), + [sym_union_item] = STATE(600), + [sym_enum_item] = STATE(600), + [sym_extern_crate_declaration] = STATE(600), + [sym_const_item] = STATE(600), + [sym_static_item] = STATE(600), + [sym_type_item] = STATE(600), + [sym_function_item] = STATE(600), + [sym_function_signature_item] = STATE(600), + [sym_function_modifiers] = STATE(4065), + [sym_impl_item] = STATE(600), + [sym_trait_item] = STATE(600), + [sym_associated_type] = STATE(600), + [sym_let_declaration] = STATE(600), + [sym_use_declaration] = STATE(600), + [sym_extern_modifier] = STATE(2447), + [sym_visibility_modifier] = STATE(2223), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1950), + [sym_macro_invocation] = STATE(404), + [sym_scoped_identifier] = STATE(1801), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(407), + [sym_match_expression] = STATE(407), + [sym_while_expression] = STATE(407), + [sym_loop_expression] = STATE(407), + [sym_for_expression] = STATE(407), + [sym_const_block] = STATE(407), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4055), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(407), + [sym_async_block] = STATE(407), + [sym_gen_block] = STATE(407), + [sym_try_block] = STATE(407), + [sym_block] = STATE(407), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), [sym_line_comment] = STATE(34), [sym_block_comment] = STATE(34), - [aux_sym_source_file_repeat1] = STATE(7), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [ts_builtin_sym_end] = ACTIONS(125), + [aux_sym_source_file_repeat1] = STATE(23), + [aux_sym_mod_item_repeat1] = STATE(2186), + [aux_sym_function_modifiers_repeat1] = STATE(2519), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(337), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -19152,53 +20515,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [35] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1517), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1773), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), [sym_line_comment] = STATE(35), [sym_block_comment] = STATE(35), [sym_identifier] = ACTIONS(339), @@ -19300,53 +20663,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [36] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1519), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1770), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), [sym_line_comment] = STATE(36), [sym_block_comment] = STATE(36), [sym_identifier] = ACTIONS(339), @@ -19447,58 +20810,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [37] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1511), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1764), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), [sym_line_comment] = STATE(37), [sym_block_comment] = STATE(37), [sym_identifier] = ACTIONS(339), [anon_sym_SEMI] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(387), [anon_sym_RPAREN] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(387), [anon_sym_RBRACK] = ACTIONS(387), @@ -19594,58 +20957,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [38] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1516), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1760), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(35), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), [sym_line_comment] = STATE(38), [sym_block_comment] = STATE(38), [sym_identifier] = ACTIONS(339), [anon_sym_SEMI] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(391), [anon_sym_RPAREN] = ACTIONS(391), [anon_sym_LBRACK] = ACTIONS(391), [anon_sym_RBRACK] = ACTIONS(391), @@ -19705,7 +21068,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_EQ] = ACTIONS(391), [anon_sym_COMMA] = ACTIONS(391), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_SQUOTE] = ACTIONS(395), [anon_sym_as] = ACTIONS(393), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -19741,66 +21104,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [39] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1503), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(35), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1769), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), [sym_line_comment] = STATE(39), [sym_block_comment] = STATE(39), [sym_identifier] = ACTIONS(339), - [anon_sym_SEMI] = ACTIONS(395), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_RPAREN] = ACTIONS(395), - [anon_sym_LBRACK] = ACTIONS(395), - [anon_sym_RBRACK] = ACTIONS(395), + [anon_sym_SEMI] = ACTIONS(397), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(397), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_RBRACE] = ACTIONS(395), - [anon_sym_PLUS] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(397), - [anon_sym_QMARK] = ACTIONS(395), + [anon_sym_RBRACE] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_STAR] = ACTIONS(349), + [anon_sym_QMARK] = ACTIONS(397), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -19818,42 +21181,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_SLASH] = ACTIONS(397), - [anon_sym_PERCENT] = ACTIONS(397), - [anon_sym_CARET] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_SLASH] = ACTIONS(399), + [anon_sym_PERCENT] = ACTIONS(399), + [anon_sym_CARET] = ACTIONS(399), [anon_sym_BANG] = ACTIONS(349), - [anon_sym_AMP] = ACTIONS(397), - [anon_sym_PIPE] = ACTIONS(397), - [anon_sym_AMP_AMP] = ACTIONS(395), - [anon_sym_PIPE_PIPE] = ACTIONS(395), - [anon_sym_LT_LT] = ACTIONS(397), - [anon_sym_GT_GT] = ACTIONS(397), - [anon_sym_PLUS_EQ] = ACTIONS(395), - [anon_sym_DASH_EQ] = ACTIONS(395), - [anon_sym_STAR_EQ] = ACTIONS(395), - [anon_sym_SLASH_EQ] = ACTIONS(395), - [anon_sym_PERCENT_EQ] = ACTIONS(395), - [anon_sym_CARET_EQ] = ACTIONS(395), - [anon_sym_AMP_EQ] = ACTIONS(395), - [anon_sym_PIPE_EQ] = ACTIONS(395), - [anon_sym_LT_LT_EQ] = ACTIONS(395), - [anon_sym_GT_GT_EQ] = ACTIONS(395), - [anon_sym_EQ] = ACTIONS(397), - [anon_sym_EQ_EQ] = ACTIONS(395), - [anon_sym_BANG_EQ] = ACTIONS(395), - [anon_sym_GT] = ACTIONS(397), - [anon_sym_LT] = ACTIONS(397), - [anon_sym_GT_EQ] = ACTIONS(395), - [anon_sym_LT_EQ] = ACTIONS(395), - [anon_sym_DOT] = ACTIONS(397), - [anon_sym_DOT_DOT] = ACTIONS(397), - [anon_sym_DOT_DOT_DOT] = ACTIONS(395), - [anon_sym_DOT_DOT_EQ] = ACTIONS(395), - [anon_sym_COMMA] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(379), + [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_AMP_AMP] = ACTIONS(397), + [anon_sym_PIPE_PIPE] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(399), + [anon_sym_PLUS_EQ] = ACTIONS(397), + [anon_sym_DASH_EQ] = ACTIONS(397), + [anon_sym_STAR_EQ] = ACTIONS(397), + [anon_sym_SLASH_EQ] = ACTIONS(397), + [anon_sym_PERCENT_EQ] = ACTIONS(397), + [anon_sym_CARET_EQ] = ACTIONS(397), + [anon_sym_AMP_EQ] = ACTIONS(397), + [anon_sym_PIPE_EQ] = ACTIONS(397), + [anon_sym_LT_LT_EQ] = ACTIONS(397), + [anon_sym_GT_GT_EQ] = ACTIONS(397), + [anon_sym_EQ] = ACTIONS(399), + [anon_sym_EQ_EQ] = ACTIONS(397), + [anon_sym_BANG_EQ] = ACTIONS(397), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_LT] = ACTIONS(383), + [anon_sym_GT_EQ] = ACTIONS(397), + [anon_sym_LT_EQ] = ACTIONS(397), + [anon_sym_DOT] = ACTIONS(399), + [anon_sym_DOT_DOT] = ACTIONS(385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(397), + [anon_sym_DOT_DOT_EQ] = ACTIONS(397), + [anon_sym_COMMA] = ACTIONS(397), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(399), - [anon_sym_as] = ACTIONS(397), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(399), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), @@ -19869,7 +21232,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_else] = ACTIONS(397), + [anon_sym_else] = ACTIONS(399), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), @@ -19888,66 +21251,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [40] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1516), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1757), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), [sym_line_comment] = STATE(40), [sym_block_comment] = STATE(40), [sym_identifier] = ACTIONS(339), - [anon_sym_SEMI] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_RPAREN] = ACTIONS(391), - [anon_sym_LBRACK] = ACTIONS(391), - [anon_sym_RBRACK] = ACTIONS(391), + [anon_sym_SEMI] = ACTIONS(401), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(401), + [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_RBRACK] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_RBRACE] = ACTIONS(391), - [anon_sym_PLUS] = ACTIONS(393), - [anon_sym_STAR] = ACTIONS(393), - [anon_sym_QMARK] = ACTIONS(391), + [anon_sym_RBRACE] = ACTIONS(401), + [anon_sym_PLUS] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(403), + [anon_sym_QMARK] = ACTIONS(401), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -19965,42 +21328,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(393), - [anon_sym_SLASH] = ACTIONS(393), - [anon_sym_PERCENT] = ACTIONS(393), - [anon_sym_CARET] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(403), + [anon_sym_SLASH] = ACTIONS(403), + [anon_sym_PERCENT] = ACTIONS(403), + [anon_sym_CARET] = ACTIONS(403), [anon_sym_BANG] = ACTIONS(349), - [anon_sym_AMP] = ACTIONS(393), - [anon_sym_PIPE] = ACTIONS(393), - [anon_sym_AMP_AMP] = ACTIONS(391), - [anon_sym_PIPE_PIPE] = ACTIONS(391), - [anon_sym_LT_LT] = ACTIONS(393), - [anon_sym_GT_GT] = ACTIONS(393), - [anon_sym_PLUS_EQ] = ACTIONS(391), - [anon_sym_DASH_EQ] = ACTIONS(391), - [anon_sym_STAR_EQ] = ACTIONS(391), - [anon_sym_SLASH_EQ] = ACTIONS(391), - [anon_sym_PERCENT_EQ] = ACTIONS(391), - [anon_sym_CARET_EQ] = ACTIONS(391), - [anon_sym_AMP_EQ] = ACTIONS(391), - [anon_sym_PIPE_EQ] = ACTIONS(391), - [anon_sym_LT_LT_EQ] = ACTIONS(391), - [anon_sym_GT_GT_EQ] = ACTIONS(391), - [anon_sym_EQ] = ACTIONS(393), - [anon_sym_EQ_EQ] = ACTIONS(391), - [anon_sym_BANG_EQ] = ACTIONS(391), - [anon_sym_GT] = ACTIONS(393), - [anon_sym_LT] = ACTIONS(393), - [anon_sym_GT_EQ] = ACTIONS(391), - [anon_sym_LT_EQ] = ACTIONS(391), - [anon_sym_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(391), - [anon_sym_DOT_DOT_EQ] = ACTIONS(391), - [anon_sym_COMMA] = ACTIONS(391), + [anon_sym_AMP] = ACTIONS(403), + [anon_sym_PIPE] = ACTIONS(403), + [anon_sym_AMP_AMP] = ACTIONS(401), + [anon_sym_PIPE_PIPE] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_GT_GT] = ACTIONS(403), + [anon_sym_PLUS_EQ] = ACTIONS(401), + [anon_sym_DASH_EQ] = ACTIONS(401), + [anon_sym_STAR_EQ] = ACTIONS(401), + [anon_sym_SLASH_EQ] = ACTIONS(401), + [anon_sym_PERCENT_EQ] = ACTIONS(401), + [anon_sym_CARET_EQ] = ACTIONS(401), + [anon_sym_AMP_EQ] = ACTIONS(401), + [anon_sym_PIPE_EQ] = ACTIONS(401), + [anon_sym_LT_LT_EQ] = ACTIONS(401), + [anon_sym_GT_GT_EQ] = ACTIONS(401), + [anon_sym_EQ] = ACTIONS(403), + [anon_sym_EQ_EQ] = ACTIONS(401), + [anon_sym_BANG_EQ] = ACTIONS(401), + [anon_sym_GT] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(403), + [anon_sym_GT_EQ] = ACTIONS(401), + [anon_sym_LT_EQ] = ACTIONS(401), + [anon_sym_DOT] = ACTIONS(403), + [anon_sym_DOT_DOT] = ACTIONS(403), + [anon_sym_DOT_DOT_DOT] = ACTIONS(401), + [anon_sym_DOT_DOT_EQ] = ACTIONS(401), + [anon_sym_COMMA] = ACTIONS(401), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(393), + [anon_sym_as] = ACTIONS(403), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), @@ -20016,7 +21379,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_else] = ACTIONS(393), + [anon_sym_else] = ACTIONS(403), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), @@ -20035,65 +21398,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [41] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1514), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1757), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), [sym_line_comment] = STATE(41), [sym_block_comment] = STATE(41), [sym_identifier] = ACTIONS(339), [anon_sym_SEMI] = ACTIONS(401), - [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(401), [anon_sym_RPAREN] = ACTIONS(401), - [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_RBRACK] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_RBRACE] = ACTIONS(401), [anon_sym_PLUS] = ACTIONS(403), - [anon_sym_STAR] = ACTIONS(349), + [anon_sym_STAR] = ACTIONS(403), [anon_sym_QMARK] = ACTIONS(401), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -20112,13 +21475,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DASH] = ACTIONS(403), [anon_sym_SLASH] = ACTIONS(403), [anon_sym_PERCENT] = ACTIONS(403), [anon_sym_CARET] = ACTIONS(403), [anon_sym_BANG] = ACTIONS(349), - [anon_sym_AMP] = ACTIONS(379), - [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_AMP] = ACTIONS(403), + [anon_sym_PIPE] = ACTIONS(403), [anon_sym_AMP_AMP] = ACTIONS(401), [anon_sym_PIPE_PIPE] = ACTIONS(401), [anon_sym_LT_LT] = ACTIONS(403), @@ -20137,11 +21500,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_EQ] = ACTIONS(401), [anon_sym_BANG_EQ] = ACTIONS(401), [anon_sym_GT] = ACTIONS(403), - [anon_sym_LT] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(403), [anon_sym_GT_EQ] = ACTIONS(401), [anon_sym_LT_EQ] = ACTIONS(401), [anon_sym_DOT] = ACTIONS(403), - [anon_sym_DOT_DOT] = ACTIONS(385), + [anon_sym_DOT_DOT] = ACTIONS(403), [anon_sym_DOT_DOT_DOT] = ACTIONS(401), [anon_sym_DOT_DOT_EQ] = ACTIONS(401), [anon_sym_COMMA] = ACTIONS(401), @@ -20182,58 +21545,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [42] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1511), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1764), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), [sym_line_comment] = STATE(42), [sym_block_comment] = STATE(42), [sym_identifier] = ACTIONS(339), [anon_sym_SEMI] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_RPAREN] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(387), [anon_sym_RBRACK] = ACTIONS(387), @@ -20329,53 +21692,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [43] = { - [sym_bracketed_type] = STATE(3529), - [sym_generic_function] = STATE(1664), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1626), - [sym__expression] = STATE(1754), - [sym_macro_invocation] = STATE(1671), - [sym_scoped_identifier] = STATE(1575), - [sym_scoped_type_identifier_in_expression_position] = STATE(3163), - [sym_range_expression] = STATE(1666), - [sym_unary_expression] = STATE(1664), - [sym_try_expression] = STATE(1664), - [sym_reference_expression] = STATE(1664), - [sym_binary_expression] = STATE(1664), - [sym_assignment_expression] = STATE(1664), - [sym_compound_assignment_expr] = STATE(1664), - [sym_type_cast_expression] = STATE(1664), - [sym_return_expression] = STATE(1664), - [sym_yield_expression] = STATE(1664), - [sym_call_expression] = STATE(1664), - [sym_array_expression] = STATE(1664), - [sym_parenthesized_expression] = STATE(1664), - [sym_tuple_expression] = STATE(1664), - [sym_unit_expression] = STATE(1664), - [sym_struct_expression] = STATE(1664), - [sym_if_expression] = STATE(1664), - [sym_match_expression] = STATE(1664), - [sym_while_expression] = STATE(1664), - [sym_loop_expression] = STATE(1664), - [sym_for_expression] = STATE(1664), - [sym_const_block] = STATE(1664), - [sym_closure_expression] = STATE(1664), - [sym_closure_parameters] = STATE(232), - [sym_label] = STATE(3614), - [sym_break_expression] = STATE(1664), - [sym_continue_expression] = STATE(1664), - [sym_index_expression] = STATE(1664), - [sym_await_expression] = STATE(1664), - [sym_field_expression] = STATE(1597), - [sym_unsafe_block] = STATE(1664), - [sym_async_block] = STATE(1664), - [sym_gen_block] = STATE(1664), - [sym_try_block] = STATE(1664), - [sym_block] = STATE(1664), - [sym__literal] = STATE(1664), - [sym_string_literal] = STATE(1786), - [sym_raw_string_literal] = STATE(1786), - [sym_boolean_literal] = STATE(1786), + [sym_bracketed_type] = STATE(4005), + [sym_generic_function] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3402), + [sym__expression_except_range] = STATE(1901), + [sym__expression] = STATE(1906), + [sym_macro_invocation] = STATE(1963), + [sym_scoped_identifier] = STATE(1832), + [sym_scoped_type_identifier_in_expression_position] = STATE(3592), + [sym_range_expression] = STATE(1960), + [sym_unary_expression] = STATE(1957), + [sym_try_expression] = STATE(1957), + [sym_reference_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_assignment_expression] = STATE(1957), + [sym_compound_assignment_expr] = STATE(1957), + [sym_type_cast_expression] = STATE(1957), + [sym_return_expression] = STATE(1957), + [sym_yield_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_array_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_tuple_expression] = STATE(1957), + [sym_unit_expression] = STATE(1957), + [sym_struct_expression] = STATE(1957), + [sym_if_expression] = STATE(1957), + [sym_match_expression] = STATE(1957), + [sym_while_expression] = STATE(1957), + [sym_loop_expression] = STATE(1957), + [sym_for_expression] = STATE(1957), + [sym_const_block] = STATE(1957), + [sym_closure_expression] = STATE(1957), + [sym_closure_parameters] = STATE(235), + [sym_label] = STATE(4110), + [sym_break_expression] = STATE(1957), + [sym_continue_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_await_expression] = STATE(1957), + [sym_field_expression] = STATE(1898), + [sym_unsafe_block] = STATE(1957), + [sym_async_block] = STATE(1957), + [sym_gen_block] = STATE(1957), + [sym_try_block] = STATE(1957), + [sym_block] = STATE(1957), + [sym__literal] = STATE(1957), + [sym_string_literal] = STATE(1932), + [sym_raw_string_literal] = STATE(1932), + [sym_boolean_literal] = STATE(1932), [sym_line_comment] = STATE(43), [sym_block_comment] = STATE(43), [sym_identifier] = ACTIONS(405), @@ -20472,63 +21835,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(451), }, [44] = { - [sym_bracketed_type] = STATE(3529), - [sym_generic_function] = STATE(1664), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1626), - [sym__expression] = STATE(1681), - [sym_macro_invocation] = STATE(1671), - [sym_scoped_identifier] = STATE(1575), - [sym_scoped_type_identifier_in_expression_position] = STATE(3163), - [sym_range_expression] = STATE(1666), - [sym_unary_expression] = STATE(1664), - [sym_try_expression] = STATE(1664), - [sym_reference_expression] = STATE(1664), - [sym_binary_expression] = STATE(1664), - [sym_assignment_expression] = STATE(1664), - [sym_compound_assignment_expr] = STATE(1664), - [sym_type_cast_expression] = STATE(1664), - [sym_return_expression] = STATE(1664), - [sym_yield_expression] = STATE(1664), - [sym_call_expression] = STATE(1664), - [sym_array_expression] = STATE(1664), - [sym_parenthesized_expression] = STATE(1664), - [sym_tuple_expression] = STATE(1664), - [sym_unit_expression] = STATE(1664), - [sym_struct_expression] = STATE(1664), - [sym_if_expression] = STATE(1664), - [sym_match_expression] = STATE(1664), - [sym_while_expression] = STATE(1664), - [sym_loop_expression] = STATE(1664), - [sym_for_expression] = STATE(1664), - [sym_const_block] = STATE(1664), - [sym_closure_expression] = STATE(1664), - [sym_closure_parameters] = STATE(232), - [sym_label] = STATE(43), - [sym_break_expression] = STATE(1664), - [sym_continue_expression] = STATE(1664), - [sym_index_expression] = STATE(1664), - [sym_await_expression] = STATE(1664), - [sym_field_expression] = STATE(1597), - [sym_unsafe_block] = STATE(1664), - [sym_async_block] = STATE(1664), - [sym_gen_block] = STATE(1664), - [sym_try_block] = STATE(1664), - [sym_block] = STATE(1664), - [sym__literal] = STATE(1664), - [sym_string_literal] = STATE(1786), - [sym_raw_string_literal] = STATE(1786), - [sym_boolean_literal] = STATE(1786), + [sym_bracketed_type] = STATE(4005), + [sym_generic_function] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3402), + [sym__expression_except_range] = STATE(1901), + [sym__expression] = STATE(1987), + [sym_macro_invocation] = STATE(1963), + [sym_scoped_identifier] = STATE(1832), + [sym_scoped_type_identifier_in_expression_position] = STATE(3592), + [sym_range_expression] = STATE(1960), + [sym_unary_expression] = STATE(1957), + [sym_try_expression] = STATE(1957), + [sym_reference_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_assignment_expression] = STATE(1957), + [sym_compound_assignment_expr] = STATE(1957), + [sym_type_cast_expression] = STATE(1957), + [sym_return_expression] = STATE(1957), + [sym_yield_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_array_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_tuple_expression] = STATE(1957), + [sym_unit_expression] = STATE(1957), + [sym_struct_expression] = STATE(1957), + [sym_if_expression] = STATE(1957), + [sym_match_expression] = STATE(1957), + [sym_while_expression] = STATE(1957), + [sym_loop_expression] = STATE(1957), + [sym_for_expression] = STATE(1957), + [sym_const_block] = STATE(1957), + [sym_closure_expression] = STATE(1957), + [sym_closure_parameters] = STATE(235), + [sym_label] = STATE(4110), + [sym_break_expression] = STATE(1957), + [sym_continue_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_await_expression] = STATE(1957), + [sym_field_expression] = STATE(1898), + [sym_unsafe_block] = STATE(1957), + [sym_async_block] = STATE(1957), + [sym_gen_block] = STATE(1957), + [sym_try_block] = STATE(1957), + [sym_block] = STATE(1957), + [sym__literal] = STATE(1957), + [sym_string_literal] = STATE(1932), + [sym_raw_string_literal] = STATE(1932), + [sym_boolean_literal] = STATE(1932), [sym_line_comment] = STATE(44), [sym_block_comment] = STATE(44), [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_LBRACK] = ACTIONS(395), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_EQ_GT] = ACTIONS(395), - [anon_sym_PLUS] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(397), - [anon_sym_QMARK] = ACTIONS(395), + [anon_sym_EQ_GT] = ACTIONS(401), + [anon_sym_PLUS] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(403), + [anon_sym_QMARK] = ACTIONS(401), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -20546,41 +21909,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(411), [anon_sym_str] = ACTIONS(411), [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_SLASH] = ACTIONS(397), - [anon_sym_PERCENT] = ACTIONS(397), - [anon_sym_CARET] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(403), + [anon_sym_SLASH] = ACTIONS(403), + [anon_sym_PERCENT] = ACTIONS(403), + [anon_sym_CARET] = ACTIONS(403), [anon_sym_BANG] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(397), - [anon_sym_PIPE] = ACTIONS(397), - [anon_sym_AMP_AMP] = ACTIONS(395), - [anon_sym_PIPE_PIPE] = ACTIONS(395), - [anon_sym_LT_LT] = ACTIONS(397), - [anon_sym_GT_GT] = ACTIONS(397), - [anon_sym_PLUS_EQ] = ACTIONS(395), - [anon_sym_DASH_EQ] = ACTIONS(395), - [anon_sym_STAR_EQ] = ACTIONS(395), - [anon_sym_SLASH_EQ] = ACTIONS(395), - [anon_sym_PERCENT_EQ] = ACTIONS(395), - [anon_sym_CARET_EQ] = ACTIONS(395), - [anon_sym_AMP_EQ] = ACTIONS(395), - [anon_sym_PIPE_EQ] = ACTIONS(395), - [anon_sym_LT_LT_EQ] = ACTIONS(395), - [anon_sym_GT_GT_EQ] = ACTIONS(395), - [anon_sym_EQ] = ACTIONS(397), - [anon_sym_EQ_EQ] = ACTIONS(395), - [anon_sym_BANG_EQ] = ACTIONS(395), - [anon_sym_GT] = ACTIONS(397), - [anon_sym_LT] = ACTIONS(397), - [anon_sym_GT_EQ] = ACTIONS(395), - [anon_sym_LT_EQ] = ACTIONS(395), - [anon_sym_DOT] = ACTIONS(397), - [anon_sym_DOT_DOT] = ACTIONS(397), - [anon_sym_DOT_DOT_DOT] = ACTIONS(395), - [anon_sym_DOT_DOT_EQ] = ACTIONS(395), + [anon_sym_AMP] = ACTIONS(403), + [anon_sym_PIPE] = ACTIONS(403), + [anon_sym_AMP_AMP] = ACTIONS(401), + [anon_sym_PIPE_PIPE] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_GT_GT] = ACTIONS(403), + [anon_sym_PLUS_EQ] = ACTIONS(401), + [anon_sym_DASH_EQ] = ACTIONS(401), + [anon_sym_STAR_EQ] = ACTIONS(401), + [anon_sym_SLASH_EQ] = ACTIONS(401), + [anon_sym_PERCENT_EQ] = ACTIONS(401), + [anon_sym_CARET_EQ] = ACTIONS(401), + [anon_sym_AMP_EQ] = ACTIONS(401), + [anon_sym_PIPE_EQ] = ACTIONS(401), + [anon_sym_LT_LT_EQ] = ACTIONS(401), + [anon_sym_GT_GT_EQ] = ACTIONS(401), + [anon_sym_EQ] = ACTIONS(403), + [anon_sym_EQ_EQ] = ACTIONS(401), + [anon_sym_BANG_EQ] = ACTIONS(401), + [anon_sym_GT] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(403), + [anon_sym_GT_EQ] = ACTIONS(401), + [anon_sym_LT_EQ] = ACTIONS(401), + [anon_sym_DOT] = ACTIONS(403), + [anon_sym_DOT_DOT] = ACTIONS(403), + [anon_sym_DOT_DOT_DOT] = ACTIONS(401), + [anon_sym_DOT_DOT_EQ] = ACTIONS(401), [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(465), - [anon_sym_as] = ACTIONS(397), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(403), [anon_sym_async] = ACTIONS(417), [anon_sym_break] = ACTIONS(419), [anon_sym_const] = ACTIONS(421), @@ -20614,56 +21977,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(451), }, [45] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1703), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(246), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3303), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2024), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1794), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), [sym_line_comment] = STATE(45), [sym_block_comment] = STATE(45), - [sym_identifier] = ACTIONS(467), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(341), [anon_sym_LBRACK] = ACTIONS(341), [anon_sym_LBRACE] = ACTIONS(341), @@ -20671,28 +22034,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(347), [anon_sym_STAR] = ACTIONS(347), [anon_sym_QMARK] = ACTIONS(341), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), [anon_sym_DASH] = ACTIONS(347), [anon_sym_SLASH] = ACTIONS(347), [anon_sym_PERCENT] = ACTIONS(347), [anon_sym_CARET] = ACTIONS(347), - [anon_sym_BANG] = ACTIONS(471), + [anon_sym_BANG] = ACTIONS(469), [anon_sym_AMP] = ACTIONS(347), [anon_sym_PIPE] = ACTIONS(347), [anon_sym_AMP_AMP] = ACTIONS(341), @@ -20720,26 +22083,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(347), [anon_sym_DOT_DOT_DOT] = ACTIONS(341), [anon_sym_DOT_DOT_EQ] = ACTIONS(341), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_as] = ACTIONS(347), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), + [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(477), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -20748,71 +22111,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [46] = { - [sym_bracketed_type] = STATE(3529), - [sym_generic_function] = STATE(1664), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1626), - [sym__expression] = STATE(1686), - [sym_macro_invocation] = STATE(1671), - [sym_scoped_identifier] = STATE(1575), - [sym_scoped_type_identifier_in_expression_position] = STATE(3163), - [sym_range_expression] = STATE(1666), - [sym_unary_expression] = STATE(1664), - [sym_try_expression] = STATE(1664), - [sym_reference_expression] = STATE(1664), - [sym_binary_expression] = STATE(1664), - [sym_assignment_expression] = STATE(1664), - [sym_compound_assignment_expr] = STATE(1664), - [sym_type_cast_expression] = STATE(1664), - [sym_return_expression] = STATE(1664), - [sym_yield_expression] = STATE(1664), - [sym_call_expression] = STATE(1664), - [sym_array_expression] = STATE(1664), - [sym_parenthesized_expression] = STATE(1664), - [sym_tuple_expression] = STATE(1664), - [sym_unit_expression] = STATE(1664), - [sym_struct_expression] = STATE(1664), - [sym_if_expression] = STATE(1664), - [sym_match_expression] = STATE(1664), - [sym_while_expression] = STATE(1664), - [sym_loop_expression] = STATE(1664), - [sym_for_expression] = STATE(1664), - [sym_const_block] = STATE(1664), - [sym_closure_expression] = STATE(1664), - [sym_closure_parameters] = STATE(232), - [sym_label] = STATE(3614), - [sym_break_expression] = STATE(1664), - [sym_continue_expression] = STATE(1664), - [sym_index_expression] = STATE(1664), - [sym_await_expression] = STATE(1664), - [sym_field_expression] = STATE(1597), - [sym_unsafe_block] = STATE(1664), - [sym_async_block] = STATE(1664), - [sym_gen_block] = STATE(1664), - [sym_try_block] = STATE(1664), - [sym_block] = STATE(1664), - [sym__literal] = STATE(1664), - [sym_string_literal] = STATE(1786), - [sym_raw_string_literal] = STATE(1786), - [sym_boolean_literal] = STATE(1786), + [sym_bracketed_type] = STATE(4005), + [sym_generic_function] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3402), + [sym__expression_except_range] = STATE(1901), + [sym__expression] = STATE(1905), + [sym_macro_invocation] = STATE(1963), + [sym_scoped_identifier] = STATE(1832), + [sym_scoped_type_identifier_in_expression_position] = STATE(3592), + [sym_range_expression] = STATE(1960), + [sym_unary_expression] = STATE(1957), + [sym_try_expression] = STATE(1957), + [sym_reference_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_assignment_expression] = STATE(1957), + [sym_compound_assignment_expr] = STATE(1957), + [sym_type_cast_expression] = STATE(1957), + [sym_return_expression] = STATE(1957), + [sym_yield_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_array_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_tuple_expression] = STATE(1957), + [sym_unit_expression] = STATE(1957), + [sym_struct_expression] = STATE(1957), + [sym_if_expression] = STATE(1957), + [sym_match_expression] = STATE(1957), + [sym_while_expression] = STATE(1957), + [sym_loop_expression] = STATE(1957), + [sym_for_expression] = STATE(1957), + [sym_const_block] = STATE(1957), + [sym_closure_expression] = STATE(1957), + [sym_closure_parameters] = STATE(235), + [sym_label] = STATE(4110), + [sym_break_expression] = STATE(1957), + [sym_continue_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_await_expression] = STATE(1957), + [sym_field_expression] = STATE(1898), + [sym_unsafe_block] = STATE(1957), + [sym_async_block] = STATE(1957), + [sym_gen_block] = STATE(1957), + [sym_try_block] = STATE(1957), + [sym_block] = STATE(1957), + [sym__literal] = STATE(1957), + [sym_string_literal] = STATE(1932), + [sym_raw_string_literal] = STATE(1932), + [sym_boolean_literal] = STATE(1932), [sym_line_comment] = STATE(46), [sym_block_comment] = STATE(46), [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(387), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_EQ_GT] = ACTIONS(375), - [anon_sym_PLUS] = ACTIONS(377), - [anon_sym_STAR] = ACTIONS(413), - [anon_sym_QMARK] = ACTIONS(375), + [anon_sym_EQ_GT] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_STAR] = ACTIONS(389), + [anon_sym_QMARK] = ACTIONS(387), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -20830,41 +22193,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(411), [anon_sym_str] = ACTIONS(411), [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(413), - [anon_sym_SLASH] = ACTIONS(377), - [anon_sym_PERCENT] = ACTIONS(377), - [anon_sym_CARET] = ACTIONS(377), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_SLASH] = ACTIONS(389), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_CARET] = ACTIONS(389), [anon_sym_BANG] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(499), - [anon_sym_PIPE] = ACTIONS(381), - [anon_sym_AMP_AMP] = ACTIONS(375), - [anon_sym_PIPE_PIPE] = ACTIONS(375), - [anon_sym_LT_LT] = ACTIONS(377), - [anon_sym_GT_GT] = ACTIONS(377), - [anon_sym_PLUS_EQ] = ACTIONS(375), - [anon_sym_DASH_EQ] = ACTIONS(375), - [anon_sym_STAR_EQ] = ACTIONS(375), - [anon_sym_SLASH_EQ] = ACTIONS(375), - [anon_sym_PERCENT_EQ] = ACTIONS(375), - [anon_sym_CARET_EQ] = ACTIONS(375), - [anon_sym_AMP_EQ] = ACTIONS(375), - [anon_sym_PIPE_EQ] = ACTIONS(375), - [anon_sym_LT_LT_EQ] = ACTIONS(375), - [anon_sym_GT_GT_EQ] = ACTIONS(375), - [anon_sym_EQ] = ACTIONS(377), - [anon_sym_EQ_EQ] = ACTIONS(375), - [anon_sym_BANG_EQ] = ACTIONS(375), - [anon_sym_GT] = ACTIONS(377), - [anon_sym_LT] = ACTIONS(383), - [anon_sym_GT_EQ] = ACTIONS(375), - [anon_sym_LT_EQ] = ACTIONS(375), - [anon_sym_DOT] = ACTIONS(377), - [anon_sym_DOT_DOT] = ACTIONS(501), - [anon_sym_DOT_DOT_DOT] = ACTIONS(375), - [anon_sym_DOT_DOT_EQ] = ACTIONS(375), + [anon_sym_AMP] = ACTIONS(389), + [anon_sym_PIPE] = ACTIONS(389), + [anon_sym_AMP_AMP] = ACTIONS(387), + [anon_sym_PIPE_PIPE] = ACTIONS(387), + [anon_sym_LT_LT] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(389), + [anon_sym_PLUS_EQ] = ACTIONS(387), + [anon_sym_DASH_EQ] = ACTIONS(387), + [anon_sym_STAR_EQ] = ACTIONS(387), + [anon_sym_SLASH_EQ] = ACTIONS(387), + [anon_sym_PERCENT_EQ] = ACTIONS(387), + [anon_sym_CARET_EQ] = ACTIONS(387), + [anon_sym_AMP_EQ] = ACTIONS(387), + [anon_sym_PIPE_EQ] = ACTIONS(387), + [anon_sym_LT_LT_EQ] = ACTIONS(387), + [anon_sym_GT_GT_EQ] = ACTIONS(387), + [anon_sym_EQ] = ACTIONS(389), + [anon_sym_EQ_EQ] = ACTIONS(387), + [anon_sym_BANG_EQ] = ACTIONS(387), + [anon_sym_GT] = ACTIONS(389), + [anon_sym_LT] = ACTIONS(389), + [anon_sym_GT_EQ] = ACTIONS(387), + [anon_sym_LT_EQ] = ACTIONS(387), + [anon_sym_DOT] = ACTIONS(389), + [anon_sym_DOT_DOT] = ACTIONS(389), + [anon_sym_DOT_DOT_DOT] = ACTIONS(387), + [anon_sym_DOT_DOT_EQ] = ACTIONS(387), [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(377), + [anon_sym_as] = ACTIONS(389), [anon_sym_async] = ACTIONS(417), [anon_sym_break] = ACTIONS(419), [anon_sym_const] = ACTIONS(421), @@ -20898,63 +22261,205 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(451), }, [47] = { - [sym_bracketed_type] = STATE(3529), - [sym_generic_function] = STATE(1664), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1626), - [sym__expression] = STATE(1685), - [sym_macro_invocation] = STATE(1671), - [sym_scoped_identifier] = STATE(1575), - [sym_scoped_type_identifier_in_expression_position] = STATE(3163), - [sym_range_expression] = STATE(1666), - [sym_unary_expression] = STATE(1664), - [sym_try_expression] = STATE(1664), - [sym_reference_expression] = STATE(1664), - [sym_binary_expression] = STATE(1664), - [sym_assignment_expression] = STATE(1664), - [sym_compound_assignment_expr] = STATE(1664), - [sym_type_cast_expression] = STATE(1664), - [sym_return_expression] = STATE(1664), - [sym_yield_expression] = STATE(1664), - [sym_call_expression] = STATE(1664), - [sym_array_expression] = STATE(1664), - [sym_parenthesized_expression] = STATE(1664), - [sym_tuple_expression] = STATE(1664), - [sym_unit_expression] = STATE(1664), - [sym_struct_expression] = STATE(1664), - [sym_if_expression] = STATE(1664), - [sym_match_expression] = STATE(1664), - [sym_while_expression] = STATE(1664), - [sym_loop_expression] = STATE(1664), - [sym_for_expression] = STATE(1664), - [sym_const_block] = STATE(1664), - [sym_closure_expression] = STATE(1664), - [sym_closure_parameters] = STATE(232), - [sym_label] = STATE(3614), - [sym_break_expression] = STATE(1664), - [sym_continue_expression] = STATE(1664), - [sym_index_expression] = STATE(1664), - [sym_await_expression] = STATE(1664), - [sym_field_expression] = STATE(1597), - [sym_unsafe_block] = STATE(1664), - [sym_async_block] = STATE(1664), - [sym_gen_block] = STATE(1664), - [sym_try_block] = STATE(1664), - [sym_block] = STATE(1664), - [sym__literal] = STATE(1664), - [sym_string_literal] = STATE(1786), - [sym_raw_string_literal] = STATE(1786), - [sym_boolean_literal] = STATE(1786), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3303), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1893), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1794), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), [sym_line_comment] = STATE(47), [sym_block_comment] = STATE(47), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(341), + [anon_sym_LBRACK] = ACTIONS(341), + [anon_sym_LBRACE] = ACTIONS(341), + [anon_sym_COLON] = ACTIONS(345), + [anon_sym_PLUS] = ACTIONS(347), + [anon_sym_STAR] = ACTIONS(347), + [anon_sym_QMARK] = ACTIONS(341), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(347), + [anon_sym_SLASH] = ACTIONS(347), + [anon_sym_PERCENT] = ACTIONS(347), + [anon_sym_CARET] = ACTIONS(347), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_AMP] = ACTIONS(347), + [anon_sym_PIPE] = ACTIONS(347), + [anon_sym_AMP_AMP] = ACTIONS(341), + [anon_sym_PIPE_PIPE] = ACTIONS(341), + [anon_sym_LT_LT] = ACTIONS(347), + [anon_sym_GT_GT] = ACTIONS(347), + [anon_sym_PLUS_EQ] = ACTIONS(341), + [anon_sym_DASH_EQ] = ACTIONS(341), + [anon_sym_STAR_EQ] = ACTIONS(341), + [anon_sym_SLASH_EQ] = ACTIONS(341), + [anon_sym_PERCENT_EQ] = ACTIONS(341), + [anon_sym_CARET_EQ] = ACTIONS(341), + [anon_sym_AMP_EQ] = ACTIONS(341), + [anon_sym_PIPE_EQ] = ACTIONS(341), + [anon_sym_LT_LT_EQ] = ACTIONS(341), + [anon_sym_GT_GT_EQ] = ACTIONS(341), + [anon_sym_EQ] = ACTIONS(347), + [anon_sym_EQ_EQ] = ACTIONS(341), + [anon_sym_BANG_EQ] = ACTIONS(341), + [anon_sym_GT] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(347), + [anon_sym_GT_EQ] = ACTIONS(341), + [anon_sym_LT_EQ] = ACTIONS(341), + [anon_sym_DOT] = ACTIONS(347), + [anon_sym_DOT_DOT] = ACTIONS(347), + [anon_sym_DOT_DOT_DOT] = ACTIONS(341), + [anon_sym_DOT_DOT_EQ] = ACTIONS(341), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(347), + [anon_sym_as] = ACTIONS(347), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(495), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(497), + [anon_sym_default] = ACTIONS(475), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(499), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(501), + [anon_sym_static] = ACTIONS(503), + [anon_sym_union] = ACTIONS(475), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(505), + [anon_sym_move] = ACTIONS(507), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [48] = { + [sym_bracketed_type] = STATE(4005), + [sym_generic_function] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3402), + [sym__expression_except_range] = STATE(1901), + [sym__expression] = STATE(1905), + [sym_macro_invocation] = STATE(1963), + [sym_scoped_identifier] = STATE(1832), + [sym_scoped_type_identifier_in_expression_position] = STATE(3592), + [sym_range_expression] = STATE(1960), + [sym_unary_expression] = STATE(1957), + [sym_try_expression] = STATE(1957), + [sym_reference_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_assignment_expression] = STATE(1957), + [sym_compound_assignment_expr] = STATE(1957), + [sym_type_cast_expression] = STATE(1957), + [sym_return_expression] = STATE(1957), + [sym_yield_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_array_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_tuple_expression] = STATE(1957), + [sym_unit_expression] = STATE(1957), + [sym_struct_expression] = STATE(1957), + [sym_if_expression] = STATE(1957), + [sym_match_expression] = STATE(1957), + [sym_while_expression] = STATE(1957), + [sym_loop_expression] = STATE(1957), + [sym_for_expression] = STATE(1957), + [sym_const_block] = STATE(1957), + [sym_closure_expression] = STATE(1957), + [sym_closure_parameters] = STATE(235), + [sym_label] = STATE(4110), + [sym_break_expression] = STATE(1957), + [sym_continue_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_await_expression] = STATE(1957), + [sym_field_expression] = STATE(1898), + [sym_unsafe_block] = STATE(1957), + [sym_async_block] = STATE(1957), + [sym_gen_block] = STATE(1957), + [sym_try_block] = STATE(1957), + [sym_block] = STATE(1957), + [sym__literal] = STATE(1957), + [sym_string_literal] = STATE(1932), + [sym_raw_string_literal] = STATE(1932), + [sym_boolean_literal] = STATE(1932), + [sym_line_comment] = STATE(48), + [sym_block_comment] = STATE(48), [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_LBRACK] = ACTIONS(387), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_EQ_GT] = ACTIONS(401), - [anon_sym_PLUS] = ACTIONS(403), - [anon_sym_STAR] = ACTIONS(413), - [anon_sym_QMARK] = ACTIONS(401), + [anon_sym_EQ_GT] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_STAR] = ACTIONS(389), + [anon_sym_QMARK] = ACTIONS(387), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -20972,41 +22477,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(411), [anon_sym_str] = ACTIONS(411), [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(413), - [anon_sym_SLASH] = ACTIONS(403), - [anon_sym_PERCENT] = ACTIONS(403), - [anon_sym_CARET] = ACTIONS(403), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_SLASH] = ACTIONS(389), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_CARET] = ACTIONS(389), [anon_sym_BANG] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(499), - [anon_sym_PIPE] = ACTIONS(381), - [anon_sym_AMP_AMP] = ACTIONS(401), - [anon_sym_PIPE_PIPE] = ACTIONS(401), - [anon_sym_LT_LT] = ACTIONS(403), - [anon_sym_GT_GT] = ACTIONS(403), - [anon_sym_PLUS_EQ] = ACTIONS(401), - [anon_sym_DASH_EQ] = ACTIONS(401), - [anon_sym_STAR_EQ] = ACTIONS(401), - [anon_sym_SLASH_EQ] = ACTIONS(401), - [anon_sym_PERCENT_EQ] = ACTIONS(401), - [anon_sym_CARET_EQ] = ACTIONS(401), - [anon_sym_AMP_EQ] = ACTIONS(401), - [anon_sym_PIPE_EQ] = ACTIONS(401), - [anon_sym_LT_LT_EQ] = ACTIONS(401), - [anon_sym_GT_GT_EQ] = ACTIONS(401), - [anon_sym_EQ] = ACTIONS(403), - [anon_sym_EQ_EQ] = ACTIONS(401), - [anon_sym_BANG_EQ] = ACTIONS(401), - [anon_sym_GT] = ACTIONS(403), - [anon_sym_LT] = ACTIONS(383), - [anon_sym_GT_EQ] = ACTIONS(401), - [anon_sym_LT_EQ] = ACTIONS(401), - [anon_sym_DOT] = ACTIONS(403), - [anon_sym_DOT_DOT] = ACTIONS(501), - [anon_sym_DOT_DOT_DOT] = ACTIONS(401), - [anon_sym_DOT_DOT_EQ] = ACTIONS(401), + [anon_sym_AMP] = ACTIONS(389), + [anon_sym_PIPE] = ACTIONS(389), + [anon_sym_AMP_AMP] = ACTIONS(387), + [anon_sym_PIPE_PIPE] = ACTIONS(387), + [anon_sym_LT_LT] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(389), + [anon_sym_PLUS_EQ] = ACTIONS(387), + [anon_sym_DASH_EQ] = ACTIONS(387), + [anon_sym_STAR_EQ] = ACTIONS(387), + [anon_sym_SLASH_EQ] = ACTIONS(387), + [anon_sym_PERCENT_EQ] = ACTIONS(387), + [anon_sym_CARET_EQ] = ACTIONS(387), + [anon_sym_AMP_EQ] = ACTIONS(387), + [anon_sym_PIPE_EQ] = ACTIONS(387), + [anon_sym_LT_LT_EQ] = ACTIONS(387), + [anon_sym_GT_GT_EQ] = ACTIONS(387), + [anon_sym_EQ] = ACTIONS(389), + [anon_sym_EQ_EQ] = ACTIONS(387), + [anon_sym_BANG_EQ] = ACTIONS(387), + [anon_sym_GT] = ACTIONS(389), + [anon_sym_LT] = ACTIONS(389), + [anon_sym_GT_EQ] = ACTIONS(387), + [anon_sym_LT_EQ] = ACTIONS(387), + [anon_sym_DOT] = ACTIONS(389), + [anon_sym_DOT_DOT] = ACTIONS(389), + [anon_sym_DOT_DOT_DOT] = ACTIONS(387), + [anon_sym_DOT_DOT_EQ] = ACTIONS(387), [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(403), + [anon_sym_as] = ACTIONS(389), [anon_sym_async] = ACTIONS(417), [anon_sym_break] = ACTIONS(419), [anon_sym_const] = ACTIONS(421), @@ -21039,58 +22544,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(463), [sym_float_literal] = ACTIONS(451), }, - [48] = { - [sym_bracketed_type] = STATE(3529), - [sym_generic_function] = STATE(1664), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1626), - [sym__expression] = STATE(1680), - [sym_macro_invocation] = STATE(1671), - [sym_scoped_identifier] = STATE(1575), - [sym_scoped_type_identifier_in_expression_position] = STATE(3163), - [sym_range_expression] = STATE(1666), - [sym_unary_expression] = STATE(1664), - [sym_try_expression] = STATE(1664), - [sym_reference_expression] = STATE(1664), - [sym_binary_expression] = STATE(1664), - [sym_assignment_expression] = STATE(1664), - [sym_compound_assignment_expr] = STATE(1664), - [sym_type_cast_expression] = STATE(1664), - [sym_return_expression] = STATE(1664), - [sym_yield_expression] = STATE(1664), - [sym_call_expression] = STATE(1664), - [sym_array_expression] = STATE(1664), - [sym_parenthesized_expression] = STATE(1664), - [sym_tuple_expression] = STATE(1664), - [sym_unit_expression] = STATE(1664), - [sym_struct_expression] = STATE(1664), - [sym_if_expression] = STATE(1664), - [sym_match_expression] = STATE(1664), - [sym_while_expression] = STATE(1664), - [sym_loop_expression] = STATE(1664), - [sym_for_expression] = STATE(1664), - [sym_const_block] = STATE(1664), - [sym_closure_expression] = STATE(1664), - [sym_closure_parameters] = STATE(232), - [sym_label] = STATE(3614), - [sym_break_expression] = STATE(1664), - [sym_continue_expression] = STATE(1664), - [sym_index_expression] = STATE(1664), - [sym_await_expression] = STATE(1664), - [sym_field_expression] = STATE(1597), - [sym_unsafe_block] = STATE(1664), - [sym_async_block] = STATE(1664), - [sym_gen_block] = STATE(1664), - [sym_try_block] = STATE(1664), - [sym_block] = STATE(1664), - [sym__literal] = STATE(1664), - [sym_string_literal] = STATE(1786), - [sym_raw_string_literal] = STATE(1786), - [sym_boolean_literal] = STATE(1786), - [sym_line_comment] = STATE(48), - [sym_block_comment] = STATE(48), + [49] = { + [sym_bracketed_type] = STATE(4005), + [sym_generic_function] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3402), + [sym__expression_except_range] = STATE(1901), + [sym__expression] = STATE(1992), + [sym_macro_invocation] = STATE(1963), + [sym_scoped_identifier] = STATE(1832), + [sym_scoped_type_identifier_in_expression_position] = STATE(3592), + [sym_range_expression] = STATE(1960), + [sym_unary_expression] = STATE(1957), + [sym_try_expression] = STATE(1957), + [sym_reference_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_assignment_expression] = STATE(1957), + [sym_compound_assignment_expr] = STATE(1957), + [sym_type_cast_expression] = STATE(1957), + [sym_return_expression] = STATE(1957), + [sym_yield_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_array_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_tuple_expression] = STATE(1957), + [sym_unit_expression] = STATE(1957), + [sym_struct_expression] = STATE(1957), + [sym_if_expression] = STATE(1957), + [sym_match_expression] = STATE(1957), + [sym_while_expression] = STATE(1957), + [sym_loop_expression] = STATE(1957), + [sym_for_expression] = STATE(1957), + [sym_const_block] = STATE(1957), + [sym_closure_expression] = STATE(1957), + [sym_closure_parameters] = STATE(235), + [sym_label] = STATE(43), + [sym_break_expression] = STATE(1957), + [sym_continue_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_await_expression] = STATE(1957), + [sym_field_expression] = STATE(1898), + [sym_unsafe_block] = STATE(1957), + [sym_async_block] = STATE(1957), + [sym_gen_block] = STATE(1957), + [sym_try_block] = STATE(1957), + [sym_block] = STATE(1957), + [sym__literal] = STATE(1957), + [sym_string_literal] = STATE(1932), + [sym_raw_string_literal] = STATE(1932), + [sym_boolean_literal] = STATE(1932), + [sym_line_comment] = STATE(49), + [sym_block_comment] = STATE(49), [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), + [anon_sym_LPAREN] = ACTIONS(391), [anon_sym_LBRACK] = ACTIONS(391), [anon_sym_LBRACE] = ACTIONS(407), [anon_sym_EQ_GT] = ACTIONS(391), @@ -21147,7 +22652,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(391), [anon_sym_DOT_DOT_EQ] = ACTIONS(391), [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_SQUOTE] = ACTIONS(511), [anon_sym_as] = ACTIONS(393), [anon_sym_async] = ACTIONS(417), [anon_sym_break] = ACTIONS(419), @@ -21181,64 +22686,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(463), [sym_float_literal] = ACTIONS(451), }, - [49] = { - [sym_bracketed_type] = STATE(3529), - [sym_generic_function] = STATE(1664), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1626), - [sym__expression] = STATE(1863), - [sym_macro_invocation] = STATE(1671), - [sym_scoped_identifier] = STATE(1575), - [sym_scoped_type_identifier_in_expression_position] = STATE(3163), - [sym_range_expression] = STATE(1666), - [sym_unary_expression] = STATE(1664), - [sym_try_expression] = STATE(1664), - [sym_reference_expression] = STATE(1664), - [sym_binary_expression] = STATE(1664), - [sym_assignment_expression] = STATE(1664), - [sym_compound_assignment_expr] = STATE(1664), - [sym_type_cast_expression] = STATE(1664), - [sym_return_expression] = STATE(1664), - [sym_yield_expression] = STATE(1664), - [sym_call_expression] = STATE(1664), - [sym_array_expression] = STATE(1664), - [sym_parenthesized_expression] = STATE(1664), - [sym_tuple_expression] = STATE(1664), - [sym_unit_expression] = STATE(1664), - [sym_struct_expression] = STATE(1664), - [sym_if_expression] = STATE(1664), - [sym_match_expression] = STATE(1664), - [sym_while_expression] = STATE(1664), - [sym_loop_expression] = STATE(1664), - [sym_for_expression] = STATE(1664), - [sym_const_block] = STATE(1664), - [sym_closure_expression] = STATE(1664), - [sym_closure_parameters] = STATE(232), - [sym_label] = STATE(3614), - [sym_break_expression] = STATE(1664), - [sym_continue_expression] = STATE(1664), - [sym_index_expression] = STATE(1664), - [sym_await_expression] = STATE(1664), - [sym_field_expression] = STATE(1597), - [sym_unsafe_block] = STATE(1664), - [sym_async_block] = STATE(1664), - [sym_gen_block] = STATE(1664), - [sym_try_block] = STATE(1664), - [sym_block] = STATE(1664), - [sym__literal] = STATE(1664), - [sym_string_literal] = STATE(1786), - [sym_raw_string_literal] = STATE(1786), - [sym_boolean_literal] = STATE(1786), - [sym_line_comment] = STATE(49), - [sym_block_comment] = STATE(49), + [50] = { + [sym_bracketed_type] = STATE(4005), + [sym_generic_function] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3402), + [sym__expression_except_range] = STATE(1901), + [sym__expression] = STATE(2004), + [sym_macro_invocation] = STATE(1963), + [sym_scoped_identifier] = STATE(1832), + [sym_scoped_type_identifier_in_expression_position] = STATE(3592), + [sym_range_expression] = STATE(1960), + [sym_unary_expression] = STATE(1957), + [sym_try_expression] = STATE(1957), + [sym_reference_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_assignment_expression] = STATE(1957), + [sym_compound_assignment_expr] = STATE(1957), + [sym_type_cast_expression] = STATE(1957), + [sym_return_expression] = STATE(1957), + [sym_yield_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_array_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_tuple_expression] = STATE(1957), + [sym_unit_expression] = STATE(1957), + [sym_struct_expression] = STATE(1957), + [sym_if_expression] = STATE(1957), + [sym_match_expression] = STATE(1957), + [sym_while_expression] = STATE(1957), + [sym_loop_expression] = STATE(1957), + [sym_for_expression] = STATE(1957), + [sym_const_block] = STATE(1957), + [sym_closure_expression] = STATE(1957), + [sym_closure_parameters] = STATE(235), + [sym_label] = STATE(4110), + [sym_break_expression] = STATE(1957), + [sym_continue_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_await_expression] = STATE(1957), + [sym_field_expression] = STATE(1898), + [sym_unsafe_block] = STATE(1957), + [sym_async_block] = STATE(1957), + [sym_gen_block] = STATE(1957), + [sym_try_block] = STATE(1957), + [sym_block] = STATE(1957), + [sym__literal] = STATE(1957), + [sym_string_literal] = STATE(1932), + [sym_raw_string_literal] = STATE(1932), + [sym_boolean_literal] = STATE(1932), + [sym_line_comment] = STATE(50), + [sym_block_comment] = STATE(50), [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_LBRACK] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_EQ_GT] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_STAR] = ACTIONS(389), - [anon_sym_QMARK] = ACTIONS(387), + [anon_sym_EQ_GT] = ACTIONS(397), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_STAR] = ACTIONS(413), + [anon_sym_QMARK] = ACTIONS(397), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -21256,41 +22761,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(411), [anon_sym_str] = ACTIONS(411), [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_SLASH] = ACTIONS(389), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_CARET] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(413), + [anon_sym_SLASH] = ACTIONS(399), + [anon_sym_PERCENT] = ACTIONS(399), + [anon_sym_CARET] = ACTIONS(399), [anon_sym_BANG] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(389), - [anon_sym_PIPE] = ACTIONS(389), - [anon_sym_AMP_AMP] = ACTIONS(387), - [anon_sym_PIPE_PIPE] = ACTIONS(387), - [anon_sym_LT_LT] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(389), - [anon_sym_PLUS_EQ] = ACTIONS(387), - [anon_sym_DASH_EQ] = ACTIONS(387), - [anon_sym_STAR_EQ] = ACTIONS(387), - [anon_sym_SLASH_EQ] = ACTIONS(387), - [anon_sym_PERCENT_EQ] = ACTIONS(387), - [anon_sym_CARET_EQ] = ACTIONS(387), - [anon_sym_AMP_EQ] = ACTIONS(387), - [anon_sym_PIPE_EQ] = ACTIONS(387), - [anon_sym_LT_LT_EQ] = ACTIONS(387), - [anon_sym_GT_GT_EQ] = ACTIONS(387), - [anon_sym_EQ] = ACTIONS(389), - [anon_sym_EQ_EQ] = ACTIONS(387), - [anon_sym_BANG_EQ] = ACTIONS(387), - [anon_sym_GT] = ACTIONS(389), - [anon_sym_LT] = ACTIONS(389), - [anon_sym_GT_EQ] = ACTIONS(387), - [anon_sym_LT_EQ] = ACTIONS(387), - [anon_sym_DOT] = ACTIONS(389), - [anon_sym_DOT_DOT] = ACTIONS(389), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [anon_sym_DOT_DOT_EQ] = ACTIONS(387), + [anon_sym_AMP] = ACTIONS(515), + [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_AMP_AMP] = ACTIONS(397), + [anon_sym_PIPE_PIPE] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(399), + [anon_sym_PLUS_EQ] = ACTIONS(397), + [anon_sym_DASH_EQ] = ACTIONS(397), + [anon_sym_STAR_EQ] = ACTIONS(397), + [anon_sym_SLASH_EQ] = ACTIONS(397), + [anon_sym_PERCENT_EQ] = ACTIONS(397), + [anon_sym_CARET_EQ] = ACTIONS(397), + [anon_sym_AMP_EQ] = ACTIONS(397), + [anon_sym_PIPE_EQ] = ACTIONS(397), + [anon_sym_LT_LT_EQ] = ACTIONS(397), + [anon_sym_GT_GT_EQ] = ACTIONS(397), + [anon_sym_EQ] = ACTIONS(399), + [anon_sym_EQ_EQ] = ACTIONS(397), + [anon_sym_BANG_EQ] = ACTIONS(397), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_LT] = ACTIONS(383), + [anon_sym_GT_EQ] = ACTIONS(397), + [anon_sym_LT_EQ] = ACTIONS(397), + [anon_sym_DOT] = ACTIONS(399), + [anon_sym_DOT_DOT] = ACTIONS(517), + [anon_sym_DOT_DOT_DOT] = ACTIONS(397), + [anon_sym_DOT_DOT_EQ] = ACTIONS(397), [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(389), + [anon_sym_as] = ACTIONS(399), [anon_sym_async] = ACTIONS(417), [anon_sym_break] = ACTIONS(419), [anon_sym_const] = ACTIONS(421), @@ -21323,64 +22828,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(463), [sym_float_literal] = ACTIONS(451), }, - [50] = { - [sym_bracketed_type] = STATE(3529), - [sym_generic_function] = STATE(1664), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1626), - [sym__expression] = STATE(1680), - [sym_macro_invocation] = STATE(1671), - [sym_scoped_identifier] = STATE(1575), - [sym_scoped_type_identifier_in_expression_position] = STATE(3163), - [sym_range_expression] = STATE(1666), - [sym_unary_expression] = STATE(1664), - [sym_try_expression] = STATE(1664), - [sym_reference_expression] = STATE(1664), - [sym_binary_expression] = STATE(1664), - [sym_assignment_expression] = STATE(1664), - [sym_compound_assignment_expr] = STATE(1664), - [sym_type_cast_expression] = STATE(1664), - [sym_return_expression] = STATE(1664), - [sym_yield_expression] = STATE(1664), - [sym_call_expression] = STATE(1664), - [sym_array_expression] = STATE(1664), - [sym_parenthesized_expression] = STATE(1664), - [sym_tuple_expression] = STATE(1664), - [sym_unit_expression] = STATE(1664), - [sym_struct_expression] = STATE(1664), - [sym_if_expression] = STATE(1664), - [sym_match_expression] = STATE(1664), - [sym_while_expression] = STATE(1664), - [sym_loop_expression] = STATE(1664), - [sym_for_expression] = STATE(1664), - [sym_const_block] = STATE(1664), - [sym_closure_expression] = STATE(1664), - [sym_closure_parameters] = STATE(232), - [sym_label] = STATE(3614), - [sym_break_expression] = STATE(1664), - [sym_continue_expression] = STATE(1664), - [sym_index_expression] = STATE(1664), - [sym_await_expression] = STATE(1664), - [sym_field_expression] = STATE(1597), - [sym_unsafe_block] = STATE(1664), - [sym_async_block] = STATE(1664), - [sym_gen_block] = STATE(1664), - [sym_try_block] = STATE(1664), - [sym_block] = STATE(1664), - [sym__literal] = STATE(1664), - [sym_string_literal] = STATE(1786), - [sym_raw_string_literal] = STATE(1786), - [sym_boolean_literal] = STATE(1786), - [sym_line_comment] = STATE(50), - [sym_block_comment] = STATE(50), + [51] = { + [sym_bracketed_type] = STATE(4005), + [sym_generic_function] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3402), + [sym__expression_except_range] = STATE(1901), + [sym__expression] = STATE(1987), + [sym_macro_invocation] = STATE(1963), + [sym_scoped_identifier] = STATE(1832), + [sym_scoped_type_identifier_in_expression_position] = STATE(3592), + [sym_range_expression] = STATE(1960), + [sym_unary_expression] = STATE(1957), + [sym_try_expression] = STATE(1957), + [sym_reference_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_assignment_expression] = STATE(1957), + [sym_compound_assignment_expr] = STATE(1957), + [sym_type_cast_expression] = STATE(1957), + [sym_return_expression] = STATE(1957), + [sym_yield_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_array_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_tuple_expression] = STATE(1957), + [sym_unit_expression] = STATE(1957), + [sym_struct_expression] = STATE(1957), + [sym_if_expression] = STATE(1957), + [sym_match_expression] = STATE(1957), + [sym_while_expression] = STATE(1957), + [sym_loop_expression] = STATE(1957), + [sym_for_expression] = STATE(1957), + [sym_const_block] = STATE(1957), + [sym_closure_expression] = STATE(1957), + [sym_closure_parameters] = STATE(235), + [sym_label] = STATE(4110), + [sym_break_expression] = STATE(1957), + [sym_continue_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_await_expression] = STATE(1957), + [sym_field_expression] = STATE(1898), + [sym_unsafe_block] = STATE(1957), + [sym_async_block] = STATE(1957), + [sym_gen_block] = STATE(1957), + [sym_try_block] = STATE(1957), + [sym_block] = STATE(1957), + [sym__literal] = STATE(1957), + [sym_string_literal] = STATE(1932), + [sym_raw_string_literal] = STATE(1932), + [sym_boolean_literal] = STATE(1932), + [sym_line_comment] = STATE(51), + [sym_block_comment] = STATE(51), [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_LBRACK] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_LBRACK] = ACTIONS(401), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_EQ_GT] = ACTIONS(391), - [anon_sym_PLUS] = ACTIONS(393), - [anon_sym_STAR] = ACTIONS(393), - [anon_sym_QMARK] = ACTIONS(391), + [anon_sym_EQ_GT] = ACTIONS(401), + [anon_sym_PLUS] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(403), + [anon_sym_QMARK] = ACTIONS(401), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -21398,41 +22903,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(411), [anon_sym_str] = ACTIONS(411), [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(393), - [anon_sym_SLASH] = ACTIONS(393), - [anon_sym_PERCENT] = ACTIONS(393), - [anon_sym_CARET] = ACTIONS(393), + [anon_sym_DASH] = ACTIONS(403), + [anon_sym_SLASH] = ACTIONS(403), + [anon_sym_PERCENT] = ACTIONS(403), + [anon_sym_CARET] = ACTIONS(403), [anon_sym_BANG] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(393), - [anon_sym_PIPE] = ACTIONS(393), - [anon_sym_AMP_AMP] = ACTIONS(391), - [anon_sym_PIPE_PIPE] = ACTIONS(391), - [anon_sym_LT_LT] = ACTIONS(393), - [anon_sym_GT_GT] = ACTIONS(393), - [anon_sym_PLUS_EQ] = ACTIONS(391), - [anon_sym_DASH_EQ] = ACTIONS(391), - [anon_sym_STAR_EQ] = ACTIONS(391), - [anon_sym_SLASH_EQ] = ACTIONS(391), - [anon_sym_PERCENT_EQ] = ACTIONS(391), - [anon_sym_CARET_EQ] = ACTIONS(391), - [anon_sym_AMP_EQ] = ACTIONS(391), - [anon_sym_PIPE_EQ] = ACTIONS(391), - [anon_sym_LT_LT_EQ] = ACTIONS(391), - [anon_sym_GT_GT_EQ] = ACTIONS(391), - [anon_sym_EQ] = ACTIONS(393), - [anon_sym_EQ_EQ] = ACTIONS(391), - [anon_sym_BANG_EQ] = ACTIONS(391), - [anon_sym_GT] = ACTIONS(393), - [anon_sym_LT] = ACTIONS(393), - [anon_sym_GT_EQ] = ACTIONS(391), - [anon_sym_LT_EQ] = ACTIONS(391), - [anon_sym_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(391), - [anon_sym_DOT_DOT_EQ] = ACTIONS(391), + [anon_sym_AMP] = ACTIONS(403), + [anon_sym_PIPE] = ACTIONS(403), + [anon_sym_AMP_AMP] = ACTIONS(401), + [anon_sym_PIPE_PIPE] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_GT_GT] = ACTIONS(403), + [anon_sym_PLUS_EQ] = ACTIONS(401), + [anon_sym_DASH_EQ] = ACTIONS(401), + [anon_sym_STAR_EQ] = ACTIONS(401), + [anon_sym_SLASH_EQ] = ACTIONS(401), + [anon_sym_PERCENT_EQ] = ACTIONS(401), + [anon_sym_CARET_EQ] = ACTIONS(401), + [anon_sym_AMP_EQ] = ACTIONS(401), + [anon_sym_PIPE_EQ] = ACTIONS(401), + [anon_sym_LT_LT_EQ] = ACTIONS(401), + [anon_sym_GT_GT_EQ] = ACTIONS(401), + [anon_sym_EQ] = ACTIONS(403), + [anon_sym_EQ_EQ] = ACTIONS(401), + [anon_sym_BANG_EQ] = ACTIONS(401), + [anon_sym_GT] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(403), + [anon_sym_GT_EQ] = ACTIONS(401), + [anon_sym_LT_EQ] = ACTIONS(401), + [anon_sym_DOT] = ACTIONS(403), + [anon_sym_DOT_DOT] = ACTIONS(403), + [anon_sym_DOT_DOT_DOT] = ACTIONS(401), + [anon_sym_DOT_DOT_EQ] = ACTIONS(401), [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(393), + [anon_sym_as] = ACTIONS(403), [anon_sym_async] = ACTIONS(417), [anon_sym_break] = ACTIONS(419), [anon_sym_const] = ACTIONS(421), @@ -21465,64 +22970,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(463), [sym_float_literal] = ACTIONS(451), }, - [51] = { - [sym_bracketed_type] = STATE(3529), - [sym_generic_function] = STATE(1664), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1626), - [sym__expression] = STATE(1863), - [sym_macro_invocation] = STATE(1671), - [sym_scoped_identifier] = STATE(1575), - [sym_scoped_type_identifier_in_expression_position] = STATE(3163), - [sym_range_expression] = STATE(1666), - [sym_unary_expression] = STATE(1664), - [sym_try_expression] = STATE(1664), - [sym_reference_expression] = STATE(1664), - [sym_binary_expression] = STATE(1664), - [sym_assignment_expression] = STATE(1664), - [sym_compound_assignment_expr] = STATE(1664), - [sym_type_cast_expression] = STATE(1664), - [sym_return_expression] = STATE(1664), - [sym_yield_expression] = STATE(1664), - [sym_call_expression] = STATE(1664), - [sym_array_expression] = STATE(1664), - [sym_parenthesized_expression] = STATE(1664), - [sym_tuple_expression] = STATE(1664), - [sym_unit_expression] = STATE(1664), - [sym_struct_expression] = STATE(1664), - [sym_if_expression] = STATE(1664), - [sym_match_expression] = STATE(1664), - [sym_while_expression] = STATE(1664), - [sym_loop_expression] = STATE(1664), - [sym_for_expression] = STATE(1664), - [sym_const_block] = STATE(1664), - [sym_closure_expression] = STATE(1664), - [sym_closure_parameters] = STATE(232), - [sym_label] = STATE(3614), - [sym_break_expression] = STATE(1664), - [sym_continue_expression] = STATE(1664), - [sym_index_expression] = STATE(1664), - [sym_await_expression] = STATE(1664), - [sym_field_expression] = STATE(1597), - [sym_unsafe_block] = STATE(1664), - [sym_async_block] = STATE(1664), - [sym_gen_block] = STATE(1664), - [sym_try_block] = STATE(1664), - [sym_block] = STATE(1664), - [sym__literal] = STATE(1664), - [sym_string_literal] = STATE(1786), - [sym_raw_string_literal] = STATE(1786), - [sym_boolean_literal] = STATE(1786), - [sym_line_comment] = STATE(51), - [sym_block_comment] = STATE(51), + [52] = { + [sym_bracketed_type] = STATE(4005), + [sym_generic_function] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3402), + [sym__expression_except_range] = STATE(1901), + [sym__expression] = STATE(2001), + [sym_macro_invocation] = STATE(1963), + [sym_scoped_identifier] = STATE(1832), + [sym_scoped_type_identifier_in_expression_position] = STATE(3592), + [sym_range_expression] = STATE(1960), + [sym_unary_expression] = STATE(1957), + [sym_try_expression] = STATE(1957), + [sym_reference_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_assignment_expression] = STATE(1957), + [sym_compound_assignment_expr] = STATE(1957), + [sym_type_cast_expression] = STATE(1957), + [sym_return_expression] = STATE(1957), + [sym_yield_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_array_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_tuple_expression] = STATE(1957), + [sym_unit_expression] = STATE(1957), + [sym_struct_expression] = STATE(1957), + [sym_if_expression] = STATE(1957), + [sym_match_expression] = STATE(1957), + [sym_while_expression] = STATE(1957), + [sym_loop_expression] = STATE(1957), + [sym_for_expression] = STATE(1957), + [sym_const_block] = STATE(1957), + [sym_closure_expression] = STATE(1957), + [sym_closure_parameters] = STATE(235), + [sym_label] = STATE(4110), + [sym_break_expression] = STATE(1957), + [sym_continue_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_await_expression] = STATE(1957), + [sym_field_expression] = STATE(1898), + [sym_unsafe_block] = STATE(1957), + [sym_async_block] = STATE(1957), + [sym_gen_block] = STATE(1957), + [sym_try_block] = STATE(1957), + [sym_block] = STATE(1957), + [sym__literal] = STATE(1957), + [sym_string_literal] = STATE(1932), + [sym_raw_string_literal] = STATE(1932), + [sym_boolean_literal] = STATE(1932), + [sym_line_comment] = STATE(52), + [sym_block_comment] = STATE(52), [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(387), - [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_LBRACK] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_EQ_GT] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_STAR] = ACTIONS(389), - [anon_sym_QMARK] = ACTIONS(387), + [anon_sym_EQ_GT] = ACTIONS(375), + [anon_sym_PLUS] = ACTIONS(377), + [anon_sym_STAR] = ACTIONS(413), + [anon_sym_QMARK] = ACTIONS(375), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -21540,41 +23045,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(411), [anon_sym_str] = ACTIONS(411), [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_SLASH] = ACTIONS(389), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_CARET] = ACTIONS(389), + [anon_sym_DASH] = ACTIONS(413), + [anon_sym_SLASH] = ACTIONS(377), + [anon_sym_PERCENT] = ACTIONS(377), + [anon_sym_CARET] = ACTIONS(377), [anon_sym_BANG] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(389), - [anon_sym_PIPE] = ACTIONS(389), - [anon_sym_AMP_AMP] = ACTIONS(387), - [anon_sym_PIPE_PIPE] = ACTIONS(387), - [anon_sym_LT_LT] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(389), - [anon_sym_PLUS_EQ] = ACTIONS(387), - [anon_sym_DASH_EQ] = ACTIONS(387), - [anon_sym_STAR_EQ] = ACTIONS(387), - [anon_sym_SLASH_EQ] = ACTIONS(387), - [anon_sym_PERCENT_EQ] = ACTIONS(387), - [anon_sym_CARET_EQ] = ACTIONS(387), - [anon_sym_AMP_EQ] = ACTIONS(387), - [anon_sym_PIPE_EQ] = ACTIONS(387), - [anon_sym_LT_LT_EQ] = ACTIONS(387), - [anon_sym_GT_GT_EQ] = ACTIONS(387), - [anon_sym_EQ] = ACTIONS(389), - [anon_sym_EQ_EQ] = ACTIONS(387), - [anon_sym_BANG_EQ] = ACTIONS(387), - [anon_sym_GT] = ACTIONS(389), - [anon_sym_LT] = ACTIONS(389), - [anon_sym_GT_EQ] = ACTIONS(387), - [anon_sym_LT_EQ] = ACTIONS(387), - [anon_sym_DOT] = ACTIONS(389), - [anon_sym_DOT_DOT] = ACTIONS(389), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [anon_sym_DOT_DOT_EQ] = ACTIONS(387), + [anon_sym_AMP] = ACTIONS(515), + [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_AMP_AMP] = ACTIONS(375), + [anon_sym_PIPE_PIPE] = ACTIONS(375), + [anon_sym_LT_LT] = ACTIONS(377), + [anon_sym_GT_GT] = ACTIONS(377), + [anon_sym_PLUS_EQ] = ACTIONS(375), + [anon_sym_DASH_EQ] = ACTIONS(375), + [anon_sym_STAR_EQ] = ACTIONS(375), + [anon_sym_SLASH_EQ] = ACTIONS(375), + [anon_sym_PERCENT_EQ] = ACTIONS(375), + [anon_sym_CARET_EQ] = ACTIONS(375), + [anon_sym_AMP_EQ] = ACTIONS(375), + [anon_sym_PIPE_EQ] = ACTIONS(375), + [anon_sym_LT_LT_EQ] = ACTIONS(375), + [anon_sym_GT_GT_EQ] = ACTIONS(375), + [anon_sym_EQ] = ACTIONS(377), + [anon_sym_EQ_EQ] = ACTIONS(375), + [anon_sym_BANG_EQ] = ACTIONS(375), + [anon_sym_GT] = ACTIONS(377), + [anon_sym_LT] = ACTIONS(383), + [anon_sym_GT_EQ] = ACTIONS(375), + [anon_sym_LT_EQ] = ACTIONS(375), + [anon_sym_DOT] = ACTIONS(377), + [anon_sym_DOT_DOT] = ACTIONS(517), + [anon_sym_DOT_DOT_DOT] = ACTIONS(375), + [anon_sym_DOT_DOT_EQ] = ACTIONS(375), [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(389), + [anon_sym_as] = ACTIONS(377), [anon_sym_async] = ACTIONS(417), [anon_sym_break] = ACTIONS(419), [anon_sym_const] = ACTIONS(421), @@ -21607,133 +23112,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(463), [sym_float_literal] = ACTIONS(451), }, - [52] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1621), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(52), - [sym_block_comment] = STATE(52), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(341), - [anon_sym_LBRACK] = ACTIONS(341), - [anon_sym_LBRACE] = ACTIONS(341), - [anon_sym_COLON] = ACTIONS(345), - [anon_sym_PLUS] = ACTIONS(347), - [anon_sym_STAR] = ACTIONS(347), - [anon_sym_QMARK] = ACTIONS(341), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(347), - [anon_sym_SLASH] = ACTIONS(347), - [anon_sym_PERCENT] = ACTIONS(347), - [anon_sym_CARET] = ACTIONS(347), - [anon_sym_BANG] = ACTIONS(503), - [anon_sym_AMP] = ACTIONS(347), - [anon_sym_PIPE] = ACTIONS(347), - [anon_sym_AMP_AMP] = ACTIONS(341), - [anon_sym_PIPE_PIPE] = ACTIONS(341), - [anon_sym_LT_LT] = ACTIONS(347), - [anon_sym_GT_GT] = ACTIONS(347), - [anon_sym_PLUS_EQ] = ACTIONS(341), - [anon_sym_DASH_EQ] = ACTIONS(341), - [anon_sym_STAR_EQ] = ACTIONS(341), - [anon_sym_SLASH_EQ] = ACTIONS(341), - [anon_sym_PERCENT_EQ] = ACTIONS(341), - [anon_sym_CARET_EQ] = ACTIONS(341), - [anon_sym_AMP_EQ] = ACTIONS(341), - [anon_sym_PIPE_EQ] = ACTIONS(341), - [anon_sym_LT_LT_EQ] = ACTIONS(341), - [anon_sym_GT_GT_EQ] = ACTIONS(341), - [anon_sym_EQ] = ACTIONS(347), - [anon_sym_EQ_EQ] = ACTIONS(341), - [anon_sym_BANG_EQ] = ACTIONS(341), - [anon_sym_GT] = ACTIONS(347), - [anon_sym_LT] = ACTIONS(347), - [anon_sym_GT_EQ] = ACTIONS(341), - [anon_sym_LT_EQ] = ACTIONS(341), - [anon_sym_DOT] = ACTIONS(347), - [anon_sym_DOT_DOT] = ACTIONS(347), - [anon_sym_DOT_DOT_DOT] = ACTIONS(341), - [anon_sym_DOT_DOT_EQ] = ACTIONS(341), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(347), - [anon_sym_as] = ACTIONS(347), + [53] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3303), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1928), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1794), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(53), + [sym_block_comment] = STATE(53), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_STAR] = ACTIONS(469), + [anon_sym_QMARK] = ACTIONS(397), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_SLASH] = ACTIONS(399), + [anon_sym_PERCENT] = ACTIONS(399), + [anon_sym_CARET] = ACTIONS(399), + [anon_sym_BANG] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(519), + [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_AMP_AMP] = ACTIONS(397), + [anon_sym_PIPE_PIPE] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(399), + [anon_sym_PLUS_EQ] = ACTIONS(397), + [anon_sym_DASH_EQ] = ACTIONS(397), + [anon_sym_STAR_EQ] = ACTIONS(397), + [anon_sym_SLASH_EQ] = ACTIONS(397), + [anon_sym_PERCENT_EQ] = ACTIONS(397), + [anon_sym_CARET_EQ] = ACTIONS(397), + [anon_sym_AMP_EQ] = ACTIONS(397), + [anon_sym_PIPE_EQ] = ACTIONS(397), + [anon_sym_LT_LT_EQ] = ACTIONS(397), + [anon_sym_GT_GT_EQ] = ACTIONS(397), + [anon_sym_EQ] = ACTIONS(399), + [anon_sym_EQ_EQ] = ACTIONS(397), + [anon_sym_BANG_EQ] = ACTIONS(397), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_LT] = ACTIONS(383), + [anon_sym_GT_EQ] = ACTIONS(397), + [anon_sym_LT_EQ] = ACTIONS(397), + [anon_sym_DOT] = ACTIONS(399), + [anon_sym_DOT_DOT] = ACTIONS(521), + [anon_sym_DOT_DOT_DOT] = ACTIONS(397), + [anon_sym_DOT_DOT_EQ] = ACTIONS(397), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(399), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(477), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -21742,139 +23246,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [53] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1609), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(53), - [sym_block_comment] = STATE(53), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_PLUS] = ACTIONS(377), - [anon_sym_STAR] = ACTIONS(503), - [anon_sym_QMARK] = ACTIONS(375), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(503), - [anon_sym_SLASH] = ACTIONS(377), - [anon_sym_PERCENT] = ACTIONS(377), - [anon_sym_CARET] = ACTIONS(377), - [anon_sym_BANG] = ACTIONS(503), - [anon_sym_AMP] = ACTIONS(519), - [anon_sym_PIPE] = ACTIONS(381), - [anon_sym_AMP_AMP] = ACTIONS(375), - [anon_sym_PIPE_PIPE] = ACTIONS(375), - [anon_sym_LT_LT] = ACTIONS(377), - [anon_sym_GT_GT] = ACTIONS(377), - [anon_sym_PLUS_EQ] = ACTIONS(375), - [anon_sym_DASH_EQ] = ACTIONS(375), - [anon_sym_STAR_EQ] = ACTIONS(375), - [anon_sym_SLASH_EQ] = ACTIONS(375), - [anon_sym_PERCENT_EQ] = ACTIONS(375), - [anon_sym_CARET_EQ] = ACTIONS(375), - [anon_sym_AMP_EQ] = ACTIONS(375), - [anon_sym_PIPE_EQ] = ACTIONS(375), - [anon_sym_LT_LT_EQ] = ACTIONS(375), - [anon_sym_GT_GT_EQ] = ACTIONS(375), - [anon_sym_EQ] = ACTIONS(377), - [anon_sym_EQ_EQ] = ACTIONS(375), - [anon_sym_BANG_EQ] = ACTIONS(375), - [anon_sym_GT] = ACTIONS(377), - [anon_sym_LT] = ACTIONS(383), - [anon_sym_GT_EQ] = ACTIONS(375), - [anon_sym_LT_EQ] = ACTIONS(375), - [anon_sym_DOT] = ACTIONS(377), - [anon_sym_DOT_DOT] = ACTIONS(521), - [anon_sym_DOT_DOT_DOT] = ACTIONS(375), - [anon_sym_DOT_DOT_EQ] = ACTIONS(375), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(377), + [54] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3303), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1847), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1794), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(47), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(54), + [sym_block_comment] = STATE(54), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_LBRACK] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_PLUS] = ACTIONS(393), + [anon_sym_STAR] = ACTIONS(393), + [anon_sym_QMARK] = ACTIONS(391), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(393), + [anon_sym_SLASH] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(393), + [anon_sym_CARET] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_AMP] = ACTIONS(393), + [anon_sym_PIPE] = ACTIONS(393), + [anon_sym_AMP_AMP] = ACTIONS(391), + [anon_sym_PIPE_PIPE] = ACTIONS(391), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_GT_GT] = ACTIONS(393), + [anon_sym_PLUS_EQ] = ACTIONS(391), + [anon_sym_DASH_EQ] = ACTIONS(391), + [anon_sym_STAR_EQ] = ACTIONS(391), + [anon_sym_SLASH_EQ] = ACTIONS(391), + [anon_sym_PERCENT_EQ] = ACTIONS(391), + [anon_sym_CARET_EQ] = ACTIONS(391), + [anon_sym_AMP_EQ] = ACTIONS(391), + [anon_sym_PIPE_EQ] = ACTIONS(391), + [anon_sym_LT_LT_EQ] = ACTIONS(391), + [anon_sym_GT_GT_EQ] = ACTIONS(391), + [anon_sym_EQ] = ACTIONS(393), + [anon_sym_EQ_EQ] = ACTIONS(391), + [anon_sym_BANG_EQ] = ACTIONS(391), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT_EQ] = ACTIONS(391), + [anon_sym_LT_EQ] = ACTIONS(391), + [anon_sym_DOT] = ACTIONS(393), + [anon_sym_DOT_DOT] = ACTIONS(393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(391), + [anon_sym_DOT_DOT_EQ] = ACTIONS(391), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(393), + [anon_sym_as] = ACTIONS(393), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(495), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(497), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(499), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(501), + [anon_sym_static] = ACTIONS(503), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(505), + [anon_sym_move] = ACTIONS(507), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -21883,92 +23387,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [54] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1718), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(246), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(54), - [sym_block_comment] = STATE(54), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(387), + [55] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3303), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1875), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1794), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(55), + [sym_block_comment] = STATE(55), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(387), [anon_sym_LBRACE] = ACTIONS(387), [anon_sym_PLUS] = ACTIONS(389), [anon_sym_STAR] = ACTIONS(389), [anon_sym_QMARK] = ACTIONS(387), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), [anon_sym_DASH] = ACTIONS(389), [anon_sym_SLASH] = ACTIONS(389), [anon_sym_PERCENT] = ACTIONS(389), [anon_sym_CARET] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(471), + [anon_sym_BANG] = ACTIONS(493), [anon_sym_AMP] = ACTIONS(389), [anon_sym_PIPE] = ACTIONS(389), [anon_sym_AMP_AMP] = ACTIONS(387), @@ -21996,26 +23500,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(389), [anon_sym_DOT_DOT_DOT] = ACTIONS(387), [anon_sym_DOT_DOT_EQ] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(389), [anon_sym_as] = ACTIONS(389), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), + [anon_sym_break] = ACTIONS(495), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(497), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(499), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(501), + [anon_sym_static] = ACTIONS(503), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(505), + [anon_sym_move] = ACTIONS(507), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -22024,280 +23528,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [55] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1595), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(55), - [sym_block_comment] = STATE(55), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(387), - [anon_sym_LBRACE] = ACTIONS(387), - [anon_sym_PLUS] = ACTIONS(389), - [anon_sym_STAR] = ACTIONS(389), - [anon_sym_QMARK] = ACTIONS(387), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(389), - [anon_sym_SLASH] = ACTIONS(389), - [anon_sym_PERCENT] = ACTIONS(389), - [anon_sym_CARET] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(503), - [anon_sym_AMP] = ACTIONS(389), - [anon_sym_PIPE] = ACTIONS(389), - [anon_sym_AMP_AMP] = ACTIONS(387), - [anon_sym_PIPE_PIPE] = ACTIONS(387), - [anon_sym_LT_LT] = ACTIONS(389), - [anon_sym_GT_GT] = ACTIONS(389), - [anon_sym_PLUS_EQ] = ACTIONS(387), - [anon_sym_DASH_EQ] = ACTIONS(387), - [anon_sym_STAR_EQ] = ACTIONS(387), - [anon_sym_SLASH_EQ] = ACTIONS(387), - [anon_sym_PERCENT_EQ] = ACTIONS(387), - [anon_sym_CARET_EQ] = ACTIONS(387), - [anon_sym_AMP_EQ] = ACTIONS(387), - [anon_sym_PIPE_EQ] = ACTIONS(387), - [anon_sym_LT_LT_EQ] = ACTIONS(387), - [anon_sym_GT_GT_EQ] = ACTIONS(387), - [anon_sym_EQ] = ACTIONS(389), - [anon_sym_EQ_EQ] = ACTIONS(387), - [anon_sym_BANG_EQ] = ACTIONS(387), - [anon_sym_GT] = ACTIONS(389), - [anon_sym_LT] = ACTIONS(389), - [anon_sym_GT_EQ] = ACTIONS(387), - [anon_sym_LT_EQ] = ACTIONS(387), - [anon_sym_DOT] = ACTIONS(389), - [anon_sym_DOT_DOT] = ACTIONS(389), - [anon_sym_DOT_DOT_DOT] = ACTIONS(387), - [anon_sym_DOT_DOT_EQ] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(389), - [anon_sym_as] = ACTIONS(389), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [56] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1824), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(246), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3303), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1913), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1794), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), [sym_line_comment] = STATE(56), [sym_block_comment] = STATE(56), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_PLUS] = ACTIONS(393), - [anon_sym_STAR] = ACTIONS(393), - [anon_sym_QMARK] = ACTIONS(391), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(393), - [anon_sym_SLASH] = ACTIONS(393), - [anon_sym_PERCENT] = ACTIONS(393), - [anon_sym_CARET] = ACTIONS(393), - [anon_sym_BANG] = ACTIONS(471), - [anon_sym_AMP] = ACTIONS(393), - [anon_sym_PIPE] = ACTIONS(393), - [anon_sym_AMP_AMP] = ACTIONS(391), - [anon_sym_PIPE_PIPE] = ACTIONS(391), - [anon_sym_LT_LT] = ACTIONS(393), - [anon_sym_GT_GT] = ACTIONS(393), - [anon_sym_PLUS_EQ] = ACTIONS(391), - [anon_sym_DASH_EQ] = ACTIONS(391), - [anon_sym_STAR_EQ] = ACTIONS(391), - [anon_sym_SLASH_EQ] = ACTIONS(391), - [anon_sym_PERCENT_EQ] = ACTIONS(391), - [anon_sym_CARET_EQ] = ACTIONS(391), - [anon_sym_AMP_EQ] = ACTIONS(391), - [anon_sym_PIPE_EQ] = ACTIONS(391), - [anon_sym_LT_LT_EQ] = ACTIONS(391), - [anon_sym_GT_GT_EQ] = ACTIONS(391), - [anon_sym_EQ] = ACTIONS(393), - [anon_sym_EQ_EQ] = ACTIONS(391), - [anon_sym_BANG_EQ] = ACTIONS(391), - [anon_sym_GT] = ACTIONS(393), - [anon_sym_LT] = ACTIONS(393), - [anon_sym_GT_EQ] = ACTIONS(391), - [anon_sym_LT_EQ] = ACTIONS(391), - [anon_sym_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(391), - [anon_sym_DOT_DOT_EQ] = ACTIONS(391), - [anon_sym_COLON_COLON] = ACTIONS(473), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(401), + [anon_sym_PLUS] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(403), + [anon_sym_QMARK] = ACTIONS(401), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(403), + [anon_sym_SLASH] = ACTIONS(403), + [anon_sym_PERCENT] = ACTIONS(403), + [anon_sym_CARET] = ACTIONS(403), + [anon_sym_BANG] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(403), + [anon_sym_PIPE] = ACTIONS(403), + [anon_sym_AMP_AMP] = ACTIONS(401), + [anon_sym_PIPE_PIPE] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_GT_GT] = ACTIONS(403), + [anon_sym_PLUS_EQ] = ACTIONS(401), + [anon_sym_DASH_EQ] = ACTIONS(401), + [anon_sym_STAR_EQ] = ACTIONS(401), + [anon_sym_SLASH_EQ] = ACTIONS(401), + [anon_sym_PERCENT_EQ] = ACTIONS(401), + [anon_sym_CARET_EQ] = ACTIONS(401), + [anon_sym_AMP_EQ] = ACTIONS(401), + [anon_sym_PIPE_EQ] = ACTIONS(401), + [anon_sym_LT_LT_EQ] = ACTIONS(401), + [anon_sym_GT_GT_EQ] = ACTIONS(401), + [anon_sym_EQ] = ACTIONS(403), + [anon_sym_EQ_EQ] = ACTIONS(401), + [anon_sym_BANG_EQ] = ACTIONS(401), + [anon_sym_GT] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(403), + [anon_sym_GT_EQ] = ACTIONS(401), + [anon_sym_LT_EQ] = ACTIONS(401), + [anon_sym_DOT] = ACTIONS(403), + [anon_sym_DOT_DOT] = ACTIONS(403), + [anon_sym_DOT_DOT_DOT] = ACTIONS(401), + [anon_sym_DOT_DOT_EQ] = ACTIONS(401), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(393), + [anon_sym_as] = ACTIONS(403), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), + [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(477), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -22306,374 +23669,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [57] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1825), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(246), - [sym_label] = STATE(45), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3303), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1938), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1794), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), [sym_line_comment] = STATE(57), [sym_block_comment] = STATE(57), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_LBRACK] = ACTIONS(395), - [anon_sym_LBRACE] = ACTIONS(395), - [anon_sym_PLUS] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(397), - [anon_sym_QMARK] = ACTIONS(395), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_SLASH] = ACTIONS(397), - [anon_sym_PERCENT] = ACTIONS(397), - [anon_sym_CARET] = ACTIONS(397), - [anon_sym_BANG] = ACTIONS(471), - [anon_sym_AMP] = ACTIONS(397), - [anon_sym_PIPE] = ACTIONS(397), - [anon_sym_AMP_AMP] = ACTIONS(395), - [anon_sym_PIPE_PIPE] = ACTIONS(395), - [anon_sym_LT_LT] = ACTIONS(397), - [anon_sym_GT_GT] = ACTIONS(397), - [anon_sym_PLUS_EQ] = ACTIONS(395), - [anon_sym_DASH_EQ] = ACTIONS(395), - [anon_sym_STAR_EQ] = ACTIONS(395), - [anon_sym_SLASH_EQ] = ACTIONS(395), - [anon_sym_PERCENT_EQ] = ACTIONS(395), - [anon_sym_CARET_EQ] = ACTIONS(395), - [anon_sym_AMP_EQ] = ACTIONS(395), - [anon_sym_PIPE_EQ] = ACTIONS(395), - [anon_sym_LT_LT_EQ] = ACTIONS(395), - [anon_sym_GT_GT_EQ] = ACTIONS(395), - [anon_sym_EQ] = ACTIONS(397), - [anon_sym_EQ_EQ] = ACTIONS(395), - [anon_sym_BANG_EQ] = ACTIONS(395), - [anon_sym_GT] = ACTIONS(397), - [anon_sym_LT] = ACTIONS(397), - [anon_sym_GT_EQ] = ACTIONS(395), - [anon_sym_LT_EQ] = ACTIONS(395), - [anon_sym_DOT] = ACTIONS(397), - [anon_sym_DOT_DOT] = ACTIONS(397), - [anon_sym_DOT_DOT_DOT] = ACTIONS(395), - [anon_sym_DOT_DOT_EQ] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(399), - [anon_sym_as] = ACTIONS(397), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [58] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1824), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(246), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(58), - [sym_block_comment] = STATE(58), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_LBRACK] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_PLUS] = ACTIONS(393), - [anon_sym_STAR] = ACTIONS(393), - [anon_sym_QMARK] = ACTIONS(391), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(393), - [anon_sym_SLASH] = ACTIONS(393), - [anon_sym_PERCENT] = ACTIONS(393), - [anon_sym_CARET] = ACTIONS(393), - [anon_sym_BANG] = ACTIONS(471), - [anon_sym_AMP] = ACTIONS(393), - [anon_sym_PIPE] = ACTIONS(393), - [anon_sym_AMP_AMP] = ACTIONS(391), - [anon_sym_PIPE_PIPE] = ACTIONS(391), - [anon_sym_LT_LT] = ACTIONS(393), - [anon_sym_GT_GT] = ACTIONS(393), - [anon_sym_PLUS_EQ] = ACTIONS(391), - [anon_sym_DASH_EQ] = ACTIONS(391), - [anon_sym_STAR_EQ] = ACTIONS(391), - [anon_sym_SLASH_EQ] = ACTIONS(391), - [anon_sym_PERCENT_EQ] = ACTIONS(391), - [anon_sym_CARET_EQ] = ACTIONS(391), - [anon_sym_AMP_EQ] = ACTIONS(391), - [anon_sym_PIPE_EQ] = ACTIONS(391), - [anon_sym_LT_LT_EQ] = ACTIONS(391), - [anon_sym_GT_GT_EQ] = ACTIONS(391), - [anon_sym_EQ] = ACTIONS(393), - [anon_sym_EQ_EQ] = ACTIONS(391), - [anon_sym_BANG_EQ] = ACTIONS(391), - [anon_sym_GT] = ACTIONS(393), - [anon_sym_LT] = ACTIONS(393), - [anon_sym_GT_EQ] = ACTIONS(391), - [anon_sym_LT_EQ] = ACTIONS(391), - [anon_sym_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(391), - [anon_sym_DOT_DOT_EQ] = ACTIONS(391), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(393), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [59] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1595), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(59), - [sym_block_comment] = STATE(59), - [sym_identifier] = ACTIONS(467), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(387), [anon_sym_LBRACK] = ACTIONS(387), [anon_sym_LBRACE] = ACTIONS(387), [anon_sym_PLUS] = ACTIONS(389), [anon_sym_STAR] = ACTIONS(389), [anon_sym_QMARK] = ACTIONS(387), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), [anon_sym_DASH] = ACTIONS(389), [anon_sym_SLASH] = ACTIONS(389), [anon_sym_PERCENT] = ACTIONS(389), [anon_sym_CARET] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(503), + [anon_sym_BANG] = ACTIONS(469), [anon_sym_AMP] = ACTIONS(389), [anon_sym_PIPE] = ACTIONS(389), [anon_sym_AMP_AMP] = ACTIONS(387), @@ -22701,26 +23782,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(389), [anon_sym_DOT_DOT_DOT] = ACTIONS(387), [anon_sym_DOT_DOT_EQ] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_as] = ACTIONS(389), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(477), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -22729,94 +23810,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [60] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1608), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(60), - [sym_block_comment] = STATE(60), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [58] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3303), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1845), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1794), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(58), + [sym_block_comment] = STATE(58), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(401), + [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(401), [anon_sym_PLUS] = ACTIONS(403), - [anon_sym_STAR] = ACTIONS(503), + [anon_sym_STAR] = ACTIONS(403), [anon_sym_QMARK] = ACTIONS(401), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(503), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(403), [anon_sym_SLASH] = ACTIONS(403), [anon_sym_PERCENT] = ACTIONS(403), [anon_sym_CARET] = ACTIONS(403), - [anon_sym_BANG] = ACTIONS(503), - [anon_sym_AMP] = ACTIONS(519), - [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_AMP] = ACTIONS(403), + [anon_sym_PIPE] = ACTIONS(403), [anon_sym_AMP_AMP] = ACTIONS(401), [anon_sym_PIPE_PIPE] = ACTIONS(401), [anon_sym_LT_LT] = ACTIONS(403), @@ -22835,174 +23916,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_EQ] = ACTIONS(401), [anon_sym_BANG_EQ] = ACTIONS(401), [anon_sym_GT] = ACTIONS(403), - [anon_sym_LT] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(403), [anon_sym_GT_EQ] = ACTIONS(401), [anon_sym_LT_EQ] = ACTIONS(401), [anon_sym_DOT] = ACTIONS(403), - [anon_sym_DOT_DOT] = ACTIONS(521), + [anon_sym_DOT_DOT] = ACTIONS(403), [anon_sym_DOT_DOT_DOT] = ACTIONS(401), [anon_sym_DOT_DOT_EQ] = ACTIONS(401), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(403), [anon_sym_as] = ACTIONS(403), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [61] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1606), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(61), - [sym_block_comment] = STATE(61), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_PLUS] = ACTIONS(393), - [anon_sym_STAR] = ACTIONS(393), - [anon_sym_QMARK] = ACTIONS(391), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(393), - [anon_sym_SLASH] = ACTIONS(393), - [anon_sym_PERCENT] = ACTIONS(393), - [anon_sym_CARET] = ACTIONS(393), - [anon_sym_BANG] = ACTIONS(503), - [anon_sym_AMP] = ACTIONS(393), - [anon_sym_PIPE] = ACTIONS(393), - [anon_sym_AMP_AMP] = ACTIONS(391), - [anon_sym_PIPE_PIPE] = ACTIONS(391), - [anon_sym_LT_LT] = ACTIONS(393), - [anon_sym_GT_GT] = ACTIONS(393), - [anon_sym_PLUS_EQ] = ACTIONS(391), - [anon_sym_DASH_EQ] = ACTIONS(391), - [anon_sym_STAR_EQ] = ACTIONS(391), - [anon_sym_SLASH_EQ] = ACTIONS(391), - [anon_sym_PERCENT_EQ] = ACTIONS(391), - [anon_sym_CARET_EQ] = ACTIONS(391), - [anon_sym_AMP_EQ] = ACTIONS(391), - [anon_sym_PIPE_EQ] = ACTIONS(391), - [anon_sym_LT_LT_EQ] = ACTIONS(391), - [anon_sym_GT_GT_EQ] = ACTIONS(391), - [anon_sym_EQ] = ACTIONS(393), - [anon_sym_EQ_EQ] = ACTIONS(391), - [anon_sym_BANG_EQ] = ACTIONS(391), - [anon_sym_GT] = ACTIONS(393), - [anon_sym_LT] = ACTIONS(393), - [anon_sym_GT_EQ] = ACTIONS(391), - [anon_sym_LT_EQ] = ACTIONS(391), - [anon_sym_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(391), - [anon_sym_DOT_DOT_EQ] = ACTIONS(391), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(393), - [anon_sym_as] = ACTIONS(393), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(495), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(497), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(499), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(501), + [anon_sym_static] = ACTIONS(503), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(505), + [anon_sym_move] = ACTIONS(507), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -23011,92 +23951,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [62] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1718), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(246), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(62), - [sym_block_comment] = STATE(62), - [sym_identifier] = ACTIONS(467), + [59] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3303), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1938), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1794), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(59), + [sym_block_comment] = STATE(59), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(387), [anon_sym_LBRACE] = ACTIONS(387), [anon_sym_PLUS] = ACTIONS(389), [anon_sym_STAR] = ACTIONS(389), [anon_sym_QMARK] = ACTIONS(387), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), [anon_sym_DASH] = ACTIONS(389), [anon_sym_SLASH] = ACTIONS(389), [anon_sym_PERCENT] = ACTIONS(389), [anon_sym_CARET] = ACTIONS(389), - [anon_sym_BANG] = ACTIONS(471), + [anon_sym_BANG] = ACTIONS(469), [anon_sym_AMP] = ACTIONS(389), [anon_sym_PIPE] = ACTIONS(389), [anon_sym_AMP_AMP] = ACTIONS(387), @@ -23124,26 +24064,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(389), [anon_sym_DOT_DOT_DOT] = ACTIONS(387), [anon_sym_DOT_DOT_EQ] = ACTIONS(387), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_as] = ACTIONS(389), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), + [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(477), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -23152,139 +24092,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [63] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1607), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(52), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(63), - [sym_block_comment] = STATE(63), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(395), - [anon_sym_LBRACK] = ACTIONS(395), - [anon_sym_LBRACE] = ACTIONS(395), - [anon_sym_PLUS] = ACTIONS(397), - [anon_sym_STAR] = ACTIONS(397), - [anon_sym_QMARK] = ACTIONS(395), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(397), - [anon_sym_SLASH] = ACTIONS(397), - [anon_sym_PERCENT] = ACTIONS(397), - [anon_sym_CARET] = ACTIONS(397), - [anon_sym_BANG] = ACTIONS(503), - [anon_sym_AMP] = ACTIONS(397), - [anon_sym_PIPE] = ACTIONS(397), - [anon_sym_AMP_AMP] = ACTIONS(395), - [anon_sym_PIPE_PIPE] = ACTIONS(395), - [anon_sym_LT_LT] = ACTIONS(397), - [anon_sym_GT_GT] = ACTIONS(397), - [anon_sym_PLUS_EQ] = ACTIONS(395), - [anon_sym_DASH_EQ] = ACTIONS(395), - [anon_sym_STAR_EQ] = ACTIONS(395), - [anon_sym_SLASH_EQ] = ACTIONS(395), - [anon_sym_PERCENT_EQ] = ACTIONS(395), - [anon_sym_CARET_EQ] = ACTIONS(395), - [anon_sym_AMP_EQ] = ACTIONS(395), - [anon_sym_PIPE_EQ] = ACTIONS(395), - [anon_sym_LT_LT_EQ] = ACTIONS(395), - [anon_sym_GT_GT_EQ] = ACTIONS(395), - [anon_sym_EQ] = ACTIONS(397), - [anon_sym_EQ_EQ] = ACTIONS(395), - [anon_sym_BANG_EQ] = ACTIONS(395), - [anon_sym_GT] = ACTIONS(397), - [anon_sym_LT] = ACTIONS(397), - [anon_sym_GT_EQ] = ACTIONS(395), - [anon_sym_LT_EQ] = ACTIONS(395), - [anon_sym_DOT] = ACTIONS(397), - [anon_sym_DOT_DOT] = ACTIONS(397), - [anon_sym_DOT_DOT_DOT] = ACTIONS(395), - [anon_sym_DOT_DOT_EQ] = ACTIONS(395), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(397), - [anon_sym_as] = ACTIONS(397), + [60] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3303), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1850), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1794), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(60), + [sym_block_comment] = STATE(60), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(399), + [anon_sym_STAR] = ACTIONS(493), + [anon_sym_QMARK] = ACTIONS(397), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_SLASH] = ACTIONS(399), + [anon_sym_PERCENT] = ACTIONS(399), + [anon_sym_CARET] = ACTIONS(399), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_AMP_AMP] = ACTIONS(397), + [anon_sym_PIPE_PIPE] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(399), + [anon_sym_GT_GT] = ACTIONS(399), + [anon_sym_PLUS_EQ] = ACTIONS(397), + [anon_sym_DASH_EQ] = ACTIONS(397), + [anon_sym_STAR_EQ] = ACTIONS(397), + [anon_sym_SLASH_EQ] = ACTIONS(397), + [anon_sym_PERCENT_EQ] = ACTIONS(397), + [anon_sym_CARET_EQ] = ACTIONS(397), + [anon_sym_AMP_EQ] = ACTIONS(397), + [anon_sym_PIPE_EQ] = ACTIONS(397), + [anon_sym_LT_LT_EQ] = ACTIONS(397), + [anon_sym_GT_GT_EQ] = ACTIONS(397), + [anon_sym_EQ] = ACTIONS(399), + [anon_sym_EQ_EQ] = ACTIONS(397), + [anon_sym_BANG_EQ] = ACTIONS(397), + [anon_sym_GT] = ACTIONS(399), + [anon_sym_LT] = ACTIONS(383), + [anon_sym_GT_EQ] = ACTIONS(397), + [anon_sym_LT_EQ] = ACTIONS(397), + [anon_sym_DOT] = ACTIONS(399), + [anon_sym_DOT_DOT] = ACTIONS(525), + [anon_sym_DOT_DOT_DOT] = ACTIONS(397), + [anon_sym_DOT_DOT_EQ] = ACTIONS(397), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(399), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(495), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(497), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(499), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(501), + [anon_sym_static] = ACTIONS(503), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(505), + [anon_sym_move] = ACTIONS(507), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -23293,139 +24233,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [64] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1606), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(64), - [sym_block_comment] = STATE(64), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(391), - [anon_sym_LBRACK] = ACTIONS(391), - [anon_sym_LBRACE] = ACTIONS(391), - [anon_sym_PLUS] = ACTIONS(393), - [anon_sym_STAR] = ACTIONS(393), - [anon_sym_QMARK] = ACTIONS(391), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(393), - [anon_sym_SLASH] = ACTIONS(393), - [anon_sym_PERCENT] = ACTIONS(393), - [anon_sym_CARET] = ACTIONS(393), - [anon_sym_BANG] = ACTIONS(503), - [anon_sym_AMP] = ACTIONS(393), - [anon_sym_PIPE] = ACTIONS(393), - [anon_sym_AMP_AMP] = ACTIONS(391), - [anon_sym_PIPE_PIPE] = ACTIONS(391), - [anon_sym_LT_LT] = ACTIONS(393), - [anon_sym_GT_GT] = ACTIONS(393), - [anon_sym_PLUS_EQ] = ACTIONS(391), - [anon_sym_DASH_EQ] = ACTIONS(391), - [anon_sym_STAR_EQ] = ACTIONS(391), - [anon_sym_SLASH_EQ] = ACTIONS(391), - [anon_sym_PERCENT_EQ] = ACTIONS(391), - [anon_sym_CARET_EQ] = ACTIONS(391), - [anon_sym_AMP_EQ] = ACTIONS(391), - [anon_sym_PIPE_EQ] = ACTIONS(391), - [anon_sym_LT_LT_EQ] = ACTIONS(391), - [anon_sym_GT_GT_EQ] = ACTIONS(391), - [anon_sym_EQ] = ACTIONS(393), - [anon_sym_EQ_EQ] = ACTIONS(391), - [anon_sym_BANG_EQ] = ACTIONS(391), - [anon_sym_GT] = ACTIONS(393), - [anon_sym_LT] = ACTIONS(393), - [anon_sym_GT_EQ] = ACTIONS(391), - [anon_sym_LT_EQ] = ACTIONS(391), - [anon_sym_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT] = ACTIONS(393), - [anon_sym_DOT_DOT_DOT] = ACTIONS(391), - [anon_sym_DOT_DOT_EQ] = ACTIONS(391), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(393), - [anon_sym_as] = ACTIONS(393), + [61] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3303), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1913), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1794), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(61), + [sym_block_comment] = STATE(61), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(401), + [anon_sym_PLUS] = ACTIONS(403), + [anon_sym_STAR] = ACTIONS(403), + [anon_sym_QMARK] = ACTIONS(401), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(403), + [anon_sym_SLASH] = ACTIONS(403), + [anon_sym_PERCENT] = ACTIONS(403), + [anon_sym_CARET] = ACTIONS(403), + [anon_sym_BANG] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(403), + [anon_sym_PIPE] = ACTIONS(403), + [anon_sym_AMP_AMP] = ACTIONS(401), + [anon_sym_PIPE_PIPE] = ACTIONS(401), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_GT_GT] = ACTIONS(403), + [anon_sym_PLUS_EQ] = ACTIONS(401), + [anon_sym_DASH_EQ] = ACTIONS(401), + [anon_sym_STAR_EQ] = ACTIONS(401), + [anon_sym_SLASH_EQ] = ACTIONS(401), + [anon_sym_PERCENT_EQ] = ACTIONS(401), + [anon_sym_CARET_EQ] = ACTIONS(401), + [anon_sym_AMP_EQ] = ACTIONS(401), + [anon_sym_PIPE_EQ] = ACTIONS(401), + [anon_sym_LT_LT_EQ] = ACTIONS(401), + [anon_sym_GT_GT_EQ] = ACTIONS(401), + [anon_sym_EQ] = ACTIONS(403), + [anon_sym_EQ_EQ] = ACTIONS(401), + [anon_sym_BANG_EQ] = ACTIONS(401), + [anon_sym_GT] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(403), + [anon_sym_GT_EQ] = ACTIONS(401), + [anon_sym_LT_EQ] = ACTIONS(401), + [anon_sym_DOT] = ACTIONS(403), + [anon_sym_DOT_DOT] = ACTIONS(403), + [anon_sym_DOT_DOT_DOT] = ACTIONS(401), + [anon_sym_DOT_DOT_EQ] = ACTIONS(401), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(403), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(477), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -23434,94 +24374,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [65] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1827), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(246), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(65), - [sym_block_comment] = STATE(65), - [sym_identifier] = ACTIONS(467), + [62] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3303), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1845), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1794), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(62), + [sym_block_comment] = STATE(62), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACK] = ACTIONS(401), + [anon_sym_LBRACE] = ACTIONS(401), [anon_sym_PLUS] = ACTIONS(403), - [anon_sym_STAR] = ACTIONS(471), + [anon_sym_STAR] = ACTIONS(403), [anon_sym_QMARK] = ACTIONS(401), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(471), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(403), [anon_sym_SLASH] = ACTIONS(403), [anon_sym_PERCENT] = ACTIONS(403), [anon_sym_CARET] = ACTIONS(403), - [anon_sym_BANG] = ACTIONS(471), - [anon_sym_AMP] = ACTIONS(523), - [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_AMP] = ACTIONS(403), + [anon_sym_PIPE] = ACTIONS(403), [anon_sym_AMP_AMP] = ACTIONS(401), [anon_sym_PIPE_PIPE] = ACTIONS(401), [anon_sym_LT_LT] = ACTIONS(403), @@ -23540,33 +24480,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_EQ] = ACTIONS(401), [anon_sym_BANG_EQ] = ACTIONS(401), [anon_sym_GT] = ACTIONS(403), - [anon_sym_LT] = ACTIONS(383), + [anon_sym_LT] = ACTIONS(403), [anon_sym_GT_EQ] = ACTIONS(401), [anon_sym_LT_EQ] = ACTIONS(401), [anon_sym_DOT] = ACTIONS(403), - [anon_sym_DOT_DOT] = ACTIONS(525), + [anon_sym_DOT_DOT] = ACTIONS(403), [anon_sym_DOT_DOT_DOT] = ACTIONS(401), [anon_sym_DOT_DOT_EQ] = ACTIONS(401), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(403), [anon_sym_as] = ACTIONS(403), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), + [anon_sym_break] = ACTIONS(495), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(497), + [anon_sym_default] = ACTIONS(475), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(499), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(501), + [anon_sym_static] = ACTIONS(503), + [anon_sym_union] = ACTIONS(475), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(505), + [anon_sym_move] = ACTIONS(507), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [63] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3303), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1919), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1794), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(45), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(63), + [sym_block_comment] = STATE(63), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(391), + [anon_sym_LBRACK] = ACTIONS(391), + [anon_sym_LBRACE] = ACTIONS(391), + [anon_sym_PLUS] = ACTIONS(393), + [anon_sym_STAR] = ACTIONS(393), + [anon_sym_QMARK] = ACTIONS(391), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(393), + [anon_sym_SLASH] = ACTIONS(393), + [anon_sym_PERCENT] = ACTIONS(393), + [anon_sym_CARET] = ACTIONS(393), + [anon_sym_BANG] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(393), + [anon_sym_PIPE] = ACTIONS(393), + [anon_sym_AMP_AMP] = ACTIONS(391), + [anon_sym_PIPE_PIPE] = ACTIONS(391), + [anon_sym_LT_LT] = ACTIONS(393), + [anon_sym_GT_GT] = ACTIONS(393), + [anon_sym_PLUS_EQ] = ACTIONS(391), + [anon_sym_DASH_EQ] = ACTIONS(391), + [anon_sym_STAR_EQ] = ACTIONS(391), + [anon_sym_SLASH_EQ] = ACTIONS(391), + [anon_sym_PERCENT_EQ] = ACTIONS(391), + [anon_sym_CARET_EQ] = ACTIONS(391), + [anon_sym_AMP_EQ] = ACTIONS(391), + [anon_sym_PIPE_EQ] = ACTIONS(391), + [anon_sym_LT_LT_EQ] = ACTIONS(391), + [anon_sym_GT_GT_EQ] = ACTIONS(391), + [anon_sym_EQ] = ACTIONS(393), + [anon_sym_EQ_EQ] = ACTIONS(391), + [anon_sym_BANG_EQ] = ACTIONS(391), + [anon_sym_GT] = ACTIONS(393), + [anon_sym_LT] = ACTIONS(393), + [anon_sym_GT_EQ] = ACTIONS(391), + [anon_sym_LT_EQ] = ACTIONS(391), + [anon_sym_DOT] = ACTIONS(393), + [anon_sym_DOT_DOT] = ACTIONS(393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(391), + [anon_sym_DOT_DOT_EQ] = ACTIONS(391), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(395), + [anon_sym_as] = ACTIONS(393), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(477), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -23575,93 +24656,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [66] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1828), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(246), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(66), - [sym_block_comment] = STATE(66), - [sym_identifier] = ACTIONS(467), + [64] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3303), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1927), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1794), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(64), + [sym_block_comment] = STATE(64), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_PLUS] = ACTIONS(377), - [anon_sym_STAR] = ACTIONS(471), + [anon_sym_STAR] = ACTIONS(469), [anon_sym_QMARK] = ACTIONS(375), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(471), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(469), [anon_sym_SLASH] = ACTIONS(377), [anon_sym_PERCENT] = ACTIONS(377), [anon_sym_CARET] = ACTIONS(377), - [anon_sym_BANG] = ACTIONS(471), - [anon_sym_AMP] = ACTIONS(523), + [anon_sym_BANG] = ACTIONS(469), + [anon_sym_AMP] = ACTIONS(519), [anon_sym_PIPE] = ACTIONS(381), [anon_sym_AMP_AMP] = ACTIONS(375), [anon_sym_PIPE_PIPE] = ACTIONS(375), @@ -23685,29 +24766,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(375), [anon_sym_LT_EQ] = ACTIONS(375), [anon_sym_DOT] = ACTIONS(377), - [anon_sym_DOT_DOT] = ACTIONS(525), + [anon_sym_DOT_DOT] = ACTIONS(521), [anon_sym_DOT_DOT_DOT] = ACTIONS(375), [anon_sym_DOT_DOT_EQ] = ACTIONS(375), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_as] = ACTIONS(377), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), + [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(477), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -23716,67 +24797,349 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [67] = { - [sym__token_pattern] = STATE(176), - [sym_token_tree_pattern] = STATE(170), - [sym_token_binding_pattern] = STATE(170), - [sym_token_repetition_pattern] = STATE(170), - [sym__literal] = STATE(170), - [sym_string_literal] = STATE(177), - [sym_raw_string_literal] = STATE(177), - [sym_boolean_literal] = STATE(177), - [sym_line_comment] = STATE(67), - [sym_block_comment] = STATE(67), - [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(527), - [anon_sym_SEMI] = ACTIONS(530), - [anon_sym_LPAREN] = ACTIONS(533), - [anon_sym_RPAREN] = ACTIONS(536), - [anon_sym_LBRACK] = ACTIONS(538), - [anon_sym_RBRACK] = ACTIONS(536), - [anon_sym_LBRACE] = ACTIONS(541), - [anon_sym_RBRACE] = ACTIONS(536), - [anon_sym_EQ_GT] = ACTIONS(530), - [anon_sym_COLON] = ACTIONS(544), - [anon_sym_DOLLAR] = ACTIONS(547), - [anon_sym_PLUS] = ACTIONS(544), - [anon_sym_STAR] = ACTIONS(544), - [anon_sym_QMARK] = ACTIONS(530), - [anon_sym_u8] = ACTIONS(527), - [anon_sym_i8] = ACTIONS(527), - [anon_sym_u16] = ACTIONS(527), - [anon_sym_i16] = ACTIONS(527), - [anon_sym_u32] = ACTIONS(527), - [anon_sym_i32] = ACTIONS(527), - [anon_sym_u64] = ACTIONS(527), - [anon_sym_i64] = ACTIONS(527), - [anon_sym_u128] = ACTIONS(527), - [anon_sym_i128] = ACTIONS(527), - [anon_sym_isize] = ACTIONS(527), - [anon_sym_usize] = ACTIONS(527), - [anon_sym_f32] = ACTIONS(527), - [anon_sym_f64] = ACTIONS(527), - [anon_sym_bool] = ACTIONS(527), - [anon_sym_str] = ACTIONS(527), - [anon_sym_char] = ACTIONS(527), - [anon_sym_DASH] = ACTIONS(544), - [anon_sym_SLASH] = ACTIONS(544), - [anon_sym_PERCENT] = ACTIONS(544), - [anon_sym_CARET] = ACTIONS(544), - [anon_sym_BANG] = ACTIONS(544), - [anon_sym_AMP] = ACTIONS(544), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_AMP_AMP] = ACTIONS(530), - [anon_sym_PIPE_PIPE] = ACTIONS(530), - [anon_sym_LT_LT] = ACTIONS(544), + [65] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3303), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1875), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1794), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(65), + [sym_block_comment] = STATE(65), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(387), + [anon_sym_LBRACK] = ACTIONS(387), + [anon_sym_LBRACE] = ACTIONS(387), + [anon_sym_PLUS] = ACTIONS(389), + [anon_sym_STAR] = ACTIONS(389), + [anon_sym_QMARK] = ACTIONS(387), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(389), + [anon_sym_SLASH] = ACTIONS(389), + [anon_sym_PERCENT] = ACTIONS(389), + [anon_sym_CARET] = ACTIONS(389), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_AMP] = ACTIONS(389), + [anon_sym_PIPE] = ACTIONS(389), + [anon_sym_AMP_AMP] = ACTIONS(387), + [anon_sym_PIPE_PIPE] = ACTIONS(387), + [anon_sym_LT_LT] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(389), + [anon_sym_PLUS_EQ] = ACTIONS(387), + [anon_sym_DASH_EQ] = ACTIONS(387), + [anon_sym_STAR_EQ] = ACTIONS(387), + [anon_sym_SLASH_EQ] = ACTIONS(387), + [anon_sym_PERCENT_EQ] = ACTIONS(387), + [anon_sym_CARET_EQ] = ACTIONS(387), + [anon_sym_AMP_EQ] = ACTIONS(387), + [anon_sym_PIPE_EQ] = ACTIONS(387), + [anon_sym_LT_LT_EQ] = ACTIONS(387), + [anon_sym_GT_GT_EQ] = ACTIONS(387), + [anon_sym_EQ] = ACTIONS(389), + [anon_sym_EQ_EQ] = ACTIONS(387), + [anon_sym_BANG_EQ] = ACTIONS(387), + [anon_sym_GT] = ACTIONS(389), + [anon_sym_LT] = ACTIONS(389), + [anon_sym_GT_EQ] = ACTIONS(387), + [anon_sym_LT_EQ] = ACTIONS(387), + [anon_sym_DOT] = ACTIONS(389), + [anon_sym_DOT_DOT] = ACTIONS(389), + [anon_sym_DOT_DOT_DOT] = ACTIONS(387), + [anon_sym_DOT_DOT_EQ] = ACTIONS(387), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(389), + [anon_sym_as] = ACTIONS(389), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(495), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(497), + [anon_sym_default] = ACTIONS(475), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(499), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(501), + [anon_sym_static] = ACTIONS(503), + [anon_sym_union] = ACTIONS(475), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(505), + [anon_sym_move] = ACTIONS(507), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [66] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3303), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1859), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1794), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(66), + [sym_block_comment] = STATE(66), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_PLUS] = ACTIONS(377), + [anon_sym_STAR] = ACTIONS(493), + [anon_sym_QMARK] = ACTIONS(375), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_SLASH] = ACTIONS(377), + [anon_sym_PERCENT] = ACTIONS(377), + [anon_sym_CARET] = ACTIONS(377), + [anon_sym_BANG] = ACTIONS(493), + [anon_sym_AMP] = ACTIONS(523), + [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_AMP_AMP] = ACTIONS(375), + [anon_sym_PIPE_PIPE] = ACTIONS(375), + [anon_sym_LT_LT] = ACTIONS(377), + [anon_sym_GT_GT] = ACTIONS(377), + [anon_sym_PLUS_EQ] = ACTIONS(375), + [anon_sym_DASH_EQ] = ACTIONS(375), + [anon_sym_STAR_EQ] = ACTIONS(375), + [anon_sym_SLASH_EQ] = ACTIONS(375), + [anon_sym_PERCENT_EQ] = ACTIONS(375), + [anon_sym_CARET_EQ] = ACTIONS(375), + [anon_sym_AMP_EQ] = ACTIONS(375), + [anon_sym_PIPE_EQ] = ACTIONS(375), + [anon_sym_LT_LT_EQ] = ACTIONS(375), + [anon_sym_GT_GT_EQ] = ACTIONS(375), + [anon_sym_EQ] = ACTIONS(377), + [anon_sym_EQ_EQ] = ACTIONS(375), + [anon_sym_BANG_EQ] = ACTIONS(375), + [anon_sym_GT] = ACTIONS(377), + [anon_sym_LT] = ACTIONS(383), + [anon_sym_GT_EQ] = ACTIONS(375), + [anon_sym_LT_EQ] = ACTIONS(375), + [anon_sym_DOT] = ACTIONS(377), + [anon_sym_DOT_DOT] = ACTIONS(525), + [anon_sym_DOT_DOT_DOT] = ACTIONS(375), + [anon_sym_DOT_DOT_EQ] = ACTIONS(375), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(377), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(495), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(497), + [anon_sym_default] = ACTIONS(475), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(499), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(501), + [anon_sym_static] = ACTIONS(503), + [anon_sym_union] = ACTIONS(475), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(505), + [anon_sym_move] = ACTIONS(507), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [67] = { + [sym__token_pattern] = STATE(193), + [sym_token_tree_pattern] = STATE(190), + [sym_token_binding_pattern] = STATE(190), + [sym_token_repetition_pattern] = STATE(190), + [sym__literal] = STATE(190), + [sym_string_literal] = STATE(184), + [sym_raw_string_literal] = STATE(184), + [sym_boolean_literal] = STATE(184), + [sym_line_comment] = STATE(67), + [sym_block_comment] = STATE(67), + [aux_sym_token_tree_pattern_repeat1] = STATE(67), + [aux_sym__non_special_token_repeat1] = STATE(137), + [sym_identifier] = ACTIONS(527), + [anon_sym_SEMI] = ACTIONS(530), + [anon_sym_LPAREN] = ACTIONS(533), + [anon_sym_RPAREN] = ACTIONS(536), + [anon_sym_LBRACK] = ACTIONS(538), + [anon_sym_RBRACK] = ACTIONS(536), + [anon_sym_LBRACE] = ACTIONS(541), + [anon_sym_RBRACE] = ACTIONS(536), + [anon_sym_EQ_GT] = ACTIONS(530), + [anon_sym_COLON] = ACTIONS(544), + [anon_sym_DOLLAR] = ACTIONS(547), + [anon_sym_PLUS] = ACTIONS(544), + [anon_sym_STAR] = ACTIONS(544), + [anon_sym_QMARK] = ACTIONS(530), + [anon_sym_u8] = ACTIONS(527), + [anon_sym_i8] = ACTIONS(527), + [anon_sym_u16] = ACTIONS(527), + [anon_sym_i16] = ACTIONS(527), + [anon_sym_u32] = ACTIONS(527), + [anon_sym_i32] = ACTIONS(527), + [anon_sym_u64] = ACTIONS(527), + [anon_sym_i64] = ACTIONS(527), + [anon_sym_u128] = ACTIONS(527), + [anon_sym_i128] = ACTIONS(527), + [anon_sym_isize] = ACTIONS(527), + [anon_sym_usize] = ACTIONS(527), + [anon_sym_f32] = ACTIONS(527), + [anon_sym_f64] = ACTIONS(527), + [anon_sym_bool] = ACTIONS(527), + [anon_sym_str] = ACTIONS(527), + [anon_sym_char] = ACTIONS(527), + [anon_sym_DASH] = ACTIONS(544), + [anon_sym_SLASH] = ACTIONS(544), + [anon_sym_PERCENT] = ACTIONS(544), + [anon_sym_CARET] = ACTIONS(544), + [anon_sym_BANG] = ACTIONS(544), + [anon_sym_AMP] = ACTIONS(544), + [anon_sym_PIPE] = ACTIONS(544), + [anon_sym_AMP_AMP] = ACTIONS(530), + [anon_sym_PIPE_PIPE] = ACTIONS(530), + [anon_sym_LT_LT] = ACTIONS(544), [anon_sym_GT_GT] = ACTIONS(544), [anon_sym_PLUS_EQ] = ACTIONS(530), [anon_sym_DASH_EQ] = ACTIONS(530), @@ -23850,23 +25213,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(550), }, [68] = { - [sym__token_pattern] = STATE(176), - [sym_token_tree_pattern] = STATE(170), - [sym_token_binding_pattern] = STATE(170), - [sym_token_repetition_pattern] = STATE(170), - [sym__literal] = STATE(170), - [sym_string_literal] = STATE(177), - [sym_raw_string_literal] = STATE(177), - [sym_boolean_literal] = STATE(177), + [sym__token_pattern] = STATE(193), + [sym_token_tree_pattern] = STATE(190), + [sym_token_binding_pattern] = STATE(190), + [sym_token_repetition_pattern] = STATE(190), + [sym__literal] = STATE(190), + [sym_string_literal] = STATE(184), + [sym_raw_string_literal] = STATE(184), + [sym_boolean_literal] = STATE(184), [sym_line_comment] = STATE(68), [sym_block_comment] = STATE(68), - [aux_sym_token_tree_pattern_repeat1] = STATE(72), - [aux_sym__non_special_token_repeat1] = STATE(136), + [aux_sym_token_tree_pattern_repeat1] = STATE(67), + [aux_sym__non_special_token_repeat1] = STATE(137), [sym_identifier] = ACTIONS(565), [anon_sym_SEMI] = ACTIONS(567), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_RPAREN] = ACTIONS(571), - [anon_sym_LBRACK] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(571), + [anon_sym_RBRACK] = ACTIONS(573), [anon_sym_LBRACE] = ACTIONS(575), [anon_sym_EQ_GT] = ACTIONS(567), [anon_sym_COLON] = ACTIONS(577), @@ -23974,23 +25337,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(581), }, [69] = { - [sym__token_pattern] = STATE(176), - [sym_token_tree_pattern] = STATE(170), - [sym_token_binding_pattern] = STATE(170), - [sym_token_repetition_pattern] = STATE(170), - [sym__literal] = STATE(170), - [sym_string_literal] = STATE(177), - [sym_raw_string_literal] = STATE(177), - [sym_boolean_literal] = STATE(177), + [sym__token_pattern] = STATE(193), + [sym_token_tree_pattern] = STATE(190), + [sym_token_binding_pattern] = STATE(190), + [sym_token_repetition_pattern] = STATE(190), + [sym__literal] = STATE(190), + [sym_string_literal] = STATE(184), + [sym_raw_string_literal] = STATE(184), + [sym_boolean_literal] = STATE(184), [sym_line_comment] = STATE(69), [sym_block_comment] = STATE(69), - [aux_sym_token_tree_pattern_repeat1] = STATE(73), - [aux_sym__non_special_token_repeat1] = STATE(136), + [aux_sym_token_tree_pattern_repeat1] = STATE(70), + [aux_sym__non_special_token_repeat1] = STATE(137), [sym_identifier] = ACTIONS(565), [anon_sym_SEMI] = ACTIONS(567), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_LBRACK] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(571), + [anon_sym_RPAREN] = ACTIONS(591), + [anon_sym_LBRACK] = ACTIONS(571), [anon_sym_LBRACE] = ACTIONS(575), [anon_sym_EQ_GT] = ACTIONS(567), [anon_sym_COLON] = ACTIONS(577), @@ -24098,24 +25461,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(581), }, [70] = { - [sym__token_pattern] = STATE(176), - [sym_token_tree_pattern] = STATE(170), - [sym_token_binding_pattern] = STATE(170), - [sym_token_repetition_pattern] = STATE(170), - [sym__literal] = STATE(170), - [sym_string_literal] = STATE(177), - [sym_raw_string_literal] = STATE(177), - [sym_boolean_literal] = STATE(177), + [sym__token_pattern] = STATE(193), + [sym_token_tree_pattern] = STATE(190), + [sym_token_binding_pattern] = STATE(190), + [sym_token_repetition_pattern] = STATE(190), + [sym__literal] = STATE(190), + [sym_string_literal] = STATE(184), + [sym_raw_string_literal] = STATE(184), + [sym_boolean_literal] = STATE(184), [sym_line_comment] = STATE(70), [sym_block_comment] = STATE(70), - [aux_sym_token_tree_pattern_repeat1] = STATE(74), - [aux_sym__non_special_token_repeat1] = STATE(136), + [aux_sym_token_tree_pattern_repeat1] = STATE(67), + [aux_sym__non_special_token_repeat1] = STATE(137), [sym_identifier] = ACTIONS(565), [anon_sym_SEMI] = ACTIONS(567), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_LBRACK] = ACTIONS(573), + [anon_sym_RPAREN] = ACTIONS(593), + [anon_sym_LBRACK] = ACTIONS(571), [anon_sym_LBRACE] = ACTIONS(575), - [anon_sym_RBRACE] = ACTIONS(571), [anon_sym_EQ_GT] = ACTIONS(567), [anon_sym_COLON] = ACTIONS(577), [anon_sym_DOLLAR] = ACTIONS(579), @@ -24222,23 +25585,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(581), }, [71] = { - [sym__token_pattern] = STATE(176), - [sym_token_tree_pattern] = STATE(170), - [sym_token_binding_pattern] = STATE(170), - [sym_token_repetition_pattern] = STATE(170), - [sym__literal] = STATE(170), - [sym_string_literal] = STATE(177), - [sym_raw_string_literal] = STATE(177), - [sym_boolean_literal] = STATE(177), + [sym__token_pattern] = STATE(193), + [sym_token_tree_pattern] = STATE(190), + [sym_token_binding_pattern] = STATE(190), + [sym_token_repetition_pattern] = STATE(190), + [sym__literal] = STATE(190), + [sym_string_literal] = STATE(184), + [sym_raw_string_literal] = STATE(184), + [sym_boolean_literal] = STATE(184), [sym_line_comment] = STATE(71), [sym_block_comment] = STATE(71), - [aux_sym_token_tree_pattern_repeat1] = STATE(78), - [aux_sym__non_special_token_repeat1] = STATE(136), + [aux_sym_token_tree_pattern_repeat1] = STATE(67), + [aux_sym__non_special_token_repeat1] = STATE(137), [sym_identifier] = ACTIONS(565), [anon_sym_SEMI] = ACTIONS(567), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_LBRACK] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(591), + [anon_sym_RPAREN] = ACTIONS(595), + [anon_sym_LBRACK] = ACTIONS(571), [anon_sym_LBRACE] = ACTIONS(575), [anon_sym_EQ_GT] = ACTIONS(567), [anon_sym_COLON] = ACTIONS(577), @@ -24346,23 +25709,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(581), }, [72] = { - [sym__token_pattern] = STATE(176), - [sym_token_tree_pattern] = STATE(170), - [sym_token_binding_pattern] = STATE(170), - [sym_token_repetition_pattern] = STATE(170), - [sym__literal] = STATE(170), - [sym_string_literal] = STATE(177), - [sym_raw_string_literal] = STATE(177), - [sym_boolean_literal] = STATE(177), + [sym__token_pattern] = STATE(193), + [sym_token_tree_pattern] = STATE(190), + [sym_token_binding_pattern] = STATE(190), + [sym_token_repetition_pattern] = STATE(190), + [sym__literal] = STATE(190), + [sym_string_literal] = STATE(184), + [sym_raw_string_literal] = STATE(184), + [sym_boolean_literal] = STATE(184), [sym_line_comment] = STATE(72), [sym_block_comment] = STATE(72), [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(136), + [aux_sym__non_special_token_repeat1] = STATE(137), [sym_identifier] = ACTIONS(565), [anon_sym_SEMI] = ACTIONS(567), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_RPAREN] = ACTIONS(593), - [anon_sym_LBRACK] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(571), + [anon_sym_RBRACK] = ACTIONS(593), [anon_sym_LBRACE] = ACTIONS(575), [anon_sym_EQ_GT] = ACTIONS(567), [anon_sym_COLON] = ACTIONS(577), @@ -24470,24 +25833,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(581), }, [73] = { - [sym__token_pattern] = STATE(176), - [sym_token_tree_pattern] = STATE(170), - [sym_token_binding_pattern] = STATE(170), - [sym_token_repetition_pattern] = STATE(170), - [sym__literal] = STATE(170), - [sym_string_literal] = STATE(177), - [sym_raw_string_literal] = STATE(177), - [sym_boolean_literal] = STATE(177), + [sym__token_pattern] = STATE(193), + [sym_token_tree_pattern] = STATE(190), + [sym_token_binding_pattern] = STATE(190), + [sym_token_repetition_pattern] = STATE(190), + [sym__literal] = STATE(190), + [sym_string_literal] = STATE(184), + [sym_raw_string_literal] = STATE(184), + [sym_boolean_literal] = STATE(184), [sym_line_comment] = STATE(73), [sym_block_comment] = STATE(73), [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(136), + [aux_sym__non_special_token_repeat1] = STATE(137), [sym_identifier] = ACTIONS(565), [anon_sym_SEMI] = ACTIONS(567), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_LBRACK] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(593), + [anon_sym_LBRACK] = ACTIONS(571), [anon_sym_LBRACE] = ACTIONS(575), + [anon_sym_RBRACE] = ACTIONS(593), [anon_sym_EQ_GT] = ACTIONS(567), [anon_sym_COLON] = ACTIONS(577), [anon_sym_DOLLAR] = ACTIONS(579), @@ -24594,24 +25957,272 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(581), }, [74] = { - [sym__token_pattern] = STATE(176), - [sym_token_tree_pattern] = STATE(170), - [sym_token_binding_pattern] = STATE(170), - [sym_token_repetition_pattern] = STATE(170), - [sym__literal] = STATE(170), - [sym_string_literal] = STATE(177), - [sym_raw_string_literal] = STATE(177), - [sym_boolean_literal] = STATE(177), + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(200), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(198), + [sym_string_literal] = STATE(203), + [sym_raw_string_literal] = STATE(203), + [sym_boolean_literal] = STATE(203), [sym_line_comment] = STATE(74), [sym_block_comment] = STATE(74), + [aux_sym__non_special_token_repeat1] = STATE(150), + [aux_sym_delim_token_tree_repeat1] = STATE(74), + [sym_identifier] = ACTIONS(597), + [anon_sym_SEMI] = ACTIONS(600), + [anon_sym_LPAREN] = ACTIONS(603), + [anon_sym_RPAREN] = ACTIONS(606), + [anon_sym_LBRACK] = ACTIONS(608), + [anon_sym_RBRACK] = ACTIONS(606), + [anon_sym_LBRACE] = ACTIONS(611), + [anon_sym_RBRACE] = ACTIONS(606), + [anon_sym_EQ_GT] = ACTIONS(600), + [anon_sym_COLON] = ACTIONS(614), + [anon_sym_DOLLAR] = ACTIONS(617), + [anon_sym_PLUS] = ACTIONS(614), + [anon_sym_STAR] = ACTIONS(614), + [anon_sym_QMARK] = ACTIONS(600), + [anon_sym_u8] = ACTIONS(597), + [anon_sym_i8] = ACTIONS(597), + [anon_sym_u16] = ACTIONS(597), + [anon_sym_i16] = ACTIONS(597), + [anon_sym_u32] = ACTIONS(597), + [anon_sym_i32] = ACTIONS(597), + [anon_sym_u64] = ACTIONS(597), + [anon_sym_i64] = ACTIONS(597), + [anon_sym_u128] = ACTIONS(597), + [anon_sym_i128] = ACTIONS(597), + [anon_sym_isize] = ACTIONS(597), + [anon_sym_usize] = ACTIONS(597), + [anon_sym_f32] = ACTIONS(597), + [anon_sym_f64] = ACTIONS(597), + [anon_sym_bool] = ACTIONS(597), + [anon_sym_str] = ACTIONS(597), + [anon_sym_char] = ACTIONS(597), + [anon_sym_DASH] = ACTIONS(614), + [anon_sym_SLASH] = ACTIONS(614), + [anon_sym_PERCENT] = ACTIONS(614), + [anon_sym_CARET] = ACTIONS(614), + [anon_sym_BANG] = ACTIONS(614), + [anon_sym_AMP] = ACTIONS(614), + [anon_sym_PIPE] = ACTIONS(614), + [anon_sym_AMP_AMP] = ACTIONS(600), + [anon_sym_PIPE_PIPE] = ACTIONS(600), + [anon_sym_LT_LT] = ACTIONS(614), + [anon_sym_GT_GT] = ACTIONS(614), + [anon_sym_PLUS_EQ] = ACTIONS(600), + [anon_sym_DASH_EQ] = ACTIONS(600), + [anon_sym_STAR_EQ] = ACTIONS(600), + [anon_sym_SLASH_EQ] = ACTIONS(600), + [anon_sym_PERCENT_EQ] = ACTIONS(600), + [anon_sym_CARET_EQ] = ACTIONS(600), + [anon_sym_AMP_EQ] = ACTIONS(600), + [anon_sym_PIPE_EQ] = ACTIONS(600), + [anon_sym_LT_LT_EQ] = ACTIONS(600), + [anon_sym_GT_GT_EQ] = ACTIONS(600), + [anon_sym_EQ] = ACTIONS(614), + [anon_sym_EQ_EQ] = ACTIONS(600), + [anon_sym_BANG_EQ] = ACTIONS(600), + [anon_sym_GT] = ACTIONS(614), + [anon_sym_LT] = ACTIONS(614), + [anon_sym_GT_EQ] = ACTIONS(600), + [anon_sym_LT_EQ] = ACTIONS(600), + [anon_sym_AT] = ACTIONS(600), + [anon_sym__] = ACTIONS(614), + [anon_sym_DOT] = ACTIONS(614), + [anon_sym_DOT_DOT] = ACTIONS(614), + [anon_sym_DOT_DOT_DOT] = ACTIONS(600), + [anon_sym_DOT_DOT_EQ] = ACTIONS(600), + [anon_sym_COMMA] = ACTIONS(600), + [anon_sym_COLON_COLON] = ACTIONS(600), + [anon_sym_DASH_GT] = ACTIONS(600), + [anon_sym_POUND] = ACTIONS(600), + [anon_sym_SQUOTE] = ACTIONS(597), + [anon_sym_as] = ACTIONS(597), + [anon_sym_async] = ACTIONS(597), + [anon_sym_await] = ACTIONS(597), + [anon_sym_break] = ACTIONS(597), + [anon_sym_const] = ACTIONS(597), + [anon_sym_continue] = ACTIONS(597), + [anon_sym_default] = ACTIONS(597), + [anon_sym_enum] = ACTIONS(597), + [anon_sym_fn] = ACTIONS(597), + [anon_sym_for] = ACTIONS(597), + [anon_sym_gen] = ACTIONS(597), + [anon_sym_if] = ACTIONS(597), + [anon_sym_impl] = ACTIONS(597), + [anon_sym_let] = ACTIONS(597), + [anon_sym_loop] = ACTIONS(597), + [anon_sym_match] = ACTIONS(597), + [anon_sym_mod] = ACTIONS(597), + [anon_sym_pub] = ACTIONS(597), + [anon_sym_return] = ACTIONS(597), + [anon_sym_static] = ACTIONS(597), + [anon_sym_struct] = ACTIONS(597), + [anon_sym_trait] = ACTIONS(597), + [anon_sym_type] = ACTIONS(597), + [anon_sym_union] = ACTIONS(597), + [anon_sym_unsafe] = ACTIONS(597), + [anon_sym_use] = ACTIONS(597), + [anon_sym_where] = ACTIONS(597), + [anon_sym_while] = ACTIONS(597), + [sym_mutable_specifier] = ACTIONS(597), + [sym_integer_literal] = ACTIONS(620), + [aux_sym_string_literal_token1] = ACTIONS(623), + [sym_char_literal] = ACTIONS(620), + [anon_sym_true] = ACTIONS(626), + [anon_sym_false] = ACTIONS(626), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(597), + [sym_super] = ACTIONS(597), + [sym_crate] = ACTIONS(597), + [sym__raw_string_literal_start] = ACTIONS(629), + [sym_float_literal] = ACTIONS(620), + }, + [75] = { + [sym_token_tree] = STATE(147), + [sym_token_repetition] = STATE(147), + [sym__literal] = STATE(147), + [sym_string_literal] = STATE(184), + [sym_raw_string_literal] = STATE(184), + [sym_boolean_literal] = STATE(184), + [sym_line_comment] = STATE(75), + [sym_block_comment] = STATE(75), + [aux_sym_token_tree_repeat1] = STATE(75), + [aux_sym__non_special_token_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(632), + [anon_sym_SEMI] = ACTIONS(635), + [anon_sym_LPAREN] = ACTIONS(638), + [anon_sym_RPAREN] = ACTIONS(641), + [anon_sym_LBRACK] = ACTIONS(643), + [anon_sym_RBRACK] = ACTIONS(641), + [anon_sym_LBRACE] = ACTIONS(646), + [anon_sym_RBRACE] = ACTIONS(641), + [anon_sym_EQ_GT] = ACTIONS(635), + [anon_sym_COLON] = ACTIONS(649), + [anon_sym_DOLLAR] = ACTIONS(652), + [anon_sym_PLUS] = ACTIONS(649), + [anon_sym_STAR] = ACTIONS(649), + [anon_sym_QMARK] = ACTIONS(635), + [anon_sym_u8] = ACTIONS(632), + [anon_sym_i8] = ACTIONS(632), + [anon_sym_u16] = ACTIONS(632), + [anon_sym_i16] = ACTIONS(632), + [anon_sym_u32] = ACTIONS(632), + [anon_sym_i32] = ACTIONS(632), + [anon_sym_u64] = ACTIONS(632), + [anon_sym_i64] = ACTIONS(632), + [anon_sym_u128] = ACTIONS(632), + [anon_sym_i128] = ACTIONS(632), + [anon_sym_isize] = ACTIONS(632), + [anon_sym_usize] = ACTIONS(632), + [anon_sym_f32] = ACTIONS(632), + [anon_sym_f64] = ACTIONS(632), + [anon_sym_bool] = ACTIONS(632), + [anon_sym_str] = ACTIONS(632), + [anon_sym_char] = ACTIONS(632), + [anon_sym_DASH] = ACTIONS(649), + [anon_sym_SLASH] = ACTIONS(649), + [anon_sym_PERCENT] = ACTIONS(649), + [anon_sym_CARET] = ACTIONS(649), + [anon_sym_BANG] = ACTIONS(649), + [anon_sym_AMP] = ACTIONS(649), + [anon_sym_PIPE] = ACTIONS(649), + [anon_sym_AMP_AMP] = ACTIONS(635), + [anon_sym_PIPE_PIPE] = ACTIONS(635), + [anon_sym_LT_LT] = ACTIONS(649), + [anon_sym_GT_GT] = ACTIONS(649), + [anon_sym_PLUS_EQ] = ACTIONS(635), + [anon_sym_DASH_EQ] = ACTIONS(635), + [anon_sym_STAR_EQ] = ACTIONS(635), + [anon_sym_SLASH_EQ] = ACTIONS(635), + [anon_sym_PERCENT_EQ] = ACTIONS(635), + [anon_sym_CARET_EQ] = ACTIONS(635), + [anon_sym_AMP_EQ] = ACTIONS(635), + [anon_sym_PIPE_EQ] = ACTIONS(635), + [anon_sym_LT_LT_EQ] = ACTIONS(635), + [anon_sym_GT_GT_EQ] = ACTIONS(635), + [anon_sym_EQ] = ACTIONS(649), + [anon_sym_EQ_EQ] = ACTIONS(635), + [anon_sym_BANG_EQ] = ACTIONS(635), + [anon_sym_GT] = ACTIONS(649), + [anon_sym_LT] = ACTIONS(649), + [anon_sym_GT_EQ] = ACTIONS(635), + [anon_sym_LT_EQ] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(635), + [anon_sym__] = ACTIONS(649), + [anon_sym_DOT] = ACTIONS(649), + [anon_sym_DOT_DOT] = ACTIONS(649), + [anon_sym_DOT_DOT_DOT] = ACTIONS(635), + [anon_sym_DOT_DOT_EQ] = ACTIONS(635), + [anon_sym_COMMA] = ACTIONS(635), + [anon_sym_COLON_COLON] = ACTIONS(635), + [anon_sym_DASH_GT] = ACTIONS(635), + [anon_sym_POUND] = ACTIONS(635), + [anon_sym_SQUOTE] = ACTIONS(632), + [anon_sym_as] = ACTIONS(632), + [anon_sym_async] = ACTIONS(632), + [anon_sym_await] = ACTIONS(632), + [anon_sym_break] = ACTIONS(632), + [anon_sym_const] = ACTIONS(632), + [anon_sym_continue] = ACTIONS(632), + [anon_sym_default] = ACTIONS(632), + [anon_sym_enum] = ACTIONS(632), + [anon_sym_fn] = ACTIONS(632), + [anon_sym_for] = ACTIONS(632), + [anon_sym_gen] = ACTIONS(632), + [anon_sym_if] = ACTIONS(632), + [anon_sym_impl] = ACTIONS(632), + [anon_sym_let] = ACTIONS(632), + [anon_sym_loop] = ACTIONS(632), + [anon_sym_match] = ACTIONS(632), + [anon_sym_mod] = ACTIONS(632), + [anon_sym_pub] = ACTIONS(632), + [anon_sym_return] = ACTIONS(632), + [anon_sym_static] = ACTIONS(632), + [anon_sym_struct] = ACTIONS(632), + [anon_sym_trait] = ACTIONS(632), + [anon_sym_type] = ACTIONS(632), + [anon_sym_union] = ACTIONS(632), + [anon_sym_unsafe] = ACTIONS(632), + [anon_sym_use] = ACTIONS(632), + [anon_sym_where] = ACTIONS(632), + [anon_sym_while] = ACTIONS(632), + [sym_mutable_specifier] = ACTIONS(632), + [sym_integer_literal] = ACTIONS(655), + [aux_sym_string_literal_token1] = ACTIONS(658), + [sym_char_literal] = ACTIONS(655), + [anon_sym_true] = ACTIONS(661), + [anon_sym_false] = ACTIONS(661), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(632), + [sym_super] = ACTIONS(632), + [sym_crate] = ACTIONS(632), + [sym_metavariable] = ACTIONS(664), + [sym__raw_string_literal_start] = ACTIONS(667), + [sym_float_literal] = ACTIONS(655), + }, + [76] = { + [sym__token_pattern] = STATE(193), + [sym_token_tree_pattern] = STATE(190), + [sym_token_binding_pattern] = STATE(190), + [sym_token_repetition_pattern] = STATE(190), + [sym__literal] = STATE(190), + [sym_string_literal] = STATE(184), + [sym_raw_string_literal] = STATE(184), + [sym_boolean_literal] = STATE(184), + [sym_line_comment] = STATE(76), + [sym_block_comment] = STATE(76), [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(136), + [aux_sym__non_special_token_repeat1] = STATE(137), [sym_identifier] = ACTIONS(565), [anon_sym_SEMI] = ACTIONS(567), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_LBRACK] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(571), [anon_sym_LBRACE] = ACTIONS(575), - [anon_sym_RBRACE] = ACTIONS(593), + [anon_sym_RBRACE] = ACTIONS(573), [anon_sym_EQ_GT] = ACTIONS(567), [anon_sym_COLON] = ACTIONS(577), [anon_sym_DOLLAR] = ACTIONS(579), @@ -24717,25 +26328,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(589), [sym_float_literal] = ACTIONS(581), }, - [75] = { - [sym__token_pattern] = STATE(176), - [sym_token_tree_pattern] = STATE(170), - [sym_token_binding_pattern] = STATE(170), - [sym_token_repetition_pattern] = STATE(170), - [sym__literal] = STATE(170), - [sym_string_literal] = STATE(177), - [sym_raw_string_literal] = STATE(177), - [sym_boolean_literal] = STATE(177), - [sym_line_comment] = STATE(75), - [sym_block_comment] = STATE(75), - [aux_sym_token_tree_pattern_repeat1] = STATE(79), - [aux_sym__non_special_token_repeat1] = STATE(136), + [77] = { + [sym__token_pattern] = STATE(193), + [sym_token_tree_pattern] = STATE(190), + [sym_token_binding_pattern] = STATE(190), + [sym_token_repetition_pattern] = STATE(190), + [sym__literal] = STATE(190), + [sym_string_literal] = STATE(184), + [sym_raw_string_literal] = STATE(184), + [sym_boolean_literal] = STATE(184), + [sym_line_comment] = STATE(77), + [sym_block_comment] = STATE(77), + [aux_sym_token_tree_pattern_repeat1] = STATE(67), + [aux_sym__non_special_token_repeat1] = STATE(137), [sym_identifier] = ACTIONS(565), [anon_sym_SEMI] = ACTIONS(567), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_LBRACK] = ACTIONS(573), + [anon_sym_RPAREN] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(571), [anon_sym_LBRACE] = ACTIONS(575), - [anon_sym_RBRACE] = ACTIONS(591), [anon_sym_EQ_GT] = ACTIONS(567), [anon_sym_COLON] = ACTIONS(577), [anon_sym_DOLLAR] = ACTIONS(579), @@ -24841,25 +26452,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(589), [sym_float_literal] = ACTIONS(581), }, - [76] = { - [sym__token_pattern] = STATE(176), - [sym_token_tree_pattern] = STATE(170), - [sym_token_binding_pattern] = STATE(170), - [sym_token_repetition_pattern] = STATE(170), - [sym__literal] = STATE(170), - [sym_string_literal] = STATE(177), - [sym_raw_string_literal] = STATE(177), - [sym_boolean_literal] = STATE(177), - [sym_line_comment] = STATE(76), - [sym_block_comment] = STATE(76), - [aux_sym_token_tree_pattern_repeat1] = STATE(77), - [aux_sym__non_special_token_repeat1] = STATE(136), + [78] = { + [sym__token_pattern] = STATE(193), + [sym_token_tree_pattern] = STATE(190), + [sym_token_binding_pattern] = STATE(190), + [sym_token_repetition_pattern] = STATE(190), + [sym__literal] = STATE(190), + [sym_string_literal] = STATE(184), + [sym_raw_string_literal] = STATE(184), + [sym_boolean_literal] = STATE(184), + [sym_line_comment] = STATE(78), + [sym_block_comment] = STATE(78), + [aux_sym_token_tree_pattern_repeat1] = STATE(76), + [aux_sym__non_special_token_repeat1] = STATE(137), [sym_identifier] = ACTIONS(565), [anon_sym_SEMI] = ACTIONS(567), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_RPAREN] = ACTIONS(591), - [anon_sym_LBRACK] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(571), [anon_sym_LBRACE] = ACTIONS(575), + [anon_sym_RBRACE] = ACTIONS(670), [anon_sym_EQ_GT] = ACTIONS(567), [anon_sym_COLON] = ACTIONS(577), [anon_sym_DOLLAR] = ACTIONS(579), @@ -24965,24 +26576,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(589), [sym_float_literal] = ACTIONS(581), }, - [77] = { - [sym__token_pattern] = STATE(176), - [sym_token_tree_pattern] = STATE(170), - [sym_token_binding_pattern] = STATE(170), - [sym_token_repetition_pattern] = STATE(170), - [sym__literal] = STATE(170), - [sym_string_literal] = STATE(177), - [sym_raw_string_literal] = STATE(177), - [sym_boolean_literal] = STATE(177), - [sym_line_comment] = STATE(77), - [sym_block_comment] = STATE(77), - [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(136), + [79] = { + [sym__token_pattern] = STATE(193), + [sym_token_tree_pattern] = STATE(190), + [sym_token_binding_pattern] = STATE(190), + [sym_token_repetition_pattern] = STATE(190), + [sym__literal] = STATE(190), + [sym_string_literal] = STATE(184), + [sym_raw_string_literal] = STATE(184), + [sym_boolean_literal] = STATE(184), + [sym_line_comment] = STATE(79), + [sym_block_comment] = STATE(79), + [aux_sym_token_tree_pattern_repeat1] = STATE(68), + [aux_sym__non_special_token_repeat1] = STATE(137), [sym_identifier] = ACTIONS(565), [anon_sym_SEMI] = ACTIONS(567), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_RPAREN] = ACTIONS(595), - [anon_sym_LBRACK] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(571), + [anon_sym_RBRACK] = ACTIONS(670), [anon_sym_LBRACE] = ACTIONS(575), [anon_sym_EQ_GT] = ACTIONS(567), [anon_sym_COLON] = ACTIONS(577), @@ -25089,24 +26700,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(589), [sym_float_literal] = ACTIONS(581), }, - [78] = { - [sym__token_pattern] = STATE(176), - [sym_token_tree_pattern] = STATE(170), - [sym_token_binding_pattern] = STATE(170), - [sym_token_repetition_pattern] = STATE(170), - [sym__literal] = STATE(170), - [sym_string_literal] = STATE(177), - [sym_raw_string_literal] = STATE(177), - [sym_boolean_literal] = STATE(177), - [sym_line_comment] = STATE(78), - [sym_block_comment] = STATE(78), - [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(136), + [80] = { + [sym__token_pattern] = STATE(193), + [sym_token_tree_pattern] = STATE(190), + [sym_token_binding_pattern] = STATE(190), + [sym_token_repetition_pattern] = STATE(190), + [sym__literal] = STATE(190), + [sym_string_literal] = STATE(184), + [sym_raw_string_literal] = STATE(184), + [sym_boolean_literal] = STATE(184), + [sym_line_comment] = STATE(80), + [sym_block_comment] = STATE(80), + [aux_sym_token_tree_pattern_repeat1] = STATE(77), + [aux_sym__non_special_token_repeat1] = STATE(137), [sym_identifier] = ACTIONS(565), [anon_sym_SEMI] = ACTIONS(567), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_LBRACK] = ACTIONS(573), - [anon_sym_RBRACK] = ACTIONS(595), + [anon_sym_RPAREN] = ACTIONS(670), + [anon_sym_LBRACK] = ACTIONS(571), [anon_sym_LBRACE] = ACTIONS(575), [anon_sym_EQ_GT] = ACTIONS(567), [anon_sym_COLON] = ACTIONS(577), @@ -25213,25 +26824,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(589), [sym_float_literal] = ACTIONS(581), }, - [79] = { - [sym__token_pattern] = STATE(176), - [sym_token_tree_pattern] = STATE(170), - [sym_token_binding_pattern] = STATE(170), - [sym_token_repetition_pattern] = STATE(170), - [sym__literal] = STATE(170), - [sym_string_literal] = STATE(177), - [sym_raw_string_literal] = STATE(177), - [sym_boolean_literal] = STATE(177), - [sym_line_comment] = STATE(79), - [sym_block_comment] = STATE(79), - [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(136), + [81] = { + [sym__token_pattern] = STATE(193), + [sym_token_tree_pattern] = STATE(190), + [sym_token_binding_pattern] = STATE(190), + [sym_token_repetition_pattern] = STATE(190), + [sym__literal] = STATE(190), + [sym_string_literal] = STATE(184), + [sym_raw_string_literal] = STATE(184), + [sym_boolean_literal] = STATE(184), + [sym_line_comment] = STATE(81), + [sym_block_comment] = STATE(81), + [aux_sym_token_tree_pattern_repeat1] = STATE(71), + [aux_sym__non_special_token_repeat1] = STATE(137), [sym_identifier] = ACTIONS(565), [anon_sym_SEMI] = ACTIONS(567), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_LBRACK] = ACTIONS(573), + [anon_sym_RPAREN] = ACTIONS(672), + [anon_sym_LBRACK] = ACTIONS(571), [anon_sym_LBRACE] = ACTIONS(575), - [anon_sym_RBRACE] = ACTIONS(595), [anon_sym_EQ_GT] = ACTIONS(567), [anon_sym_COLON] = ACTIONS(577), [anon_sym_DOLLAR] = ACTIONS(579), @@ -25337,25 +26948,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(589), [sym_float_literal] = ACTIONS(581), }, - [80] = { - [sym__token_pattern] = STATE(176), - [sym_token_tree_pattern] = STATE(170), - [sym_token_binding_pattern] = STATE(170), - [sym_token_repetition_pattern] = STATE(170), - [sym__literal] = STATE(170), - [sym_string_literal] = STATE(177), - [sym_raw_string_literal] = STATE(177), - [sym_boolean_literal] = STATE(177), - [sym_line_comment] = STATE(80), - [sym_block_comment] = STATE(80), - [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(136), + [82] = { + [sym__token_pattern] = STATE(193), + [sym_token_tree_pattern] = STATE(190), + [sym_token_binding_pattern] = STATE(190), + [sym_token_repetition_pattern] = STATE(190), + [sym__literal] = STATE(190), + [sym_string_literal] = STATE(184), + [sym_raw_string_literal] = STATE(184), + [sym_boolean_literal] = STATE(184), + [sym_line_comment] = STATE(82), + [sym_block_comment] = STATE(82), + [aux_sym_token_tree_pattern_repeat1] = STATE(73), + [aux_sym__non_special_token_repeat1] = STATE(137), [sym_identifier] = ACTIONS(565), [anon_sym_SEMI] = ACTIONS(567), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_RPAREN] = ACTIONS(597), - [anon_sym_LBRACK] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(571), [anon_sym_LBRACE] = ACTIONS(575), + [anon_sym_RBRACE] = ACTIONS(591), [anon_sym_EQ_GT] = ACTIONS(567), [anon_sym_COLON] = ACTIONS(577), [anon_sym_DOLLAR] = ACTIONS(579), @@ -25461,24 +27072,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(589), [sym_float_literal] = ACTIONS(581), }, - [81] = { - [sym__token_pattern] = STATE(176), - [sym_token_tree_pattern] = STATE(170), - [sym_token_binding_pattern] = STATE(170), - [sym_token_repetition_pattern] = STATE(170), - [sym__literal] = STATE(170), - [sym_string_literal] = STATE(177), - [sym_raw_string_literal] = STATE(177), - [sym_boolean_literal] = STATE(177), - [sym_line_comment] = STATE(81), - [sym_block_comment] = STATE(81), - [aux_sym_token_tree_pattern_repeat1] = STATE(80), - [aux_sym__non_special_token_repeat1] = STATE(136), + [83] = { + [sym__token_pattern] = STATE(193), + [sym_token_tree_pattern] = STATE(190), + [sym_token_binding_pattern] = STATE(190), + [sym_token_repetition_pattern] = STATE(190), + [sym__literal] = STATE(190), + [sym_string_literal] = STATE(184), + [sym_raw_string_literal] = STATE(184), + [sym_boolean_literal] = STATE(184), + [sym_line_comment] = STATE(83), + [sym_block_comment] = STATE(83), + [aux_sym_token_tree_pattern_repeat1] = STATE(72), + [aux_sym__non_special_token_repeat1] = STATE(137), [sym_identifier] = ACTIONS(565), [anon_sym_SEMI] = ACTIONS(567), [anon_sym_LPAREN] = ACTIONS(569), - [anon_sym_RPAREN] = ACTIONS(599), - [anon_sym_LBRACK] = ACTIONS(573), + [anon_sym_LBRACK] = ACTIONS(571), + [anon_sym_RBRACK] = ACTIONS(591), [anon_sym_LBRACE] = ACTIONS(575), [anon_sym_EQ_GT] = ACTIONS(567), [anon_sym_COLON] = ACTIONS(577), @@ -25585,272 +27196,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(589), [sym_float_literal] = ACTIONS(581), }, - [82] = { - [sym_token_tree] = STATE(152), - [sym_token_repetition] = STATE(152), - [sym__literal] = STATE(152), - [sym_string_literal] = STATE(177), - [sym_raw_string_literal] = STATE(177), - [sym_boolean_literal] = STATE(177), - [sym_line_comment] = STATE(82), - [sym_block_comment] = STATE(82), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(143), - [sym_identifier] = ACTIONS(601), - [anon_sym_SEMI] = ACTIONS(604), - [anon_sym_LPAREN] = ACTIONS(607), - [anon_sym_RPAREN] = ACTIONS(610), - [anon_sym_LBRACK] = ACTIONS(612), - [anon_sym_RBRACK] = ACTIONS(610), - [anon_sym_LBRACE] = ACTIONS(615), - [anon_sym_RBRACE] = ACTIONS(610), - [anon_sym_EQ_GT] = ACTIONS(604), - [anon_sym_COLON] = ACTIONS(618), - [anon_sym_DOLLAR] = ACTIONS(621), - [anon_sym_PLUS] = ACTIONS(618), - [anon_sym_STAR] = ACTIONS(618), - [anon_sym_QMARK] = ACTIONS(604), - [anon_sym_u8] = ACTIONS(601), - [anon_sym_i8] = ACTIONS(601), - [anon_sym_u16] = ACTIONS(601), - [anon_sym_i16] = ACTIONS(601), - [anon_sym_u32] = ACTIONS(601), - [anon_sym_i32] = ACTIONS(601), - [anon_sym_u64] = ACTIONS(601), - [anon_sym_i64] = ACTIONS(601), - [anon_sym_u128] = ACTIONS(601), - [anon_sym_i128] = ACTIONS(601), - [anon_sym_isize] = ACTIONS(601), - [anon_sym_usize] = ACTIONS(601), - [anon_sym_f32] = ACTIONS(601), - [anon_sym_f64] = ACTIONS(601), - [anon_sym_bool] = ACTIONS(601), - [anon_sym_str] = ACTIONS(601), - [anon_sym_char] = ACTIONS(601), - [anon_sym_DASH] = ACTIONS(618), - [anon_sym_SLASH] = ACTIONS(618), - [anon_sym_PERCENT] = ACTIONS(618), - [anon_sym_CARET] = ACTIONS(618), - [anon_sym_BANG] = ACTIONS(618), - [anon_sym_AMP] = ACTIONS(618), - [anon_sym_PIPE] = ACTIONS(618), - [anon_sym_AMP_AMP] = ACTIONS(604), - [anon_sym_PIPE_PIPE] = ACTIONS(604), - [anon_sym_LT_LT] = ACTIONS(618), - [anon_sym_GT_GT] = ACTIONS(618), - [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_CARET_EQ] = ACTIONS(604), - [anon_sym_AMP_EQ] = ACTIONS(604), - [anon_sym_PIPE_EQ] = ACTIONS(604), - [anon_sym_LT_LT_EQ] = ACTIONS(604), - [anon_sym_GT_GT_EQ] = ACTIONS(604), - [anon_sym_EQ] = ACTIONS(618), - [anon_sym_EQ_EQ] = ACTIONS(604), - [anon_sym_BANG_EQ] = ACTIONS(604), - [anon_sym_GT] = ACTIONS(618), - [anon_sym_LT] = ACTIONS(618), - [anon_sym_GT_EQ] = ACTIONS(604), - [anon_sym_LT_EQ] = ACTIONS(604), - [anon_sym_AT] = ACTIONS(604), - [anon_sym__] = ACTIONS(618), - [anon_sym_DOT] = ACTIONS(618), - [anon_sym_DOT_DOT] = ACTIONS(618), - [anon_sym_DOT_DOT_DOT] = ACTIONS(604), - [anon_sym_DOT_DOT_EQ] = ACTIONS(604), - [anon_sym_COMMA] = ACTIONS(604), - [anon_sym_COLON_COLON] = ACTIONS(604), - [anon_sym_DASH_GT] = ACTIONS(604), - [anon_sym_POUND] = ACTIONS(604), - [anon_sym_SQUOTE] = ACTIONS(601), - [anon_sym_as] = ACTIONS(601), - [anon_sym_async] = ACTIONS(601), - [anon_sym_await] = ACTIONS(601), - [anon_sym_break] = ACTIONS(601), - [anon_sym_const] = ACTIONS(601), - [anon_sym_continue] = ACTIONS(601), - [anon_sym_default] = ACTIONS(601), - [anon_sym_enum] = ACTIONS(601), - [anon_sym_fn] = ACTIONS(601), - [anon_sym_for] = ACTIONS(601), - [anon_sym_gen] = ACTIONS(601), - [anon_sym_if] = ACTIONS(601), - [anon_sym_impl] = ACTIONS(601), - [anon_sym_let] = ACTIONS(601), - [anon_sym_loop] = ACTIONS(601), - [anon_sym_match] = ACTIONS(601), - [anon_sym_mod] = ACTIONS(601), - [anon_sym_pub] = ACTIONS(601), - [anon_sym_return] = ACTIONS(601), - [anon_sym_static] = ACTIONS(601), - [anon_sym_struct] = ACTIONS(601), - [anon_sym_trait] = ACTIONS(601), - [anon_sym_type] = ACTIONS(601), - [anon_sym_union] = ACTIONS(601), - [anon_sym_unsafe] = ACTIONS(601), - [anon_sym_use] = ACTIONS(601), - [anon_sym_where] = ACTIONS(601), - [anon_sym_while] = ACTIONS(601), - [sym_mutable_specifier] = ACTIONS(601), - [sym_integer_literal] = ACTIONS(624), - [aux_sym_string_literal_token1] = ACTIONS(627), - [sym_char_literal] = ACTIONS(624), - [anon_sym_true] = ACTIONS(630), - [anon_sym_false] = ACTIONS(630), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(601), - [sym_super] = ACTIONS(601), - [sym_crate] = ACTIONS(601), - [sym_metavariable] = ACTIONS(633), - [sym__raw_string_literal_start] = ACTIONS(636), - [sym_float_literal] = ACTIONS(624), - }, - [83] = { - [sym_delim_token_tree] = STATE(198), - [sym__delim_tokens] = STATE(206), - [sym__non_delim_token] = STATE(198), - [sym__literal] = STATE(214), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(83), - [sym_block_comment] = STATE(83), - [aux_sym__non_special_token_repeat1] = STATE(157), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(639), - [anon_sym_SEMI] = ACTIONS(642), - [anon_sym_LPAREN] = ACTIONS(645), - [anon_sym_RPAREN] = ACTIONS(648), - [anon_sym_LBRACK] = ACTIONS(650), - [anon_sym_RBRACK] = ACTIONS(648), - [anon_sym_LBRACE] = ACTIONS(653), - [anon_sym_RBRACE] = ACTIONS(648), - [anon_sym_EQ_GT] = ACTIONS(642), - [anon_sym_COLON] = ACTIONS(656), - [anon_sym_DOLLAR] = ACTIONS(659), - [anon_sym_PLUS] = ACTIONS(656), - [anon_sym_STAR] = ACTIONS(656), - [anon_sym_QMARK] = ACTIONS(642), - [anon_sym_u8] = ACTIONS(639), - [anon_sym_i8] = ACTIONS(639), - [anon_sym_u16] = ACTIONS(639), - [anon_sym_i16] = ACTIONS(639), - [anon_sym_u32] = ACTIONS(639), - [anon_sym_i32] = ACTIONS(639), - [anon_sym_u64] = ACTIONS(639), - [anon_sym_i64] = ACTIONS(639), - [anon_sym_u128] = ACTIONS(639), - [anon_sym_i128] = ACTIONS(639), - [anon_sym_isize] = ACTIONS(639), - [anon_sym_usize] = ACTIONS(639), - [anon_sym_f32] = ACTIONS(639), - [anon_sym_f64] = ACTIONS(639), - [anon_sym_bool] = ACTIONS(639), - [anon_sym_str] = ACTIONS(639), - [anon_sym_char] = ACTIONS(639), - [anon_sym_DASH] = ACTIONS(656), - [anon_sym_SLASH] = ACTIONS(656), - [anon_sym_PERCENT] = ACTIONS(656), - [anon_sym_CARET] = ACTIONS(656), - [anon_sym_BANG] = ACTIONS(656), - [anon_sym_AMP] = ACTIONS(656), - [anon_sym_PIPE] = ACTIONS(656), - [anon_sym_AMP_AMP] = ACTIONS(642), - [anon_sym_PIPE_PIPE] = ACTIONS(642), - [anon_sym_LT_LT] = ACTIONS(656), - [anon_sym_GT_GT] = ACTIONS(656), - [anon_sym_PLUS_EQ] = ACTIONS(642), - [anon_sym_DASH_EQ] = ACTIONS(642), - [anon_sym_STAR_EQ] = ACTIONS(642), - [anon_sym_SLASH_EQ] = ACTIONS(642), - [anon_sym_PERCENT_EQ] = ACTIONS(642), - [anon_sym_CARET_EQ] = ACTIONS(642), - [anon_sym_AMP_EQ] = ACTIONS(642), - [anon_sym_PIPE_EQ] = ACTIONS(642), - [anon_sym_LT_LT_EQ] = ACTIONS(642), - [anon_sym_GT_GT_EQ] = ACTIONS(642), - [anon_sym_EQ] = ACTIONS(656), - [anon_sym_EQ_EQ] = ACTIONS(642), - [anon_sym_BANG_EQ] = ACTIONS(642), - [anon_sym_GT] = ACTIONS(656), - [anon_sym_LT] = ACTIONS(656), - [anon_sym_GT_EQ] = ACTIONS(642), - [anon_sym_LT_EQ] = ACTIONS(642), - [anon_sym_AT] = ACTIONS(642), - [anon_sym__] = ACTIONS(656), - [anon_sym_DOT] = ACTIONS(656), - [anon_sym_DOT_DOT] = ACTIONS(656), - [anon_sym_DOT_DOT_DOT] = ACTIONS(642), - [anon_sym_DOT_DOT_EQ] = ACTIONS(642), - [anon_sym_COMMA] = ACTIONS(642), - [anon_sym_COLON_COLON] = ACTIONS(642), - [anon_sym_DASH_GT] = ACTIONS(642), - [anon_sym_POUND] = ACTIONS(642), - [anon_sym_SQUOTE] = ACTIONS(639), - [anon_sym_as] = ACTIONS(639), - [anon_sym_async] = ACTIONS(639), - [anon_sym_await] = ACTIONS(639), - [anon_sym_break] = ACTIONS(639), - [anon_sym_const] = ACTIONS(639), - [anon_sym_continue] = ACTIONS(639), - [anon_sym_default] = ACTIONS(639), - [anon_sym_enum] = ACTIONS(639), - [anon_sym_fn] = ACTIONS(639), - [anon_sym_for] = ACTIONS(639), - [anon_sym_gen] = ACTIONS(639), - [anon_sym_if] = ACTIONS(639), - [anon_sym_impl] = ACTIONS(639), - [anon_sym_let] = ACTIONS(639), - [anon_sym_loop] = ACTIONS(639), - [anon_sym_match] = ACTIONS(639), - [anon_sym_mod] = ACTIONS(639), - [anon_sym_pub] = ACTIONS(639), - [anon_sym_return] = ACTIONS(639), - [anon_sym_static] = ACTIONS(639), - [anon_sym_struct] = ACTIONS(639), - [anon_sym_trait] = ACTIONS(639), - [anon_sym_type] = ACTIONS(639), - [anon_sym_union] = ACTIONS(639), - [anon_sym_unsafe] = ACTIONS(639), - [anon_sym_use] = ACTIONS(639), - [anon_sym_where] = ACTIONS(639), - [anon_sym_while] = ACTIONS(639), - [sym_mutable_specifier] = ACTIONS(639), - [sym_integer_literal] = ACTIONS(662), - [aux_sym_string_literal_token1] = ACTIONS(665), - [sym_char_literal] = ACTIONS(662), - [anon_sym_true] = ACTIONS(668), - [anon_sym_false] = ACTIONS(668), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(639), - [sym_super] = ACTIONS(639), - [sym_crate] = ACTIONS(639), - [sym__raw_string_literal_start] = ACTIONS(671), - [sym_float_literal] = ACTIONS(662), - }, [84] = { - [sym_delim_token_tree] = STATE(198), - [sym__delim_tokens] = STATE(206), - [sym__non_delim_token] = STATE(198), - [sym__literal] = STATE(214), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(200), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(198), + [sym_string_literal] = STATE(203), + [sym_raw_string_literal] = STATE(203), + [sym_boolean_literal] = STATE(203), [sym_line_comment] = STATE(84), [sym_block_comment] = STATE(84), - [aux_sym__non_special_token_repeat1] = STATE(157), - [aux_sym_delim_token_tree_repeat1] = STATE(127), + [aux_sym__non_special_token_repeat1] = STATE(150), + [aux_sym_delim_token_tree_repeat1] = STATE(112), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_RBRACE] = ACTIONS(684), + [anon_sym_RPAREN] = ACTIONS(680), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LBRACE] = ACTIONS(684), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), [anon_sym_DOLLAR] = ACTIONS(688), @@ -25956,23 +27319,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(690), }, [85] = { - [sym_delim_token_tree] = STATE(198), - [sym__delim_tokens] = STATE(206), - [sym__non_delim_token] = STATE(198), - [sym__literal] = STATE(214), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(200), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(198), + [sym_string_literal] = STATE(203), + [sym_raw_string_literal] = STATE(203), + [sym_boolean_literal] = STATE(203), [sym_line_comment] = STATE(85), [sym_block_comment] = STATE(85), - [aux_sym__non_special_token_repeat1] = STATE(157), - [aux_sym_delim_token_tree_repeat1] = STATE(83), + [aux_sym__non_special_token_repeat1] = STATE(150), + [aux_sym_delim_token_tree_repeat1] = STATE(74), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(698), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LBRACE] = ACTIONS(684), + [anon_sym_RBRACE] = ACTIONS(698), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), [anon_sym_DOLLAR] = ACTIONS(688), @@ -26078,23 +27441,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(690), }, [86] = { - [sym_delim_token_tree] = STATE(198), - [sym__delim_tokens] = STATE(206), - [sym__non_delim_token] = STATE(198), - [sym__literal] = STATE(214), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(200), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(198), + [sym_string_literal] = STATE(203), + [sym_raw_string_literal] = STATE(203), + [sym_boolean_literal] = STATE(203), [sym_line_comment] = STATE(86), [sym_block_comment] = STATE(86), - [aux_sym__non_special_token_repeat1] = STATE(157), - [aux_sym_delim_token_tree_repeat1] = STATE(83), + [aux_sym__non_special_token_repeat1] = STATE(150), + [aux_sym_delim_token_tree_repeat1] = STATE(124), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_RBRACK] = ACTIONS(698), - [anon_sym_LBRACE] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_RBRACK] = ACTIONS(680), + [anon_sym_LBRACE] = ACTIONS(684), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), [anon_sym_DOLLAR] = ACTIONS(688), @@ -26200,23 +27563,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(690), }, [87] = { - [sym_delim_token_tree] = STATE(198), - [sym__delim_tokens] = STATE(206), - [sym__non_delim_token] = STATE(198), - [sym__literal] = STATE(214), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(200), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(198), + [sym_string_literal] = STATE(203), + [sym_raw_string_literal] = STATE(203), + [sym_boolean_literal] = STATE(203), [sym_line_comment] = STATE(87), [sym_block_comment] = STATE(87), - [aux_sym__non_special_token_repeat1] = STATE(157), - [aux_sym_delim_token_tree_repeat1] = STATE(83), + [aux_sym__non_special_token_repeat1] = STATE(150), + [aux_sym_delim_token_tree_repeat1] = STATE(108), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_RBRACE] = ACTIONS(698), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_RBRACK] = ACTIONS(700), + [anon_sym_LBRACE] = ACTIONS(684), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), [anon_sym_DOLLAR] = ACTIONS(688), @@ -26322,167 +27685,167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(690), }, [88] = { - [sym_token_tree] = STATE(152), - [sym_token_repetition] = STATE(152), - [sym__literal] = STATE(152), - [sym_string_literal] = STATE(177), - [sym_raw_string_literal] = STATE(177), - [sym_boolean_literal] = STATE(177), + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(200), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(198), + [sym_string_literal] = STATE(203), + [sym_raw_string_literal] = STATE(203), + [sym_boolean_literal] = STATE(203), [sym_line_comment] = STATE(88), [sym_block_comment] = STATE(88), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(143), - [sym_identifier] = ACTIONS(700), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(702), - [anon_sym_LBRACK] = ACTIONS(704), - [anon_sym_RBRACK] = ACTIONS(706), - [anon_sym_LBRACE] = ACTIONS(708), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(710), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(700), - [anon_sym_i8] = ACTIONS(700), - [anon_sym_u16] = ACTIONS(700), - [anon_sym_i16] = ACTIONS(700), - [anon_sym_u32] = ACTIONS(700), - [anon_sym_i32] = ACTIONS(700), - [anon_sym_u64] = ACTIONS(700), - [anon_sym_i64] = ACTIONS(700), - [anon_sym_u128] = ACTIONS(700), - [anon_sym_i128] = ACTIONS(700), - [anon_sym_isize] = ACTIONS(700), - [anon_sym_usize] = ACTIONS(700), - [anon_sym_f32] = ACTIONS(700), - [anon_sym_f64] = ACTIONS(700), - [anon_sym_bool] = ACTIONS(700), - [anon_sym_str] = ACTIONS(700), - [anon_sym_char] = ACTIONS(700), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(700), - [anon_sym_as] = ACTIONS(700), - [anon_sym_async] = ACTIONS(700), - [anon_sym_await] = ACTIONS(700), - [anon_sym_break] = ACTIONS(700), - [anon_sym_const] = ACTIONS(700), - [anon_sym_continue] = ACTIONS(700), - [anon_sym_default] = ACTIONS(700), - [anon_sym_enum] = ACTIONS(700), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(700), - [anon_sym_gen] = ACTIONS(700), - [anon_sym_if] = ACTIONS(700), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_let] = ACTIONS(700), - [anon_sym_loop] = ACTIONS(700), - [anon_sym_match] = ACTIONS(700), - [anon_sym_mod] = ACTIONS(700), - [anon_sym_pub] = ACTIONS(700), - [anon_sym_return] = ACTIONS(700), - [anon_sym_static] = ACTIONS(700), - [anon_sym_struct] = ACTIONS(700), - [anon_sym_trait] = ACTIONS(700), - [anon_sym_type] = ACTIONS(700), - [anon_sym_union] = ACTIONS(700), - [anon_sym_unsafe] = ACTIONS(700), - [anon_sym_use] = ACTIONS(700), - [anon_sym_where] = ACTIONS(700), - [anon_sym_while] = ACTIONS(700), - [sym_mutable_specifier] = ACTIONS(700), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), + [aux_sym__non_special_token_repeat1] = STATE(150), + [aux_sym_delim_token_tree_repeat1] = STATE(113), + [sym_identifier] = ACTIONS(674), + [anon_sym_SEMI] = ACTIONS(676), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_RPAREN] = ACTIONS(700), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LBRACE] = ACTIONS(684), + [anon_sym_EQ_GT] = ACTIONS(676), + [anon_sym_COLON] = ACTIONS(686), + [anon_sym_DOLLAR] = ACTIONS(688), + [anon_sym_PLUS] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(686), + [anon_sym_QMARK] = ACTIONS(676), + [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_DASH] = ACTIONS(686), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_PERCENT] = ACTIONS(686), + [anon_sym_CARET] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(686), + [anon_sym_AMP] = ACTIONS(686), + [anon_sym_PIPE] = ACTIONS(686), + [anon_sym_AMP_AMP] = ACTIONS(676), + [anon_sym_PIPE_PIPE] = ACTIONS(676), + [anon_sym_LT_LT] = ACTIONS(686), + [anon_sym_GT_GT] = ACTIONS(686), + [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_CARET_EQ] = ACTIONS(676), + [anon_sym_AMP_EQ] = ACTIONS(676), + [anon_sym_PIPE_EQ] = ACTIONS(676), + [anon_sym_LT_LT_EQ] = ACTIONS(676), + [anon_sym_GT_GT_EQ] = ACTIONS(676), + [anon_sym_EQ] = ACTIONS(686), + [anon_sym_EQ_EQ] = ACTIONS(676), + [anon_sym_BANG_EQ] = ACTIONS(676), + [anon_sym_GT] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(686), + [anon_sym_GT_EQ] = ACTIONS(676), + [anon_sym_LT_EQ] = ACTIONS(676), + [anon_sym_AT] = ACTIONS(676), + [anon_sym__] = ACTIONS(686), + [anon_sym_DOT] = ACTIONS(686), + [anon_sym_DOT_DOT] = ACTIONS(686), + [anon_sym_DOT_DOT_DOT] = ACTIONS(676), + [anon_sym_DOT_DOT_EQ] = ACTIONS(676), + [anon_sym_COMMA] = ACTIONS(676), + [anon_sym_COLON_COLON] = ACTIONS(676), + [anon_sym_DASH_GT] = ACTIONS(676), + [anon_sym_POUND] = ACTIONS(676), + [anon_sym_SQUOTE] = ACTIONS(674), + [anon_sym_as] = ACTIONS(674), + [anon_sym_async] = ACTIONS(674), + [anon_sym_await] = ACTIONS(674), + [anon_sym_break] = ACTIONS(674), + [anon_sym_const] = ACTIONS(674), + [anon_sym_continue] = ACTIONS(674), + [anon_sym_default] = ACTIONS(674), + [anon_sym_enum] = ACTIONS(674), + [anon_sym_fn] = ACTIONS(674), + [anon_sym_for] = ACTIONS(674), + [anon_sym_gen] = ACTIONS(674), + [anon_sym_if] = ACTIONS(674), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_let] = ACTIONS(674), + [anon_sym_loop] = ACTIONS(674), + [anon_sym_match] = ACTIONS(674), + [anon_sym_mod] = ACTIONS(674), + [anon_sym_pub] = ACTIONS(674), + [anon_sym_return] = ACTIONS(674), + [anon_sym_static] = ACTIONS(674), + [anon_sym_struct] = ACTIONS(674), + [anon_sym_trait] = ACTIONS(674), + [anon_sym_type] = ACTIONS(674), + [anon_sym_union] = ACTIONS(674), + [anon_sym_unsafe] = ACTIONS(674), + [anon_sym_use] = ACTIONS(674), + [anon_sym_where] = ACTIONS(674), + [anon_sym_while] = ACTIONS(674), + [sym_mutable_specifier] = ACTIONS(674), + [sym_integer_literal] = ACTIONS(690), + [aux_sym_string_literal_token1] = ACTIONS(692), + [sym_char_literal] = ACTIONS(690), + [anon_sym_true] = ACTIONS(694), + [anon_sym_false] = ACTIONS(694), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(700), - [sym_super] = ACTIONS(700), - [sym_crate] = ACTIONS(700), - [sym_metavariable] = ACTIONS(712), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), + [sym_self] = ACTIONS(674), + [sym_super] = ACTIONS(674), + [sym_crate] = ACTIONS(674), + [sym__raw_string_literal_start] = ACTIONS(696), + [sym_float_literal] = ACTIONS(690), }, [89] = { - [sym_token_tree] = STATE(152), - [sym_token_repetition] = STATE(152), - [sym__literal] = STATE(152), - [sym_string_literal] = STATE(177), - [sym_raw_string_literal] = STATE(177), - [sym_boolean_literal] = STATE(177), + [sym_token_tree] = STATE(147), + [sym_token_repetition] = STATE(147), + [sym__literal] = STATE(147), + [sym_string_literal] = STATE(184), + [sym_raw_string_literal] = STATE(184), + [sym_boolean_literal] = STATE(184), [sym_line_comment] = STATE(89), [sym_block_comment] = STATE(89), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(143), - [sym_identifier] = ACTIONS(700), + [aux_sym_token_tree_repeat1] = STATE(75), + [aux_sym__non_special_token_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(702), [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(702), - [anon_sym_LBRACK] = ACTIONS(704), - [anon_sym_LBRACE] = ACTIONS(708), - [anon_sym_RBRACE] = ACTIONS(706), + [anon_sym_LPAREN] = ACTIONS(704), + [anon_sym_RPAREN] = ACTIONS(706), + [anon_sym_LBRACK] = ACTIONS(708), + [anon_sym_LBRACE] = ACTIONS(710), [anon_sym_EQ_GT] = ACTIONS(567), [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(710), + [anon_sym_DOLLAR] = ACTIONS(712), [anon_sym_PLUS] = ACTIONS(577), [anon_sym_STAR] = ACTIONS(577), [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(700), - [anon_sym_i8] = ACTIONS(700), - [anon_sym_u16] = ACTIONS(700), - [anon_sym_i16] = ACTIONS(700), - [anon_sym_u32] = ACTIONS(700), - [anon_sym_i32] = ACTIONS(700), - [anon_sym_u64] = ACTIONS(700), - [anon_sym_i64] = ACTIONS(700), - [anon_sym_u128] = ACTIONS(700), - [anon_sym_i128] = ACTIONS(700), - [anon_sym_isize] = ACTIONS(700), - [anon_sym_usize] = ACTIONS(700), - [anon_sym_f32] = ACTIONS(700), - [anon_sym_f64] = ACTIONS(700), - [anon_sym_bool] = ACTIONS(700), - [anon_sym_str] = ACTIONS(700), - [anon_sym_char] = ACTIONS(700), + [anon_sym_u8] = ACTIONS(702), + [anon_sym_i8] = ACTIONS(702), + [anon_sym_u16] = ACTIONS(702), + [anon_sym_i16] = ACTIONS(702), + [anon_sym_u32] = ACTIONS(702), + [anon_sym_i32] = ACTIONS(702), + [anon_sym_u64] = ACTIONS(702), + [anon_sym_i64] = ACTIONS(702), + [anon_sym_u128] = ACTIONS(702), + [anon_sym_i128] = ACTIONS(702), + [anon_sym_isize] = ACTIONS(702), + [anon_sym_usize] = ACTIONS(702), + [anon_sym_f32] = ACTIONS(702), + [anon_sym_f64] = ACTIONS(702), + [anon_sym_bool] = ACTIONS(702), + [anon_sym_str] = ACTIONS(702), + [anon_sym_char] = ACTIONS(702), [anon_sym_DASH] = ACTIONS(577), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(577), @@ -26521,36 +27884,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(567), [anon_sym_DASH_GT] = ACTIONS(567), [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(700), - [anon_sym_as] = ACTIONS(700), - [anon_sym_async] = ACTIONS(700), - [anon_sym_await] = ACTIONS(700), - [anon_sym_break] = ACTIONS(700), - [anon_sym_const] = ACTIONS(700), - [anon_sym_continue] = ACTIONS(700), - [anon_sym_default] = ACTIONS(700), - [anon_sym_enum] = ACTIONS(700), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(700), - [anon_sym_gen] = ACTIONS(700), - [anon_sym_if] = ACTIONS(700), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_let] = ACTIONS(700), - [anon_sym_loop] = ACTIONS(700), - [anon_sym_match] = ACTIONS(700), - [anon_sym_mod] = ACTIONS(700), - [anon_sym_pub] = ACTIONS(700), - [anon_sym_return] = ACTIONS(700), - [anon_sym_static] = ACTIONS(700), - [anon_sym_struct] = ACTIONS(700), - [anon_sym_trait] = ACTIONS(700), - [anon_sym_type] = ACTIONS(700), - [anon_sym_union] = ACTIONS(700), - [anon_sym_unsafe] = ACTIONS(700), - [anon_sym_use] = ACTIONS(700), - [anon_sym_where] = ACTIONS(700), - [anon_sym_while] = ACTIONS(700), - [sym_mutable_specifier] = ACTIONS(700), + [anon_sym_SQUOTE] = ACTIONS(702), + [anon_sym_as] = ACTIONS(702), + [anon_sym_async] = ACTIONS(702), + [anon_sym_await] = ACTIONS(702), + [anon_sym_break] = ACTIONS(702), + [anon_sym_const] = ACTIONS(702), + [anon_sym_continue] = ACTIONS(702), + [anon_sym_default] = ACTIONS(702), + [anon_sym_enum] = ACTIONS(702), + [anon_sym_fn] = ACTIONS(702), + [anon_sym_for] = ACTIONS(702), + [anon_sym_gen] = ACTIONS(702), + [anon_sym_if] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(702), + [anon_sym_let] = ACTIONS(702), + [anon_sym_loop] = ACTIONS(702), + [anon_sym_match] = ACTIONS(702), + [anon_sym_mod] = ACTIONS(702), + [anon_sym_pub] = ACTIONS(702), + [anon_sym_return] = ACTIONS(702), + [anon_sym_static] = ACTIONS(702), + [anon_sym_struct] = ACTIONS(702), + [anon_sym_trait] = ACTIONS(702), + [anon_sym_type] = ACTIONS(702), + [anon_sym_union] = ACTIONS(702), + [anon_sym_unsafe] = ACTIONS(702), + [anon_sym_use] = ACTIONS(702), + [anon_sym_where] = ACTIONS(702), + [anon_sym_while] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(702), [sym_integer_literal] = ACTIONS(581), [aux_sym_string_literal_token1] = ACTIONS(583), [sym_char_literal] = ACTIONS(581), @@ -26558,885 +27921,275 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(585), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(700), - [sym_super] = ACTIONS(700), - [sym_crate] = ACTIONS(700), - [sym_metavariable] = ACTIONS(712), + [sym_self] = ACTIONS(702), + [sym_super] = ACTIONS(702), + [sym_crate] = ACTIONS(702), + [sym_metavariable] = ACTIONS(714), [sym__raw_string_literal_start] = ACTIONS(589), [sym_float_literal] = ACTIONS(581), }, [90] = { - [sym_token_tree] = STATE(152), - [sym_token_repetition] = STATE(152), - [sym__literal] = STATE(152), - [sym_string_literal] = STATE(177), - [sym_raw_string_literal] = STATE(177), - [sym_boolean_literal] = STATE(177), + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(200), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(198), + [sym_string_literal] = STATE(203), + [sym_raw_string_literal] = STATE(203), + [sym_boolean_literal] = STATE(203), [sym_line_comment] = STATE(90), [sym_block_comment] = STATE(90), - [aux_sym_token_tree_repeat1] = STATE(98), - [aux_sym__non_special_token_repeat1] = STATE(143), - [sym_identifier] = ACTIONS(700), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(702), - [anon_sym_RPAREN] = ACTIONS(714), - [anon_sym_LBRACK] = ACTIONS(704), - [anon_sym_LBRACE] = ACTIONS(708), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(710), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(700), - [anon_sym_i8] = ACTIONS(700), - [anon_sym_u16] = ACTIONS(700), - [anon_sym_i16] = ACTIONS(700), - [anon_sym_u32] = ACTIONS(700), - [anon_sym_i32] = ACTIONS(700), - [anon_sym_u64] = ACTIONS(700), - [anon_sym_i64] = ACTIONS(700), - [anon_sym_u128] = ACTIONS(700), - [anon_sym_i128] = ACTIONS(700), - [anon_sym_isize] = ACTIONS(700), - [anon_sym_usize] = ACTIONS(700), - [anon_sym_f32] = ACTIONS(700), - [anon_sym_f64] = ACTIONS(700), - [anon_sym_bool] = ACTIONS(700), - [anon_sym_str] = ACTIONS(700), - [anon_sym_char] = ACTIONS(700), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(700), - [anon_sym_as] = ACTIONS(700), - [anon_sym_async] = ACTIONS(700), - [anon_sym_await] = ACTIONS(700), - [anon_sym_break] = ACTIONS(700), - [anon_sym_const] = ACTIONS(700), - [anon_sym_continue] = ACTIONS(700), - [anon_sym_default] = ACTIONS(700), - [anon_sym_enum] = ACTIONS(700), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(700), - [anon_sym_gen] = ACTIONS(700), - [anon_sym_if] = ACTIONS(700), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_let] = ACTIONS(700), - [anon_sym_loop] = ACTIONS(700), - [anon_sym_match] = ACTIONS(700), - [anon_sym_mod] = ACTIONS(700), - [anon_sym_pub] = ACTIONS(700), - [anon_sym_return] = ACTIONS(700), - [anon_sym_static] = ACTIONS(700), - [anon_sym_struct] = ACTIONS(700), - [anon_sym_trait] = ACTIONS(700), - [anon_sym_type] = ACTIONS(700), - [anon_sym_union] = ACTIONS(700), - [anon_sym_unsafe] = ACTIONS(700), - [anon_sym_use] = ACTIONS(700), - [anon_sym_where] = ACTIONS(700), - [anon_sym_while] = ACTIONS(700), - [sym_mutable_specifier] = ACTIONS(700), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), + [aux_sym__non_special_token_repeat1] = STATE(150), + [aux_sym_delim_token_tree_repeat1] = STATE(97), + [sym_identifier] = ACTIONS(674), + [anon_sym_SEMI] = ACTIONS(676), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_RPAREN] = ACTIONS(716), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LBRACE] = ACTIONS(684), + [anon_sym_EQ_GT] = ACTIONS(676), + [anon_sym_COLON] = ACTIONS(686), + [anon_sym_DOLLAR] = ACTIONS(688), + [anon_sym_PLUS] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(686), + [anon_sym_QMARK] = ACTIONS(676), + [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_DASH] = ACTIONS(686), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_PERCENT] = ACTIONS(686), + [anon_sym_CARET] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(686), + [anon_sym_AMP] = ACTIONS(686), + [anon_sym_PIPE] = ACTIONS(686), + [anon_sym_AMP_AMP] = ACTIONS(676), + [anon_sym_PIPE_PIPE] = ACTIONS(676), + [anon_sym_LT_LT] = ACTIONS(686), + [anon_sym_GT_GT] = ACTIONS(686), + [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_CARET_EQ] = ACTIONS(676), + [anon_sym_AMP_EQ] = ACTIONS(676), + [anon_sym_PIPE_EQ] = ACTIONS(676), + [anon_sym_LT_LT_EQ] = ACTIONS(676), + [anon_sym_GT_GT_EQ] = ACTIONS(676), + [anon_sym_EQ] = ACTIONS(686), + [anon_sym_EQ_EQ] = ACTIONS(676), + [anon_sym_BANG_EQ] = ACTIONS(676), + [anon_sym_GT] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(686), + [anon_sym_GT_EQ] = ACTIONS(676), + [anon_sym_LT_EQ] = ACTIONS(676), + [anon_sym_AT] = ACTIONS(676), + [anon_sym__] = ACTIONS(686), + [anon_sym_DOT] = ACTIONS(686), + [anon_sym_DOT_DOT] = ACTIONS(686), + [anon_sym_DOT_DOT_DOT] = ACTIONS(676), + [anon_sym_DOT_DOT_EQ] = ACTIONS(676), + [anon_sym_COMMA] = ACTIONS(676), + [anon_sym_COLON_COLON] = ACTIONS(676), + [anon_sym_DASH_GT] = ACTIONS(676), + [anon_sym_POUND] = ACTIONS(676), + [anon_sym_SQUOTE] = ACTIONS(674), + [anon_sym_as] = ACTIONS(674), + [anon_sym_async] = ACTIONS(674), + [anon_sym_await] = ACTIONS(674), + [anon_sym_break] = ACTIONS(674), + [anon_sym_const] = ACTIONS(674), + [anon_sym_continue] = ACTIONS(674), + [anon_sym_default] = ACTIONS(674), + [anon_sym_enum] = ACTIONS(674), + [anon_sym_fn] = ACTIONS(674), + [anon_sym_for] = ACTIONS(674), + [anon_sym_gen] = ACTIONS(674), + [anon_sym_if] = ACTIONS(674), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_let] = ACTIONS(674), + [anon_sym_loop] = ACTIONS(674), + [anon_sym_match] = ACTIONS(674), + [anon_sym_mod] = ACTIONS(674), + [anon_sym_pub] = ACTIONS(674), + [anon_sym_return] = ACTIONS(674), + [anon_sym_static] = ACTIONS(674), + [anon_sym_struct] = ACTIONS(674), + [anon_sym_trait] = ACTIONS(674), + [anon_sym_type] = ACTIONS(674), + [anon_sym_union] = ACTIONS(674), + [anon_sym_unsafe] = ACTIONS(674), + [anon_sym_use] = ACTIONS(674), + [anon_sym_where] = ACTIONS(674), + [anon_sym_while] = ACTIONS(674), + [sym_mutable_specifier] = ACTIONS(674), + [sym_integer_literal] = ACTIONS(690), + [aux_sym_string_literal_token1] = ACTIONS(692), + [sym_char_literal] = ACTIONS(690), + [anon_sym_true] = ACTIONS(694), + [anon_sym_false] = ACTIONS(694), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(700), - [sym_super] = ACTIONS(700), - [sym_crate] = ACTIONS(700), - [sym_metavariable] = ACTIONS(712), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), + [sym_self] = ACTIONS(674), + [sym_super] = ACTIONS(674), + [sym_crate] = ACTIONS(674), + [sym__raw_string_literal_start] = ACTIONS(696), + [sym_float_literal] = ACTIONS(690), }, [91] = { - [sym_token_tree] = STATE(152), - [sym_token_repetition] = STATE(152), - [sym__literal] = STATE(152), - [sym_string_literal] = STATE(177), - [sym_raw_string_literal] = STATE(177), - [sym_boolean_literal] = STATE(177), + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(200), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(198), + [sym_string_literal] = STATE(203), + [sym_raw_string_literal] = STATE(203), + [sym_boolean_literal] = STATE(203), [sym_line_comment] = STATE(91), [sym_block_comment] = STATE(91), - [aux_sym_token_tree_repeat1] = STATE(94), - [aux_sym__non_special_token_repeat1] = STATE(143), - [sym_identifier] = ACTIONS(700), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(702), - [anon_sym_RPAREN] = ACTIONS(716), - [anon_sym_LBRACK] = ACTIONS(704), - [anon_sym_LBRACE] = ACTIONS(708), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(710), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(700), - [anon_sym_i8] = ACTIONS(700), - [anon_sym_u16] = ACTIONS(700), - [anon_sym_i16] = ACTIONS(700), - [anon_sym_u32] = ACTIONS(700), - [anon_sym_i32] = ACTIONS(700), - [anon_sym_u64] = ACTIONS(700), - [anon_sym_i64] = ACTIONS(700), - [anon_sym_u128] = ACTIONS(700), - [anon_sym_i128] = ACTIONS(700), - [anon_sym_isize] = ACTIONS(700), - [anon_sym_usize] = ACTIONS(700), - [anon_sym_f32] = ACTIONS(700), - [anon_sym_f64] = ACTIONS(700), - [anon_sym_bool] = ACTIONS(700), - [anon_sym_str] = ACTIONS(700), - [anon_sym_char] = ACTIONS(700), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(700), - [anon_sym_as] = ACTIONS(700), - [anon_sym_async] = ACTIONS(700), - [anon_sym_await] = ACTIONS(700), - [anon_sym_break] = ACTIONS(700), - [anon_sym_const] = ACTIONS(700), - [anon_sym_continue] = ACTIONS(700), - [anon_sym_default] = ACTIONS(700), - [anon_sym_enum] = ACTIONS(700), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(700), - [anon_sym_gen] = ACTIONS(700), - [anon_sym_if] = ACTIONS(700), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_let] = ACTIONS(700), - [anon_sym_loop] = ACTIONS(700), - [anon_sym_match] = ACTIONS(700), - [anon_sym_mod] = ACTIONS(700), - [anon_sym_pub] = ACTIONS(700), - [anon_sym_return] = ACTIONS(700), - [anon_sym_static] = ACTIONS(700), - [anon_sym_struct] = ACTIONS(700), - [anon_sym_trait] = ACTIONS(700), - [anon_sym_type] = ACTIONS(700), - [anon_sym_union] = ACTIONS(700), - [anon_sym_unsafe] = ACTIONS(700), - [anon_sym_use] = ACTIONS(700), - [anon_sym_where] = ACTIONS(700), - [anon_sym_while] = ACTIONS(700), - [sym_mutable_specifier] = ACTIONS(700), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), + [aux_sym__non_special_token_repeat1] = STATE(150), + [aux_sym_delim_token_tree_repeat1] = STATE(98), + [sym_identifier] = ACTIONS(674), + [anon_sym_SEMI] = ACTIONS(676), + [anon_sym_LPAREN] = ACTIONS(678), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_RBRACK] = ACTIONS(716), + [anon_sym_LBRACE] = ACTIONS(684), + [anon_sym_EQ_GT] = ACTIONS(676), + [anon_sym_COLON] = ACTIONS(686), + [anon_sym_DOLLAR] = ACTIONS(688), + [anon_sym_PLUS] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(686), + [anon_sym_QMARK] = ACTIONS(676), + [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_DASH] = ACTIONS(686), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_PERCENT] = ACTIONS(686), + [anon_sym_CARET] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(686), + [anon_sym_AMP] = ACTIONS(686), + [anon_sym_PIPE] = ACTIONS(686), + [anon_sym_AMP_AMP] = ACTIONS(676), + [anon_sym_PIPE_PIPE] = ACTIONS(676), + [anon_sym_LT_LT] = ACTIONS(686), + [anon_sym_GT_GT] = ACTIONS(686), + [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_CARET_EQ] = ACTIONS(676), + [anon_sym_AMP_EQ] = ACTIONS(676), + [anon_sym_PIPE_EQ] = ACTIONS(676), + [anon_sym_LT_LT_EQ] = ACTIONS(676), + [anon_sym_GT_GT_EQ] = ACTIONS(676), + [anon_sym_EQ] = ACTIONS(686), + [anon_sym_EQ_EQ] = ACTIONS(676), + [anon_sym_BANG_EQ] = ACTIONS(676), + [anon_sym_GT] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(686), + [anon_sym_GT_EQ] = ACTIONS(676), + [anon_sym_LT_EQ] = ACTIONS(676), + [anon_sym_AT] = ACTIONS(676), + [anon_sym__] = ACTIONS(686), + [anon_sym_DOT] = ACTIONS(686), + [anon_sym_DOT_DOT] = ACTIONS(686), + [anon_sym_DOT_DOT_DOT] = ACTIONS(676), + [anon_sym_DOT_DOT_EQ] = ACTIONS(676), + [anon_sym_COMMA] = ACTIONS(676), + [anon_sym_COLON_COLON] = ACTIONS(676), + [anon_sym_DASH_GT] = ACTIONS(676), + [anon_sym_POUND] = ACTIONS(676), + [anon_sym_SQUOTE] = ACTIONS(674), + [anon_sym_as] = ACTIONS(674), + [anon_sym_async] = ACTIONS(674), + [anon_sym_await] = ACTIONS(674), + [anon_sym_break] = ACTIONS(674), + [anon_sym_const] = ACTIONS(674), + [anon_sym_continue] = ACTIONS(674), + [anon_sym_default] = ACTIONS(674), + [anon_sym_enum] = ACTIONS(674), + [anon_sym_fn] = ACTIONS(674), + [anon_sym_for] = ACTIONS(674), + [anon_sym_gen] = ACTIONS(674), + [anon_sym_if] = ACTIONS(674), + [anon_sym_impl] = ACTIONS(674), + [anon_sym_let] = ACTIONS(674), + [anon_sym_loop] = ACTIONS(674), + [anon_sym_match] = ACTIONS(674), + [anon_sym_mod] = ACTIONS(674), + [anon_sym_pub] = ACTIONS(674), + [anon_sym_return] = ACTIONS(674), + [anon_sym_static] = ACTIONS(674), + [anon_sym_struct] = ACTIONS(674), + [anon_sym_trait] = ACTIONS(674), + [anon_sym_type] = ACTIONS(674), + [anon_sym_union] = ACTIONS(674), + [anon_sym_unsafe] = ACTIONS(674), + [anon_sym_use] = ACTIONS(674), + [anon_sym_where] = ACTIONS(674), + [anon_sym_while] = ACTIONS(674), + [sym_mutable_specifier] = ACTIONS(674), + [sym_integer_literal] = ACTIONS(690), + [aux_sym_string_literal_token1] = ACTIONS(692), + [sym_char_literal] = ACTIONS(690), + [anon_sym_true] = ACTIONS(694), + [anon_sym_false] = ACTIONS(694), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(700), - [sym_super] = ACTIONS(700), - [sym_crate] = ACTIONS(700), - [sym_metavariable] = ACTIONS(712), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), + [sym_self] = ACTIONS(674), + [sym_super] = ACTIONS(674), + [sym_crate] = ACTIONS(674), + [sym__raw_string_literal_start] = ACTIONS(696), + [sym_float_literal] = ACTIONS(690), }, [92] = { - [sym_token_tree] = STATE(152), - [sym_token_repetition] = STATE(152), - [sym__literal] = STATE(152), - [sym_string_literal] = STATE(177), - [sym_raw_string_literal] = STATE(177), - [sym_boolean_literal] = STATE(177), + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(200), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(198), + [sym_string_literal] = STATE(203), + [sym_raw_string_literal] = STATE(203), + [sym_boolean_literal] = STATE(203), [sym_line_comment] = STATE(92), [sym_block_comment] = STATE(92), - [aux_sym_token_tree_repeat1] = STATE(95), - [aux_sym__non_special_token_repeat1] = STATE(143), - [sym_identifier] = ACTIONS(700), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(702), - [anon_sym_LBRACK] = ACTIONS(704), - [anon_sym_RBRACK] = ACTIONS(716), - [anon_sym_LBRACE] = ACTIONS(708), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(710), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(700), - [anon_sym_i8] = ACTIONS(700), - [anon_sym_u16] = ACTIONS(700), - [anon_sym_i16] = ACTIONS(700), - [anon_sym_u32] = ACTIONS(700), - [anon_sym_i32] = ACTIONS(700), - [anon_sym_u64] = ACTIONS(700), - [anon_sym_i64] = ACTIONS(700), - [anon_sym_u128] = ACTIONS(700), - [anon_sym_i128] = ACTIONS(700), - [anon_sym_isize] = ACTIONS(700), - [anon_sym_usize] = ACTIONS(700), - [anon_sym_f32] = ACTIONS(700), - [anon_sym_f64] = ACTIONS(700), - [anon_sym_bool] = ACTIONS(700), - [anon_sym_str] = ACTIONS(700), - [anon_sym_char] = ACTIONS(700), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(700), - [anon_sym_as] = ACTIONS(700), - [anon_sym_async] = ACTIONS(700), - [anon_sym_await] = ACTIONS(700), - [anon_sym_break] = ACTIONS(700), - [anon_sym_const] = ACTIONS(700), - [anon_sym_continue] = ACTIONS(700), - [anon_sym_default] = ACTIONS(700), - [anon_sym_enum] = ACTIONS(700), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(700), - [anon_sym_gen] = ACTIONS(700), - [anon_sym_if] = ACTIONS(700), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_let] = ACTIONS(700), - [anon_sym_loop] = ACTIONS(700), - [anon_sym_match] = ACTIONS(700), - [anon_sym_mod] = ACTIONS(700), - [anon_sym_pub] = ACTIONS(700), - [anon_sym_return] = ACTIONS(700), - [anon_sym_static] = ACTIONS(700), - [anon_sym_struct] = ACTIONS(700), - [anon_sym_trait] = ACTIONS(700), - [anon_sym_type] = ACTIONS(700), - [anon_sym_union] = ACTIONS(700), - [anon_sym_unsafe] = ACTIONS(700), - [anon_sym_use] = ACTIONS(700), - [anon_sym_where] = ACTIONS(700), - [anon_sym_while] = ACTIONS(700), - [sym_mutable_specifier] = ACTIONS(700), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(700), - [sym_super] = ACTIONS(700), - [sym_crate] = ACTIONS(700), - [sym_metavariable] = ACTIONS(712), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), - }, - [93] = { - [sym_token_tree] = STATE(152), - [sym_token_repetition] = STATE(152), - [sym__literal] = STATE(152), - [sym_string_literal] = STATE(177), - [sym_raw_string_literal] = STATE(177), - [sym_boolean_literal] = STATE(177), - [sym_line_comment] = STATE(93), - [sym_block_comment] = STATE(93), - [aux_sym_token_tree_repeat1] = STATE(96), - [aux_sym__non_special_token_repeat1] = STATE(143), - [sym_identifier] = ACTIONS(700), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(702), - [anon_sym_LBRACK] = ACTIONS(704), - [anon_sym_LBRACE] = ACTIONS(708), - [anon_sym_RBRACE] = ACTIONS(716), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(710), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(700), - [anon_sym_i8] = ACTIONS(700), - [anon_sym_u16] = ACTIONS(700), - [anon_sym_i16] = ACTIONS(700), - [anon_sym_u32] = ACTIONS(700), - [anon_sym_i32] = ACTIONS(700), - [anon_sym_u64] = ACTIONS(700), - [anon_sym_i64] = ACTIONS(700), - [anon_sym_u128] = ACTIONS(700), - [anon_sym_i128] = ACTIONS(700), - [anon_sym_isize] = ACTIONS(700), - [anon_sym_usize] = ACTIONS(700), - [anon_sym_f32] = ACTIONS(700), - [anon_sym_f64] = ACTIONS(700), - [anon_sym_bool] = ACTIONS(700), - [anon_sym_str] = ACTIONS(700), - [anon_sym_char] = ACTIONS(700), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(700), - [anon_sym_as] = ACTIONS(700), - [anon_sym_async] = ACTIONS(700), - [anon_sym_await] = ACTIONS(700), - [anon_sym_break] = ACTIONS(700), - [anon_sym_const] = ACTIONS(700), - [anon_sym_continue] = ACTIONS(700), - [anon_sym_default] = ACTIONS(700), - [anon_sym_enum] = ACTIONS(700), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(700), - [anon_sym_gen] = ACTIONS(700), - [anon_sym_if] = ACTIONS(700), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_let] = ACTIONS(700), - [anon_sym_loop] = ACTIONS(700), - [anon_sym_match] = ACTIONS(700), - [anon_sym_mod] = ACTIONS(700), - [anon_sym_pub] = ACTIONS(700), - [anon_sym_return] = ACTIONS(700), - [anon_sym_static] = ACTIONS(700), - [anon_sym_struct] = ACTIONS(700), - [anon_sym_trait] = ACTIONS(700), - [anon_sym_type] = ACTIONS(700), - [anon_sym_union] = ACTIONS(700), - [anon_sym_unsafe] = ACTIONS(700), - [anon_sym_use] = ACTIONS(700), - [anon_sym_where] = ACTIONS(700), - [anon_sym_while] = ACTIONS(700), - [sym_mutable_specifier] = ACTIONS(700), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(700), - [sym_super] = ACTIONS(700), - [sym_crate] = ACTIONS(700), - [sym_metavariable] = ACTIONS(712), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), - }, - [94] = { - [sym_token_tree] = STATE(152), - [sym_token_repetition] = STATE(152), - [sym__literal] = STATE(152), - [sym_string_literal] = STATE(177), - [sym_raw_string_literal] = STATE(177), - [sym_boolean_literal] = STATE(177), - [sym_line_comment] = STATE(94), - [sym_block_comment] = STATE(94), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(143), - [sym_identifier] = ACTIONS(700), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(702), - [anon_sym_RPAREN] = ACTIONS(718), - [anon_sym_LBRACK] = ACTIONS(704), - [anon_sym_LBRACE] = ACTIONS(708), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(710), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(700), - [anon_sym_i8] = ACTIONS(700), - [anon_sym_u16] = ACTIONS(700), - [anon_sym_i16] = ACTIONS(700), - [anon_sym_u32] = ACTIONS(700), - [anon_sym_i32] = ACTIONS(700), - [anon_sym_u64] = ACTIONS(700), - [anon_sym_i64] = ACTIONS(700), - [anon_sym_u128] = ACTIONS(700), - [anon_sym_i128] = ACTIONS(700), - [anon_sym_isize] = ACTIONS(700), - [anon_sym_usize] = ACTIONS(700), - [anon_sym_f32] = ACTIONS(700), - [anon_sym_f64] = ACTIONS(700), - [anon_sym_bool] = ACTIONS(700), - [anon_sym_str] = ACTIONS(700), - [anon_sym_char] = ACTIONS(700), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(700), - [anon_sym_as] = ACTIONS(700), - [anon_sym_async] = ACTIONS(700), - [anon_sym_await] = ACTIONS(700), - [anon_sym_break] = ACTIONS(700), - [anon_sym_const] = ACTIONS(700), - [anon_sym_continue] = ACTIONS(700), - [anon_sym_default] = ACTIONS(700), - [anon_sym_enum] = ACTIONS(700), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(700), - [anon_sym_gen] = ACTIONS(700), - [anon_sym_if] = ACTIONS(700), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_let] = ACTIONS(700), - [anon_sym_loop] = ACTIONS(700), - [anon_sym_match] = ACTIONS(700), - [anon_sym_mod] = ACTIONS(700), - [anon_sym_pub] = ACTIONS(700), - [anon_sym_return] = ACTIONS(700), - [anon_sym_static] = ACTIONS(700), - [anon_sym_struct] = ACTIONS(700), - [anon_sym_trait] = ACTIONS(700), - [anon_sym_type] = ACTIONS(700), - [anon_sym_union] = ACTIONS(700), - [anon_sym_unsafe] = ACTIONS(700), - [anon_sym_use] = ACTIONS(700), - [anon_sym_where] = ACTIONS(700), - [anon_sym_while] = ACTIONS(700), - [sym_mutable_specifier] = ACTIONS(700), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(700), - [sym_super] = ACTIONS(700), - [sym_crate] = ACTIONS(700), - [sym_metavariable] = ACTIONS(712), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), - }, - [95] = { - [sym_token_tree] = STATE(152), - [sym_token_repetition] = STATE(152), - [sym__literal] = STATE(152), - [sym_string_literal] = STATE(177), - [sym_raw_string_literal] = STATE(177), - [sym_boolean_literal] = STATE(177), - [sym_line_comment] = STATE(95), - [sym_block_comment] = STATE(95), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(143), - [sym_identifier] = ACTIONS(700), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(702), - [anon_sym_LBRACK] = ACTIONS(704), - [anon_sym_RBRACK] = ACTIONS(718), - [anon_sym_LBRACE] = ACTIONS(708), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(710), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(700), - [anon_sym_i8] = ACTIONS(700), - [anon_sym_u16] = ACTIONS(700), - [anon_sym_i16] = ACTIONS(700), - [anon_sym_u32] = ACTIONS(700), - [anon_sym_i32] = ACTIONS(700), - [anon_sym_u64] = ACTIONS(700), - [anon_sym_i64] = ACTIONS(700), - [anon_sym_u128] = ACTIONS(700), - [anon_sym_i128] = ACTIONS(700), - [anon_sym_isize] = ACTIONS(700), - [anon_sym_usize] = ACTIONS(700), - [anon_sym_f32] = ACTIONS(700), - [anon_sym_f64] = ACTIONS(700), - [anon_sym_bool] = ACTIONS(700), - [anon_sym_str] = ACTIONS(700), - [anon_sym_char] = ACTIONS(700), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(700), - [anon_sym_as] = ACTIONS(700), - [anon_sym_async] = ACTIONS(700), - [anon_sym_await] = ACTIONS(700), - [anon_sym_break] = ACTIONS(700), - [anon_sym_const] = ACTIONS(700), - [anon_sym_continue] = ACTIONS(700), - [anon_sym_default] = ACTIONS(700), - [anon_sym_enum] = ACTIONS(700), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(700), - [anon_sym_gen] = ACTIONS(700), - [anon_sym_if] = ACTIONS(700), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_let] = ACTIONS(700), - [anon_sym_loop] = ACTIONS(700), - [anon_sym_match] = ACTIONS(700), - [anon_sym_mod] = ACTIONS(700), - [anon_sym_pub] = ACTIONS(700), - [anon_sym_return] = ACTIONS(700), - [anon_sym_static] = ACTIONS(700), - [anon_sym_struct] = ACTIONS(700), - [anon_sym_trait] = ACTIONS(700), - [anon_sym_type] = ACTIONS(700), - [anon_sym_union] = ACTIONS(700), - [anon_sym_unsafe] = ACTIONS(700), - [anon_sym_use] = ACTIONS(700), - [anon_sym_where] = ACTIONS(700), - [anon_sym_while] = ACTIONS(700), - [sym_mutable_specifier] = ACTIONS(700), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(700), - [sym_super] = ACTIONS(700), - [sym_crate] = ACTIONS(700), - [sym_metavariable] = ACTIONS(712), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), - }, - [96] = { - [sym_token_tree] = STATE(152), - [sym_token_repetition] = STATE(152), - [sym__literal] = STATE(152), - [sym_string_literal] = STATE(177), - [sym_raw_string_literal] = STATE(177), - [sym_boolean_literal] = STATE(177), - [sym_line_comment] = STATE(96), - [sym_block_comment] = STATE(96), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(143), - [sym_identifier] = ACTIONS(700), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(702), - [anon_sym_LBRACK] = ACTIONS(704), - [anon_sym_LBRACE] = ACTIONS(708), - [anon_sym_RBRACE] = ACTIONS(718), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(710), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(700), - [anon_sym_i8] = ACTIONS(700), - [anon_sym_u16] = ACTIONS(700), - [anon_sym_i16] = ACTIONS(700), - [anon_sym_u32] = ACTIONS(700), - [anon_sym_i32] = ACTIONS(700), - [anon_sym_u64] = ACTIONS(700), - [anon_sym_i64] = ACTIONS(700), - [anon_sym_u128] = ACTIONS(700), - [anon_sym_i128] = ACTIONS(700), - [anon_sym_isize] = ACTIONS(700), - [anon_sym_usize] = ACTIONS(700), - [anon_sym_f32] = ACTIONS(700), - [anon_sym_f64] = ACTIONS(700), - [anon_sym_bool] = ACTIONS(700), - [anon_sym_str] = ACTIONS(700), - [anon_sym_char] = ACTIONS(700), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(700), - [anon_sym_as] = ACTIONS(700), - [anon_sym_async] = ACTIONS(700), - [anon_sym_await] = ACTIONS(700), - [anon_sym_break] = ACTIONS(700), - [anon_sym_const] = ACTIONS(700), - [anon_sym_continue] = ACTIONS(700), - [anon_sym_default] = ACTIONS(700), - [anon_sym_enum] = ACTIONS(700), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(700), - [anon_sym_gen] = ACTIONS(700), - [anon_sym_if] = ACTIONS(700), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_let] = ACTIONS(700), - [anon_sym_loop] = ACTIONS(700), - [anon_sym_match] = ACTIONS(700), - [anon_sym_mod] = ACTIONS(700), - [anon_sym_pub] = ACTIONS(700), - [anon_sym_return] = ACTIONS(700), - [anon_sym_static] = ACTIONS(700), - [anon_sym_struct] = ACTIONS(700), - [anon_sym_trait] = ACTIONS(700), - [anon_sym_type] = ACTIONS(700), - [anon_sym_union] = ACTIONS(700), - [anon_sym_unsafe] = ACTIONS(700), - [anon_sym_use] = ACTIONS(700), - [anon_sym_where] = ACTIONS(700), - [anon_sym_while] = ACTIONS(700), - [sym_mutable_specifier] = ACTIONS(700), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(700), - [sym_super] = ACTIONS(700), - [sym_crate] = ACTIONS(700), - [sym_metavariable] = ACTIONS(712), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), - }, - [97] = { - [sym_delim_token_tree] = STATE(198), - [sym__delim_tokens] = STATE(206), - [sym__non_delim_token] = STATE(198), - [sym__literal] = STATE(214), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(97), - [sym_block_comment] = STATE(97), - [aux_sym__non_special_token_repeat1] = STATE(157), - [aux_sym_delim_token_tree_repeat1] = STATE(83), + [aux_sym__non_special_token_repeat1] = STATE(150), + [aux_sym_delim_token_tree_repeat1] = STATE(105), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_RBRACE] = ACTIONS(720), + [anon_sym_RPAREN] = ACTIONS(718), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LBRACE] = ACTIONS(684), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), [anon_sym_DOLLAR] = ACTIONS(688), @@ -27541,146 +28294,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [98] = { - [sym_token_tree] = STATE(152), - [sym_token_repetition] = STATE(152), - [sym__literal] = STATE(152), - [sym_string_literal] = STATE(177), - [sym_raw_string_literal] = STATE(177), - [sym_boolean_literal] = STATE(177), - [sym_line_comment] = STATE(98), - [sym_block_comment] = STATE(98), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(143), - [sym_identifier] = ACTIONS(700), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(702), - [anon_sym_RPAREN] = ACTIONS(722), - [anon_sym_LBRACK] = ACTIONS(704), - [anon_sym_LBRACE] = ACTIONS(708), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(710), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(700), - [anon_sym_i8] = ACTIONS(700), - [anon_sym_u16] = ACTIONS(700), - [anon_sym_i16] = ACTIONS(700), - [anon_sym_u32] = ACTIONS(700), - [anon_sym_i32] = ACTIONS(700), - [anon_sym_u64] = ACTIONS(700), - [anon_sym_i64] = ACTIONS(700), - [anon_sym_u128] = ACTIONS(700), - [anon_sym_i128] = ACTIONS(700), - [anon_sym_isize] = ACTIONS(700), - [anon_sym_usize] = ACTIONS(700), - [anon_sym_f32] = ACTIONS(700), - [anon_sym_f64] = ACTIONS(700), - [anon_sym_bool] = ACTIONS(700), - [anon_sym_str] = ACTIONS(700), - [anon_sym_char] = ACTIONS(700), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(700), - [anon_sym_as] = ACTIONS(700), - [anon_sym_async] = ACTIONS(700), - [anon_sym_await] = ACTIONS(700), - [anon_sym_break] = ACTIONS(700), - [anon_sym_const] = ACTIONS(700), - [anon_sym_continue] = ACTIONS(700), - [anon_sym_default] = ACTIONS(700), - [anon_sym_enum] = ACTIONS(700), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(700), - [anon_sym_gen] = ACTIONS(700), - [anon_sym_if] = ACTIONS(700), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_let] = ACTIONS(700), - [anon_sym_loop] = ACTIONS(700), - [anon_sym_match] = ACTIONS(700), - [anon_sym_mod] = ACTIONS(700), - [anon_sym_pub] = ACTIONS(700), - [anon_sym_return] = ACTIONS(700), - [anon_sym_static] = ACTIONS(700), - [anon_sym_struct] = ACTIONS(700), - [anon_sym_trait] = ACTIONS(700), - [anon_sym_type] = ACTIONS(700), - [anon_sym_union] = ACTIONS(700), - [anon_sym_unsafe] = ACTIONS(700), - [anon_sym_use] = ACTIONS(700), - [anon_sym_where] = ACTIONS(700), - [anon_sym_while] = ACTIONS(700), - [sym_mutable_specifier] = ACTIONS(700), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(700), - [sym_super] = ACTIONS(700), - [sym_crate] = ACTIONS(700), - [sym_metavariable] = ACTIONS(712), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), - }, - [99] = { - [sym_delim_token_tree] = STATE(198), - [sym__delim_tokens] = STATE(206), - [sym__non_delim_token] = STATE(198), - [sym__literal] = STATE(214), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(99), - [sym_block_comment] = STATE(99), - [aux_sym__non_special_token_repeat1] = STATE(157), - [aux_sym_delim_token_tree_repeat1] = STATE(103), + [93] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(200), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(198), + [sym_string_literal] = STATE(203), + [sym_raw_string_literal] = STATE(203), + [sym_boolean_literal] = STATE(203), + [sym_line_comment] = STATE(93), + [sym_block_comment] = STATE(93), + [aux_sym__non_special_token_repeat1] = STATE(150), + [aux_sym_delim_token_tree_repeat1] = STATE(106), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(724), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_RBRACK] = ACTIONS(718), + [anon_sym_LBRACE] = ACTIONS(684), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), [anon_sym_DOLLAR] = ACTIONS(688), @@ -27785,24 +28416,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [100] = { - [sym_delim_token_tree] = STATE(198), - [sym__delim_tokens] = STATE(206), - [sym__non_delim_token] = STATE(198), - [sym__literal] = STATE(214), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(100), - [sym_block_comment] = STATE(100), - [aux_sym__non_special_token_repeat1] = STATE(157), - [aux_sym_delim_token_tree_repeat1] = STATE(104), + [94] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(200), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(198), + [sym_string_literal] = STATE(203), + [sym_raw_string_literal] = STATE(203), + [sym_boolean_literal] = STATE(203), + [sym_line_comment] = STATE(94), + [sym_block_comment] = STATE(94), + [aux_sym__non_special_token_repeat1] = STATE(150), + [aux_sym_delim_token_tree_repeat1] = STATE(107), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_RBRACK] = ACTIONS(724), - [anon_sym_LBRACE] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LBRACE] = ACTIONS(684), + [anon_sym_RBRACE] = ACTIONS(718), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), [anon_sym_DOLLAR] = ACTIONS(688), @@ -27907,24 +28538,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [101] = { - [sym_delim_token_tree] = STATE(198), - [sym__delim_tokens] = STATE(206), - [sym__non_delim_token] = STATE(198), - [sym__literal] = STATE(214), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(101), - [sym_block_comment] = STATE(101), - [aux_sym__non_special_token_repeat1] = STATE(157), - [aux_sym_delim_token_tree_repeat1] = STATE(105), + [95] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(200), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(198), + [sym_string_literal] = STATE(203), + [sym_raw_string_literal] = STATE(203), + [sym_boolean_literal] = STATE(203), + [sym_line_comment] = STATE(95), + [sym_block_comment] = STATE(95), + [aux_sym__non_special_token_repeat1] = STATE(150), + [aux_sym_delim_token_tree_repeat1] = STATE(99), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_RBRACE] = ACTIONS(724), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LBRACE] = ACTIONS(684), + [anon_sym_RBRACE] = ACTIONS(716), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), [anon_sym_DOLLAR] = ACTIONS(688), @@ -28029,24 +28660,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [102] = { - [sym_delim_token_tree] = STATE(198), - [sym__delim_tokens] = STATE(206), - [sym__non_delim_token] = STATE(198), - [sym__literal] = STATE(214), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(102), - [sym_block_comment] = STATE(102), - [aux_sym__non_special_token_repeat1] = STATE(157), - [aux_sym_delim_token_tree_repeat1] = STATE(132), + [96] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(200), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(198), + [sym_string_literal] = STATE(203), + [sym_raw_string_literal] = STATE(203), + [sym_boolean_literal] = STATE(203), + [sym_line_comment] = STATE(96), + [sym_block_comment] = STATE(96), + [aux_sym__non_special_token_repeat1] = STATE(150), + [aux_sym_delim_token_tree_repeat1] = STATE(85), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_RBRACK] = ACTIONS(726), - [anon_sym_LBRACE] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LBRACE] = ACTIONS(684), + [anon_sym_RBRACE] = ACTIONS(720), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), [anon_sym_DOLLAR] = ACTIONS(688), @@ -28151,24 +28782,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [103] = { - [sym_delim_token_tree] = STATE(198), - [sym__delim_tokens] = STATE(206), - [sym__non_delim_token] = STATE(198), - [sym__literal] = STATE(214), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(103), - [sym_block_comment] = STATE(103), - [aux_sym__non_special_token_repeat1] = STATE(157), - [aux_sym_delim_token_tree_repeat1] = STATE(83), + [97] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(200), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(198), + [sym_string_literal] = STATE(203), + [sym_raw_string_literal] = STATE(203), + [sym_boolean_literal] = STATE(203), + [sym_line_comment] = STATE(97), + [sym_block_comment] = STATE(97), + [aux_sym__non_special_token_repeat1] = STATE(150), + [aux_sym_delim_token_tree_repeat1] = STATE(74), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(728), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), + [anon_sym_RPAREN] = ACTIONS(722), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LBRACE] = ACTIONS(684), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), [anon_sym_DOLLAR] = ACTIONS(688), @@ -28273,24 +28904,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [104] = { - [sym_delim_token_tree] = STATE(198), - [sym__delim_tokens] = STATE(206), - [sym__non_delim_token] = STATE(198), - [sym__literal] = STATE(214), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(104), - [sym_block_comment] = STATE(104), - [aux_sym__non_special_token_repeat1] = STATE(157), - [aux_sym_delim_token_tree_repeat1] = STATE(83), + [98] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(200), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(198), + [sym_string_literal] = STATE(203), + [sym_raw_string_literal] = STATE(203), + [sym_boolean_literal] = STATE(203), + [sym_line_comment] = STATE(98), + [sym_block_comment] = STATE(98), + [aux_sym__non_special_token_repeat1] = STATE(150), + [aux_sym_delim_token_tree_repeat1] = STATE(74), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_RBRACK] = ACTIONS(728), - [anon_sym_LBRACE] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_RBRACK] = ACTIONS(722), + [anon_sym_LBRACE] = ACTIONS(684), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), [anon_sym_DOLLAR] = ACTIONS(688), @@ -28395,24 +29026,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [105] = { - [sym_delim_token_tree] = STATE(198), - [sym__delim_tokens] = STATE(206), - [sym__non_delim_token] = STATE(198), - [sym__literal] = STATE(214), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(105), - [sym_block_comment] = STATE(105), - [aux_sym__non_special_token_repeat1] = STATE(157), - [aux_sym_delim_token_tree_repeat1] = STATE(83), + [99] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(200), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(198), + [sym_string_literal] = STATE(203), + [sym_raw_string_literal] = STATE(203), + [sym_boolean_literal] = STATE(203), + [sym_line_comment] = STATE(99), + [sym_block_comment] = STATE(99), + [aux_sym__non_special_token_repeat1] = STATE(150), + [aux_sym_delim_token_tree_repeat1] = STATE(74), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_RBRACE] = ACTIONS(728), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LBRACE] = ACTIONS(684), + [anon_sym_RBRACE] = ACTIONS(722), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), [anon_sym_DOLLAR] = ACTIONS(688), @@ -28517,24 +29148,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [106] = { - [sym_delim_token_tree] = STATE(198), - [sym__delim_tokens] = STATE(206), - [sym__non_delim_token] = STATE(198), - [sym__literal] = STATE(214), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(106), - [sym_block_comment] = STATE(106), - [aux_sym__non_special_token_repeat1] = STATE(157), - [aux_sym_delim_token_tree_repeat1] = STATE(97), + [100] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(200), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(198), + [sym_string_literal] = STATE(203), + [sym_raw_string_literal] = STATE(203), + [sym_boolean_literal] = STATE(203), + [sym_line_comment] = STATE(100), + [sym_block_comment] = STATE(100), + [aux_sym__non_special_token_repeat1] = STATE(150), + [aux_sym_delim_token_tree_repeat1] = STATE(74), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_RBRACE] = ACTIONS(726), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LBRACE] = ACTIONS(684), + [anon_sym_RBRACE] = ACTIONS(724), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), [anon_sym_DOLLAR] = ACTIONS(688), @@ -28639,24 +29270,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [107] = { - [sym_delim_token_tree] = STATE(198), - [sym__delim_tokens] = STATE(206), - [sym__non_delim_token] = STATE(198), - [sym__literal] = STATE(214), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(107), - [sym_block_comment] = STATE(107), - [aux_sym__non_special_token_repeat1] = STATE(157), - [aux_sym_delim_token_tree_repeat1] = STATE(110), + [101] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(200), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(198), + [sym_string_literal] = STATE(203), + [sym_raw_string_literal] = STATE(203), + [sym_boolean_literal] = STATE(203), + [sym_line_comment] = STATE(101), + [sym_block_comment] = STATE(101), + [aux_sym__non_special_token_repeat1] = STATE(150), + [aux_sym_delim_token_tree_repeat1] = STATE(74), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(730), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LBRACE] = ACTIONS(684), + [anon_sym_RBRACE] = ACTIONS(726), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), [anon_sym_DOLLAR] = ACTIONS(688), @@ -28761,24 +29392,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [108] = { - [sym_delim_token_tree] = STATE(198), - [sym__delim_tokens] = STATE(206), - [sym__non_delim_token] = STATE(198), - [sym__literal] = STATE(214), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(108), - [sym_block_comment] = STATE(108), - [aux_sym__non_special_token_repeat1] = STATE(157), - [aux_sym_delim_token_tree_repeat1] = STATE(111), + [102] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(200), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(198), + [sym_string_literal] = STATE(203), + [sym_raw_string_literal] = STATE(203), + [sym_boolean_literal] = STATE(203), + [sym_line_comment] = STATE(102), + [sym_block_comment] = STATE(102), + [aux_sym__non_special_token_repeat1] = STATE(150), + [aux_sym_delim_token_tree_repeat1] = STATE(101), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_RBRACK] = ACTIONS(730), - [anon_sym_LBRACE] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LBRACE] = ACTIONS(684), + [anon_sym_RBRACE] = ACTIONS(700), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), [anon_sym_DOLLAR] = ACTIONS(688), @@ -28883,24 +29514,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [109] = { - [sym_delim_token_tree] = STATE(198), - [sym__delim_tokens] = STATE(206), - [sym__non_delim_token] = STATE(198), - [sym__literal] = STATE(214), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(109), - [sym_block_comment] = STATE(109), - [aux_sym__non_special_token_repeat1] = STATE(157), - [aux_sym_delim_token_tree_repeat1] = STATE(112), + [103] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(200), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(198), + [sym_string_literal] = STATE(203), + [sym_raw_string_literal] = STATE(203), + [sym_boolean_literal] = STATE(203), + [sym_line_comment] = STATE(103), + [sym_block_comment] = STATE(103), + [aux_sym__non_special_token_repeat1] = STATE(150), + [aux_sym_delim_token_tree_repeat1] = STATE(131), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_RBRACE] = ACTIONS(730), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LBRACE] = ACTIONS(684), + [anon_sym_RBRACE] = ACTIONS(680), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), [anon_sym_DOLLAR] = ACTIONS(688), @@ -29005,24 +29636,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [110] = { - [sym_delim_token_tree] = STATE(198), - [sym__delim_tokens] = STATE(206), - [sym__non_delim_token] = STATE(198), - [sym__literal] = STATE(214), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(110), - [sym_block_comment] = STATE(110), - [aux_sym__non_special_token_repeat1] = STATE(157), - [aux_sym_delim_token_tree_repeat1] = STATE(83), + [104] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(200), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(198), + [sym_string_literal] = STATE(203), + [sym_raw_string_literal] = STATE(203), + [sym_boolean_literal] = STATE(203), + [sym_line_comment] = STATE(104), + [sym_block_comment] = STATE(104), + [aux_sym__non_special_token_repeat1] = STATE(150), + [aux_sym_delim_token_tree_repeat1] = STATE(111), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(732), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_RBRACK] = ACTIONS(720), + [anon_sym_LBRACE] = ACTIONS(684), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), [anon_sym_DOLLAR] = ACTIONS(688), @@ -29127,24 +29758,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [111] = { - [sym_delim_token_tree] = STATE(198), - [sym__delim_tokens] = STATE(206), - [sym__non_delim_token] = STATE(198), - [sym__literal] = STATE(214), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(111), - [sym_block_comment] = STATE(111), - [aux_sym__non_special_token_repeat1] = STATE(157), - [aux_sym_delim_token_tree_repeat1] = STATE(83), + [105] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(200), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(198), + [sym_string_literal] = STATE(203), + [sym_raw_string_literal] = STATE(203), + [sym_boolean_literal] = STATE(203), + [sym_line_comment] = STATE(105), + [sym_block_comment] = STATE(105), + [aux_sym__non_special_token_repeat1] = STATE(150), + [aux_sym_delim_token_tree_repeat1] = STATE(74), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_RBRACK] = ACTIONS(732), - [anon_sym_LBRACE] = ACTIONS(682), + [anon_sym_RPAREN] = ACTIONS(728), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LBRACE] = ACTIONS(684), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), [anon_sym_DOLLAR] = ACTIONS(688), @@ -29249,24 +29880,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [112] = { - [sym_delim_token_tree] = STATE(198), - [sym__delim_tokens] = STATE(206), - [sym__non_delim_token] = STATE(198), - [sym__literal] = STATE(214), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(112), - [sym_block_comment] = STATE(112), - [aux_sym__non_special_token_repeat1] = STATE(157), - [aux_sym_delim_token_tree_repeat1] = STATE(83), + [106] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(200), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(198), + [sym_string_literal] = STATE(203), + [sym_raw_string_literal] = STATE(203), + [sym_boolean_literal] = STATE(203), + [sym_line_comment] = STATE(106), + [sym_block_comment] = STATE(106), + [aux_sym__non_special_token_repeat1] = STATE(150), + [aux_sym_delim_token_tree_repeat1] = STATE(74), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_RBRACE] = ACTIONS(732), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_RBRACK] = ACTIONS(728), + [anon_sym_LBRACE] = ACTIONS(684), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), [anon_sym_DOLLAR] = ACTIONS(688), @@ -29371,24 +30002,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [113] = { - [sym_delim_token_tree] = STATE(198), - [sym__delim_tokens] = STATE(206), - [sym__non_delim_token] = STATE(198), - [sym__literal] = STATE(214), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(113), - [sym_block_comment] = STATE(113), - [aux_sym__non_special_token_repeat1] = STATE(157), - [aux_sym_delim_token_tree_repeat1] = STATE(120), + [107] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(200), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(198), + [sym_string_literal] = STATE(203), + [sym_raw_string_literal] = STATE(203), + [sym_boolean_literal] = STATE(203), + [sym_line_comment] = STATE(107), + [sym_block_comment] = STATE(107), + [aux_sym__non_special_token_repeat1] = STATE(150), + [aux_sym_delim_token_tree_repeat1] = STATE(74), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(726), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LBRACE] = ACTIONS(684), + [anon_sym_RBRACE] = ACTIONS(728), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), [anon_sym_DOLLAR] = ACTIONS(688), @@ -29493,24 +30124,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [114] = { - [sym_delim_token_tree] = STATE(198), - [sym__delim_tokens] = STATE(206), - [sym__non_delim_token] = STATE(198), - [sym__literal] = STATE(214), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(114), - [sym_block_comment] = STATE(114), - [aux_sym__non_special_token_repeat1] = STATE(157), - [aux_sym_delim_token_tree_repeat1] = STATE(117), + [108] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(200), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(198), + [sym_string_literal] = STATE(203), + [sym_raw_string_literal] = STATE(203), + [sym_boolean_literal] = STATE(203), + [sym_line_comment] = STATE(108), + [sym_block_comment] = STATE(108), + [aux_sym__non_special_token_repeat1] = STATE(150), + [aux_sym_delim_token_tree_repeat1] = STATE(74), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(734), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_RBRACK] = ACTIONS(726), + [anon_sym_LBRACE] = ACTIONS(684), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), [anon_sym_DOLLAR] = ACTIONS(688), @@ -29615,24 +30246,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [115] = { - [sym_delim_token_tree] = STATE(198), - [sym__delim_tokens] = STATE(206), - [sym__non_delim_token] = STATE(198), - [sym__literal] = STATE(214), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(115), - [sym_block_comment] = STATE(115), - [aux_sym__non_special_token_repeat1] = STATE(157), - [aux_sym_delim_token_tree_repeat1] = STATE(118), + [109] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(200), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(198), + [sym_string_literal] = STATE(203), + [sym_raw_string_literal] = STATE(203), + [sym_boolean_literal] = STATE(203), + [sym_line_comment] = STATE(109), + [sym_block_comment] = STATE(109), + [aux_sym__non_special_token_repeat1] = STATE(150), + [aux_sym_delim_token_tree_repeat1] = STATE(121), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_RBRACK] = ACTIONS(734), - [anon_sym_LBRACE] = ACTIONS(682), + [anon_sym_RPAREN] = ACTIONS(720), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LBRACE] = ACTIONS(684), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), [anon_sym_DOLLAR] = ACTIONS(688), @@ -29737,146 +30368,146 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [116] = { - [sym_delim_token_tree] = STATE(198), - [sym__delim_tokens] = STATE(206), - [sym__non_delim_token] = STATE(198), - [sym__literal] = STATE(214), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(116), - [sym_block_comment] = STATE(116), - [aux_sym__non_special_token_repeat1] = STATE(157), - [aux_sym_delim_token_tree_repeat1] = STATE(119), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_RBRACE] = ACTIONS(734), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [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_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [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_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), + [110] = { + [sym_token_tree] = STATE(147), + [sym_token_repetition] = STATE(147), + [sym__literal] = STATE(147), + [sym_string_literal] = STATE(184), + [sym_raw_string_literal] = STATE(184), + [sym_boolean_literal] = STATE(184), + [sym_line_comment] = STATE(110), + [sym_block_comment] = STATE(110), + [aux_sym_token_tree_repeat1] = STATE(128), + [aux_sym__non_special_token_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(702), + [anon_sym_SEMI] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(704), + [anon_sym_LBRACK] = ACTIONS(708), + [anon_sym_LBRACE] = ACTIONS(710), + [anon_sym_RBRACE] = ACTIONS(730), + [anon_sym_EQ_GT] = ACTIONS(567), + [anon_sym_COLON] = ACTIONS(577), + [anon_sym_DOLLAR] = ACTIONS(712), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_STAR] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(567), + [anon_sym_u8] = ACTIONS(702), + [anon_sym_i8] = ACTIONS(702), + [anon_sym_u16] = ACTIONS(702), + [anon_sym_i16] = ACTIONS(702), + [anon_sym_u32] = ACTIONS(702), + [anon_sym_i32] = ACTIONS(702), + [anon_sym_u64] = ACTIONS(702), + [anon_sym_i64] = ACTIONS(702), + [anon_sym_u128] = ACTIONS(702), + [anon_sym_i128] = ACTIONS(702), + [anon_sym_isize] = ACTIONS(702), + [anon_sym_usize] = ACTIONS(702), + [anon_sym_f32] = ACTIONS(702), + [anon_sym_f64] = ACTIONS(702), + [anon_sym_bool] = ACTIONS(702), + [anon_sym_str] = ACTIONS(702), + [anon_sym_char] = ACTIONS(702), + [anon_sym_DASH] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(577), + [anon_sym_CARET] = ACTIONS(577), + [anon_sym_BANG] = ACTIONS(577), + [anon_sym_AMP] = ACTIONS(577), + [anon_sym_PIPE] = ACTIONS(577), + [anon_sym_AMP_AMP] = ACTIONS(567), + [anon_sym_PIPE_PIPE] = ACTIONS(567), + [anon_sym_LT_LT] = ACTIONS(577), + [anon_sym_GT_GT] = ACTIONS(577), + [anon_sym_PLUS_EQ] = ACTIONS(567), + [anon_sym_DASH_EQ] = ACTIONS(567), + [anon_sym_STAR_EQ] = ACTIONS(567), + [anon_sym_SLASH_EQ] = ACTIONS(567), + [anon_sym_PERCENT_EQ] = ACTIONS(567), + [anon_sym_CARET_EQ] = ACTIONS(567), + [anon_sym_AMP_EQ] = ACTIONS(567), + [anon_sym_PIPE_EQ] = ACTIONS(567), + [anon_sym_LT_LT_EQ] = ACTIONS(567), + [anon_sym_GT_GT_EQ] = ACTIONS(567), + [anon_sym_EQ] = ACTIONS(577), + [anon_sym_EQ_EQ] = ACTIONS(567), + [anon_sym_BANG_EQ] = ACTIONS(567), + [anon_sym_GT] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(577), + [anon_sym_GT_EQ] = ACTIONS(567), + [anon_sym_LT_EQ] = ACTIONS(567), + [anon_sym_AT] = ACTIONS(567), + [anon_sym__] = ACTIONS(577), + [anon_sym_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT_DOT] = ACTIONS(567), + [anon_sym_DOT_DOT_EQ] = ACTIONS(567), + [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_COLON_COLON] = ACTIONS(567), + [anon_sym_DASH_GT] = ACTIONS(567), + [anon_sym_POUND] = ACTIONS(567), + [anon_sym_SQUOTE] = ACTIONS(702), + [anon_sym_as] = ACTIONS(702), + [anon_sym_async] = ACTIONS(702), + [anon_sym_await] = ACTIONS(702), + [anon_sym_break] = ACTIONS(702), + [anon_sym_const] = ACTIONS(702), + [anon_sym_continue] = ACTIONS(702), + [anon_sym_default] = ACTIONS(702), + [anon_sym_enum] = ACTIONS(702), + [anon_sym_fn] = ACTIONS(702), + [anon_sym_for] = ACTIONS(702), + [anon_sym_gen] = ACTIONS(702), + [anon_sym_if] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(702), + [anon_sym_let] = ACTIONS(702), + [anon_sym_loop] = ACTIONS(702), + [anon_sym_match] = ACTIONS(702), + [anon_sym_mod] = ACTIONS(702), + [anon_sym_pub] = ACTIONS(702), + [anon_sym_return] = ACTIONS(702), + [anon_sym_static] = ACTIONS(702), + [anon_sym_struct] = ACTIONS(702), + [anon_sym_trait] = ACTIONS(702), + [anon_sym_type] = ACTIONS(702), + [anon_sym_union] = ACTIONS(702), + [anon_sym_unsafe] = ACTIONS(702), + [anon_sym_use] = ACTIONS(702), + [anon_sym_where] = ACTIONS(702), + [anon_sym_while] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(702), + [sym_integer_literal] = ACTIONS(581), + [aux_sym_string_literal_token1] = ACTIONS(583), + [sym_char_literal] = ACTIONS(581), + [anon_sym_true] = ACTIONS(585), + [anon_sym_false] = ACTIONS(585), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [sym_self] = ACTIONS(702), + [sym_super] = ACTIONS(702), + [sym_crate] = ACTIONS(702), + [sym_metavariable] = ACTIONS(714), + [sym__raw_string_literal_start] = ACTIONS(589), + [sym_float_literal] = ACTIONS(581), }, - [117] = { - [sym_delim_token_tree] = STATE(198), - [sym__delim_tokens] = STATE(206), - [sym__non_delim_token] = STATE(198), - [sym__literal] = STATE(214), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(117), - [sym_block_comment] = STATE(117), - [aux_sym__non_special_token_repeat1] = STATE(157), - [aux_sym_delim_token_tree_repeat1] = STATE(83), + [111] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(200), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(198), + [sym_string_literal] = STATE(203), + [sym_raw_string_literal] = STATE(203), + [sym_boolean_literal] = STATE(203), + [sym_line_comment] = STATE(111), + [sym_block_comment] = STATE(111), + [aux_sym__non_special_token_repeat1] = STATE(150), + [aux_sym_delim_token_tree_repeat1] = STATE(74), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(736), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_RBRACK] = ACTIONS(698), + [anon_sym_LBRACE] = ACTIONS(684), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), [anon_sym_DOLLAR] = ACTIONS(688), @@ -29981,24 +30612,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [118] = { - [sym_delim_token_tree] = STATE(198), - [sym__delim_tokens] = STATE(206), - [sym__non_delim_token] = STATE(198), - [sym__literal] = STATE(214), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(118), - [sym_block_comment] = STATE(118), - [aux_sym__non_special_token_repeat1] = STATE(157), - [aux_sym_delim_token_tree_repeat1] = STATE(83), + [112] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(200), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(198), + [sym_string_literal] = STATE(203), + [sym_raw_string_literal] = STATE(203), + [sym_boolean_literal] = STATE(203), + [sym_line_comment] = STATE(112), + [sym_block_comment] = STATE(112), + [aux_sym__non_special_token_repeat1] = STATE(150), + [aux_sym_delim_token_tree_repeat1] = STATE(74), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_RBRACK] = ACTIONS(736), - [anon_sym_LBRACE] = ACTIONS(682), + [anon_sym_RPAREN] = ACTIONS(732), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LBRACE] = ACTIONS(684), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), [anon_sym_DOLLAR] = ACTIONS(688), @@ -30103,24 +30734,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [119] = { - [sym_delim_token_tree] = STATE(198), - [sym__delim_tokens] = STATE(206), - [sym__non_delim_token] = STATE(198), - [sym__literal] = STATE(214), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(119), - [sym_block_comment] = STATE(119), - [aux_sym__non_special_token_repeat1] = STATE(157), - [aux_sym_delim_token_tree_repeat1] = STATE(83), + [113] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(200), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(198), + [sym_string_literal] = STATE(203), + [sym_raw_string_literal] = STATE(203), + [sym_boolean_literal] = STATE(203), + [sym_line_comment] = STATE(113), + [sym_block_comment] = STATE(113), + [aux_sym__non_special_token_repeat1] = STATE(150), + [aux_sym_delim_token_tree_repeat1] = STATE(74), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_RBRACE] = ACTIONS(736), + [anon_sym_RPAREN] = ACTIONS(726), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LBRACE] = ACTIONS(684), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), [anon_sym_DOLLAR] = ACTIONS(688), @@ -30225,168 +30856,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [120] = { - [sym_delim_token_tree] = STATE(198), - [sym__delim_tokens] = STATE(206), - [sym__non_delim_token] = STATE(198), - [sym__literal] = STATE(214), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(120), - [sym_block_comment] = STATE(120), - [aux_sym__non_special_token_repeat1] = STATE(157), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(720), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [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_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [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_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), + [114] = { + [sym_token_tree] = STATE(147), + [sym_token_repetition] = STATE(147), + [sym__literal] = STATE(147), + [sym_string_literal] = STATE(184), + [sym_raw_string_literal] = STATE(184), + [sym_boolean_literal] = STATE(184), + [sym_line_comment] = STATE(114), + [sym_block_comment] = STATE(114), + [aux_sym_token_tree_repeat1] = STATE(129), + [aux_sym__non_special_token_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(702), + [anon_sym_SEMI] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(704), + [anon_sym_LBRACK] = ACTIONS(708), + [anon_sym_RBRACK] = ACTIONS(730), + [anon_sym_LBRACE] = ACTIONS(710), + [anon_sym_EQ_GT] = ACTIONS(567), + [anon_sym_COLON] = ACTIONS(577), + [anon_sym_DOLLAR] = ACTIONS(712), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_STAR] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(567), + [anon_sym_u8] = ACTIONS(702), + [anon_sym_i8] = ACTIONS(702), + [anon_sym_u16] = ACTIONS(702), + [anon_sym_i16] = ACTIONS(702), + [anon_sym_u32] = ACTIONS(702), + [anon_sym_i32] = ACTIONS(702), + [anon_sym_u64] = ACTIONS(702), + [anon_sym_i64] = ACTIONS(702), + [anon_sym_u128] = ACTIONS(702), + [anon_sym_i128] = ACTIONS(702), + [anon_sym_isize] = ACTIONS(702), + [anon_sym_usize] = ACTIONS(702), + [anon_sym_f32] = ACTIONS(702), + [anon_sym_f64] = ACTIONS(702), + [anon_sym_bool] = ACTIONS(702), + [anon_sym_str] = ACTIONS(702), + [anon_sym_char] = ACTIONS(702), + [anon_sym_DASH] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(577), + [anon_sym_CARET] = ACTIONS(577), + [anon_sym_BANG] = ACTIONS(577), + [anon_sym_AMP] = ACTIONS(577), + [anon_sym_PIPE] = ACTIONS(577), + [anon_sym_AMP_AMP] = ACTIONS(567), + [anon_sym_PIPE_PIPE] = ACTIONS(567), + [anon_sym_LT_LT] = ACTIONS(577), + [anon_sym_GT_GT] = ACTIONS(577), + [anon_sym_PLUS_EQ] = ACTIONS(567), + [anon_sym_DASH_EQ] = ACTIONS(567), + [anon_sym_STAR_EQ] = ACTIONS(567), + [anon_sym_SLASH_EQ] = ACTIONS(567), + [anon_sym_PERCENT_EQ] = ACTIONS(567), + [anon_sym_CARET_EQ] = ACTIONS(567), + [anon_sym_AMP_EQ] = ACTIONS(567), + [anon_sym_PIPE_EQ] = ACTIONS(567), + [anon_sym_LT_LT_EQ] = ACTIONS(567), + [anon_sym_GT_GT_EQ] = ACTIONS(567), + [anon_sym_EQ] = ACTIONS(577), + [anon_sym_EQ_EQ] = ACTIONS(567), + [anon_sym_BANG_EQ] = ACTIONS(567), + [anon_sym_GT] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(577), + [anon_sym_GT_EQ] = ACTIONS(567), + [anon_sym_LT_EQ] = ACTIONS(567), + [anon_sym_AT] = ACTIONS(567), + [anon_sym__] = ACTIONS(577), + [anon_sym_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT_DOT] = ACTIONS(567), + [anon_sym_DOT_DOT_EQ] = ACTIONS(567), + [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_COLON_COLON] = ACTIONS(567), + [anon_sym_DASH_GT] = ACTIONS(567), + [anon_sym_POUND] = ACTIONS(567), + [anon_sym_SQUOTE] = ACTIONS(702), + [anon_sym_as] = ACTIONS(702), + [anon_sym_async] = ACTIONS(702), + [anon_sym_await] = ACTIONS(702), + [anon_sym_break] = ACTIONS(702), + [anon_sym_const] = ACTIONS(702), + [anon_sym_continue] = ACTIONS(702), + [anon_sym_default] = ACTIONS(702), + [anon_sym_enum] = ACTIONS(702), + [anon_sym_fn] = ACTIONS(702), + [anon_sym_for] = ACTIONS(702), + [anon_sym_gen] = ACTIONS(702), + [anon_sym_if] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(702), + [anon_sym_let] = ACTIONS(702), + [anon_sym_loop] = ACTIONS(702), + [anon_sym_match] = ACTIONS(702), + [anon_sym_mod] = ACTIONS(702), + [anon_sym_pub] = ACTIONS(702), + [anon_sym_return] = ACTIONS(702), + [anon_sym_static] = ACTIONS(702), + [anon_sym_struct] = ACTIONS(702), + [anon_sym_trait] = ACTIONS(702), + [anon_sym_type] = ACTIONS(702), + [anon_sym_union] = ACTIONS(702), + [anon_sym_unsafe] = ACTIONS(702), + [anon_sym_use] = ACTIONS(702), + [anon_sym_where] = ACTIONS(702), + [anon_sym_while] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(702), + [sym_integer_literal] = ACTIONS(581), + [aux_sym_string_literal_token1] = ACTIONS(583), + [sym_char_literal] = ACTIONS(581), + [anon_sym_true] = ACTIONS(585), + [anon_sym_false] = ACTIONS(585), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), + [sym_self] = ACTIONS(702), + [sym_super] = ACTIONS(702), + [sym_crate] = ACTIONS(702), + [sym_metavariable] = ACTIONS(714), + [sym__raw_string_literal_start] = ACTIONS(589), + [sym_float_literal] = ACTIONS(581), }, - [121] = { - [sym_token_tree] = STATE(152), - [sym_token_repetition] = STATE(152), - [sym__literal] = STATE(152), - [sym_string_literal] = STATE(177), - [sym_raw_string_literal] = STATE(177), - [sym_boolean_literal] = STATE(177), - [sym_line_comment] = STATE(121), - [sym_block_comment] = STATE(121), - [aux_sym_token_tree_repeat1] = STATE(133), - [aux_sym__non_special_token_repeat1] = STATE(143), - [sym_identifier] = ACTIONS(700), + [115] = { + [sym_token_tree] = STATE(147), + [sym_token_repetition] = STATE(147), + [sym__literal] = STATE(147), + [sym_string_literal] = STATE(184), + [sym_raw_string_literal] = STATE(184), + [sym_boolean_literal] = STATE(184), + [sym_line_comment] = STATE(115), + [sym_block_comment] = STATE(115), + [aux_sym_token_tree_repeat1] = STATE(89), + [aux_sym__non_special_token_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(702), [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(702), - [anon_sym_RPAREN] = ACTIONS(738), - [anon_sym_LBRACK] = ACTIONS(704), - [anon_sym_LBRACE] = ACTIONS(708), + [anon_sym_LPAREN] = ACTIONS(704), + [anon_sym_RPAREN] = ACTIONS(734), + [anon_sym_LBRACK] = ACTIONS(708), + [anon_sym_LBRACE] = ACTIONS(710), [anon_sym_EQ_GT] = ACTIONS(567), [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(710), + [anon_sym_DOLLAR] = ACTIONS(712), [anon_sym_PLUS] = ACTIONS(577), [anon_sym_STAR] = ACTIONS(577), [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(700), - [anon_sym_i8] = ACTIONS(700), - [anon_sym_u16] = ACTIONS(700), - [anon_sym_i16] = ACTIONS(700), - [anon_sym_u32] = ACTIONS(700), - [anon_sym_i32] = ACTIONS(700), - [anon_sym_u64] = ACTIONS(700), - [anon_sym_i64] = ACTIONS(700), - [anon_sym_u128] = ACTIONS(700), - [anon_sym_i128] = ACTIONS(700), - [anon_sym_isize] = ACTIONS(700), - [anon_sym_usize] = ACTIONS(700), - [anon_sym_f32] = ACTIONS(700), - [anon_sym_f64] = ACTIONS(700), - [anon_sym_bool] = ACTIONS(700), - [anon_sym_str] = ACTIONS(700), - [anon_sym_char] = ACTIONS(700), + [anon_sym_u8] = ACTIONS(702), + [anon_sym_i8] = ACTIONS(702), + [anon_sym_u16] = ACTIONS(702), + [anon_sym_i16] = ACTIONS(702), + [anon_sym_u32] = ACTIONS(702), + [anon_sym_i32] = ACTIONS(702), + [anon_sym_u64] = ACTIONS(702), + [anon_sym_i64] = ACTIONS(702), + [anon_sym_u128] = ACTIONS(702), + [anon_sym_i128] = ACTIONS(702), + [anon_sym_isize] = ACTIONS(702), + [anon_sym_usize] = ACTIONS(702), + [anon_sym_f32] = ACTIONS(702), + [anon_sym_f64] = ACTIONS(702), + [anon_sym_bool] = ACTIONS(702), + [anon_sym_str] = ACTIONS(702), + [anon_sym_char] = ACTIONS(702), [anon_sym_DASH] = ACTIONS(577), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(577), @@ -30425,36 +31056,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(567), [anon_sym_DASH_GT] = ACTIONS(567), [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(700), - [anon_sym_as] = ACTIONS(700), - [anon_sym_async] = ACTIONS(700), - [anon_sym_await] = ACTIONS(700), - [anon_sym_break] = ACTIONS(700), - [anon_sym_const] = ACTIONS(700), - [anon_sym_continue] = ACTIONS(700), - [anon_sym_default] = ACTIONS(700), - [anon_sym_enum] = ACTIONS(700), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(700), - [anon_sym_gen] = ACTIONS(700), - [anon_sym_if] = ACTIONS(700), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_let] = ACTIONS(700), - [anon_sym_loop] = ACTIONS(700), - [anon_sym_match] = ACTIONS(700), - [anon_sym_mod] = ACTIONS(700), - [anon_sym_pub] = ACTIONS(700), - [anon_sym_return] = ACTIONS(700), - [anon_sym_static] = ACTIONS(700), - [anon_sym_struct] = ACTIONS(700), - [anon_sym_trait] = ACTIONS(700), - [anon_sym_type] = ACTIONS(700), - [anon_sym_union] = ACTIONS(700), - [anon_sym_unsafe] = ACTIONS(700), - [anon_sym_use] = ACTIONS(700), - [anon_sym_where] = ACTIONS(700), - [anon_sym_while] = ACTIONS(700), - [sym_mutable_specifier] = ACTIONS(700), + [anon_sym_SQUOTE] = ACTIONS(702), + [anon_sym_as] = ACTIONS(702), + [anon_sym_async] = ACTIONS(702), + [anon_sym_await] = ACTIONS(702), + [anon_sym_break] = ACTIONS(702), + [anon_sym_const] = ACTIONS(702), + [anon_sym_continue] = ACTIONS(702), + [anon_sym_default] = ACTIONS(702), + [anon_sym_enum] = ACTIONS(702), + [anon_sym_fn] = ACTIONS(702), + [anon_sym_for] = ACTIONS(702), + [anon_sym_gen] = ACTIONS(702), + [anon_sym_if] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(702), + [anon_sym_let] = ACTIONS(702), + [anon_sym_loop] = ACTIONS(702), + [anon_sym_match] = ACTIONS(702), + [anon_sym_mod] = ACTIONS(702), + [anon_sym_pub] = ACTIONS(702), + [anon_sym_return] = ACTIONS(702), + [anon_sym_static] = ACTIONS(702), + [anon_sym_struct] = ACTIONS(702), + [anon_sym_trait] = ACTIONS(702), + [anon_sym_type] = ACTIONS(702), + [anon_sym_union] = ACTIONS(702), + [anon_sym_unsafe] = ACTIONS(702), + [anon_sym_use] = ACTIONS(702), + [anon_sym_where] = ACTIONS(702), + [anon_sym_while] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(702), [sym_integer_literal] = ACTIONS(581), [aux_sym_string_literal_token1] = ACTIONS(583), [sym_char_literal] = ACTIONS(581), @@ -30462,31 +31093,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(585), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(700), - [sym_super] = ACTIONS(700), - [sym_crate] = ACTIONS(700), - [sym_metavariable] = ACTIONS(712), + [sym_self] = ACTIONS(702), + [sym_super] = ACTIONS(702), + [sym_crate] = ACTIONS(702), + [sym_metavariable] = ACTIONS(714), [sym__raw_string_literal_start] = ACTIONS(589), [sym_float_literal] = ACTIONS(581), }, - [122] = { - [sym_delim_token_tree] = STATE(198), - [sym__delim_tokens] = STATE(206), - [sym__non_delim_token] = STATE(198), - [sym__literal] = STATE(214), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(122), - [sym_block_comment] = STATE(122), - [aux_sym__non_special_token_repeat1] = STATE(157), - [aux_sym_delim_token_tree_repeat1] = STATE(125), + [116] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(200), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(198), + [sym_string_literal] = STATE(203), + [sym_raw_string_literal] = STATE(203), + [sym_boolean_literal] = STATE(203), + [sym_line_comment] = STATE(116), + [sym_block_comment] = STATE(116), + [aux_sym__non_special_token_repeat1] = STATE(150), + [aux_sym_delim_token_tree_repeat1] = STATE(100), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(684), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LBRACE] = ACTIONS(684), + [anon_sym_RBRACE] = ACTIONS(736), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), [anon_sym_DOLLAR] = ACTIONS(688), @@ -30591,24 +31222,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [123] = { - [sym_delim_token_tree] = STATE(198), - [sym__delim_tokens] = STATE(206), - [sym__non_delim_token] = STATE(198), - [sym__literal] = STATE(214), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(123), - [sym_block_comment] = STATE(123), - [aux_sym__non_special_token_repeat1] = STATE(157), - [aux_sym_delim_token_tree_repeat1] = STATE(126), + [117] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(200), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(198), + [sym_string_literal] = STATE(203), + [sym_raw_string_literal] = STATE(203), + [sym_boolean_literal] = STATE(203), + [sym_line_comment] = STATE(117), + [sym_block_comment] = STATE(117), + [aux_sym__non_special_token_repeat1] = STATE(150), + [aux_sym_delim_token_tree_repeat1] = STATE(133), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_RBRACK] = ACTIONS(684), - [anon_sym_LBRACE] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_RBRACK] = ACTIONS(736), + [anon_sym_LBRACE] = ACTIONS(684), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), [anon_sym_DOLLAR] = ACTIONS(688), @@ -30713,24 +31344,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [124] = { - [sym_delim_token_tree] = STATE(198), - [sym__delim_tokens] = STATE(206), - [sym__non_delim_token] = STATE(198), - [sym__literal] = STATE(214), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(124), - [sym_block_comment] = STATE(124), - [aux_sym__non_special_token_repeat1] = STATE(157), - [aux_sym_delim_token_tree_repeat1] = STATE(85), + [118] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(200), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(198), + [sym_string_literal] = STATE(203), + [sym_raw_string_literal] = STATE(203), + [sym_boolean_literal] = STATE(203), + [sym_line_comment] = STATE(118), + [sym_block_comment] = STATE(118), + [aux_sym__non_special_token_repeat1] = STATE(150), + [aux_sym_delim_token_tree_repeat1] = STATE(132), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(740), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), + [anon_sym_RPAREN] = ACTIONS(736), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LBRACE] = ACTIONS(684), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), [anon_sym_DOLLAR] = ACTIONS(688), @@ -30835,24 +31466,268 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [125] = { - [sym_delim_token_tree] = STATE(198), - [sym__delim_tokens] = STATE(206), - [sym__non_delim_token] = STATE(198), - [sym__literal] = STATE(214), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(125), - [sym_block_comment] = STATE(125), - [aux_sym__non_special_token_repeat1] = STATE(157), - [aux_sym_delim_token_tree_repeat1] = STATE(83), + [119] = { + [sym_token_tree] = STATE(147), + [sym_token_repetition] = STATE(147), + [sym__literal] = STATE(147), + [sym_string_literal] = STATE(184), + [sym_raw_string_literal] = STATE(184), + [sym_boolean_literal] = STATE(184), + [sym_line_comment] = STATE(119), + [sym_block_comment] = STATE(119), + [aux_sym_token_tree_repeat1] = STATE(75), + [aux_sym__non_special_token_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(702), + [anon_sym_SEMI] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(704), + [anon_sym_LBRACK] = ACTIONS(708), + [anon_sym_LBRACE] = ACTIONS(710), + [anon_sym_RBRACE] = ACTIONS(738), + [anon_sym_EQ_GT] = ACTIONS(567), + [anon_sym_COLON] = ACTIONS(577), + [anon_sym_DOLLAR] = ACTIONS(712), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_STAR] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(567), + [anon_sym_u8] = ACTIONS(702), + [anon_sym_i8] = ACTIONS(702), + [anon_sym_u16] = ACTIONS(702), + [anon_sym_i16] = ACTIONS(702), + [anon_sym_u32] = ACTIONS(702), + [anon_sym_i32] = ACTIONS(702), + [anon_sym_u64] = ACTIONS(702), + [anon_sym_i64] = ACTIONS(702), + [anon_sym_u128] = ACTIONS(702), + [anon_sym_i128] = ACTIONS(702), + [anon_sym_isize] = ACTIONS(702), + [anon_sym_usize] = ACTIONS(702), + [anon_sym_f32] = ACTIONS(702), + [anon_sym_f64] = ACTIONS(702), + [anon_sym_bool] = ACTIONS(702), + [anon_sym_str] = ACTIONS(702), + [anon_sym_char] = ACTIONS(702), + [anon_sym_DASH] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(577), + [anon_sym_CARET] = ACTIONS(577), + [anon_sym_BANG] = ACTIONS(577), + [anon_sym_AMP] = ACTIONS(577), + [anon_sym_PIPE] = ACTIONS(577), + [anon_sym_AMP_AMP] = ACTIONS(567), + [anon_sym_PIPE_PIPE] = ACTIONS(567), + [anon_sym_LT_LT] = ACTIONS(577), + [anon_sym_GT_GT] = ACTIONS(577), + [anon_sym_PLUS_EQ] = ACTIONS(567), + [anon_sym_DASH_EQ] = ACTIONS(567), + [anon_sym_STAR_EQ] = ACTIONS(567), + [anon_sym_SLASH_EQ] = ACTIONS(567), + [anon_sym_PERCENT_EQ] = ACTIONS(567), + [anon_sym_CARET_EQ] = ACTIONS(567), + [anon_sym_AMP_EQ] = ACTIONS(567), + [anon_sym_PIPE_EQ] = ACTIONS(567), + [anon_sym_LT_LT_EQ] = ACTIONS(567), + [anon_sym_GT_GT_EQ] = ACTIONS(567), + [anon_sym_EQ] = ACTIONS(577), + [anon_sym_EQ_EQ] = ACTIONS(567), + [anon_sym_BANG_EQ] = ACTIONS(567), + [anon_sym_GT] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(577), + [anon_sym_GT_EQ] = ACTIONS(567), + [anon_sym_LT_EQ] = ACTIONS(567), + [anon_sym_AT] = ACTIONS(567), + [anon_sym__] = ACTIONS(577), + [anon_sym_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT_DOT] = ACTIONS(567), + [anon_sym_DOT_DOT_EQ] = ACTIONS(567), + [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_COLON_COLON] = ACTIONS(567), + [anon_sym_DASH_GT] = ACTIONS(567), + [anon_sym_POUND] = ACTIONS(567), + [anon_sym_SQUOTE] = ACTIONS(702), + [anon_sym_as] = ACTIONS(702), + [anon_sym_async] = ACTIONS(702), + [anon_sym_await] = ACTIONS(702), + [anon_sym_break] = ACTIONS(702), + [anon_sym_const] = ACTIONS(702), + [anon_sym_continue] = ACTIONS(702), + [anon_sym_default] = ACTIONS(702), + [anon_sym_enum] = ACTIONS(702), + [anon_sym_fn] = ACTIONS(702), + [anon_sym_for] = ACTIONS(702), + [anon_sym_gen] = ACTIONS(702), + [anon_sym_if] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(702), + [anon_sym_let] = ACTIONS(702), + [anon_sym_loop] = ACTIONS(702), + [anon_sym_match] = ACTIONS(702), + [anon_sym_mod] = ACTIONS(702), + [anon_sym_pub] = ACTIONS(702), + [anon_sym_return] = ACTIONS(702), + [anon_sym_static] = ACTIONS(702), + [anon_sym_struct] = ACTIONS(702), + [anon_sym_trait] = ACTIONS(702), + [anon_sym_type] = ACTIONS(702), + [anon_sym_union] = ACTIONS(702), + [anon_sym_unsafe] = ACTIONS(702), + [anon_sym_use] = ACTIONS(702), + [anon_sym_where] = ACTIONS(702), + [anon_sym_while] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(702), + [sym_integer_literal] = ACTIONS(581), + [aux_sym_string_literal_token1] = ACTIONS(583), + [sym_char_literal] = ACTIONS(581), + [anon_sym_true] = ACTIONS(585), + [anon_sym_false] = ACTIONS(585), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(702), + [sym_super] = ACTIONS(702), + [sym_crate] = ACTIONS(702), + [sym_metavariable] = ACTIONS(714), + [sym__raw_string_literal_start] = ACTIONS(589), + [sym_float_literal] = ACTIONS(581), + }, + [120] = { + [sym_token_tree] = STATE(147), + [sym_token_repetition] = STATE(147), + [sym__literal] = STATE(147), + [sym_string_literal] = STATE(184), + [sym_raw_string_literal] = STATE(184), + [sym_boolean_literal] = STATE(184), + [sym_line_comment] = STATE(120), + [sym_block_comment] = STATE(120), + [aux_sym_token_tree_repeat1] = STATE(75), + [aux_sym__non_special_token_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(702), + [anon_sym_SEMI] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(704), + [anon_sym_LBRACK] = ACTIONS(708), + [anon_sym_RBRACK] = ACTIONS(738), + [anon_sym_LBRACE] = ACTIONS(710), + [anon_sym_EQ_GT] = ACTIONS(567), + [anon_sym_COLON] = ACTIONS(577), + [anon_sym_DOLLAR] = ACTIONS(712), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_STAR] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(567), + [anon_sym_u8] = ACTIONS(702), + [anon_sym_i8] = ACTIONS(702), + [anon_sym_u16] = ACTIONS(702), + [anon_sym_i16] = ACTIONS(702), + [anon_sym_u32] = ACTIONS(702), + [anon_sym_i32] = ACTIONS(702), + [anon_sym_u64] = ACTIONS(702), + [anon_sym_i64] = ACTIONS(702), + [anon_sym_u128] = ACTIONS(702), + [anon_sym_i128] = ACTIONS(702), + [anon_sym_isize] = ACTIONS(702), + [anon_sym_usize] = ACTIONS(702), + [anon_sym_f32] = ACTIONS(702), + [anon_sym_f64] = ACTIONS(702), + [anon_sym_bool] = ACTIONS(702), + [anon_sym_str] = ACTIONS(702), + [anon_sym_char] = ACTIONS(702), + [anon_sym_DASH] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(577), + [anon_sym_CARET] = ACTIONS(577), + [anon_sym_BANG] = ACTIONS(577), + [anon_sym_AMP] = ACTIONS(577), + [anon_sym_PIPE] = ACTIONS(577), + [anon_sym_AMP_AMP] = ACTIONS(567), + [anon_sym_PIPE_PIPE] = ACTIONS(567), + [anon_sym_LT_LT] = ACTIONS(577), + [anon_sym_GT_GT] = ACTIONS(577), + [anon_sym_PLUS_EQ] = ACTIONS(567), + [anon_sym_DASH_EQ] = ACTIONS(567), + [anon_sym_STAR_EQ] = ACTIONS(567), + [anon_sym_SLASH_EQ] = ACTIONS(567), + [anon_sym_PERCENT_EQ] = ACTIONS(567), + [anon_sym_CARET_EQ] = ACTIONS(567), + [anon_sym_AMP_EQ] = ACTIONS(567), + [anon_sym_PIPE_EQ] = ACTIONS(567), + [anon_sym_LT_LT_EQ] = ACTIONS(567), + [anon_sym_GT_GT_EQ] = ACTIONS(567), + [anon_sym_EQ] = ACTIONS(577), + [anon_sym_EQ_EQ] = ACTIONS(567), + [anon_sym_BANG_EQ] = ACTIONS(567), + [anon_sym_GT] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(577), + [anon_sym_GT_EQ] = ACTIONS(567), + [anon_sym_LT_EQ] = ACTIONS(567), + [anon_sym_AT] = ACTIONS(567), + [anon_sym__] = ACTIONS(577), + [anon_sym_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT_DOT] = ACTIONS(567), + [anon_sym_DOT_DOT_EQ] = ACTIONS(567), + [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_COLON_COLON] = ACTIONS(567), + [anon_sym_DASH_GT] = ACTIONS(567), + [anon_sym_POUND] = ACTIONS(567), + [anon_sym_SQUOTE] = ACTIONS(702), + [anon_sym_as] = ACTIONS(702), + [anon_sym_async] = ACTIONS(702), + [anon_sym_await] = ACTIONS(702), + [anon_sym_break] = ACTIONS(702), + [anon_sym_const] = ACTIONS(702), + [anon_sym_continue] = ACTIONS(702), + [anon_sym_default] = ACTIONS(702), + [anon_sym_enum] = ACTIONS(702), + [anon_sym_fn] = ACTIONS(702), + [anon_sym_for] = ACTIONS(702), + [anon_sym_gen] = ACTIONS(702), + [anon_sym_if] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(702), + [anon_sym_let] = ACTIONS(702), + [anon_sym_loop] = ACTIONS(702), + [anon_sym_match] = ACTIONS(702), + [anon_sym_mod] = ACTIONS(702), + [anon_sym_pub] = ACTIONS(702), + [anon_sym_return] = ACTIONS(702), + [anon_sym_static] = ACTIONS(702), + [anon_sym_struct] = ACTIONS(702), + [anon_sym_trait] = ACTIONS(702), + [anon_sym_type] = ACTIONS(702), + [anon_sym_union] = ACTIONS(702), + [anon_sym_unsafe] = ACTIONS(702), + [anon_sym_use] = ACTIONS(702), + [anon_sym_where] = ACTIONS(702), + [anon_sym_while] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(702), + [sym_integer_literal] = ACTIONS(581), + [aux_sym_string_literal_token1] = ACTIONS(583), + [sym_char_literal] = ACTIONS(581), + [anon_sym_true] = ACTIONS(585), + [anon_sym_false] = ACTIONS(585), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(702), + [sym_super] = ACTIONS(702), + [sym_crate] = ACTIONS(702), + [sym_metavariable] = ACTIONS(714), + [sym__raw_string_literal_start] = ACTIONS(589), + [sym_float_literal] = ACTIONS(581), + }, + [121] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(200), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(198), + [sym_string_literal] = STATE(203), + [sym_raw_string_literal] = STATE(203), + [sym_boolean_literal] = STATE(203), + [sym_line_comment] = STATE(121), + [sym_block_comment] = STATE(121), + [aux_sym__non_special_token_repeat1] = STATE(150), + [aux_sym_delim_token_tree_repeat1] = STATE(74), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_RPAREN] = ACTIONS(742), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), + [anon_sym_RPAREN] = ACTIONS(698), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LBRACE] = ACTIONS(684), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), [anon_sym_DOLLAR] = ACTIONS(688), @@ -30957,24 +31832,268 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [126] = { - [sym_delim_token_tree] = STATE(198), - [sym__delim_tokens] = STATE(206), - [sym__non_delim_token] = STATE(198), - [sym__literal] = STATE(214), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(126), - [sym_block_comment] = STATE(126), - [aux_sym__non_special_token_repeat1] = STATE(157), - [aux_sym_delim_token_tree_repeat1] = STATE(83), + [122] = { + [sym_token_tree] = STATE(147), + [sym_token_repetition] = STATE(147), + [sym__literal] = STATE(147), + [sym_string_literal] = STATE(184), + [sym_raw_string_literal] = STATE(184), + [sym_boolean_literal] = STATE(184), + [sym_line_comment] = STATE(122), + [sym_block_comment] = STATE(122), + [aux_sym_token_tree_repeat1] = STATE(75), + [aux_sym__non_special_token_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(702), + [anon_sym_SEMI] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(704), + [anon_sym_RPAREN] = ACTIONS(738), + [anon_sym_LBRACK] = ACTIONS(708), + [anon_sym_LBRACE] = ACTIONS(710), + [anon_sym_EQ_GT] = ACTIONS(567), + [anon_sym_COLON] = ACTIONS(577), + [anon_sym_DOLLAR] = ACTIONS(712), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_STAR] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(567), + [anon_sym_u8] = ACTIONS(702), + [anon_sym_i8] = ACTIONS(702), + [anon_sym_u16] = ACTIONS(702), + [anon_sym_i16] = ACTIONS(702), + [anon_sym_u32] = ACTIONS(702), + [anon_sym_i32] = ACTIONS(702), + [anon_sym_u64] = ACTIONS(702), + [anon_sym_i64] = ACTIONS(702), + [anon_sym_u128] = ACTIONS(702), + [anon_sym_i128] = ACTIONS(702), + [anon_sym_isize] = ACTIONS(702), + [anon_sym_usize] = ACTIONS(702), + [anon_sym_f32] = ACTIONS(702), + [anon_sym_f64] = ACTIONS(702), + [anon_sym_bool] = ACTIONS(702), + [anon_sym_str] = ACTIONS(702), + [anon_sym_char] = ACTIONS(702), + [anon_sym_DASH] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(577), + [anon_sym_CARET] = ACTIONS(577), + [anon_sym_BANG] = ACTIONS(577), + [anon_sym_AMP] = ACTIONS(577), + [anon_sym_PIPE] = ACTIONS(577), + [anon_sym_AMP_AMP] = ACTIONS(567), + [anon_sym_PIPE_PIPE] = ACTIONS(567), + [anon_sym_LT_LT] = ACTIONS(577), + [anon_sym_GT_GT] = ACTIONS(577), + [anon_sym_PLUS_EQ] = ACTIONS(567), + [anon_sym_DASH_EQ] = ACTIONS(567), + [anon_sym_STAR_EQ] = ACTIONS(567), + [anon_sym_SLASH_EQ] = ACTIONS(567), + [anon_sym_PERCENT_EQ] = ACTIONS(567), + [anon_sym_CARET_EQ] = ACTIONS(567), + [anon_sym_AMP_EQ] = ACTIONS(567), + [anon_sym_PIPE_EQ] = ACTIONS(567), + [anon_sym_LT_LT_EQ] = ACTIONS(567), + [anon_sym_GT_GT_EQ] = ACTIONS(567), + [anon_sym_EQ] = ACTIONS(577), + [anon_sym_EQ_EQ] = ACTIONS(567), + [anon_sym_BANG_EQ] = ACTIONS(567), + [anon_sym_GT] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(577), + [anon_sym_GT_EQ] = ACTIONS(567), + [anon_sym_LT_EQ] = ACTIONS(567), + [anon_sym_AT] = ACTIONS(567), + [anon_sym__] = ACTIONS(577), + [anon_sym_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT_DOT] = ACTIONS(567), + [anon_sym_DOT_DOT_EQ] = ACTIONS(567), + [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_COLON_COLON] = ACTIONS(567), + [anon_sym_DASH_GT] = ACTIONS(567), + [anon_sym_POUND] = ACTIONS(567), + [anon_sym_SQUOTE] = ACTIONS(702), + [anon_sym_as] = ACTIONS(702), + [anon_sym_async] = ACTIONS(702), + [anon_sym_await] = ACTIONS(702), + [anon_sym_break] = ACTIONS(702), + [anon_sym_const] = ACTIONS(702), + [anon_sym_continue] = ACTIONS(702), + [anon_sym_default] = ACTIONS(702), + [anon_sym_enum] = ACTIONS(702), + [anon_sym_fn] = ACTIONS(702), + [anon_sym_for] = ACTIONS(702), + [anon_sym_gen] = ACTIONS(702), + [anon_sym_if] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(702), + [anon_sym_let] = ACTIONS(702), + [anon_sym_loop] = ACTIONS(702), + [anon_sym_match] = ACTIONS(702), + [anon_sym_mod] = ACTIONS(702), + [anon_sym_pub] = ACTIONS(702), + [anon_sym_return] = ACTIONS(702), + [anon_sym_static] = ACTIONS(702), + [anon_sym_struct] = ACTIONS(702), + [anon_sym_trait] = ACTIONS(702), + [anon_sym_type] = ACTIONS(702), + [anon_sym_union] = ACTIONS(702), + [anon_sym_unsafe] = ACTIONS(702), + [anon_sym_use] = ACTIONS(702), + [anon_sym_where] = ACTIONS(702), + [anon_sym_while] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(702), + [sym_integer_literal] = ACTIONS(581), + [aux_sym_string_literal_token1] = ACTIONS(583), + [sym_char_literal] = ACTIONS(581), + [anon_sym_true] = ACTIONS(585), + [anon_sym_false] = ACTIONS(585), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(702), + [sym_super] = ACTIONS(702), + [sym_crate] = ACTIONS(702), + [sym_metavariable] = ACTIONS(714), + [sym__raw_string_literal_start] = ACTIONS(589), + [sym_float_literal] = ACTIONS(581), + }, + [123] = { + [sym_token_tree] = STATE(147), + [sym_token_repetition] = STATE(147), + [sym__literal] = STATE(147), + [sym_string_literal] = STATE(184), + [sym_raw_string_literal] = STATE(184), + [sym_boolean_literal] = STATE(184), + [sym_line_comment] = STATE(123), + [sym_block_comment] = STATE(123), + [aux_sym_token_tree_repeat1] = STATE(130), + [aux_sym__non_special_token_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(702), + [anon_sym_SEMI] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(704), + [anon_sym_RPAREN] = ACTIONS(730), + [anon_sym_LBRACK] = ACTIONS(708), + [anon_sym_LBRACE] = ACTIONS(710), + [anon_sym_EQ_GT] = ACTIONS(567), + [anon_sym_COLON] = ACTIONS(577), + [anon_sym_DOLLAR] = ACTIONS(712), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_STAR] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(567), + [anon_sym_u8] = ACTIONS(702), + [anon_sym_i8] = ACTIONS(702), + [anon_sym_u16] = ACTIONS(702), + [anon_sym_i16] = ACTIONS(702), + [anon_sym_u32] = ACTIONS(702), + [anon_sym_i32] = ACTIONS(702), + [anon_sym_u64] = ACTIONS(702), + [anon_sym_i64] = ACTIONS(702), + [anon_sym_u128] = ACTIONS(702), + [anon_sym_i128] = ACTIONS(702), + [anon_sym_isize] = ACTIONS(702), + [anon_sym_usize] = ACTIONS(702), + [anon_sym_f32] = ACTIONS(702), + [anon_sym_f64] = ACTIONS(702), + [anon_sym_bool] = ACTIONS(702), + [anon_sym_str] = ACTIONS(702), + [anon_sym_char] = ACTIONS(702), + [anon_sym_DASH] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(577), + [anon_sym_CARET] = ACTIONS(577), + [anon_sym_BANG] = ACTIONS(577), + [anon_sym_AMP] = ACTIONS(577), + [anon_sym_PIPE] = ACTIONS(577), + [anon_sym_AMP_AMP] = ACTIONS(567), + [anon_sym_PIPE_PIPE] = ACTIONS(567), + [anon_sym_LT_LT] = ACTIONS(577), + [anon_sym_GT_GT] = ACTIONS(577), + [anon_sym_PLUS_EQ] = ACTIONS(567), + [anon_sym_DASH_EQ] = ACTIONS(567), + [anon_sym_STAR_EQ] = ACTIONS(567), + [anon_sym_SLASH_EQ] = ACTIONS(567), + [anon_sym_PERCENT_EQ] = ACTIONS(567), + [anon_sym_CARET_EQ] = ACTIONS(567), + [anon_sym_AMP_EQ] = ACTIONS(567), + [anon_sym_PIPE_EQ] = ACTIONS(567), + [anon_sym_LT_LT_EQ] = ACTIONS(567), + [anon_sym_GT_GT_EQ] = ACTIONS(567), + [anon_sym_EQ] = ACTIONS(577), + [anon_sym_EQ_EQ] = ACTIONS(567), + [anon_sym_BANG_EQ] = ACTIONS(567), + [anon_sym_GT] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(577), + [anon_sym_GT_EQ] = ACTIONS(567), + [anon_sym_LT_EQ] = ACTIONS(567), + [anon_sym_AT] = ACTIONS(567), + [anon_sym__] = ACTIONS(577), + [anon_sym_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT_DOT] = ACTIONS(567), + [anon_sym_DOT_DOT_EQ] = ACTIONS(567), + [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_COLON_COLON] = ACTIONS(567), + [anon_sym_DASH_GT] = ACTIONS(567), + [anon_sym_POUND] = ACTIONS(567), + [anon_sym_SQUOTE] = ACTIONS(702), + [anon_sym_as] = ACTIONS(702), + [anon_sym_async] = ACTIONS(702), + [anon_sym_await] = ACTIONS(702), + [anon_sym_break] = ACTIONS(702), + [anon_sym_const] = ACTIONS(702), + [anon_sym_continue] = ACTIONS(702), + [anon_sym_default] = ACTIONS(702), + [anon_sym_enum] = ACTIONS(702), + [anon_sym_fn] = ACTIONS(702), + [anon_sym_for] = ACTIONS(702), + [anon_sym_gen] = ACTIONS(702), + [anon_sym_if] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(702), + [anon_sym_let] = ACTIONS(702), + [anon_sym_loop] = ACTIONS(702), + [anon_sym_match] = ACTIONS(702), + [anon_sym_mod] = ACTIONS(702), + [anon_sym_pub] = ACTIONS(702), + [anon_sym_return] = ACTIONS(702), + [anon_sym_static] = ACTIONS(702), + [anon_sym_struct] = ACTIONS(702), + [anon_sym_trait] = ACTIONS(702), + [anon_sym_type] = ACTIONS(702), + [anon_sym_union] = ACTIONS(702), + [anon_sym_unsafe] = ACTIONS(702), + [anon_sym_use] = ACTIONS(702), + [anon_sym_where] = ACTIONS(702), + [anon_sym_while] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(702), + [sym_integer_literal] = ACTIONS(581), + [aux_sym_string_literal_token1] = ACTIONS(583), + [sym_char_literal] = ACTIONS(581), + [anon_sym_true] = ACTIONS(585), + [anon_sym_false] = ACTIONS(585), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(702), + [sym_super] = ACTIONS(702), + [sym_crate] = ACTIONS(702), + [sym_metavariable] = ACTIONS(714), + [sym__raw_string_literal_start] = ACTIONS(589), + [sym_float_literal] = ACTIONS(581), + }, + [124] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(200), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(198), + [sym_string_literal] = STATE(203), + [sym_raw_string_literal] = STATE(203), + [sym_boolean_literal] = STATE(203), + [sym_line_comment] = STATE(124), + [sym_block_comment] = STATE(124), + [aux_sym__non_special_token_repeat1] = STATE(150), + [aux_sym_delim_token_tree_repeat1] = STATE(74), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_RBRACK] = ACTIONS(742), - [anon_sym_LBRACE] = ACTIONS(682), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_RBRACK] = ACTIONS(732), + [anon_sym_LBRACE] = ACTIONS(684), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), [anon_sym_DOLLAR] = ACTIONS(688), @@ -31079,24 +32198,756 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, + [125] = { + [sym_token_tree] = STATE(147), + [sym_token_repetition] = STATE(147), + [sym__literal] = STATE(147), + [sym_string_literal] = STATE(184), + [sym_raw_string_literal] = STATE(184), + [sym_boolean_literal] = STATE(184), + [sym_line_comment] = STATE(125), + [sym_block_comment] = STATE(125), + [aux_sym_token_tree_repeat1] = STATE(119), + [aux_sym__non_special_token_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(702), + [anon_sym_SEMI] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(704), + [anon_sym_LBRACK] = ACTIONS(708), + [anon_sym_LBRACE] = ACTIONS(710), + [anon_sym_RBRACE] = ACTIONS(740), + [anon_sym_EQ_GT] = ACTIONS(567), + [anon_sym_COLON] = ACTIONS(577), + [anon_sym_DOLLAR] = ACTIONS(712), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_STAR] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(567), + [anon_sym_u8] = ACTIONS(702), + [anon_sym_i8] = ACTIONS(702), + [anon_sym_u16] = ACTIONS(702), + [anon_sym_i16] = ACTIONS(702), + [anon_sym_u32] = ACTIONS(702), + [anon_sym_i32] = ACTIONS(702), + [anon_sym_u64] = ACTIONS(702), + [anon_sym_i64] = ACTIONS(702), + [anon_sym_u128] = ACTIONS(702), + [anon_sym_i128] = ACTIONS(702), + [anon_sym_isize] = ACTIONS(702), + [anon_sym_usize] = ACTIONS(702), + [anon_sym_f32] = ACTIONS(702), + [anon_sym_f64] = ACTIONS(702), + [anon_sym_bool] = ACTIONS(702), + [anon_sym_str] = ACTIONS(702), + [anon_sym_char] = ACTIONS(702), + [anon_sym_DASH] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(577), + [anon_sym_CARET] = ACTIONS(577), + [anon_sym_BANG] = ACTIONS(577), + [anon_sym_AMP] = ACTIONS(577), + [anon_sym_PIPE] = ACTIONS(577), + [anon_sym_AMP_AMP] = ACTIONS(567), + [anon_sym_PIPE_PIPE] = ACTIONS(567), + [anon_sym_LT_LT] = ACTIONS(577), + [anon_sym_GT_GT] = ACTIONS(577), + [anon_sym_PLUS_EQ] = ACTIONS(567), + [anon_sym_DASH_EQ] = ACTIONS(567), + [anon_sym_STAR_EQ] = ACTIONS(567), + [anon_sym_SLASH_EQ] = ACTIONS(567), + [anon_sym_PERCENT_EQ] = ACTIONS(567), + [anon_sym_CARET_EQ] = ACTIONS(567), + [anon_sym_AMP_EQ] = ACTIONS(567), + [anon_sym_PIPE_EQ] = ACTIONS(567), + [anon_sym_LT_LT_EQ] = ACTIONS(567), + [anon_sym_GT_GT_EQ] = ACTIONS(567), + [anon_sym_EQ] = ACTIONS(577), + [anon_sym_EQ_EQ] = ACTIONS(567), + [anon_sym_BANG_EQ] = ACTIONS(567), + [anon_sym_GT] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(577), + [anon_sym_GT_EQ] = ACTIONS(567), + [anon_sym_LT_EQ] = ACTIONS(567), + [anon_sym_AT] = ACTIONS(567), + [anon_sym__] = ACTIONS(577), + [anon_sym_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT_DOT] = ACTIONS(567), + [anon_sym_DOT_DOT_EQ] = ACTIONS(567), + [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_COLON_COLON] = ACTIONS(567), + [anon_sym_DASH_GT] = ACTIONS(567), + [anon_sym_POUND] = ACTIONS(567), + [anon_sym_SQUOTE] = ACTIONS(702), + [anon_sym_as] = ACTIONS(702), + [anon_sym_async] = ACTIONS(702), + [anon_sym_await] = ACTIONS(702), + [anon_sym_break] = ACTIONS(702), + [anon_sym_const] = ACTIONS(702), + [anon_sym_continue] = ACTIONS(702), + [anon_sym_default] = ACTIONS(702), + [anon_sym_enum] = ACTIONS(702), + [anon_sym_fn] = ACTIONS(702), + [anon_sym_for] = ACTIONS(702), + [anon_sym_gen] = ACTIONS(702), + [anon_sym_if] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(702), + [anon_sym_let] = ACTIONS(702), + [anon_sym_loop] = ACTIONS(702), + [anon_sym_match] = ACTIONS(702), + [anon_sym_mod] = ACTIONS(702), + [anon_sym_pub] = ACTIONS(702), + [anon_sym_return] = ACTIONS(702), + [anon_sym_static] = ACTIONS(702), + [anon_sym_struct] = ACTIONS(702), + [anon_sym_trait] = ACTIONS(702), + [anon_sym_type] = ACTIONS(702), + [anon_sym_union] = ACTIONS(702), + [anon_sym_unsafe] = ACTIONS(702), + [anon_sym_use] = ACTIONS(702), + [anon_sym_where] = ACTIONS(702), + [anon_sym_while] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(702), + [sym_integer_literal] = ACTIONS(581), + [aux_sym_string_literal_token1] = ACTIONS(583), + [sym_char_literal] = ACTIONS(581), + [anon_sym_true] = ACTIONS(585), + [anon_sym_false] = ACTIONS(585), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(702), + [sym_super] = ACTIONS(702), + [sym_crate] = ACTIONS(702), + [sym_metavariable] = ACTIONS(714), + [sym__raw_string_literal_start] = ACTIONS(589), + [sym_float_literal] = ACTIONS(581), + }, + [126] = { + [sym_token_tree] = STATE(147), + [sym_token_repetition] = STATE(147), + [sym__literal] = STATE(147), + [sym_string_literal] = STATE(184), + [sym_raw_string_literal] = STATE(184), + [sym_boolean_literal] = STATE(184), + [sym_line_comment] = STATE(126), + [sym_block_comment] = STATE(126), + [aux_sym_token_tree_repeat1] = STATE(120), + [aux_sym__non_special_token_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(702), + [anon_sym_SEMI] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(704), + [anon_sym_LBRACK] = ACTIONS(708), + [anon_sym_RBRACK] = ACTIONS(740), + [anon_sym_LBRACE] = ACTIONS(710), + [anon_sym_EQ_GT] = ACTIONS(567), + [anon_sym_COLON] = ACTIONS(577), + [anon_sym_DOLLAR] = ACTIONS(712), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_STAR] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(567), + [anon_sym_u8] = ACTIONS(702), + [anon_sym_i8] = ACTIONS(702), + [anon_sym_u16] = ACTIONS(702), + [anon_sym_i16] = ACTIONS(702), + [anon_sym_u32] = ACTIONS(702), + [anon_sym_i32] = ACTIONS(702), + [anon_sym_u64] = ACTIONS(702), + [anon_sym_i64] = ACTIONS(702), + [anon_sym_u128] = ACTIONS(702), + [anon_sym_i128] = ACTIONS(702), + [anon_sym_isize] = ACTIONS(702), + [anon_sym_usize] = ACTIONS(702), + [anon_sym_f32] = ACTIONS(702), + [anon_sym_f64] = ACTIONS(702), + [anon_sym_bool] = ACTIONS(702), + [anon_sym_str] = ACTIONS(702), + [anon_sym_char] = ACTIONS(702), + [anon_sym_DASH] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(577), + [anon_sym_CARET] = ACTIONS(577), + [anon_sym_BANG] = ACTIONS(577), + [anon_sym_AMP] = ACTIONS(577), + [anon_sym_PIPE] = ACTIONS(577), + [anon_sym_AMP_AMP] = ACTIONS(567), + [anon_sym_PIPE_PIPE] = ACTIONS(567), + [anon_sym_LT_LT] = ACTIONS(577), + [anon_sym_GT_GT] = ACTIONS(577), + [anon_sym_PLUS_EQ] = ACTIONS(567), + [anon_sym_DASH_EQ] = ACTIONS(567), + [anon_sym_STAR_EQ] = ACTIONS(567), + [anon_sym_SLASH_EQ] = ACTIONS(567), + [anon_sym_PERCENT_EQ] = ACTIONS(567), + [anon_sym_CARET_EQ] = ACTIONS(567), + [anon_sym_AMP_EQ] = ACTIONS(567), + [anon_sym_PIPE_EQ] = ACTIONS(567), + [anon_sym_LT_LT_EQ] = ACTIONS(567), + [anon_sym_GT_GT_EQ] = ACTIONS(567), + [anon_sym_EQ] = ACTIONS(577), + [anon_sym_EQ_EQ] = ACTIONS(567), + [anon_sym_BANG_EQ] = ACTIONS(567), + [anon_sym_GT] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(577), + [anon_sym_GT_EQ] = ACTIONS(567), + [anon_sym_LT_EQ] = ACTIONS(567), + [anon_sym_AT] = ACTIONS(567), + [anon_sym__] = ACTIONS(577), + [anon_sym_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT_DOT] = ACTIONS(567), + [anon_sym_DOT_DOT_EQ] = ACTIONS(567), + [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_COLON_COLON] = ACTIONS(567), + [anon_sym_DASH_GT] = ACTIONS(567), + [anon_sym_POUND] = ACTIONS(567), + [anon_sym_SQUOTE] = ACTIONS(702), + [anon_sym_as] = ACTIONS(702), + [anon_sym_async] = ACTIONS(702), + [anon_sym_await] = ACTIONS(702), + [anon_sym_break] = ACTIONS(702), + [anon_sym_const] = ACTIONS(702), + [anon_sym_continue] = ACTIONS(702), + [anon_sym_default] = ACTIONS(702), + [anon_sym_enum] = ACTIONS(702), + [anon_sym_fn] = ACTIONS(702), + [anon_sym_for] = ACTIONS(702), + [anon_sym_gen] = ACTIONS(702), + [anon_sym_if] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(702), + [anon_sym_let] = ACTIONS(702), + [anon_sym_loop] = ACTIONS(702), + [anon_sym_match] = ACTIONS(702), + [anon_sym_mod] = ACTIONS(702), + [anon_sym_pub] = ACTIONS(702), + [anon_sym_return] = ACTIONS(702), + [anon_sym_static] = ACTIONS(702), + [anon_sym_struct] = ACTIONS(702), + [anon_sym_trait] = ACTIONS(702), + [anon_sym_type] = ACTIONS(702), + [anon_sym_union] = ACTIONS(702), + [anon_sym_unsafe] = ACTIONS(702), + [anon_sym_use] = ACTIONS(702), + [anon_sym_where] = ACTIONS(702), + [anon_sym_while] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(702), + [sym_integer_literal] = ACTIONS(581), + [aux_sym_string_literal_token1] = ACTIONS(583), + [sym_char_literal] = ACTIONS(581), + [anon_sym_true] = ACTIONS(585), + [anon_sym_false] = ACTIONS(585), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(702), + [sym_super] = ACTIONS(702), + [sym_crate] = ACTIONS(702), + [sym_metavariable] = ACTIONS(714), + [sym__raw_string_literal_start] = ACTIONS(589), + [sym_float_literal] = ACTIONS(581), + }, [127] = { - [sym_delim_token_tree] = STATE(198), - [sym__delim_tokens] = STATE(206), - [sym__non_delim_token] = STATE(198), - [sym__literal] = STATE(214), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), + [sym_token_tree] = STATE(147), + [sym_token_repetition] = STATE(147), + [sym__literal] = STATE(147), + [sym_string_literal] = STATE(184), + [sym_raw_string_literal] = STATE(184), + [sym_boolean_literal] = STATE(184), [sym_line_comment] = STATE(127), [sym_block_comment] = STATE(127), - [aux_sym__non_special_token_repeat1] = STATE(157), - [aux_sym_delim_token_tree_repeat1] = STATE(83), + [aux_sym_token_tree_repeat1] = STATE(122), + [aux_sym__non_special_token_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(702), + [anon_sym_SEMI] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(704), + [anon_sym_RPAREN] = ACTIONS(740), + [anon_sym_LBRACK] = ACTIONS(708), + [anon_sym_LBRACE] = ACTIONS(710), + [anon_sym_EQ_GT] = ACTIONS(567), + [anon_sym_COLON] = ACTIONS(577), + [anon_sym_DOLLAR] = ACTIONS(712), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_STAR] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(567), + [anon_sym_u8] = ACTIONS(702), + [anon_sym_i8] = ACTIONS(702), + [anon_sym_u16] = ACTIONS(702), + [anon_sym_i16] = ACTIONS(702), + [anon_sym_u32] = ACTIONS(702), + [anon_sym_i32] = ACTIONS(702), + [anon_sym_u64] = ACTIONS(702), + [anon_sym_i64] = ACTIONS(702), + [anon_sym_u128] = ACTIONS(702), + [anon_sym_i128] = ACTIONS(702), + [anon_sym_isize] = ACTIONS(702), + [anon_sym_usize] = ACTIONS(702), + [anon_sym_f32] = ACTIONS(702), + [anon_sym_f64] = ACTIONS(702), + [anon_sym_bool] = ACTIONS(702), + [anon_sym_str] = ACTIONS(702), + [anon_sym_char] = ACTIONS(702), + [anon_sym_DASH] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(577), + [anon_sym_CARET] = ACTIONS(577), + [anon_sym_BANG] = ACTIONS(577), + [anon_sym_AMP] = ACTIONS(577), + [anon_sym_PIPE] = ACTIONS(577), + [anon_sym_AMP_AMP] = ACTIONS(567), + [anon_sym_PIPE_PIPE] = ACTIONS(567), + [anon_sym_LT_LT] = ACTIONS(577), + [anon_sym_GT_GT] = ACTIONS(577), + [anon_sym_PLUS_EQ] = ACTIONS(567), + [anon_sym_DASH_EQ] = ACTIONS(567), + [anon_sym_STAR_EQ] = ACTIONS(567), + [anon_sym_SLASH_EQ] = ACTIONS(567), + [anon_sym_PERCENT_EQ] = ACTIONS(567), + [anon_sym_CARET_EQ] = ACTIONS(567), + [anon_sym_AMP_EQ] = ACTIONS(567), + [anon_sym_PIPE_EQ] = ACTIONS(567), + [anon_sym_LT_LT_EQ] = ACTIONS(567), + [anon_sym_GT_GT_EQ] = ACTIONS(567), + [anon_sym_EQ] = ACTIONS(577), + [anon_sym_EQ_EQ] = ACTIONS(567), + [anon_sym_BANG_EQ] = ACTIONS(567), + [anon_sym_GT] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(577), + [anon_sym_GT_EQ] = ACTIONS(567), + [anon_sym_LT_EQ] = ACTIONS(567), + [anon_sym_AT] = ACTIONS(567), + [anon_sym__] = ACTIONS(577), + [anon_sym_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT_DOT] = ACTIONS(567), + [anon_sym_DOT_DOT_EQ] = ACTIONS(567), + [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_COLON_COLON] = ACTIONS(567), + [anon_sym_DASH_GT] = ACTIONS(567), + [anon_sym_POUND] = ACTIONS(567), + [anon_sym_SQUOTE] = ACTIONS(702), + [anon_sym_as] = ACTIONS(702), + [anon_sym_async] = ACTIONS(702), + [anon_sym_await] = ACTIONS(702), + [anon_sym_break] = ACTIONS(702), + [anon_sym_const] = ACTIONS(702), + [anon_sym_continue] = ACTIONS(702), + [anon_sym_default] = ACTIONS(702), + [anon_sym_enum] = ACTIONS(702), + [anon_sym_fn] = ACTIONS(702), + [anon_sym_for] = ACTIONS(702), + [anon_sym_gen] = ACTIONS(702), + [anon_sym_if] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(702), + [anon_sym_let] = ACTIONS(702), + [anon_sym_loop] = ACTIONS(702), + [anon_sym_match] = ACTIONS(702), + [anon_sym_mod] = ACTIONS(702), + [anon_sym_pub] = ACTIONS(702), + [anon_sym_return] = ACTIONS(702), + [anon_sym_static] = ACTIONS(702), + [anon_sym_struct] = ACTIONS(702), + [anon_sym_trait] = ACTIONS(702), + [anon_sym_type] = ACTIONS(702), + [anon_sym_union] = ACTIONS(702), + [anon_sym_unsafe] = ACTIONS(702), + [anon_sym_use] = ACTIONS(702), + [anon_sym_where] = ACTIONS(702), + [anon_sym_while] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(702), + [sym_integer_literal] = ACTIONS(581), + [aux_sym_string_literal_token1] = ACTIONS(583), + [sym_char_literal] = ACTIONS(581), + [anon_sym_true] = ACTIONS(585), + [anon_sym_false] = ACTIONS(585), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(702), + [sym_super] = ACTIONS(702), + [sym_crate] = ACTIONS(702), + [sym_metavariable] = ACTIONS(714), + [sym__raw_string_literal_start] = ACTIONS(589), + [sym_float_literal] = ACTIONS(581), + }, + [128] = { + [sym_token_tree] = STATE(147), + [sym_token_repetition] = STATE(147), + [sym__literal] = STATE(147), + [sym_string_literal] = STATE(184), + [sym_raw_string_literal] = STATE(184), + [sym_boolean_literal] = STATE(184), + [sym_line_comment] = STATE(128), + [sym_block_comment] = STATE(128), + [aux_sym_token_tree_repeat1] = STATE(75), + [aux_sym__non_special_token_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(702), + [anon_sym_SEMI] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(704), + [anon_sym_LBRACK] = ACTIONS(708), + [anon_sym_LBRACE] = ACTIONS(710), + [anon_sym_RBRACE] = ACTIONS(742), + [anon_sym_EQ_GT] = ACTIONS(567), + [anon_sym_COLON] = ACTIONS(577), + [anon_sym_DOLLAR] = ACTIONS(712), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_STAR] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(567), + [anon_sym_u8] = ACTIONS(702), + [anon_sym_i8] = ACTIONS(702), + [anon_sym_u16] = ACTIONS(702), + [anon_sym_i16] = ACTIONS(702), + [anon_sym_u32] = ACTIONS(702), + [anon_sym_i32] = ACTIONS(702), + [anon_sym_u64] = ACTIONS(702), + [anon_sym_i64] = ACTIONS(702), + [anon_sym_u128] = ACTIONS(702), + [anon_sym_i128] = ACTIONS(702), + [anon_sym_isize] = ACTIONS(702), + [anon_sym_usize] = ACTIONS(702), + [anon_sym_f32] = ACTIONS(702), + [anon_sym_f64] = ACTIONS(702), + [anon_sym_bool] = ACTIONS(702), + [anon_sym_str] = ACTIONS(702), + [anon_sym_char] = ACTIONS(702), + [anon_sym_DASH] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(577), + [anon_sym_CARET] = ACTIONS(577), + [anon_sym_BANG] = ACTIONS(577), + [anon_sym_AMP] = ACTIONS(577), + [anon_sym_PIPE] = ACTIONS(577), + [anon_sym_AMP_AMP] = ACTIONS(567), + [anon_sym_PIPE_PIPE] = ACTIONS(567), + [anon_sym_LT_LT] = ACTIONS(577), + [anon_sym_GT_GT] = ACTIONS(577), + [anon_sym_PLUS_EQ] = ACTIONS(567), + [anon_sym_DASH_EQ] = ACTIONS(567), + [anon_sym_STAR_EQ] = ACTIONS(567), + [anon_sym_SLASH_EQ] = ACTIONS(567), + [anon_sym_PERCENT_EQ] = ACTIONS(567), + [anon_sym_CARET_EQ] = ACTIONS(567), + [anon_sym_AMP_EQ] = ACTIONS(567), + [anon_sym_PIPE_EQ] = ACTIONS(567), + [anon_sym_LT_LT_EQ] = ACTIONS(567), + [anon_sym_GT_GT_EQ] = ACTIONS(567), + [anon_sym_EQ] = ACTIONS(577), + [anon_sym_EQ_EQ] = ACTIONS(567), + [anon_sym_BANG_EQ] = ACTIONS(567), + [anon_sym_GT] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(577), + [anon_sym_GT_EQ] = ACTIONS(567), + [anon_sym_LT_EQ] = ACTIONS(567), + [anon_sym_AT] = ACTIONS(567), + [anon_sym__] = ACTIONS(577), + [anon_sym_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT_DOT] = ACTIONS(567), + [anon_sym_DOT_DOT_EQ] = ACTIONS(567), + [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_COLON_COLON] = ACTIONS(567), + [anon_sym_DASH_GT] = ACTIONS(567), + [anon_sym_POUND] = ACTIONS(567), + [anon_sym_SQUOTE] = ACTIONS(702), + [anon_sym_as] = ACTIONS(702), + [anon_sym_async] = ACTIONS(702), + [anon_sym_await] = ACTIONS(702), + [anon_sym_break] = ACTIONS(702), + [anon_sym_const] = ACTIONS(702), + [anon_sym_continue] = ACTIONS(702), + [anon_sym_default] = ACTIONS(702), + [anon_sym_enum] = ACTIONS(702), + [anon_sym_fn] = ACTIONS(702), + [anon_sym_for] = ACTIONS(702), + [anon_sym_gen] = ACTIONS(702), + [anon_sym_if] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(702), + [anon_sym_let] = ACTIONS(702), + [anon_sym_loop] = ACTIONS(702), + [anon_sym_match] = ACTIONS(702), + [anon_sym_mod] = ACTIONS(702), + [anon_sym_pub] = ACTIONS(702), + [anon_sym_return] = ACTIONS(702), + [anon_sym_static] = ACTIONS(702), + [anon_sym_struct] = ACTIONS(702), + [anon_sym_trait] = ACTIONS(702), + [anon_sym_type] = ACTIONS(702), + [anon_sym_union] = ACTIONS(702), + [anon_sym_unsafe] = ACTIONS(702), + [anon_sym_use] = ACTIONS(702), + [anon_sym_where] = ACTIONS(702), + [anon_sym_while] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(702), + [sym_integer_literal] = ACTIONS(581), + [aux_sym_string_literal_token1] = ACTIONS(583), + [sym_char_literal] = ACTIONS(581), + [anon_sym_true] = ACTIONS(585), + [anon_sym_false] = ACTIONS(585), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(702), + [sym_super] = ACTIONS(702), + [sym_crate] = ACTIONS(702), + [sym_metavariable] = ACTIONS(714), + [sym__raw_string_literal_start] = ACTIONS(589), + [sym_float_literal] = ACTIONS(581), + }, + [129] = { + [sym_token_tree] = STATE(147), + [sym_token_repetition] = STATE(147), + [sym__literal] = STATE(147), + [sym_string_literal] = STATE(184), + [sym_raw_string_literal] = STATE(184), + [sym_boolean_literal] = STATE(184), + [sym_line_comment] = STATE(129), + [sym_block_comment] = STATE(129), + [aux_sym_token_tree_repeat1] = STATE(75), + [aux_sym__non_special_token_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(702), + [anon_sym_SEMI] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(704), + [anon_sym_LBRACK] = ACTIONS(708), + [anon_sym_RBRACK] = ACTIONS(742), + [anon_sym_LBRACE] = ACTIONS(710), + [anon_sym_EQ_GT] = ACTIONS(567), + [anon_sym_COLON] = ACTIONS(577), + [anon_sym_DOLLAR] = ACTIONS(712), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_STAR] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(567), + [anon_sym_u8] = ACTIONS(702), + [anon_sym_i8] = ACTIONS(702), + [anon_sym_u16] = ACTIONS(702), + [anon_sym_i16] = ACTIONS(702), + [anon_sym_u32] = ACTIONS(702), + [anon_sym_i32] = ACTIONS(702), + [anon_sym_u64] = ACTIONS(702), + [anon_sym_i64] = ACTIONS(702), + [anon_sym_u128] = ACTIONS(702), + [anon_sym_i128] = ACTIONS(702), + [anon_sym_isize] = ACTIONS(702), + [anon_sym_usize] = ACTIONS(702), + [anon_sym_f32] = ACTIONS(702), + [anon_sym_f64] = ACTIONS(702), + [anon_sym_bool] = ACTIONS(702), + [anon_sym_str] = ACTIONS(702), + [anon_sym_char] = ACTIONS(702), + [anon_sym_DASH] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(577), + [anon_sym_CARET] = ACTIONS(577), + [anon_sym_BANG] = ACTIONS(577), + [anon_sym_AMP] = ACTIONS(577), + [anon_sym_PIPE] = ACTIONS(577), + [anon_sym_AMP_AMP] = ACTIONS(567), + [anon_sym_PIPE_PIPE] = ACTIONS(567), + [anon_sym_LT_LT] = ACTIONS(577), + [anon_sym_GT_GT] = ACTIONS(577), + [anon_sym_PLUS_EQ] = ACTIONS(567), + [anon_sym_DASH_EQ] = ACTIONS(567), + [anon_sym_STAR_EQ] = ACTIONS(567), + [anon_sym_SLASH_EQ] = ACTIONS(567), + [anon_sym_PERCENT_EQ] = ACTIONS(567), + [anon_sym_CARET_EQ] = ACTIONS(567), + [anon_sym_AMP_EQ] = ACTIONS(567), + [anon_sym_PIPE_EQ] = ACTIONS(567), + [anon_sym_LT_LT_EQ] = ACTIONS(567), + [anon_sym_GT_GT_EQ] = ACTIONS(567), + [anon_sym_EQ] = ACTIONS(577), + [anon_sym_EQ_EQ] = ACTIONS(567), + [anon_sym_BANG_EQ] = ACTIONS(567), + [anon_sym_GT] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(577), + [anon_sym_GT_EQ] = ACTIONS(567), + [anon_sym_LT_EQ] = ACTIONS(567), + [anon_sym_AT] = ACTIONS(567), + [anon_sym__] = ACTIONS(577), + [anon_sym_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT_DOT] = ACTIONS(567), + [anon_sym_DOT_DOT_EQ] = ACTIONS(567), + [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_COLON_COLON] = ACTIONS(567), + [anon_sym_DASH_GT] = ACTIONS(567), + [anon_sym_POUND] = ACTIONS(567), + [anon_sym_SQUOTE] = ACTIONS(702), + [anon_sym_as] = ACTIONS(702), + [anon_sym_async] = ACTIONS(702), + [anon_sym_await] = ACTIONS(702), + [anon_sym_break] = ACTIONS(702), + [anon_sym_const] = ACTIONS(702), + [anon_sym_continue] = ACTIONS(702), + [anon_sym_default] = ACTIONS(702), + [anon_sym_enum] = ACTIONS(702), + [anon_sym_fn] = ACTIONS(702), + [anon_sym_for] = ACTIONS(702), + [anon_sym_gen] = ACTIONS(702), + [anon_sym_if] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(702), + [anon_sym_let] = ACTIONS(702), + [anon_sym_loop] = ACTIONS(702), + [anon_sym_match] = ACTIONS(702), + [anon_sym_mod] = ACTIONS(702), + [anon_sym_pub] = ACTIONS(702), + [anon_sym_return] = ACTIONS(702), + [anon_sym_static] = ACTIONS(702), + [anon_sym_struct] = ACTIONS(702), + [anon_sym_trait] = ACTIONS(702), + [anon_sym_type] = ACTIONS(702), + [anon_sym_union] = ACTIONS(702), + [anon_sym_unsafe] = ACTIONS(702), + [anon_sym_use] = ACTIONS(702), + [anon_sym_where] = ACTIONS(702), + [anon_sym_while] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(702), + [sym_integer_literal] = ACTIONS(581), + [aux_sym_string_literal_token1] = ACTIONS(583), + [sym_char_literal] = ACTIONS(581), + [anon_sym_true] = ACTIONS(585), + [anon_sym_false] = ACTIONS(585), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(702), + [sym_super] = ACTIONS(702), + [sym_crate] = ACTIONS(702), + [sym_metavariable] = ACTIONS(714), + [sym__raw_string_literal_start] = ACTIONS(589), + [sym_float_literal] = ACTIONS(581), + }, + [130] = { + [sym_token_tree] = STATE(147), + [sym_token_repetition] = STATE(147), + [sym__literal] = STATE(147), + [sym_string_literal] = STATE(184), + [sym_raw_string_literal] = STATE(184), + [sym_boolean_literal] = STATE(184), + [sym_line_comment] = STATE(130), + [sym_block_comment] = STATE(130), + [aux_sym_token_tree_repeat1] = STATE(75), + [aux_sym__non_special_token_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(702), + [anon_sym_SEMI] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(704), + [anon_sym_RPAREN] = ACTIONS(742), + [anon_sym_LBRACK] = ACTIONS(708), + [anon_sym_LBRACE] = ACTIONS(710), + [anon_sym_EQ_GT] = ACTIONS(567), + [anon_sym_COLON] = ACTIONS(577), + [anon_sym_DOLLAR] = ACTIONS(712), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_STAR] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(567), + [anon_sym_u8] = ACTIONS(702), + [anon_sym_i8] = ACTIONS(702), + [anon_sym_u16] = ACTIONS(702), + [anon_sym_i16] = ACTIONS(702), + [anon_sym_u32] = ACTIONS(702), + [anon_sym_i32] = ACTIONS(702), + [anon_sym_u64] = ACTIONS(702), + [anon_sym_i64] = ACTIONS(702), + [anon_sym_u128] = ACTIONS(702), + [anon_sym_i128] = ACTIONS(702), + [anon_sym_isize] = ACTIONS(702), + [anon_sym_usize] = ACTIONS(702), + [anon_sym_f32] = ACTIONS(702), + [anon_sym_f64] = ACTIONS(702), + [anon_sym_bool] = ACTIONS(702), + [anon_sym_str] = ACTIONS(702), + [anon_sym_char] = ACTIONS(702), + [anon_sym_DASH] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(577), + [anon_sym_CARET] = ACTIONS(577), + [anon_sym_BANG] = ACTIONS(577), + [anon_sym_AMP] = ACTIONS(577), + [anon_sym_PIPE] = ACTIONS(577), + [anon_sym_AMP_AMP] = ACTIONS(567), + [anon_sym_PIPE_PIPE] = ACTIONS(567), + [anon_sym_LT_LT] = ACTIONS(577), + [anon_sym_GT_GT] = ACTIONS(577), + [anon_sym_PLUS_EQ] = ACTIONS(567), + [anon_sym_DASH_EQ] = ACTIONS(567), + [anon_sym_STAR_EQ] = ACTIONS(567), + [anon_sym_SLASH_EQ] = ACTIONS(567), + [anon_sym_PERCENT_EQ] = ACTIONS(567), + [anon_sym_CARET_EQ] = ACTIONS(567), + [anon_sym_AMP_EQ] = ACTIONS(567), + [anon_sym_PIPE_EQ] = ACTIONS(567), + [anon_sym_LT_LT_EQ] = ACTIONS(567), + [anon_sym_GT_GT_EQ] = ACTIONS(567), + [anon_sym_EQ] = ACTIONS(577), + [anon_sym_EQ_EQ] = ACTIONS(567), + [anon_sym_BANG_EQ] = ACTIONS(567), + [anon_sym_GT] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(577), + [anon_sym_GT_EQ] = ACTIONS(567), + [anon_sym_LT_EQ] = ACTIONS(567), + [anon_sym_AT] = ACTIONS(567), + [anon_sym__] = ACTIONS(577), + [anon_sym_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT_DOT] = ACTIONS(567), + [anon_sym_DOT_DOT_EQ] = ACTIONS(567), + [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_COLON_COLON] = ACTIONS(567), + [anon_sym_DASH_GT] = ACTIONS(567), + [anon_sym_POUND] = ACTIONS(567), + [anon_sym_SQUOTE] = ACTIONS(702), + [anon_sym_as] = ACTIONS(702), + [anon_sym_async] = ACTIONS(702), + [anon_sym_await] = ACTIONS(702), + [anon_sym_break] = ACTIONS(702), + [anon_sym_const] = ACTIONS(702), + [anon_sym_continue] = ACTIONS(702), + [anon_sym_default] = ACTIONS(702), + [anon_sym_enum] = ACTIONS(702), + [anon_sym_fn] = ACTIONS(702), + [anon_sym_for] = ACTIONS(702), + [anon_sym_gen] = ACTIONS(702), + [anon_sym_if] = ACTIONS(702), + [anon_sym_impl] = ACTIONS(702), + [anon_sym_let] = ACTIONS(702), + [anon_sym_loop] = ACTIONS(702), + [anon_sym_match] = ACTIONS(702), + [anon_sym_mod] = ACTIONS(702), + [anon_sym_pub] = ACTIONS(702), + [anon_sym_return] = ACTIONS(702), + [anon_sym_static] = ACTIONS(702), + [anon_sym_struct] = ACTIONS(702), + [anon_sym_trait] = ACTIONS(702), + [anon_sym_type] = ACTIONS(702), + [anon_sym_union] = ACTIONS(702), + [anon_sym_unsafe] = ACTIONS(702), + [anon_sym_use] = ACTIONS(702), + [anon_sym_where] = ACTIONS(702), + [anon_sym_while] = ACTIONS(702), + [sym_mutable_specifier] = ACTIONS(702), + [sym_integer_literal] = ACTIONS(581), + [aux_sym_string_literal_token1] = ACTIONS(583), + [sym_char_literal] = ACTIONS(581), + [anon_sym_true] = ACTIONS(585), + [anon_sym_false] = ACTIONS(585), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(702), + [sym_super] = ACTIONS(702), + [sym_crate] = ACTIONS(702), + [sym_metavariable] = ACTIONS(714), + [sym__raw_string_literal_start] = ACTIONS(589), + [sym_float_literal] = ACTIONS(581), + }, + [131] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(200), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(198), + [sym_string_literal] = STATE(203), + [sym_raw_string_literal] = STATE(203), + [sym_boolean_literal] = STATE(203), + [sym_line_comment] = STATE(131), + [sym_block_comment] = STATE(131), + [aux_sym__non_special_token_repeat1] = STATE(150), + [aux_sym_delim_token_tree_repeat1] = STATE(74), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_RBRACE] = ACTIONS(742), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LBRACE] = ACTIONS(684), + [anon_sym_RBRACE] = ACTIONS(732), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), [anon_sym_DOLLAR] = ACTIONS(688), @@ -31201,24 +33052,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [128] = { - [sym_delim_token_tree] = STATE(198), - [sym__delim_tokens] = STATE(206), - [sym__non_delim_token] = STATE(198), - [sym__literal] = STATE(214), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(128), - [sym_block_comment] = STATE(128), - [aux_sym__non_special_token_repeat1] = STATE(157), - [aux_sym_delim_token_tree_repeat1] = STATE(86), + [132] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(200), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(198), + [sym_string_literal] = STATE(203), + [sym_raw_string_literal] = STATE(203), + [sym_boolean_literal] = STATE(203), + [sym_line_comment] = STATE(132), + [sym_block_comment] = STATE(132), + [aux_sym__non_special_token_repeat1] = STATE(150), + [aux_sym_delim_token_tree_repeat1] = STATE(74), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_RBRACK] = ACTIONS(740), - [anon_sym_LBRACE] = ACTIONS(682), + [anon_sym_RPAREN] = ACTIONS(724), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_LBRACE] = ACTIONS(684), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), [anon_sym_DOLLAR] = ACTIONS(688), @@ -31323,24 +33174,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [129] = { - [sym_delim_token_tree] = STATE(198), - [sym__delim_tokens] = STATE(206), - [sym__non_delim_token] = STATE(198), - [sym__literal] = STATE(214), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(129), - [sym_block_comment] = STATE(129), - [aux_sym__non_special_token_repeat1] = STATE(157), - [aux_sym_delim_token_tree_repeat1] = STATE(87), + [133] = { + [sym_delim_token_tree] = STATE(204), + [sym__delim_tokens] = STATE(200), + [sym__non_delim_token] = STATE(204), + [sym__literal] = STATE(198), + [sym_string_literal] = STATE(203), + [sym_raw_string_literal] = STATE(203), + [sym_boolean_literal] = STATE(203), + [sym_line_comment] = STATE(133), + [sym_block_comment] = STATE(133), + [aux_sym__non_special_token_repeat1] = STATE(150), + [aux_sym_delim_token_tree_repeat1] = STATE(74), [sym_identifier] = ACTIONS(674), [anon_sym_SEMI] = ACTIONS(676), [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_RBRACE] = ACTIONS(740), + [anon_sym_LBRACK] = ACTIONS(682), + [anon_sym_RBRACK] = ACTIONS(724), + [anon_sym_LBRACE] = ACTIONS(684), [anon_sym_EQ_GT] = ACTIONS(676), [anon_sym_COLON] = ACTIONS(686), [anon_sym_DOLLAR] = ACTIONS(688), @@ -31445,546 +33296,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(696), [sym_float_literal] = ACTIONS(690), }, - [130] = { - [sym_token_tree] = STATE(152), - [sym_token_repetition] = STATE(152), - [sym__literal] = STATE(152), - [sym_string_literal] = STATE(177), - [sym_raw_string_literal] = STATE(177), - [sym_boolean_literal] = STATE(177), - [sym_line_comment] = STATE(130), - [sym_block_comment] = STATE(130), - [aux_sym_token_tree_repeat1] = STATE(88), - [aux_sym__non_special_token_repeat1] = STATE(143), - [sym_identifier] = ACTIONS(700), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(702), - [anon_sym_LBRACK] = ACTIONS(704), - [anon_sym_RBRACK] = ACTIONS(738), - [anon_sym_LBRACE] = ACTIONS(708), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(710), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(700), - [anon_sym_i8] = ACTIONS(700), - [anon_sym_u16] = ACTIONS(700), - [anon_sym_i16] = ACTIONS(700), - [anon_sym_u32] = ACTIONS(700), - [anon_sym_i32] = ACTIONS(700), - [anon_sym_u64] = ACTIONS(700), - [anon_sym_i64] = ACTIONS(700), - [anon_sym_u128] = ACTIONS(700), - [anon_sym_i128] = ACTIONS(700), - [anon_sym_isize] = ACTIONS(700), - [anon_sym_usize] = ACTIONS(700), - [anon_sym_f32] = ACTIONS(700), - [anon_sym_f64] = ACTIONS(700), - [anon_sym_bool] = ACTIONS(700), - [anon_sym_str] = ACTIONS(700), - [anon_sym_char] = ACTIONS(700), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(700), - [anon_sym_as] = ACTIONS(700), - [anon_sym_async] = ACTIONS(700), - [anon_sym_await] = ACTIONS(700), - [anon_sym_break] = ACTIONS(700), - [anon_sym_const] = ACTIONS(700), - [anon_sym_continue] = ACTIONS(700), - [anon_sym_default] = ACTIONS(700), - [anon_sym_enum] = ACTIONS(700), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(700), - [anon_sym_gen] = ACTIONS(700), - [anon_sym_if] = ACTIONS(700), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_let] = ACTIONS(700), - [anon_sym_loop] = ACTIONS(700), - [anon_sym_match] = ACTIONS(700), - [anon_sym_mod] = ACTIONS(700), - [anon_sym_pub] = ACTIONS(700), - [anon_sym_return] = ACTIONS(700), - [anon_sym_static] = ACTIONS(700), - [anon_sym_struct] = ACTIONS(700), - [anon_sym_trait] = ACTIONS(700), - [anon_sym_type] = ACTIONS(700), - [anon_sym_union] = ACTIONS(700), - [anon_sym_unsafe] = ACTIONS(700), - [anon_sym_use] = ACTIONS(700), - [anon_sym_where] = ACTIONS(700), - [anon_sym_while] = ACTIONS(700), - [sym_mutable_specifier] = ACTIONS(700), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(700), - [sym_super] = ACTIONS(700), - [sym_crate] = ACTIONS(700), - [sym_metavariable] = ACTIONS(712), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), - }, - [131] = { - [sym_token_tree] = STATE(152), - [sym_token_repetition] = STATE(152), - [sym__literal] = STATE(152), - [sym_string_literal] = STATE(177), - [sym_raw_string_literal] = STATE(177), - [sym_boolean_literal] = STATE(177), - [sym_line_comment] = STATE(131), - [sym_block_comment] = STATE(131), - [aux_sym_token_tree_repeat1] = STATE(89), - [aux_sym__non_special_token_repeat1] = STATE(143), - [sym_identifier] = ACTIONS(700), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(702), - [anon_sym_LBRACK] = ACTIONS(704), - [anon_sym_LBRACE] = ACTIONS(708), - [anon_sym_RBRACE] = ACTIONS(738), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(710), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(700), - [anon_sym_i8] = ACTIONS(700), - [anon_sym_u16] = ACTIONS(700), - [anon_sym_i16] = ACTIONS(700), - [anon_sym_u32] = ACTIONS(700), - [anon_sym_i32] = ACTIONS(700), - [anon_sym_u64] = ACTIONS(700), - [anon_sym_i64] = ACTIONS(700), - [anon_sym_u128] = ACTIONS(700), - [anon_sym_i128] = ACTIONS(700), - [anon_sym_isize] = ACTIONS(700), - [anon_sym_usize] = ACTIONS(700), - [anon_sym_f32] = ACTIONS(700), - [anon_sym_f64] = ACTIONS(700), - [anon_sym_bool] = ACTIONS(700), - [anon_sym_str] = ACTIONS(700), - [anon_sym_char] = ACTIONS(700), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(700), - [anon_sym_as] = ACTIONS(700), - [anon_sym_async] = ACTIONS(700), - [anon_sym_await] = ACTIONS(700), - [anon_sym_break] = ACTIONS(700), - [anon_sym_const] = ACTIONS(700), - [anon_sym_continue] = ACTIONS(700), - [anon_sym_default] = ACTIONS(700), - [anon_sym_enum] = ACTIONS(700), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(700), - [anon_sym_gen] = ACTIONS(700), - [anon_sym_if] = ACTIONS(700), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_let] = ACTIONS(700), - [anon_sym_loop] = ACTIONS(700), - [anon_sym_match] = ACTIONS(700), - [anon_sym_mod] = ACTIONS(700), - [anon_sym_pub] = ACTIONS(700), - [anon_sym_return] = ACTIONS(700), - [anon_sym_static] = ACTIONS(700), - [anon_sym_struct] = ACTIONS(700), - [anon_sym_trait] = ACTIONS(700), - [anon_sym_type] = ACTIONS(700), - [anon_sym_union] = ACTIONS(700), - [anon_sym_unsafe] = ACTIONS(700), - [anon_sym_use] = ACTIONS(700), - [anon_sym_where] = ACTIONS(700), - [anon_sym_while] = ACTIONS(700), - [sym_mutable_specifier] = ACTIONS(700), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(700), - [sym_super] = ACTIONS(700), - [sym_crate] = ACTIONS(700), - [sym_metavariable] = ACTIONS(712), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), - }, - [132] = { - [sym_delim_token_tree] = STATE(198), - [sym__delim_tokens] = STATE(206), - [sym__non_delim_token] = STATE(198), - [sym__literal] = STATE(214), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(132), - [sym_block_comment] = STATE(132), - [aux_sym__non_special_token_repeat1] = STATE(157), - [aux_sym_delim_token_tree_repeat1] = STATE(83), - [sym_identifier] = ACTIONS(674), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(678), - [anon_sym_LBRACK] = ACTIONS(680), - [anon_sym_RBRACK] = ACTIONS(720), - [anon_sym_LBRACE] = ACTIONS(682), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(688), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [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_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [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_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(674), - [anon_sym_as] = ACTIONS(674), - [anon_sym_async] = ACTIONS(674), - [anon_sym_await] = ACTIONS(674), - [anon_sym_break] = ACTIONS(674), - [anon_sym_const] = ACTIONS(674), - [anon_sym_continue] = ACTIONS(674), - [anon_sym_default] = ACTIONS(674), - [anon_sym_enum] = ACTIONS(674), - [anon_sym_fn] = ACTIONS(674), - [anon_sym_for] = ACTIONS(674), - [anon_sym_gen] = ACTIONS(674), - [anon_sym_if] = ACTIONS(674), - [anon_sym_impl] = ACTIONS(674), - [anon_sym_let] = ACTIONS(674), - [anon_sym_loop] = ACTIONS(674), - [anon_sym_match] = ACTIONS(674), - [anon_sym_mod] = ACTIONS(674), - [anon_sym_pub] = ACTIONS(674), - [anon_sym_return] = ACTIONS(674), - [anon_sym_static] = ACTIONS(674), - [anon_sym_struct] = ACTIONS(674), - [anon_sym_trait] = ACTIONS(674), - [anon_sym_type] = ACTIONS(674), - [anon_sym_union] = ACTIONS(674), - [anon_sym_unsafe] = ACTIONS(674), - [anon_sym_use] = ACTIONS(674), - [anon_sym_where] = ACTIONS(674), - [anon_sym_while] = ACTIONS(674), - [sym_mutable_specifier] = ACTIONS(674), - [sym_integer_literal] = ACTIONS(690), - [aux_sym_string_literal_token1] = ACTIONS(692), - [sym_char_literal] = ACTIONS(690), - [anon_sym_true] = ACTIONS(694), - [anon_sym_false] = ACTIONS(694), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(674), - [sym_super] = ACTIONS(674), - [sym_crate] = ACTIONS(674), - [sym__raw_string_literal_start] = ACTIONS(696), - [sym_float_literal] = ACTIONS(690), - }, - [133] = { - [sym_token_tree] = STATE(152), - [sym_token_repetition] = STATE(152), - [sym__literal] = STATE(152), - [sym_string_literal] = STATE(177), - [sym_raw_string_literal] = STATE(177), - [sym_boolean_literal] = STATE(177), - [sym_line_comment] = STATE(133), - [sym_block_comment] = STATE(133), - [aux_sym_token_tree_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(143), - [sym_identifier] = ACTIONS(700), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(702), - [anon_sym_RPAREN] = ACTIONS(706), - [anon_sym_LBRACK] = ACTIONS(704), - [anon_sym_LBRACE] = ACTIONS(708), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(710), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(700), - [anon_sym_i8] = ACTIONS(700), - [anon_sym_u16] = ACTIONS(700), - [anon_sym_i16] = ACTIONS(700), - [anon_sym_u32] = ACTIONS(700), - [anon_sym_i32] = ACTIONS(700), - [anon_sym_u64] = ACTIONS(700), - [anon_sym_i64] = ACTIONS(700), - [anon_sym_u128] = ACTIONS(700), - [anon_sym_i128] = ACTIONS(700), - [anon_sym_isize] = ACTIONS(700), - [anon_sym_usize] = ACTIONS(700), - [anon_sym_f32] = ACTIONS(700), - [anon_sym_f64] = ACTIONS(700), - [anon_sym_bool] = ACTIONS(700), - [anon_sym_str] = ACTIONS(700), - [anon_sym_char] = ACTIONS(700), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(700), - [anon_sym_as] = ACTIONS(700), - [anon_sym_async] = ACTIONS(700), - [anon_sym_await] = ACTIONS(700), - [anon_sym_break] = ACTIONS(700), - [anon_sym_const] = ACTIONS(700), - [anon_sym_continue] = ACTIONS(700), - [anon_sym_default] = ACTIONS(700), - [anon_sym_enum] = ACTIONS(700), - [anon_sym_fn] = ACTIONS(700), - [anon_sym_for] = ACTIONS(700), - [anon_sym_gen] = ACTIONS(700), - [anon_sym_if] = ACTIONS(700), - [anon_sym_impl] = ACTIONS(700), - [anon_sym_let] = ACTIONS(700), - [anon_sym_loop] = ACTIONS(700), - [anon_sym_match] = ACTIONS(700), - [anon_sym_mod] = ACTIONS(700), - [anon_sym_pub] = ACTIONS(700), - [anon_sym_return] = ACTIONS(700), - [anon_sym_static] = ACTIONS(700), - [anon_sym_struct] = ACTIONS(700), - [anon_sym_trait] = ACTIONS(700), - [anon_sym_type] = ACTIONS(700), - [anon_sym_union] = ACTIONS(700), - [anon_sym_unsafe] = ACTIONS(700), - [anon_sym_use] = ACTIONS(700), - [anon_sym_where] = ACTIONS(700), - [anon_sym_while] = ACTIONS(700), - [sym_mutable_specifier] = ACTIONS(700), - [sym_integer_literal] = ACTIONS(581), - [aux_sym_string_literal_token1] = ACTIONS(583), - [sym_char_literal] = ACTIONS(581), - [anon_sym_true] = ACTIONS(585), - [anon_sym_false] = ACTIONS(585), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(700), - [sym_super] = ACTIONS(700), - [sym_crate] = ACTIONS(700), - [sym_metavariable] = ACTIONS(712), - [sym__raw_string_literal_start] = ACTIONS(589), - [sym_float_literal] = ACTIONS(581), - }, [134] = { - [sym_attribute_item] = STATE(1011), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1561), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [sym_attribute_item] = STATE(1157), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1818), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), [sym_line_comment] = STATE(134), [sym_block_comment] = STATE(134), - [aux_sym_enum_variant_list_repeat1] = STATE(139), + [aux_sym_mod_item_repeat1] = STATE(139), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -32051,57 +33414,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [135] = { - [sym_attribute_item] = STATE(1011), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1560), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [sym_attribute_item] = STATE(1157), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1830), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), [sym_line_comment] = STATE(135), [sym_block_comment] = STATE(135), - [aux_sym_enum_variant_list_repeat1] = STATE(144), + [aux_sym_mod_item_repeat1] = STATE(138), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -32168,40 +33531,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [136] = { + [sym_attribute_item] = STATE(1157), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1810), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), [sym_line_comment] = STATE(136), [sym_block_comment] = STATE(136), - [aux_sym__non_special_token_repeat1] = STATE(137), - [sym_identifier] = ACTIONS(754), + [aux_sym_mod_item_repeat1] = STATE(134), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(754), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COMMA] = ACTIONS(756), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(748), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [137] = { + [sym_line_comment] = STATE(137), + [sym_block_comment] = STATE(137), + [aux_sym__non_special_token_repeat1] = STATE(143), + [sym_identifier] = ACTIONS(758), [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(756), - [anon_sym_RPAREN] = ACTIONS(756), - [anon_sym_LBRACK] = ACTIONS(756), - [anon_sym_RBRACK] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(756), - [anon_sym_RBRACE] = ACTIONS(756), + [anon_sym_LPAREN] = ACTIONS(760), + [anon_sym_RPAREN] = ACTIONS(760), + [anon_sym_LBRACK] = ACTIONS(760), + [anon_sym_RBRACK] = ACTIONS(760), + [anon_sym_LBRACE] = ACTIONS(760), + [anon_sym_RBRACE] = ACTIONS(760), [anon_sym_EQ_GT] = ACTIONS(567), [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(754), + [anon_sym_DOLLAR] = ACTIONS(758), [anon_sym_PLUS] = ACTIONS(577), [anon_sym_STAR] = ACTIONS(577), [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(754), - [anon_sym_i8] = ACTIONS(754), - [anon_sym_u16] = ACTIONS(754), - [anon_sym_i16] = ACTIONS(754), - [anon_sym_u32] = ACTIONS(754), - [anon_sym_i32] = ACTIONS(754), - [anon_sym_u64] = ACTIONS(754), - [anon_sym_i64] = ACTIONS(754), - [anon_sym_u128] = ACTIONS(754), - [anon_sym_i128] = ACTIONS(754), - [anon_sym_isize] = ACTIONS(754), - [anon_sym_usize] = ACTIONS(754), - [anon_sym_f32] = ACTIONS(754), - [anon_sym_f64] = ACTIONS(754), - [anon_sym_bool] = ACTIONS(754), - [anon_sym_str] = ACTIONS(754), - [anon_sym_char] = ACTIONS(754), + [anon_sym_u8] = ACTIONS(758), + [anon_sym_i8] = ACTIONS(758), + [anon_sym_u16] = ACTIONS(758), + [anon_sym_i16] = ACTIONS(758), + [anon_sym_u32] = ACTIONS(758), + [anon_sym_i32] = ACTIONS(758), + [anon_sym_u64] = ACTIONS(758), + [anon_sym_i64] = ACTIONS(758), + [anon_sym_u128] = ACTIONS(758), + [anon_sym_i128] = ACTIONS(758), + [anon_sym_isize] = ACTIONS(758), + [anon_sym_usize] = ACTIONS(758), + [anon_sym_f32] = ACTIONS(758), + [anon_sym_f64] = ACTIONS(758), + [anon_sym_bool] = ACTIONS(758), + [anon_sym_str] = ACTIONS(758), + [anon_sym_char] = ACTIONS(758), [anon_sym_DASH] = ACTIONS(577), [anon_sym_SLASH] = ACTIONS(577), [anon_sym_PERCENT] = ACTIONS(577), @@ -32240,123 +33720,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COLON_COLON] = ACTIONS(567), [anon_sym_DASH_GT] = ACTIONS(567), [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(754), - [anon_sym_as] = ACTIONS(754), - [anon_sym_async] = ACTIONS(754), - [anon_sym_await] = ACTIONS(754), - [anon_sym_break] = ACTIONS(754), - [anon_sym_const] = ACTIONS(754), - [anon_sym_continue] = ACTIONS(754), - [anon_sym_default] = ACTIONS(754), - [anon_sym_enum] = ACTIONS(754), - [anon_sym_fn] = ACTIONS(754), - [anon_sym_for] = ACTIONS(754), - [anon_sym_gen] = ACTIONS(754), - [anon_sym_if] = ACTIONS(754), - [anon_sym_impl] = ACTIONS(754), - [anon_sym_let] = ACTIONS(754), - [anon_sym_loop] = ACTIONS(754), - [anon_sym_match] = ACTIONS(754), - [anon_sym_mod] = ACTIONS(754), - [anon_sym_pub] = ACTIONS(754), - [anon_sym_return] = ACTIONS(754), - [anon_sym_static] = ACTIONS(754), - [anon_sym_struct] = ACTIONS(754), - [anon_sym_trait] = ACTIONS(754), - [anon_sym_type] = ACTIONS(754), - [anon_sym_union] = ACTIONS(754), - [anon_sym_unsafe] = ACTIONS(754), - [anon_sym_use] = ACTIONS(754), - [anon_sym_where] = ACTIONS(754), - [anon_sym_while] = ACTIONS(754), - [sym_mutable_specifier] = ACTIONS(754), - [sym_integer_literal] = ACTIONS(756), - [aux_sym_string_literal_token1] = ACTIONS(756), - [sym_char_literal] = ACTIONS(756), - [anon_sym_true] = ACTIONS(754), - [anon_sym_false] = ACTIONS(754), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(754), - [sym_super] = ACTIONS(754), - [sym_crate] = ACTIONS(754), - [sym_metavariable] = ACTIONS(756), - [sym__raw_string_literal_start] = ACTIONS(756), - [sym_float_literal] = ACTIONS(756), - }, - [137] = { - [sym_line_comment] = STATE(137), - [sym_block_comment] = STATE(137), - [aux_sym__non_special_token_repeat1] = STATE(137), - [sym_identifier] = ACTIONS(758), - [anon_sym_SEMI] = ACTIONS(760), - [anon_sym_LPAREN] = ACTIONS(763), - [anon_sym_RPAREN] = ACTIONS(763), - [anon_sym_LBRACK] = ACTIONS(763), - [anon_sym_RBRACK] = ACTIONS(763), - [anon_sym_LBRACE] = ACTIONS(763), - [anon_sym_RBRACE] = ACTIONS(763), - [anon_sym_EQ_GT] = ACTIONS(760), - [anon_sym_COLON] = ACTIONS(765), - [anon_sym_DOLLAR] = ACTIONS(758), - [anon_sym_PLUS] = ACTIONS(765), - [anon_sym_STAR] = ACTIONS(765), - [anon_sym_QMARK] = ACTIONS(760), - [anon_sym_u8] = ACTIONS(758), - [anon_sym_i8] = ACTIONS(758), - [anon_sym_u16] = ACTIONS(758), - [anon_sym_i16] = ACTIONS(758), - [anon_sym_u32] = ACTIONS(758), - [anon_sym_i32] = ACTIONS(758), - [anon_sym_u64] = ACTIONS(758), - [anon_sym_i64] = ACTIONS(758), - [anon_sym_u128] = ACTIONS(758), - [anon_sym_i128] = ACTIONS(758), - [anon_sym_isize] = ACTIONS(758), - [anon_sym_usize] = ACTIONS(758), - [anon_sym_f32] = ACTIONS(758), - [anon_sym_f64] = ACTIONS(758), - [anon_sym_bool] = ACTIONS(758), - [anon_sym_str] = ACTIONS(758), - [anon_sym_char] = ACTIONS(758), - [anon_sym_DASH] = ACTIONS(765), - [anon_sym_SLASH] = ACTIONS(765), - [anon_sym_PERCENT] = ACTIONS(765), - [anon_sym_CARET] = ACTIONS(765), - [anon_sym_BANG] = ACTIONS(765), - [anon_sym_AMP] = ACTIONS(765), - [anon_sym_PIPE] = ACTIONS(765), - [anon_sym_AMP_AMP] = ACTIONS(760), - [anon_sym_PIPE_PIPE] = ACTIONS(760), - [anon_sym_LT_LT] = ACTIONS(765), - [anon_sym_GT_GT] = ACTIONS(765), - [anon_sym_PLUS_EQ] = ACTIONS(760), - [anon_sym_DASH_EQ] = ACTIONS(760), - [anon_sym_STAR_EQ] = ACTIONS(760), - [anon_sym_SLASH_EQ] = ACTIONS(760), - [anon_sym_PERCENT_EQ] = ACTIONS(760), - [anon_sym_CARET_EQ] = ACTIONS(760), - [anon_sym_AMP_EQ] = ACTIONS(760), - [anon_sym_PIPE_EQ] = ACTIONS(760), - [anon_sym_LT_LT_EQ] = ACTIONS(760), - [anon_sym_GT_GT_EQ] = ACTIONS(760), - [anon_sym_EQ] = ACTIONS(765), - [anon_sym_EQ_EQ] = ACTIONS(760), - [anon_sym_BANG_EQ] = ACTIONS(760), - [anon_sym_GT] = ACTIONS(765), - [anon_sym_LT] = ACTIONS(765), - [anon_sym_GT_EQ] = ACTIONS(760), - [anon_sym_LT_EQ] = ACTIONS(760), - [anon_sym_AT] = ACTIONS(760), - [anon_sym__] = ACTIONS(765), - [anon_sym_DOT] = ACTIONS(765), - [anon_sym_DOT_DOT] = ACTIONS(765), - [anon_sym_DOT_DOT_DOT] = ACTIONS(760), - [anon_sym_DOT_DOT_EQ] = ACTIONS(760), - [anon_sym_COMMA] = ACTIONS(760), - [anon_sym_COLON_COLON] = ACTIONS(760), - [anon_sym_DASH_GT] = ACTIONS(760), - [anon_sym_POUND] = ACTIONS(760), [anon_sym_SQUOTE] = ACTIONS(758), [anon_sym_as] = ACTIONS(758), [anon_sym_async] = ACTIONS(758), @@ -32387,9 +33750,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(758), [anon_sym_while] = ACTIONS(758), [sym_mutable_specifier] = ACTIONS(758), - [sym_integer_literal] = ACTIONS(763), - [aux_sym_string_literal_token1] = ACTIONS(763), - [sym_char_literal] = ACTIONS(763), + [sym_integer_literal] = ACTIONS(760), + [aux_sym_string_literal_token1] = ACTIONS(760), + [sym_char_literal] = ACTIONS(760), [anon_sym_true] = ACTIONS(758), [anon_sym_false] = ACTIONS(758), [anon_sym_SLASH_SLASH] = ACTIONS(103), @@ -32397,66 +33760,300 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_self] = ACTIONS(758), [sym_super] = ACTIONS(758), [sym_crate] = ACTIONS(758), - [sym_metavariable] = ACTIONS(763), - [sym__raw_string_literal_start] = ACTIONS(763), - [sym_float_literal] = ACTIONS(763), + [sym_metavariable] = ACTIONS(760), + [sym__raw_string_literal_start] = ACTIONS(760), + [sym_float_literal] = ACTIONS(760), }, [138] = { - [sym_attribute_item] = STATE(1011), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1589), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [sym_attribute_item] = STATE(1157), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1843), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), [sym_line_comment] = STATE(138), [sym_block_comment] = STATE(138), - [aux_sym_enum_variant_list_repeat1] = STATE(135), + [aux_sym_mod_item_repeat1] = STATE(1156), + [sym_identifier] = ACTIONS(762), + [anon_sym_LPAREN] = ACTIONS(765), + [anon_sym_LBRACK] = ACTIONS(768), + [anon_sym_RBRACK] = ACTIONS(771), + [anon_sym_LBRACE] = ACTIONS(773), + [anon_sym_STAR] = ACTIONS(776), + [anon_sym_u8] = ACTIONS(779), + [anon_sym_i8] = ACTIONS(779), + [anon_sym_u16] = ACTIONS(779), + [anon_sym_i16] = ACTIONS(779), + [anon_sym_u32] = ACTIONS(779), + [anon_sym_i32] = ACTIONS(779), + [anon_sym_u64] = ACTIONS(779), + [anon_sym_i64] = ACTIONS(779), + [anon_sym_u128] = ACTIONS(779), + [anon_sym_i128] = ACTIONS(779), + [anon_sym_isize] = ACTIONS(779), + [anon_sym_usize] = ACTIONS(779), + [anon_sym_f32] = ACTIONS(779), + [anon_sym_f64] = ACTIONS(779), + [anon_sym_bool] = ACTIONS(779), + [anon_sym_str] = ACTIONS(779), + [anon_sym_char] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(776), + [anon_sym_BANG] = ACTIONS(776), + [anon_sym_AMP] = ACTIONS(782), + [anon_sym_PIPE] = ACTIONS(785), + [anon_sym_LT] = ACTIONS(788), + [anon_sym_DOT_DOT] = ACTIONS(791), + [anon_sym_COMMA] = ACTIONS(771), + [anon_sym_COLON_COLON] = ACTIONS(794), + [anon_sym_POUND] = ACTIONS(797), + [anon_sym_SQUOTE] = ACTIONS(800), + [anon_sym_async] = ACTIONS(803), + [anon_sym_break] = ACTIONS(806), + [anon_sym_const] = ACTIONS(809), + [anon_sym_continue] = ACTIONS(812), + [anon_sym_default] = ACTIONS(815), + [anon_sym_for] = ACTIONS(818), + [anon_sym_gen] = ACTIONS(821), + [anon_sym_if] = ACTIONS(824), + [anon_sym_loop] = ACTIONS(827), + [anon_sym_match] = ACTIONS(830), + [anon_sym_return] = ACTIONS(833), + [anon_sym_static] = ACTIONS(836), + [anon_sym_union] = ACTIONS(815), + [anon_sym_unsafe] = ACTIONS(839), + [anon_sym_while] = ACTIONS(842), + [anon_sym_yield] = ACTIONS(845), + [anon_sym_move] = ACTIONS(848), + [anon_sym_try] = ACTIONS(851), + [sym_integer_literal] = ACTIONS(854), + [aux_sym_string_literal_token1] = ACTIONS(857), + [sym_char_literal] = ACTIONS(854), + [anon_sym_true] = ACTIONS(860), + [anon_sym_false] = ACTIONS(860), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(863), + [sym_super] = ACTIONS(866), + [sym_crate] = ACTIONS(866), + [sym_metavariable] = ACTIONS(869), + [sym__raw_string_literal_start] = ACTIONS(872), + [sym_float_literal] = ACTIONS(854), + }, + [139] = { + [sym_attribute_item] = STATE(1157), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1869), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(139), + [sym_block_comment] = STATE(139), + [aux_sym_mod_item_repeat1] = STATE(1156), + [sym_identifier] = ACTIONS(762), + [anon_sym_LPAREN] = ACTIONS(765), + [anon_sym_LBRACK] = ACTIONS(768), + [anon_sym_RBRACK] = ACTIONS(771), + [anon_sym_LBRACE] = ACTIONS(773), + [anon_sym_STAR] = ACTIONS(776), + [anon_sym_u8] = ACTIONS(779), + [anon_sym_i8] = ACTIONS(779), + [anon_sym_u16] = ACTIONS(779), + [anon_sym_i16] = ACTIONS(779), + [anon_sym_u32] = ACTIONS(779), + [anon_sym_i32] = ACTIONS(779), + [anon_sym_u64] = ACTIONS(779), + [anon_sym_i64] = ACTIONS(779), + [anon_sym_u128] = ACTIONS(779), + [anon_sym_i128] = ACTIONS(779), + [anon_sym_isize] = ACTIONS(779), + [anon_sym_usize] = ACTIONS(779), + [anon_sym_f32] = ACTIONS(779), + [anon_sym_f64] = ACTIONS(779), + [anon_sym_bool] = ACTIONS(779), + [anon_sym_str] = ACTIONS(779), + [anon_sym_char] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(776), + [anon_sym_BANG] = ACTIONS(776), + [anon_sym_AMP] = ACTIONS(782), + [anon_sym_PIPE] = ACTIONS(785), + [anon_sym_LT] = ACTIONS(788), + [anon_sym_DOT_DOT] = ACTIONS(791), + [anon_sym_COMMA] = ACTIONS(771), + [anon_sym_COLON_COLON] = ACTIONS(794), + [anon_sym_POUND] = ACTIONS(797), + [anon_sym_SQUOTE] = ACTIONS(800), + [anon_sym_async] = ACTIONS(803), + [anon_sym_break] = ACTIONS(806), + [anon_sym_const] = ACTIONS(809), + [anon_sym_continue] = ACTIONS(812), + [anon_sym_default] = ACTIONS(815), + [anon_sym_for] = ACTIONS(818), + [anon_sym_gen] = ACTIONS(821), + [anon_sym_if] = ACTIONS(824), + [anon_sym_loop] = ACTIONS(827), + [anon_sym_match] = ACTIONS(830), + [anon_sym_return] = ACTIONS(833), + [anon_sym_static] = ACTIONS(836), + [anon_sym_union] = ACTIONS(815), + [anon_sym_unsafe] = ACTIONS(839), + [anon_sym_while] = ACTIONS(842), + [anon_sym_yield] = ACTIONS(845), + [anon_sym_move] = ACTIONS(848), + [anon_sym_try] = ACTIONS(851), + [sym_integer_literal] = ACTIONS(854), + [aux_sym_string_literal_token1] = ACTIONS(857), + [sym_char_literal] = ACTIONS(854), + [anon_sym_true] = ACTIONS(860), + [anon_sym_false] = ACTIONS(860), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(863), + [sym_super] = ACTIONS(866), + [sym_crate] = ACTIONS(866), + [sym_metavariable] = ACTIONS(869), + [sym__raw_string_literal_start] = ACTIONS(872), + [sym_float_literal] = ACTIONS(854), + }, + [140] = { + [sym_attribute_item] = STATE(1157), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1811), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(140), + [sym_block_comment] = STATE(140), + [aux_sym_mod_item_repeat1] = STATE(135), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(768), + [anon_sym_RBRACK] = ACTIONS(875), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -32482,7 +34079,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COMMA] = ACTIONS(770), + [anon_sym_COMMA] = ACTIONS(877), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_POUND] = ACTIONS(748), [anon_sym_SQUOTE] = ACTIONS(37), @@ -32518,62 +34115,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [139] = { - [sym_attribute_item] = STATE(1011), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1562), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(139), - [sym_block_comment] = STATE(139), - [aux_sym_enum_variant_list_repeat1] = STATE(141), + [141] = { + [sym_attribute_item] = STATE(1157), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1856), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(141), + [sym_block_comment] = STATE(141), + [aux_sym_mod_item_repeat1] = STATE(199), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(879), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(772), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -32599,7 +34196,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COMMA] = ACTIONS(774), + [anon_sym_COMMA] = ACTIONS(881), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_POUND] = ACTIONS(748), [anon_sym_SQUOTE] = ACTIONS(37), @@ -32635,61 +34232,295 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [140] = { - [sym_attribute_item] = STATE(1011), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1613), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(140), - [sym_block_comment] = STATE(140), - [aux_sym_enum_variant_list_repeat1] = STATE(212), + [142] = { + [sym_line_comment] = STATE(142), + [sym_block_comment] = STATE(142), + [aux_sym__non_special_token_repeat1] = STATE(143), + [sym_identifier] = ACTIONS(883), + [anon_sym_SEMI] = ACTIONS(567), + [anon_sym_LPAREN] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(885), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_RBRACK] = ACTIONS(885), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_RBRACE] = ACTIONS(885), + [anon_sym_EQ_GT] = ACTIONS(567), + [anon_sym_COLON] = ACTIONS(577), + [anon_sym_DOLLAR] = ACTIONS(883), + [anon_sym_PLUS] = ACTIONS(577), + [anon_sym_STAR] = ACTIONS(577), + [anon_sym_QMARK] = ACTIONS(567), + [anon_sym_u8] = ACTIONS(883), + [anon_sym_i8] = ACTIONS(883), + [anon_sym_u16] = ACTIONS(883), + [anon_sym_i16] = ACTIONS(883), + [anon_sym_u32] = ACTIONS(883), + [anon_sym_i32] = ACTIONS(883), + [anon_sym_u64] = ACTIONS(883), + [anon_sym_i64] = ACTIONS(883), + [anon_sym_u128] = ACTIONS(883), + [anon_sym_i128] = ACTIONS(883), + [anon_sym_isize] = ACTIONS(883), + [anon_sym_usize] = ACTIONS(883), + [anon_sym_f32] = ACTIONS(883), + [anon_sym_f64] = ACTIONS(883), + [anon_sym_bool] = ACTIONS(883), + [anon_sym_str] = ACTIONS(883), + [anon_sym_char] = ACTIONS(883), + [anon_sym_DASH] = ACTIONS(577), + [anon_sym_SLASH] = ACTIONS(577), + [anon_sym_PERCENT] = ACTIONS(577), + [anon_sym_CARET] = ACTIONS(577), + [anon_sym_BANG] = ACTIONS(577), + [anon_sym_AMP] = ACTIONS(577), + [anon_sym_PIPE] = ACTIONS(577), + [anon_sym_AMP_AMP] = ACTIONS(567), + [anon_sym_PIPE_PIPE] = ACTIONS(567), + [anon_sym_LT_LT] = ACTIONS(577), + [anon_sym_GT_GT] = ACTIONS(577), + [anon_sym_PLUS_EQ] = ACTIONS(567), + [anon_sym_DASH_EQ] = ACTIONS(567), + [anon_sym_STAR_EQ] = ACTIONS(567), + [anon_sym_SLASH_EQ] = ACTIONS(567), + [anon_sym_PERCENT_EQ] = ACTIONS(567), + [anon_sym_CARET_EQ] = ACTIONS(567), + [anon_sym_AMP_EQ] = ACTIONS(567), + [anon_sym_PIPE_EQ] = ACTIONS(567), + [anon_sym_LT_LT_EQ] = ACTIONS(567), + [anon_sym_GT_GT_EQ] = ACTIONS(567), + [anon_sym_EQ] = ACTIONS(577), + [anon_sym_EQ_EQ] = ACTIONS(567), + [anon_sym_BANG_EQ] = ACTIONS(567), + [anon_sym_GT] = ACTIONS(577), + [anon_sym_LT] = ACTIONS(577), + [anon_sym_GT_EQ] = ACTIONS(567), + [anon_sym_LT_EQ] = ACTIONS(567), + [anon_sym_AT] = ACTIONS(567), + [anon_sym__] = ACTIONS(577), + [anon_sym_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT] = ACTIONS(577), + [anon_sym_DOT_DOT_DOT] = ACTIONS(567), + [anon_sym_DOT_DOT_EQ] = ACTIONS(567), + [anon_sym_COMMA] = ACTIONS(567), + [anon_sym_COLON_COLON] = ACTIONS(567), + [anon_sym_DASH_GT] = ACTIONS(567), + [anon_sym_POUND] = ACTIONS(567), + [anon_sym_SQUOTE] = ACTIONS(883), + [anon_sym_as] = ACTIONS(883), + [anon_sym_async] = ACTIONS(883), + [anon_sym_await] = ACTIONS(883), + [anon_sym_break] = ACTIONS(883), + [anon_sym_const] = ACTIONS(883), + [anon_sym_continue] = ACTIONS(883), + [anon_sym_default] = ACTIONS(883), + [anon_sym_enum] = ACTIONS(883), + [anon_sym_fn] = ACTIONS(883), + [anon_sym_for] = ACTIONS(883), + [anon_sym_gen] = ACTIONS(883), + [anon_sym_if] = ACTIONS(883), + [anon_sym_impl] = ACTIONS(883), + [anon_sym_let] = ACTIONS(883), + [anon_sym_loop] = ACTIONS(883), + [anon_sym_match] = ACTIONS(883), + [anon_sym_mod] = ACTIONS(883), + [anon_sym_pub] = ACTIONS(883), + [anon_sym_return] = ACTIONS(883), + [anon_sym_static] = ACTIONS(883), + [anon_sym_struct] = ACTIONS(883), + [anon_sym_trait] = ACTIONS(883), + [anon_sym_type] = ACTIONS(883), + [anon_sym_union] = ACTIONS(883), + [anon_sym_unsafe] = ACTIONS(883), + [anon_sym_use] = ACTIONS(883), + [anon_sym_where] = ACTIONS(883), + [anon_sym_while] = ACTIONS(883), + [sym_mutable_specifier] = ACTIONS(883), + [sym_integer_literal] = ACTIONS(885), + [aux_sym_string_literal_token1] = ACTIONS(885), + [sym_char_literal] = ACTIONS(885), + [anon_sym_true] = ACTIONS(883), + [anon_sym_false] = ACTIONS(883), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(883), + [sym_super] = ACTIONS(883), + [sym_crate] = ACTIONS(883), + [sym_metavariable] = ACTIONS(885), + [sym__raw_string_literal_start] = ACTIONS(885), + [sym_float_literal] = ACTIONS(885), + }, + [143] = { + [sym_line_comment] = STATE(143), + [sym_block_comment] = STATE(143), + [aux_sym__non_special_token_repeat1] = STATE(143), + [sym_identifier] = ACTIONS(887), + [anon_sym_SEMI] = ACTIONS(889), + [anon_sym_LPAREN] = ACTIONS(892), + [anon_sym_RPAREN] = ACTIONS(892), + [anon_sym_LBRACK] = ACTIONS(892), + [anon_sym_RBRACK] = ACTIONS(892), + [anon_sym_LBRACE] = ACTIONS(892), + [anon_sym_RBRACE] = ACTIONS(892), + [anon_sym_EQ_GT] = ACTIONS(889), + [anon_sym_COLON] = ACTIONS(894), + [anon_sym_DOLLAR] = ACTIONS(887), + [anon_sym_PLUS] = ACTIONS(894), + [anon_sym_STAR] = ACTIONS(894), + [anon_sym_QMARK] = ACTIONS(889), + [anon_sym_u8] = ACTIONS(887), + [anon_sym_i8] = ACTIONS(887), + [anon_sym_u16] = ACTIONS(887), + [anon_sym_i16] = ACTIONS(887), + [anon_sym_u32] = ACTIONS(887), + [anon_sym_i32] = ACTIONS(887), + [anon_sym_u64] = ACTIONS(887), + [anon_sym_i64] = ACTIONS(887), + [anon_sym_u128] = ACTIONS(887), + [anon_sym_i128] = ACTIONS(887), + [anon_sym_isize] = ACTIONS(887), + [anon_sym_usize] = ACTIONS(887), + [anon_sym_f32] = ACTIONS(887), + [anon_sym_f64] = ACTIONS(887), + [anon_sym_bool] = ACTIONS(887), + [anon_sym_str] = ACTIONS(887), + [anon_sym_char] = ACTIONS(887), + [anon_sym_DASH] = ACTIONS(894), + [anon_sym_SLASH] = ACTIONS(894), + [anon_sym_PERCENT] = ACTIONS(894), + [anon_sym_CARET] = ACTIONS(894), + [anon_sym_BANG] = ACTIONS(894), + [anon_sym_AMP] = ACTIONS(894), + [anon_sym_PIPE] = ACTIONS(894), + [anon_sym_AMP_AMP] = ACTIONS(889), + [anon_sym_PIPE_PIPE] = ACTIONS(889), + [anon_sym_LT_LT] = ACTIONS(894), + [anon_sym_GT_GT] = ACTIONS(894), + [anon_sym_PLUS_EQ] = ACTIONS(889), + [anon_sym_DASH_EQ] = ACTIONS(889), + [anon_sym_STAR_EQ] = ACTIONS(889), + [anon_sym_SLASH_EQ] = ACTIONS(889), + [anon_sym_PERCENT_EQ] = ACTIONS(889), + [anon_sym_CARET_EQ] = ACTIONS(889), + [anon_sym_AMP_EQ] = ACTIONS(889), + [anon_sym_PIPE_EQ] = ACTIONS(889), + [anon_sym_LT_LT_EQ] = ACTIONS(889), + [anon_sym_GT_GT_EQ] = ACTIONS(889), + [anon_sym_EQ] = ACTIONS(894), + [anon_sym_EQ_EQ] = ACTIONS(889), + [anon_sym_BANG_EQ] = ACTIONS(889), + [anon_sym_GT] = ACTIONS(894), + [anon_sym_LT] = ACTIONS(894), + [anon_sym_GT_EQ] = ACTIONS(889), + [anon_sym_LT_EQ] = ACTIONS(889), + [anon_sym_AT] = ACTIONS(889), + [anon_sym__] = ACTIONS(894), + [anon_sym_DOT] = ACTIONS(894), + [anon_sym_DOT_DOT] = ACTIONS(894), + [anon_sym_DOT_DOT_DOT] = ACTIONS(889), + [anon_sym_DOT_DOT_EQ] = ACTIONS(889), + [anon_sym_COMMA] = ACTIONS(889), + [anon_sym_COLON_COLON] = ACTIONS(889), + [anon_sym_DASH_GT] = ACTIONS(889), + [anon_sym_POUND] = ACTIONS(889), + [anon_sym_SQUOTE] = ACTIONS(887), + [anon_sym_as] = ACTIONS(887), + [anon_sym_async] = ACTIONS(887), + [anon_sym_await] = ACTIONS(887), + [anon_sym_break] = ACTIONS(887), + [anon_sym_const] = ACTIONS(887), + [anon_sym_continue] = ACTIONS(887), + [anon_sym_default] = ACTIONS(887), + [anon_sym_enum] = ACTIONS(887), + [anon_sym_fn] = ACTIONS(887), + [anon_sym_for] = ACTIONS(887), + [anon_sym_gen] = ACTIONS(887), + [anon_sym_if] = ACTIONS(887), + [anon_sym_impl] = ACTIONS(887), + [anon_sym_let] = ACTIONS(887), + [anon_sym_loop] = ACTIONS(887), + [anon_sym_match] = ACTIONS(887), + [anon_sym_mod] = ACTIONS(887), + [anon_sym_pub] = ACTIONS(887), + [anon_sym_return] = ACTIONS(887), + [anon_sym_static] = ACTIONS(887), + [anon_sym_struct] = ACTIONS(887), + [anon_sym_trait] = ACTIONS(887), + [anon_sym_type] = ACTIONS(887), + [anon_sym_union] = ACTIONS(887), + [anon_sym_unsafe] = ACTIONS(887), + [anon_sym_use] = ACTIONS(887), + [anon_sym_where] = ACTIONS(887), + [anon_sym_while] = ACTIONS(887), + [sym_mutable_specifier] = ACTIONS(887), + [sym_integer_literal] = ACTIONS(892), + [aux_sym_string_literal_token1] = ACTIONS(892), + [sym_char_literal] = ACTIONS(892), + [anon_sym_true] = ACTIONS(887), + [anon_sym_false] = ACTIONS(887), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(887), + [sym_super] = ACTIONS(887), + [sym_crate] = ACTIONS(887), + [sym_metavariable] = ACTIONS(892), + [sym__raw_string_literal_start] = ACTIONS(892), + [sym_float_literal] = ACTIONS(892), + }, + [144] = { + [sym_attribute_item] = STATE(1157), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1844), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(144), + [sym_block_comment] = STATE(144), + [aux_sym_mod_item_repeat1] = STATE(201), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(776), + [anon_sym_RPAREN] = ACTIONS(897), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -32716,7 +34547,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COMMA] = ACTIONS(778), + [anon_sym_COMMA] = ACTIONS(899), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_POUND] = ACTIONS(748), [anon_sym_SQUOTE] = ACTIONS(37), @@ -32752,530 +34583,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [141] = { - [sym_attribute_item] = STATE(1011), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1630), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(141), - [sym_block_comment] = STATE(141), - [aux_sym_enum_variant_list_repeat1] = STATE(1010), - [sym_identifier] = ACTIONS(780), - [anon_sym_LPAREN] = ACTIONS(783), - [anon_sym_LBRACK] = ACTIONS(786), - [anon_sym_RBRACK] = ACTIONS(789), - [anon_sym_LBRACE] = ACTIONS(791), - [anon_sym_STAR] = ACTIONS(794), - [anon_sym_u8] = ACTIONS(797), - [anon_sym_i8] = ACTIONS(797), - [anon_sym_u16] = ACTIONS(797), - [anon_sym_i16] = ACTIONS(797), - [anon_sym_u32] = ACTIONS(797), - [anon_sym_i32] = ACTIONS(797), - [anon_sym_u64] = ACTIONS(797), - [anon_sym_i64] = ACTIONS(797), - [anon_sym_u128] = ACTIONS(797), - [anon_sym_i128] = ACTIONS(797), - [anon_sym_isize] = ACTIONS(797), - [anon_sym_usize] = ACTIONS(797), - [anon_sym_f32] = ACTIONS(797), - [anon_sym_f64] = ACTIONS(797), - [anon_sym_bool] = ACTIONS(797), - [anon_sym_str] = ACTIONS(797), - [anon_sym_char] = ACTIONS(797), - [anon_sym_DASH] = ACTIONS(794), - [anon_sym_BANG] = ACTIONS(794), - [anon_sym_AMP] = ACTIONS(800), - [anon_sym_PIPE] = ACTIONS(803), - [anon_sym_LT] = ACTIONS(806), - [anon_sym_DOT_DOT] = ACTIONS(809), - [anon_sym_COMMA] = ACTIONS(789), - [anon_sym_COLON_COLON] = ACTIONS(812), - [anon_sym_POUND] = ACTIONS(815), - [anon_sym_SQUOTE] = ACTIONS(818), - [anon_sym_async] = ACTIONS(821), - [anon_sym_break] = ACTIONS(824), - [anon_sym_const] = ACTIONS(827), - [anon_sym_continue] = ACTIONS(830), - [anon_sym_default] = ACTIONS(833), - [anon_sym_for] = ACTIONS(836), - [anon_sym_gen] = ACTIONS(839), - [anon_sym_if] = ACTIONS(842), - [anon_sym_loop] = ACTIONS(845), - [anon_sym_match] = ACTIONS(848), - [anon_sym_return] = ACTIONS(851), - [anon_sym_static] = ACTIONS(854), - [anon_sym_union] = ACTIONS(833), - [anon_sym_unsafe] = ACTIONS(857), - [anon_sym_while] = ACTIONS(860), - [anon_sym_yield] = ACTIONS(863), - [anon_sym_move] = ACTIONS(866), - [anon_sym_try] = ACTIONS(869), - [sym_integer_literal] = ACTIONS(872), - [aux_sym_string_literal_token1] = ACTIONS(875), - [sym_char_literal] = ACTIONS(872), - [anon_sym_true] = ACTIONS(878), - [anon_sym_false] = ACTIONS(878), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(881), - [sym_super] = ACTIONS(884), - [sym_crate] = ACTIONS(884), - [sym_metavariable] = ACTIONS(887), - [sym__raw_string_literal_start] = ACTIONS(890), - [sym_float_literal] = ACTIONS(872), - }, - [142] = { - [sym_attribute_item] = STATE(1011), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1599), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(142), - [sym_block_comment] = STATE(142), - [aux_sym_enum_variant_list_repeat1] = STATE(201), + [145] = { + [sym_attribute_item] = STATE(1157), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1885), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(145), + [sym_block_comment] = STATE(145), + [aux_sym_mod_item_repeat1] = STATE(214), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(893), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COMMA] = ACTIONS(895), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(748), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [143] = { - [sym_line_comment] = STATE(143), - [sym_block_comment] = STATE(143), - [aux_sym__non_special_token_repeat1] = STATE(137), - [sym_identifier] = ACTIONS(897), - [anon_sym_SEMI] = ACTIONS(567), - [anon_sym_LPAREN] = ACTIONS(899), - [anon_sym_RPAREN] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(899), - [anon_sym_RBRACK] = ACTIONS(899), - [anon_sym_LBRACE] = ACTIONS(899), - [anon_sym_RBRACE] = ACTIONS(899), - [anon_sym_EQ_GT] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DOLLAR] = ACTIONS(897), - [anon_sym_PLUS] = ACTIONS(577), - [anon_sym_STAR] = ACTIONS(577), - [anon_sym_QMARK] = ACTIONS(567), - [anon_sym_u8] = ACTIONS(897), - [anon_sym_i8] = ACTIONS(897), - [anon_sym_u16] = ACTIONS(897), - [anon_sym_i16] = ACTIONS(897), - [anon_sym_u32] = ACTIONS(897), - [anon_sym_i32] = ACTIONS(897), - [anon_sym_u64] = ACTIONS(897), - [anon_sym_i64] = ACTIONS(897), - [anon_sym_u128] = ACTIONS(897), - [anon_sym_i128] = ACTIONS(897), - [anon_sym_isize] = ACTIONS(897), - [anon_sym_usize] = ACTIONS(897), - [anon_sym_f32] = ACTIONS(897), - [anon_sym_f64] = ACTIONS(897), - [anon_sym_bool] = ACTIONS(897), - [anon_sym_str] = ACTIONS(897), - [anon_sym_char] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(577), - [anon_sym_SLASH] = ACTIONS(577), - [anon_sym_PERCENT] = ACTIONS(577), - [anon_sym_CARET] = ACTIONS(577), - [anon_sym_BANG] = ACTIONS(577), - [anon_sym_AMP] = ACTIONS(577), - [anon_sym_PIPE] = ACTIONS(577), - [anon_sym_AMP_AMP] = ACTIONS(567), - [anon_sym_PIPE_PIPE] = ACTIONS(567), - [anon_sym_LT_LT] = ACTIONS(577), - [anon_sym_GT_GT] = ACTIONS(577), - [anon_sym_PLUS_EQ] = ACTIONS(567), - [anon_sym_DASH_EQ] = ACTIONS(567), - [anon_sym_STAR_EQ] = ACTIONS(567), - [anon_sym_SLASH_EQ] = ACTIONS(567), - [anon_sym_PERCENT_EQ] = ACTIONS(567), - [anon_sym_CARET_EQ] = ACTIONS(567), - [anon_sym_AMP_EQ] = ACTIONS(567), - [anon_sym_PIPE_EQ] = ACTIONS(567), - [anon_sym_LT_LT_EQ] = ACTIONS(567), - [anon_sym_GT_GT_EQ] = ACTIONS(567), - [anon_sym_EQ] = ACTIONS(577), - [anon_sym_EQ_EQ] = ACTIONS(567), - [anon_sym_BANG_EQ] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(577), - [anon_sym_LT] = ACTIONS(577), - [anon_sym_GT_EQ] = ACTIONS(567), - [anon_sym_LT_EQ] = ACTIONS(567), - [anon_sym_AT] = ACTIONS(567), - [anon_sym__] = ACTIONS(577), - [anon_sym_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT] = ACTIONS(577), - [anon_sym_DOT_DOT_DOT] = ACTIONS(567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(567), - [anon_sym_COMMA] = ACTIONS(567), - [anon_sym_COLON_COLON] = ACTIONS(567), - [anon_sym_DASH_GT] = ACTIONS(567), - [anon_sym_POUND] = ACTIONS(567), - [anon_sym_SQUOTE] = ACTIONS(897), - [anon_sym_as] = ACTIONS(897), - [anon_sym_async] = ACTIONS(897), - [anon_sym_await] = ACTIONS(897), - [anon_sym_break] = ACTIONS(897), - [anon_sym_const] = ACTIONS(897), - [anon_sym_continue] = ACTIONS(897), - [anon_sym_default] = ACTIONS(897), - [anon_sym_enum] = ACTIONS(897), - [anon_sym_fn] = ACTIONS(897), - [anon_sym_for] = ACTIONS(897), - [anon_sym_gen] = ACTIONS(897), - [anon_sym_if] = ACTIONS(897), - [anon_sym_impl] = ACTIONS(897), - [anon_sym_let] = ACTIONS(897), - [anon_sym_loop] = ACTIONS(897), - [anon_sym_match] = ACTIONS(897), - [anon_sym_mod] = ACTIONS(897), - [anon_sym_pub] = ACTIONS(897), - [anon_sym_return] = ACTIONS(897), - [anon_sym_static] = ACTIONS(897), - [anon_sym_struct] = ACTIONS(897), - [anon_sym_trait] = ACTIONS(897), - [anon_sym_type] = ACTIONS(897), - [anon_sym_union] = ACTIONS(897), - [anon_sym_unsafe] = ACTIONS(897), - [anon_sym_use] = ACTIONS(897), - [anon_sym_where] = ACTIONS(897), - [anon_sym_while] = ACTIONS(897), - [sym_mutable_specifier] = ACTIONS(897), - [sym_integer_literal] = ACTIONS(899), - [aux_sym_string_literal_token1] = ACTIONS(899), - [sym_char_literal] = ACTIONS(899), - [anon_sym_true] = ACTIONS(897), - [anon_sym_false] = ACTIONS(897), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(897), - [sym_super] = ACTIONS(897), - [sym_crate] = ACTIONS(897), - [sym_metavariable] = ACTIONS(899), - [sym__raw_string_literal_start] = ACTIONS(899), - [sym_float_literal] = ACTIONS(899), - }, - [144] = { - [sym_attribute_item] = STATE(1011), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1614), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(144), - [sym_block_comment] = STATE(144), - [aux_sym_enum_variant_list_repeat1] = STATE(1010), - [sym_identifier] = ACTIONS(780), - [anon_sym_LPAREN] = ACTIONS(783), - [anon_sym_LBRACK] = ACTIONS(786), - [anon_sym_RBRACK] = ACTIONS(789), - [anon_sym_LBRACE] = ACTIONS(791), - [anon_sym_STAR] = ACTIONS(794), - [anon_sym_u8] = ACTIONS(797), - [anon_sym_i8] = ACTIONS(797), - [anon_sym_u16] = ACTIONS(797), - [anon_sym_i16] = ACTIONS(797), - [anon_sym_u32] = ACTIONS(797), - [anon_sym_i32] = ACTIONS(797), - [anon_sym_u64] = ACTIONS(797), - [anon_sym_i64] = ACTIONS(797), - [anon_sym_u128] = ACTIONS(797), - [anon_sym_i128] = ACTIONS(797), - [anon_sym_isize] = ACTIONS(797), - [anon_sym_usize] = ACTIONS(797), - [anon_sym_f32] = ACTIONS(797), - [anon_sym_f64] = ACTIONS(797), - [anon_sym_bool] = ACTIONS(797), - [anon_sym_str] = ACTIONS(797), - [anon_sym_char] = ACTIONS(797), - [anon_sym_DASH] = ACTIONS(794), - [anon_sym_BANG] = ACTIONS(794), - [anon_sym_AMP] = ACTIONS(800), - [anon_sym_PIPE] = ACTIONS(803), - [anon_sym_LT] = ACTIONS(806), - [anon_sym_DOT_DOT] = ACTIONS(809), - [anon_sym_COMMA] = ACTIONS(789), - [anon_sym_COLON_COLON] = ACTIONS(812), - [anon_sym_POUND] = ACTIONS(815), - [anon_sym_SQUOTE] = ACTIONS(818), - [anon_sym_async] = ACTIONS(821), - [anon_sym_break] = ACTIONS(824), - [anon_sym_const] = ACTIONS(827), - [anon_sym_continue] = ACTIONS(830), - [anon_sym_default] = ACTIONS(833), - [anon_sym_for] = ACTIONS(836), - [anon_sym_gen] = ACTIONS(839), - [anon_sym_if] = ACTIONS(842), - [anon_sym_loop] = ACTIONS(845), - [anon_sym_match] = ACTIONS(848), - [anon_sym_return] = ACTIONS(851), - [anon_sym_static] = ACTIONS(854), - [anon_sym_union] = ACTIONS(833), - [anon_sym_unsafe] = ACTIONS(857), - [anon_sym_while] = ACTIONS(860), - [anon_sym_yield] = ACTIONS(863), - [anon_sym_move] = ACTIONS(866), - [anon_sym_try] = ACTIONS(869), - [sym_integer_literal] = ACTIONS(872), - [aux_sym_string_literal_token1] = ACTIONS(875), - [sym_char_literal] = ACTIONS(872), - [anon_sym_true] = ACTIONS(878), - [anon_sym_false] = ACTIONS(878), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(881), - [sym_super] = ACTIONS(884), - [sym_crate] = ACTIONS(884), - [sym_metavariable] = ACTIONS(887), - [sym__raw_string_literal_start] = ACTIONS(890), - [sym_float_literal] = ACTIONS(872), - }, - [145] = { - [sym_attribute_item] = STATE(1011), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1665), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(145), - [sym_block_comment] = STATE(145), - [aux_sym_enum_variant_list_repeat1] = STATE(211), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(901), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(901), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -33337,106 +34700,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [146] = { - [sym_attribute_item] = STATE(1011), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1623), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3303), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2016), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1794), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_let_condition] = STATE(3218), + [sym__let_chain] = STATE(3220), + [sym__condition] = STATE(2867), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), [sym_line_comment] = STATE(146), [sym_block_comment] = STATE(146), - [aux_sym_enum_variant_list_repeat1] = STATE(207), - [sym_identifier] = ACTIONS(339), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(903), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(903), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_BANG] = ACTIONS(903), + [anon_sym_AMP] = ACTIONS(905), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(748), + [anon_sym_DOT_DOT] = ACTIONS(907), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(495), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_continue] = ACTIONS(497), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(499), [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(909), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), + [anon_sym_return] = ACTIONS(501), + [anon_sym_static] = ACTIONS(503), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(505), + [anon_sym_move] = ACTIONS(507), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -33445,364 +34808,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [147] = { - [sym_attribute_item] = STATE(1011), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1623), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), [sym_line_comment] = STATE(147), [sym_block_comment] = STATE(147), - [aux_sym_enum_variant_list_repeat1] = STATE(207), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(905), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(748), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [sym_identifier] = ACTIONS(883), + [anon_sym_SEMI] = ACTIONS(885), + [anon_sym_LPAREN] = ACTIONS(885), + [anon_sym_RPAREN] = ACTIONS(885), + [anon_sym_LBRACK] = ACTIONS(885), + [anon_sym_RBRACK] = ACTIONS(885), + [anon_sym_LBRACE] = ACTIONS(885), + [anon_sym_RBRACE] = ACTIONS(885), + [anon_sym_EQ_GT] = ACTIONS(885), + [anon_sym_COLON] = ACTIONS(883), + [anon_sym_DOLLAR] = ACTIONS(883), + [anon_sym_PLUS] = ACTIONS(883), + [anon_sym_STAR] = ACTIONS(883), + [anon_sym_QMARK] = ACTIONS(885), + [anon_sym_u8] = ACTIONS(883), + [anon_sym_i8] = ACTIONS(883), + [anon_sym_u16] = ACTIONS(883), + [anon_sym_i16] = ACTIONS(883), + [anon_sym_u32] = ACTIONS(883), + [anon_sym_i32] = ACTIONS(883), + [anon_sym_u64] = ACTIONS(883), + [anon_sym_i64] = ACTIONS(883), + [anon_sym_u128] = ACTIONS(883), + [anon_sym_i128] = ACTIONS(883), + [anon_sym_isize] = ACTIONS(883), + [anon_sym_usize] = ACTIONS(883), + [anon_sym_f32] = ACTIONS(883), + [anon_sym_f64] = ACTIONS(883), + [anon_sym_bool] = ACTIONS(883), + [anon_sym_str] = ACTIONS(883), + [anon_sym_char] = ACTIONS(883), + [anon_sym_DASH] = ACTIONS(883), + [anon_sym_SLASH] = ACTIONS(883), + [anon_sym_PERCENT] = ACTIONS(883), + [anon_sym_CARET] = ACTIONS(883), + [anon_sym_BANG] = ACTIONS(883), + [anon_sym_AMP] = ACTIONS(883), + [anon_sym_PIPE] = ACTIONS(883), + [anon_sym_AMP_AMP] = ACTIONS(885), + [anon_sym_PIPE_PIPE] = ACTIONS(885), + [anon_sym_LT_LT] = ACTIONS(883), + [anon_sym_GT_GT] = ACTIONS(883), + [anon_sym_PLUS_EQ] = ACTIONS(885), + [anon_sym_DASH_EQ] = ACTIONS(885), + [anon_sym_STAR_EQ] = ACTIONS(885), + [anon_sym_SLASH_EQ] = ACTIONS(885), + [anon_sym_PERCENT_EQ] = ACTIONS(885), + [anon_sym_CARET_EQ] = ACTIONS(885), + [anon_sym_AMP_EQ] = ACTIONS(885), + [anon_sym_PIPE_EQ] = ACTIONS(885), + [anon_sym_LT_LT_EQ] = ACTIONS(885), + [anon_sym_GT_GT_EQ] = ACTIONS(885), + [anon_sym_EQ] = ACTIONS(883), + [anon_sym_EQ_EQ] = ACTIONS(885), + [anon_sym_BANG_EQ] = ACTIONS(885), + [anon_sym_GT] = ACTIONS(883), + [anon_sym_LT] = ACTIONS(883), + [anon_sym_GT_EQ] = ACTIONS(885), + [anon_sym_LT_EQ] = ACTIONS(885), + [anon_sym_AT] = ACTIONS(885), + [anon_sym__] = ACTIONS(883), + [anon_sym_DOT] = ACTIONS(883), + [anon_sym_DOT_DOT] = ACTIONS(883), + [anon_sym_DOT_DOT_DOT] = ACTIONS(885), + [anon_sym_DOT_DOT_EQ] = ACTIONS(885), + [anon_sym_COMMA] = ACTIONS(885), + [anon_sym_COLON_COLON] = ACTIONS(885), + [anon_sym_DASH_GT] = ACTIONS(885), + [anon_sym_POUND] = ACTIONS(885), + [anon_sym_SQUOTE] = ACTIONS(883), + [anon_sym_as] = ACTIONS(883), + [anon_sym_async] = ACTIONS(883), + [anon_sym_await] = ACTIONS(883), + [anon_sym_break] = ACTIONS(883), + [anon_sym_const] = ACTIONS(883), + [anon_sym_continue] = ACTIONS(883), + [anon_sym_default] = ACTIONS(883), + [anon_sym_enum] = ACTIONS(883), + [anon_sym_fn] = ACTIONS(883), + [anon_sym_for] = ACTIONS(883), + [anon_sym_gen] = ACTIONS(883), + [anon_sym_if] = ACTIONS(883), + [anon_sym_impl] = ACTIONS(883), + [anon_sym_let] = ACTIONS(883), + [anon_sym_loop] = ACTIONS(883), + [anon_sym_match] = ACTIONS(883), + [anon_sym_mod] = ACTIONS(883), + [anon_sym_pub] = ACTIONS(883), + [anon_sym_return] = ACTIONS(883), + [anon_sym_static] = ACTIONS(883), + [anon_sym_struct] = ACTIONS(883), + [anon_sym_trait] = ACTIONS(883), + [anon_sym_type] = ACTIONS(883), + [anon_sym_union] = ACTIONS(883), + [anon_sym_unsafe] = ACTIONS(883), + [anon_sym_use] = ACTIONS(883), + [anon_sym_where] = ACTIONS(883), + [anon_sym_while] = ACTIONS(883), + [sym_mutable_specifier] = ACTIONS(883), + [sym_integer_literal] = ACTIONS(885), + [aux_sym_string_literal_token1] = ACTIONS(885), + [sym_char_literal] = ACTIONS(885), + [anon_sym_true] = ACTIONS(883), + [anon_sym_false] = ACTIONS(883), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(883), + [sym_super] = ACTIONS(883), + [sym_crate] = ACTIONS(883), + [sym_metavariable] = ACTIONS(885), + [sym__raw_string_literal_start] = ACTIONS(885), + [sym_float_literal] = ACTIONS(885), }, [148] = { - [sym_attribute_item] = STATE(1011), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1623), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), [sym_line_comment] = STATE(148), [sym_block_comment] = STATE(148), - [aux_sym_enum_variant_list_repeat1] = STATE(207), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(907), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(748), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [149] = { - [sym_attribute_item] = STATE(1011), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1799), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(149), - [sym_block_comment] = STATE(149), - [aux_sym_enum_variant_list_repeat1] = STATE(208), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(909), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(748), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [150] = { - [sym_line_comment] = STATE(150), - [sym_block_comment] = STATE(150), [sym_identifier] = ACTIONS(911), [anon_sym_SEMI] = ACTIONS(913), [anon_sym_LPAREN] = ACTIONS(913), @@ -33916,9 +35047,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(913), [sym_float_literal] = ACTIONS(913), }, - [151] = { - [sym_line_comment] = STATE(151), - [sym_block_comment] = STATE(151), + [149] = { + [sym_line_comment] = STATE(149), + [sym_block_comment] = STATE(149), [sym_identifier] = ACTIONS(915), [anon_sym_SEMI] = ACTIONS(917), [anon_sym_LPAREN] = ACTIONS(917), @@ -34032,178 +35163,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(917), [sym_float_literal] = ACTIONS(917), }, - [152] = { - [sym_line_comment] = STATE(152), - [sym_block_comment] = STATE(152), - [sym_identifier] = ACTIONS(897), - [anon_sym_SEMI] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(899), - [anon_sym_RPAREN] = ACTIONS(899), - [anon_sym_LBRACK] = ACTIONS(899), - [anon_sym_RBRACK] = ACTIONS(899), - [anon_sym_LBRACE] = ACTIONS(899), - [anon_sym_RBRACE] = ACTIONS(899), - [anon_sym_EQ_GT] = ACTIONS(899), - [anon_sym_COLON] = ACTIONS(897), - [anon_sym_DOLLAR] = ACTIONS(897), - [anon_sym_PLUS] = ACTIONS(897), - [anon_sym_STAR] = ACTIONS(897), - [anon_sym_QMARK] = ACTIONS(899), - [anon_sym_u8] = ACTIONS(897), - [anon_sym_i8] = ACTIONS(897), - [anon_sym_u16] = ACTIONS(897), - [anon_sym_i16] = ACTIONS(897), - [anon_sym_u32] = ACTIONS(897), - [anon_sym_i32] = ACTIONS(897), - [anon_sym_u64] = ACTIONS(897), - [anon_sym_i64] = ACTIONS(897), - [anon_sym_u128] = ACTIONS(897), - [anon_sym_i128] = ACTIONS(897), - [anon_sym_isize] = ACTIONS(897), - [anon_sym_usize] = ACTIONS(897), - [anon_sym_f32] = ACTIONS(897), - [anon_sym_f64] = ACTIONS(897), - [anon_sym_bool] = ACTIONS(897), - [anon_sym_str] = ACTIONS(897), - [anon_sym_char] = ACTIONS(897), - [anon_sym_DASH] = ACTIONS(897), - [anon_sym_SLASH] = ACTIONS(897), - [anon_sym_PERCENT] = ACTIONS(897), - [anon_sym_CARET] = ACTIONS(897), - [anon_sym_BANG] = ACTIONS(897), - [anon_sym_AMP] = ACTIONS(897), - [anon_sym_PIPE] = ACTIONS(897), - [anon_sym_AMP_AMP] = ACTIONS(899), - [anon_sym_PIPE_PIPE] = ACTIONS(899), - [anon_sym_LT_LT] = ACTIONS(897), - [anon_sym_GT_GT] = ACTIONS(897), - [anon_sym_PLUS_EQ] = ACTIONS(899), - [anon_sym_DASH_EQ] = ACTIONS(899), - [anon_sym_STAR_EQ] = ACTIONS(899), - [anon_sym_SLASH_EQ] = ACTIONS(899), - [anon_sym_PERCENT_EQ] = ACTIONS(899), - [anon_sym_CARET_EQ] = ACTIONS(899), - [anon_sym_AMP_EQ] = ACTIONS(899), - [anon_sym_PIPE_EQ] = ACTIONS(899), - [anon_sym_LT_LT_EQ] = ACTIONS(899), - [anon_sym_GT_GT_EQ] = ACTIONS(899), - [anon_sym_EQ] = ACTIONS(897), - [anon_sym_EQ_EQ] = ACTIONS(899), - [anon_sym_BANG_EQ] = ACTIONS(899), - [anon_sym_GT] = ACTIONS(897), - [anon_sym_LT] = ACTIONS(897), - [anon_sym_GT_EQ] = ACTIONS(899), - [anon_sym_LT_EQ] = ACTIONS(899), - [anon_sym_AT] = ACTIONS(899), - [anon_sym__] = ACTIONS(897), - [anon_sym_DOT] = ACTIONS(897), - [anon_sym_DOT_DOT] = ACTIONS(897), - [anon_sym_DOT_DOT_DOT] = ACTIONS(899), - [anon_sym_DOT_DOT_EQ] = ACTIONS(899), - [anon_sym_COMMA] = ACTIONS(899), - [anon_sym_COLON_COLON] = ACTIONS(899), - [anon_sym_DASH_GT] = ACTIONS(899), - [anon_sym_POUND] = ACTIONS(899), - [anon_sym_SQUOTE] = ACTIONS(897), - [anon_sym_as] = ACTIONS(897), - [anon_sym_async] = ACTIONS(897), - [anon_sym_await] = ACTIONS(897), - [anon_sym_break] = ACTIONS(897), - [anon_sym_const] = ACTIONS(897), - [anon_sym_continue] = ACTIONS(897), - [anon_sym_default] = ACTIONS(897), - [anon_sym_enum] = ACTIONS(897), - [anon_sym_fn] = ACTIONS(897), - [anon_sym_for] = ACTIONS(897), - [anon_sym_gen] = ACTIONS(897), - [anon_sym_if] = ACTIONS(897), - [anon_sym_impl] = ACTIONS(897), - [anon_sym_let] = ACTIONS(897), - [anon_sym_loop] = ACTIONS(897), - [anon_sym_match] = ACTIONS(897), - [anon_sym_mod] = ACTIONS(897), - [anon_sym_pub] = ACTIONS(897), - [anon_sym_return] = ACTIONS(897), - [anon_sym_static] = ACTIONS(897), - [anon_sym_struct] = ACTIONS(897), - [anon_sym_trait] = ACTIONS(897), - [anon_sym_type] = ACTIONS(897), - [anon_sym_union] = ACTIONS(897), - [anon_sym_unsafe] = ACTIONS(897), - [anon_sym_use] = ACTIONS(897), - [anon_sym_where] = ACTIONS(897), - [anon_sym_while] = ACTIONS(897), - [sym_mutable_specifier] = ACTIONS(897), - [sym_integer_literal] = ACTIONS(899), - [aux_sym_string_literal_token1] = ACTIONS(899), - [sym_char_literal] = ACTIONS(899), - [anon_sym_true] = ACTIONS(897), - [anon_sym_false] = ACTIONS(897), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(897), - [sym_super] = ACTIONS(897), - [sym_crate] = ACTIONS(897), - [sym_metavariable] = ACTIONS(899), - [sym__raw_string_literal_start] = ACTIONS(899), - [sym_float_literal] = ACTIONS(899), + [150] = { + [sym_line_comment] = STATE(150), + [sym_block_comment] = STATE(150), + [aux_sym__non_special_token_repeat1] = STATE(177), + [sym_identifier] = ACTIONS(919), + [anon_sym_SEMI] = ACTIONS(676), + [anon_sym_LPAREN] = ACTIONS(921), + [anon_sym_RPAREN] = ACTIONS(921), + [anon_sym_LBRACK] = ACTIONS(921), + [anon_sym_RBRACK] = ACTIONS(921), + [anon_sym_LBRACE] = ACTIONS(921), + [anon_sym_RBRACE] = ACTIONS(921), + [anon_sym_EQ_GT] = ACTIONS(676), + [anon_sym_COLON] = ACTIONS(686), + [anon_sym_DOLLAR] = ACTIONS(921), + [anon_sym_PLUS] = ACTIONS(686), + [anon_sym_STAR] = ACTIONS(686), + [anon_sym_QMARK] = ACTIONS(676), + [anon_sym_u8] = ACTIONS(919), + [anon_sym_i8] = ACTIONS(919), + [anon_sym_u16] = ACTIONS(919), + [anon_sym_i16] = ACTIONS(919), + [anon_sym_u32] = ACTIONS(919), + [anon_sym_i32] = ACTIONS(919), + [anon_sym_u64] = ACTIONS(919), + [anon_sym_i64] = ACTIONS(919), + [anon_sym_u128] = ACTIONS(919), + [anon_sym_i128] = ACTIONS(919), + [anon_sym_isize] = ACTIONS(919), + [anon_sym_usize] = ACTIONS(919), + [anon_sym_f32] = ACTIONS(919), + [anon_sym_f64] = ACTIONS(919), + [anon_sym_bool] = ACTIONS(919), + [anon_sym_str] = ACTIONS(919), + [anon_sym_char] = ACTIONS(919), + [anon_sym_DASH] = ACTIONS(686), + [anon_sym_SLASH] = ACTIONS(686), + [anon_sym_PERCENT] = ACTIONS(686), + [anon_sym_CARET] = ACTIONS(686), + [anon_sym_BANG] = ACTIONS(686), + [anon_sym_AMP] = ACTIONS(686), + [anon_sym_PIPE] = ACTIONS(686), + [anon_sym_AMP_AMP] = ACTIONS(676), + [anon_sym_PIPE_PIPE] = ACTIONS(676), + [anon_sym_LT_LT] = ACTIONS(686), + [anon_sym_GT_GT] = ACTIONS(686), + [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_CARET_EQ] = ACTIONS(676), + [anon_sym_AMP_EQ] = ACTIONS(676), + [anon_sym_PIPE_EQ] = ACTIONS(676), + [anon_sym_LT_LT_EQ] = ACTIONS(676), + [anon_sym_GT_GT_EQ] = ACTIONS(676), + [anon_sym_EQ] = ACTIONS(686), + [anon_sym_EQ_EQ] = ACTIONS(676), + [anon_sym_BANG_EQ] = ACTIONS(676), + [anon_sym_GT] = ACTIONS(686), + [anon_sym_LT] = ACTIONS(686), + [anon_sym_GT_EQ] = ACTIONS(676), + [anon_sym_LT_EQ] = ACTIONS(676), + [anon_sym_AT] = ACTIONS(676), + [anon_sym__] = ACTIONS(686), + [anon_sym_DOT] = ACTIONS(686), + [anon_sym_DOT_DOT] = ACTIONS(686), + [anon_sym_DOT_DOT_DOT] = ACTIONS(676), + [anon_sym_DOT_DOT_EQ] = ACTIONS(676), + [anon_sym_COMMA] = ACTIONS(676), + [anon_sym_COLON_COLON] = ACTIONS(676), + [anon_sym_DASH_GT] = ACTIONS(676), + [anon_sym_POUND] = ACTIONS(676), + [anon_sym_SQUOTE] = ACTIONS(919), + [anon_sym_as] = ACTIONS(919), + [anon_sym_async] = ACTIONS(919), + [anon_sym_await] = ACTIONS(919), + [anon_sym_break] = ACTIONS(919), + [anon_sym_const] = ACTIONS(919), + [anon_sym_continue] = ACTIONS(919), + [anon_sym_default] = ACTIONS(919), + [anon_sym_enum] = ACTIONS(919), + [anon_sym_fn] = ACTIONS(919), + [anon_sym_for] = ACTIONS(919), + [anon_sym_gen] = ACTIONS(919), + [anon_sym_if] = ACTIONS(919), + [anon_sym_impl] = ACTIONS(919), + [anon_sym_let] = ACTIONS(919), + [anon_sym_loop] = ACTIONS(919), + [anon_sym_match] = ACTIONS(919), + [anon_sym_mod] = ACTIONS(919), + [anon_sym_pub] = ACTIONS(919), + [anon_sym_return] = ACTIONS(919), + [anon_sym_static] = ACTIONS(919), + [anon_sym_struct] = ACTIONS(919), + [anon_sym_trait] = ACTIONS(919), + [anon_sym_type] = ACTIONS(919), + [anon_sym_union] = ACTIONS(919), + [anon_sym_unsafe] = ACTIONS(919), + [anon_sym_use] = ACTIONS(919), + [anon_sym_where] = ACTIONS(919), + [anon_sym_while] = ACTIONS(919), + [sym_mutable_specifier] = ACTIONS(919), + [sym_integer_literal] = ACTIONS(921), + [aux_sym_string_literal_token1] = ACTIONS(921), + [sym_char_literal] = ACTIONS(921), + [anon_sym_true] = ACTIONS(919), + [anon_sym_false] = ACTIONS(919), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(919), + [sym_super] = ACTIONS(919), + [sym_crate] = ACTIONS(919), + [sym__raw_string_literal_start] = ACTIONS(921), + [sym_float_literal] = ACTIONS(921), }, - [153] = { - [sym_attribute_item] = STATE(1011), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1623), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(153), - [sym_block_comment] = STATE(153), - [aux_sym_enum_variant_list_repeat1] = STATE(207), + [151] = { + [sym_attribute_item] = STATE(1157), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1885), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(151), + [sym_block_comment] = STATE(151), + [aux_sym_mod_item_repeat1] = STATE(214), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(923), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(919), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -34264,107 +35395,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [154] = { - [sym_attribute_item] = STATE(1011), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1623), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(154), - [sym_block_comment] = STATE(154), - [aux_sym_enum_variant_list_repeat1] = STATE(207), - [sym_identifier] = ACTIONS(339), + [152] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3303), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2016), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1794), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_let_condition] = STATE(3218), + [sym__let_chain] = STATE(3220), + [sym__condition] = STATE(3021), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(152), + [sym_block_comment] = STATE(152), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(921), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(903), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_BANG] = ACTIONS(903), + [anon_sym_AMP] = ACTIONS(905), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(748), + [anon_sym_DOT_DOT] = ACTIONS(907), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(495), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_continue] = ACTIONS(497), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(499), [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(909), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), + [anon_sym_return] = ACTIONS(501), + [anon_sym_static] = ACTIONS(503), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(505), + [anon_sym_move] = ACTIONS(507), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -34373,417 +35504,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [155] = { - [sym_line_comment] = STATE(155), - [sym_block_comment] = STATE(155), - [sym_identifier] = ACTIONS(923), - [anon_sym_SEMI] = ACTIONS(925), - [anon_sym_LPAREN] = ACTIONS(925), - [anon_sym_RPAREN] = ACTIONS(925), - [anon_sym_LBRACK] = ACTIONS(925), - [anon_sym_RBRACK] = ACTIONS(925), - [anon_sym_LBRACE] = ACTIONS(925), - [anon_sym_RBRACE] = ACTIONS(925), - [anon_sym_EQ_GT] = ACTIONS(925), - [anon_sym_COLON] = ACTIONS(923), - [anon_sym_DOLLAR] = ACTIONS(923), - [anon_sym_PLUS] = ACTIONS(923), - [anon_sym_STAR] = ACTIONS(923), - [anon_sym_QMARK] = ACTIONS(925), - [anon_sym_u8] = ACTIONS(923), - [anon_sym_i8] = ACTIONS(923), - [anon_sym_u16] = ACTIONS(923), - [anon_sym_i16] = ACTIONS(923), - [anon_sym_u32] = ACTIONS(923), - [anon_sym_i32] = ACTIONS(923), - [anon_sym_u64] = ACTIONS(923), - [anon_sym_i64] = ACTIONS(923), - [anon_sym_u128] = ACTIONS(923), - [anon_sym_i128] = ACTIONS(923), - [anon_sym_isize] = ACTIONS(923), - [anon_sym_usize] = ACTIONS(923), - [anon_sym_f32] = ACTIONS(923), - [anon_sym_f64] = ACTIONS(923), - [anon_sym_bool] = ACTIONS(923), - [anon_sym_str] = ACTIONS(923), - [anon_sym_char] = ACTIONS(923), - [anon_sym_DASH] = ACTIONS(923), - [anon_sym_SLASH] = ACTIONS(923), - [anon_sym_PERCENT] = ACTIONS(923), - [anon_sym_CARET] = ACTIONS(923), - [anon_sym_BANG] = ACTIONS(923), - [anon_sym_AMP] = ACTIONS(923), - [anon_sym_PIPE] = ACTIONS(923), - [anon_sym_AMP_AMP] = ACTIONS(925), - [anon_sym_PIPE_PIPE] = ACTIONS(925), - [anon_sym_LT_LT] = ACTIONS(923), - [anon_sym_GT_GT] = ACTIONS(923), - [anon_sym_PLUS_EQ] = ACTIONS(925), - [anon_sym_DASH_EQ] = ACTIONS(925), - [anon_sym_STAR_EQ] = ACTIONS(925), - [anon_sym_SLASH_EQ] = ACTIONS(925), - [anon_sym_PERCENT_EQ] = ACTIONS(925), - [anon_sym_CARET_EQ] = ACTIONS(925), - [anon_sym_AMP_EQ] = ACTIONS(925), - [anon_sym_PIPE_EQ] = ACTIONS(925), - [anon_sym_LT_LT_EQ] = ACTIONS(925), - [anon_sym_GT_GT_EQ] = ACTIONS(925), - [anon_sym_EQ] = ACTIONS(923), - [anon_sym_EQ_EQ] = ACTIONS(925), - [anon_sym_BANG_EQ] = ACTIONS(925), - [anon_sym_GT] = ACTIONS(923), - [anon_sym_LT] = ACTIONS(923), - [anon_sym_GT_EQ] = ACTIONS(925), - [anon_sym_LT_EQ] = ACTIONS(925), - [anon_sym_AT] = ACTIONS(925), - [anon_sym__] = ACTIONS(923), - [anon_sym_DOT] = ACTIONS(923), - [anon_sym_DOT_DOT] = ACTIONS(923), - [anon_sym_DOT_DOT_DOT] = ACTIONS(925), - [anon_sym_DOT_DOT_EQ] = ACTIONS(925), - [anon_sym_COMMA] = ACTIONS(925), - [anon_sym_COLON_COLON] = ACTIONS(925), - [anon_sym_DASH_GT] = ACTIONS(925), - [anon_sym_POUND] = ACTIONS(925), - [anon_sym_SQUOTE] = ACTIONS(923), - [anon_sym_as] = ACTIONS(923), - [anon_sym_async] = ACTIONS(923), - [anon_sym_await] = ACTIONS(923), - [anon_sym_break] = ACTIONS(923), - [anon_sym_const] = ACTIONS(923), - [anon_sym_continue] = ACTIONS(923), - [anon_sym_default] = ACTIONS(923), - [anon_sym_enum] = ACTIONS(923), - [anon_sym_fn] = ACTIONS(923), - [anon_sym_for] = ACTIONS(923), - [anon_sym_gen] = ACTIONS(923), - [anon_sym_if] = ACTIONS(923), - [anon_sym_impl] = ACTIONS(923), - [anon_sym_let] = ACTIONS(923), - [anon_sym_loop] = ACTIONS(923), - [anon_sym_match] = ACTIONS(923), - [anon_sym_mod] = ACTIONS(923), - [anon_sym_pub] = ACTIONS(923), - [anon_sym_return] = ACTIONS(923), - [anon_sym_static] = ACTIONS(923), - [anon_sym_struct] = ACTIONS(923), - [anon_sym_trait] = ACTIONS(923), - [anon_sym_type] = ACTIONS(923), - [anon_sym_union] = ACTIONS(923), - [anon_sym_unsafe] = ACTIONS(923), - [anon_sym_use] = ACTIONS(923), - [anon_sym_where] = ACTIONS(923), - [anon_sym_while] = ACTIONS(923), - [sym_mutable_specifier] = ACTIONS(923), - [sym_integer_literal] = ACTIONS(925), - [aux_sym_string_literal_token1] = ACTIONS(925), - [sym_char_literal] = ACTIONS(925), - [anon_sym_true] = ACTIONS(923), - [anon_sym_false] = ACTIONS(923), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(923), - [sym_super] = ACTIONS(923), - [sym_crate] = ACTIONS(923), - [sym_metavariable] = ACTIONS(925), - [sym__raw_string_literal_start] = ACTIONS(925), - [sym_float_literal] = ACTIONS(925), - }, - [156] = { - [sym_line_comment] = STATE(156), - [sym_block_comment] = STATE(156), - [sym_identifier] = ACTIONS(927), - [anon_sym_SEMI] = ACTIONS(929), - [anon_sym_LPAREN] = ACTIONS(929), - [anon_sym_RPAREN] = ACTIONS(929), - [anon_sym_LBRACK] = ACTIONS(929), - [anon_sym_RBRACK] = ACTIONS(929), - [anon_sym_LBRACE] = ACTIONS(929), - [anon_sym_RBRACE] = ACTIONS(929), - [anon_sym_EQ_GT] = ACTIONS(929), - [anon_sym_COLON] = ACTIONS(927), - [anon_sym_DOLLAR] = ACTIONS(927), - [anon_sym_PLUS] = ACTIONS(927), - [anon_sym_STAR] = ACTIONS(927), - [anon_sym_QMARK] = ACTIONS(929), - [anon_sym_u8] = ACTIONS(927), - [anon_sym_i8] = ACTIONS(927), - [anon_sym_u16] = ACTIONS(927), - [anon_sym_i16] = ACTIONS(927), - [anon_sym_u32] = ACTIONS(927), - [anon_sym_i32] = ACTIONS(927), - [anon_sym_u64] = ACTIONS(927), - [anon_sym_i64] = ACTIONS(927), - [anon_sym_u128] = ACTIONS(927), - [anon_sym_i128] = ACTIONS(927), - [anon_sym_isize] = ACTIONS(927), - [anon_sym_usize] = ACTIONS(927), - [anon_sym_f32] = ACTIONS(927), - [anon_sym_f64] = ACTIONS(927), - [anon_sym_bool] = ACTIONS(927), - [anon_sym_str] = ACTIONS(927), - [anon_sym_char] = ACTIONS(927), - [anon_sym_DASH] = ACTIONS(927), - [anon_sym_SLASH] = ACTIONS(927), - [anon_sym_PERCENT] = ACTIONS(927), - [anon_sym_CARET] = ACTIONS(927), - [anon_sym_BANG] = ACTIONS(927), - [anon_sym_AMP] = ACTIONS(927), - [anon_sym_PIPE] = ACTIONS(927), - [anon_sym_AMP_AMP] = ACTIONS(929), - [anon_sym_PIPE_PIPE] = ACTIONS(929), - [anon_sym_LT_LT] = ACTIONS(927), - [anon_sym_GT_GT] = ACTIONS(927), - [anon_sym_PLUS_EQ] = ACTIONS(929), - [anon_sym_DASH_EQ] = ACTIONS(929), - [anon_sym_STAR_EQ] = ACTIONS(929), - [anon_sym_SLASH_EQ] = ACTIONS(929), - [anon_sym_PERCENT_EQ] = ACTIONS(929), - [anon_sym_CARET_EQ] = ACTIONS(929), - [anon_sym_AMP_EQ] = ACTIONS(929), - [anon_sym_PIPE_EQ] = ACTIONS(929), - [anon_sym_LT_LT_EQ] = ACTIONS(929), - [anon_sym_GT_GT_EQ] = ACTIONS(929), - [anon_sym_EQ] = ACTIONS(927), - [anon_sym_EQ_EQ] = ACTIONS(929), - [anon_sym_BANG_EQ] = ACTIONS(929), - [anon_sym_GT] = ACTIONS(927), - [anon_sym_LT] = ACTIONS(927), - [anon_sym_GT_EQ] = ACTIONS(929), - [anon_sym_LT_EQ] = ACTIONS(929), - [anon_sym_AT] = ACTIONS(929), - [anon_sym__] = ACTIONS(927), - [anon_sym_DOT] = ACTIONS(927), - [anon_sym_DOT_DOT] = ACTIONS(927), - [anon_sym_DOT_DOT_DOT] = ACTIONS(929), - [anon_sym_DOT_DOT_EQ] = ACTIONS(929), - [anon_sym_COMMA] = ACTIONS(929), - [anon_sym_COLON_COLON] = ACTIONS(929), - [anon_sym_DASH_GT] = ACTIONS(929), - [anon_sym_POUND] = ACTIONS(929), - [anon_sym_SQUOTE] = ACTIONS(927), - [anon_sym_as] = ACTIONS(927), - [anon_sym_async] = ACTIONS(927), - [anon_sym_await] = ACTIONS(927), - [anon_sym_break] = ACTIONS(927), - [anon_sym_const] = ACTIONS(927), - [anon_sym_continue] = ACTIONS(927), - [anon_sym_default] = ACTIONS(927), - [anon_sym_enum] = ACTIONS(927), - [anon_sym_fn] = ACTIONS(927), - [anon_sym_for] = ACTIONS(927), - [anon_sym_gen] = ACTIONS(927), - [anon_sym_if] = ACTIONS(927), - [anon_sym_impl] = ACTIONS(927), - [anon_sym_let] = ACTIONS(927), - [anon_sym_loop] = ACTIONS(927), - [anon_sym_match] = ACTIONS(927), - [anon_sym_mod] = ACTIONS(927), - [anon_sym_pub] = ACTIONS(927), - [anon_sym_return] = ACTIONS(927), - [anon_sym_static] = ACTIONS(927), - [anon_sym_struct] = ACTIONS(927), - [anon_sym_trait] = ACTIONS(927), - [anon_sym_type] = ACTIONS(927), - [anon_sym_union] = ACTIONS(927), - [anon_sym_unsafe] = ACTIONS(927), - [anon_sym_use] = ACTIONS(927), - [anon_sym_where] = ACTIONS(927), - [anon_sym_while] = ACTIONS(927), - [sym_mutable_specifier] = ACTIONS(927), - [sym_integer_literal] = ACTIONS(929), - [aux_sym_string_literal_token1] = ACTIONS(929), - [sym_char_literal] = ACTIONS(929), - [anon_sym_true] = ACTIONS(927), - [anon_sym_false] = ACTIONS(927), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(927), - [sym_super] = ACTIONS(927), - [sym_crate] = ACTIONS(927), - [sym_metavariable] = ACTIONS(929), - [sym__raw_string_literal_start] = ACTIONS(929), - [sym_float_literal] = ACTIONS(929), - }, - [157] = { - [sym_line_comment] = STATE(157), - [sym_block_comment] = STATE(157), - [aux_sym__non_special_token_repeat1] = STATE(179), - [sym_identifier] = ACTIONS(931), - [anon_sym_SEMI] = ACTIONS(676), - [anon_sym_LPAREN] = ACTIONS(933), - [anon_sym_RPAREN] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(933), - [anon_sym_RBRACK] = ACTIONS(933), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_RBRACE] = ACTIONS(933), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_COLON] = ACTIONS(686), - [anon_sym_DOLLAR] = ACTIONS(933), - [anon_sym_PLUS] = ACTIONS(686), - [anon_sym_STAR] = ACTIONS(686), - [anon_sym_QMARK] = ACTIONS(676), - [anon_sym_u8] = ACTIONS(931), - [anon_sym_i8] = ACTIONS(931), - [anon_sym_u16] = ACTIONS(931), - [anon_sym_i16] = ACTIONS(931), - [anon_sym_u32] = ACTIONS(931), - [anon_sym_i32] = ACTIONS(931), - [anon_sym_u64] = ACTIONS(931), - [anon_sym_i64] = ACTIONS(931), - [anon_sym_u128] = ACTIONS(931), - [anon_sym_i128] = ACTIONS(931), - [anon_sym_isize] = ACTIONS(931), - [anon_sym_usize] = ACTIONS(931), - [anon_sym_f32] = ACTIONS(931), - [anon_sym_f64] = ACTIONS(931), - [anon_sym_bool] = ACTIONS(931), - [anon_sym_str] = ACTIONS(931), - [anon_sym_char] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(686), - [anon_sym_SLASH] = ACTIONS(686), - [anon_sym_PERCENT] = ACTIONS(686), - [anon_sym_CARET] = ACTIONS(686), - [anon_sym_BANG] = ACTIONS(686), - [anon_sym_AMP] = ACTIONS(686), - [anon_sym_PIPE] = ACTIONS(686), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_LT_LT] = ACTIONS(686), - [anon_sym_GT_GT] = ACTIONS(686), - [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_CARET_EQ] = ACTIONS(676), - [anon_sym_AMP_EQ] = ACTIONS(676), - [anon_sym_PIPE_EQ] = ACTIONS(676), - [anon_sym_LT_LT_EQ] = ACTIONS(676), - [anon_sym_GT_GT_EQ] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(686), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(686), - [anon_sym_LT] = ACTIONS(686), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_AT] = ACTIONS(676), - [anon_sym__] = ACTIONS(686), - [anon_sym_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT] = ACTIONS(686), - [anon_sym_DOT_DOT_DOT] = ACTIONS(676), - [anon_sym_DOT_DOT_EQ] = ACTIONS(676), - [anon_sym_COMMA] = ACTIONS(676), - [anon_sym_COLON_COLON] = ACTIONS(676), - [anon_sym_DASH_GT] = ACTIONS(676), - [anon_sym_POUND] = ACTIONS(676), - [anon_sym_SQUOTE] = ACTIONS(931), - [anon_sym_as] = ACTIONS(931), - [anon_sym_async] = ACTIONS(931), - [anon_sym_await] = ACTIONS(931), - [anon_sym_break] = ACTIONS(931), - [anon_sym_const] = ACTIONS(931), - [anon_sym_continue] = ACTIONS(931), - [anon_sym_default] = ACTIONS(931), - [anon_sym_enum] = ACTIONS(931), - [anon_sym_fn] = ACTIONS(931), - [anon_sym_for] = ACTIONS(931), - [anon_sym_gen] = ACTIONS(931), - [anon_sym_if] = ACTIONS(931), - [anon_sym_impl] = ACTIONS(931), - [anon_sym_let] = ACTIONS(931), - [anon_sym_loop] = ACTIONS(931), - [anon_sym_match] = ACTIONS(931), - [anon_sym_mod] = ACTIONS(931), - [anon_sym_pub] = ACTIONS(931), - [anon_sym_return] = ACTIONS(931), - [anon_sym_static] = ACTIONS(931), - [anon_sym_struct] = ACTIONS(931), - [anon_sym_trait] = ACTIONS(931), - [anon_sym_type] = ACTIONS(931), - [anon_sym_union] = ACTIONS(931), - [anon_sym_unsafe] = ACTIONS(931), - [anon_sym_use] = ACTIONS(931), - [anon_sym_where] = ACTIONS(931), - [anon_sym_while] = ACTIONS(931), - [sym_mutable_specifier] = ACTIONS(931), - [sym_integer_literal] = ACTIONS(933), - [aux_sym_string_literal_token1] = ACTIONS(933), - [sym_char_literal] = ACTIONS(933), - [anon_sym_true] = ACTIONS(931), - [anon_sym_false] = ACTIONS(931), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(931), - [sym_super] = ACTIONS(931), - [sym_crate] = ACTIONS(931), - [sym__raw_string_literal_start] = ACTIONS(933), - [sym_float_literal] = ACTIONS(933), - }, - [158] = { - [sym_attribute_item] = STATE(1011), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1623), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(158), - [sym_block_comment] = STATE(158), - [aux_sym_enum_variant_list_repeat1] = STATE(207), + [153] = { + [sym_attribute_item] = STATE(1157), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1885), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(153), + [sym_block_comment] = STATE(153), + [aux_sym_mod_item_repeat1] = STATE(214), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(925), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(935), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -34844,125 +35627,473 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [159] = { - [sym_line_comment] = STATE(159), - [sym_block_comment] = STATE(159), - [sym_identifier] = ACTIONS(937), - [anon_sym_SEMI] = ACTIONS(939), - [anon_sym_LPAREN] = ACTIONS(939), - [anon_sym_RPAREN] = ACTIONS(939), - [anon_sym_LBRACK] = ACTIONS(939), - [anon_sym_RBRACK] = ACTIONS(939), - [anon_sym_LBRACE] = ACTIONS(939), - [anon_sym_RBRACE] = ACTIONS(939), - [anon_sym_EQ_GT] = ACTIONS(939), - [anon_sym_COLON] = ACTIONS(937), - [anon_sym_DOLLAR] = ACTIONS(937), - [anon_sym_PLUS] = ACTIONS(937), - [anon_sym_STAR] = ACTIONS(937), - [anon_sym_QMARK] = ACTIONS(939), - [anon_sym_u8] = ACTIONS(937), - [anon_sym_i8] = ACTIONS(937), - [anon_sym_u16] = ACTIONS(937), - [anon_sym_i16] = ACTIONS(937), - [anon_sym_u32] = ACTIONS(937), - [anon_sym_i32] = ACTIONS(937), - [anon_sym_u64] = ACTIONS(937), - [anon_sym_i64] = ACTIONS(937), - [anon_sym_u128] = ACTIONS(937), - [anon_sym_i128] = ACTIONS(937), - [anon_sym_isize] = ACTIONS(937), - [anon_sym_usize] = ACTIONS(937), - [anon_sym_f32] = ACTIONS(937), - [anon_sym_f64] = ACTIONS(937), - [anon_sym_bool] = ACTIONS(937), - [anon_sym_str] = ACTIONS(937), - [anon_sym_char] = ACTIONS(937), - [anon_sym_DASH] = ACTIONS(937), - [anon_sym_SLASH] = ACTIONS(937), - [anon_sym_PERCENT] = ACTIONS(937), - [anon_sym_CARET] = ACTIONS(937), - [anon_sym_BANG] = ACTIONS(937), - [anon_sym_AMP] = ACTIONS(937), - [anon_sym_PIPE] = ACTIONS(937), - [anon_sym_AMP_AMP] = ACTIONS(939), - [anon_sym_PIPE_PIPE] = ACTIONS(939), - [anon_sym_LT_LT] = ACTIONS(937), - [anon_sym_GT_GT] = ACTIONS(937), - [anon_sym_PLUS_EQ] = ACTIONS(939), - [anon_sym_DASH_EQ] = ACTIONS(939), - [anon_sym_STAR_EQ] = ACTIONS(939), - [anon_sym_SLASH_EQ] = ACTIONS(939), - [anon_sym_PERCENT_EQ] = ACTIONS(939), - [anon_sym_CARET_EQ] = ACTIONS(939), - [anon_sym_AMP_EQ] = ACTIONS(939), - [anon_sym_PIPE_EQ] = ACTIONS(939), - [anon_sym_LT_LT_EQ] = ACTIONS(939), - [anon_sym_GT_GT_EQ] = ACTIONS(939), - [anon_sym_EQ] = ACTIONS(937), - [anon_sym_EQ_EQ] = ACTIONS(939), - [anon_sym_BANG_EQ] = ACTIONS(939), - [anon_sym_GT] = ACTIONS(937), - [anon_sym_LT] = ACTIONS(937), - [anon_sym_GT_EQ] = ACTIONS(939), - [anon_sym_LT_EQ] = ACTIONS(939), - [anon_sym_AT] = ACTIONS(939), - [anon_sym__] = ACTIONS(937), - [anon_sym_DOT] = ACTIONS(937), + [154] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3303), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2016), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1794), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_let_condition] = STATE(3218), + [sym__let_chain] = STATE(3220), + [sym__condition] = STATE(2884), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(154), + [sym_block_comment] = STATE(154), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(903), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_BANG] = ACTIONS(903), + [anon_sym_AMP] = ACTIONS(905), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(907), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(495), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(497), + [anon_sym_default] = ACTIONS(475), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(499), + [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(909), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(501), + [anon_sym_static] = ACTIONS(503), + [anon_sym_union] = ACTIONS(475), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(505), + [anon_sym_move] = ACTIONS(507), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [155] = { + [sym_attribute_item] = STATE(1157), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1885), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(155), + [sym_block_comment] = STATE(155), + [aux_sym_mod_item_repeat1] = STATE(214), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(927), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(748), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [156] = { + [sym_line_comment] = STATE(156), + [sym_block_comment] = STATE(156), + [sym_identifier] = ACTIONS(929), + [anon_sym_SEMI] = ACTIONS(931), + [anon_sym_LPAREN] = ACTIONS(931), + [anon_sym_RPAREN] = ACTIONS(931), + [anon_sym_LBRACK] = ACTIONS(931), + [anon_sym_RBRACK] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(931), + [anon_sym_RBRACE] = ACTIONS(931), + [anon_sym_EQ_GT] = ACTIONS(931), + [anon_sym_COLON] = ACTIONS(929), + [anon_sym_DOLLAR] = ACTIONS(929), + [anon_sym_PLUS] = ACTIONS(929), + [anon_sym_STAR] = ACTIONS(929), + [anon_sym_QMARK] = ACTIONS(931), + [anon_sym_u8] = ACTIONS(929), + [anon_sym_i8] = ACTIONS(929), + [anon_sym_u16] = ACTIONS(929), + [anon_sym_i16] = ACTIONS(929), + [anon_sym_u32] = ACTIONS(929), + [anon_sym_i32] = ACTIONS(929), + [anon_sym_u64] = ACTIONS(929), + [anon_sym_i64] = ACTIONS(929), + [anon_sym_u128] = ACTIONS(929), + [anon_sym_i128] = ACTIONS(929), + [anon_sym_isize] = ACTIONS(929), + [anon_sym_usize] = ACTIONS(929), + [anon_sym_f32] = ACTIONS(929), + [anon_sym_f64] = ACTIONS(929), + [anon_sym_bool] = ACTIONS(929), + [anon_sym_str] = ACTIONS(929), + [anon_sym_char] = ACTIONS(929), + [anon_sym_DASH] = ACTIONS(929), + [anon_sym_SLASH] = ACTIONS(929), + [anon_sym_PERCENT] = ACTIONS(929), + [anon_sym_CARET] = ACTIONS(929), + [anon_sym_BANG] = ACTIONS(929), + [anon_sym_AMP] = ACTIONS(929), + [anon_sym_PIPE] = ACTIONS(929), + [anon_sym_AMP_AMP] = ACTIONS(931), + [anon_sym_PIPE_PIPE] = ACTIONS(931), + [anon_sym_LT_LT] = ACTIONS(929), + [anon_sym_GT_GT] = ACTIONS(929), + [anon_sym_PLUS_EQ] = ACTIONS(931), + [anon_sym_DASH_EQ] = ACTIONS(931), + [anon_sym_STAR_EQ] = ACTIONS(931), + [anon_sym_SLASH_EQ] = ACTIONS(931), + [anon_sym_PERCENT_EQ] = ACTIONS(931), + [anon_sym_CARET_EQ] = ACTIONS(931), + [anon_sym_AMP_EQ] = ACTIONS(931), + [anon_sym_PIPE_EQ] = ACTIONS(931), + [anon_sym_LT_LT_EQ] = ACTIONS(931), + [anon_sym_GT_GT_EQ] = ACTIONS(931), + [anon_sym_EQ] = ACTIONS(929), + [anon_sym_EQ_EQ] = ACTIONS(931), + [anon_sym_BANG_EQ] = ACTIONS(931), + [anon_sym_GT] = ACTIONS(929), + [anon_sym_LT] = ACTIONS(929), + [anon_sym_GT_EQ] = ACTIONS(931), + [anon_sym_LT_EQ] = ACTIONS(931), + [anon_sym_AT] = ACTIONS(931), + [anon_sym__] = ACTIONS(929), + [anon_sym_DOT] = ACTIONS(929), + [anon_sym_DOT_DOT] = ACTIONS(929), + [anon_sym_DOT_DOT_DOT] = ACTIONS(931), + [anon_sym_DOT_DOT_EQ] = ACTIONS(931), + [anon_sym_COMMA] = ACTIONS(931), + [anon_sym_COLON_COLON] = ACTIONS(931), + [anon_sym_DASH_GT] = ACTIONS(931), + [anon_sym_POUND] = ACTIONS(931), + [anon_sym_SQUOTE] = ACTIONS(929), + [anon_sym_as] = ACTIONS(929), + [anon_sym_async] = ACTIONS(929), + [anon_sym_await] = ACTIONS(929), + [anon_sym_break] = ACTIONS(929), + [anon_sym_const] = ACTIONS(929), + [anon_sym_continue] = ACTIONS(929), + [anon_sym_default] = ACTIONS(929), + [anon_sym_enum] = ACTIONS(929), + [anon_sym_fn] = ACTIONS(929), + [anon_sym_for] = ACTIONS(929), + [anon_sym_gen] = ACTIONS(929), + [anon_sym_if] = ACTIONS(929), + [anon_sym_impl] = ACTIONS(929), + [anon_sym_let] = ACTIONS(929), + [anon_sym_loop] = ACTIONS(929), + [anon_sym_match] = ACTIONS(929), + [anon_sym_mod] = ACTIONS(929), + [anon_sym_pub] = ACTIONS(929), + [anon_sym_return] = ACTIONS(929), + [anon_sym_static] = ACTIONS(929), + [anon_sym_struct] = ACTIONS(929), + [anon_sym_trait] = ACTIONS(929), + [anon_sym_type] = ACTIONS(929), + [anon_sym_union] = ACTIONS(929), + [anon_sym_unsafe] = ACTIONS(929), + [anon_sym_use] = ACTIONS(929), + [anon_sym_where] = ACTIONS(929), + [anon_sym_while] = ACTIONS(929), + [sym_mutable_specifier] = ACTIONS(929), + [sym_integer_literal] = ACTIONS(931), + [aux_sym_string_literal_token1] = ACTIONS(931), + [sym_char_literal] = ACTIONS(931), + [anon_sym_true] = ACTIONS(929), + [anon_sym_false] = ACTIONS(929), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(929), + [sym_super] = ACTIONS(929), + [sym_crate] = ACTIONS(929), + [sym_metavariable] = ACTIONS(931), + [sym__raw_string_literal_start] = ACTIONS(931), + [sym_float_literal] = ACTIONS(931), + }, + [157] = { + [sym_bracketed_type] = STATE(4005), + [sym_generic_function] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3402), + [sym__expression_except_range] = STATE(1901), + [sym__expression] = STATE(2125), + [sym_macro_invocation] = STATE(1963), + [sym_scoped_identifier] = STATE(1832), + [sym_scoped_type_identifier_in_expression_position] = STATE(3592), + [sym_range_expression] = STATE(1960), + [sym_unary_expression] = STATE(1957), + [sym_try_expression] = STATE(1957), + [sym_reference_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_assignment_expression] = STATE(1957), + [sym_compound_assignment_expr] = STATE(1957), + [sym_type_cast_expression] = STATE(1957), + [sym_return_expression] = STATE(1957), + [sym_yield_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_array_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_tuple_expression] = STATE(1957), + [sym_unit_expression] = STATE(1957), + [sym_struct_expression] = STATE(1957), + [sym_if_expression] = STATE(1957), + [sym_let_condition] = STATE(3712), + [sym__let_chain] = STATE(3719), + [sym__condition] = STATE(3831), + [sym_match_expression] = STATE(1957), + [sym_while_expression] = STATE(1957), + [sym_loop_expression] = STATE(1957), + [sym_for_expression] = STATE(1957), + [sym_const_block] = STATE(1957), + [sym_closure_expression] = STATE(1957), + [sym_closure_parameters] = STATE(235), + [sym_label] = STATE(4110), + [sym_break_expression] = STATE(1957), + [sym_continue_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_await_expression] = STATE(1957), + [sym_field_expression] = STATE(1898), + [sym_unsafe_block] = STATE(1957), + [sym_async_block] = STATE(1957), + [sym_gen_block] = STATE(1957), + [sym_try_block] = STATE(1957), + [sym_block] = STATE(1957), + [sym__literal] = STATE(1957), + [sym_string_literal] = STATE(1932), + [sym_raw_string_literal] = STATE(1932), + [sym_boolean_literal] = STATE(1932), + [sym_line_comment] = STATE(157), + [sym_block_comment] = STATE(157), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_LBRACK] = ACTIONS(513), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(933), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(933), + [anon_sym_BANG] = ACTIONS(933), + [anon_sym_AMP] = ACTIONS(935), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(937), - [anon_sym_DOT_DOT_DOT] = ACTIONS(939), - [anon_sym_DOT_DOT_EQ] = ACTIONS(939), - [anon_sym_COMMA] = ACTIONS(939), - [anon_sym_COLON_COLON] = ACTIONS(939), - [anon_sym_DASH_GT] = ACTIONS(939), - [anon_sym_POUND] = ACTIONS(939), - [anon_sym_SQUOTE] = ACTIONS(937), - [anon_sym_as] = ACTIONS(937), - [anon_sym_async] = ACTIONS(937), - [anon_sym_await] = ACTIONS(937), - [anon_sym_break] = ACTIONS(937), - [anon_sym_const] = ACTIONS(937), - [anon_sym_continue] = ACTIONS(937), - [anon_sym_default] = ACTIONS(937), - [anon_sym_enum] = ACTIONS(937), - [anon_sym_fn] = ACTIONS(937), - [anon_sym_for] = ACTIONS(937), - [anon_sym_gen] = ACTIONS(937), - [anon_sym_if] = ACTIONS(937), - [anon_sym_impl] = ACTIONS(937), - [anon_sym_let] = ACTIONS(937), - [anon_sym_loop] = ACTIONS(937), - [anon_sym_match] = ACTIONS(937), - [anon_sym_mod] = ACTIONS(937), - [anon_sym_pub] = ACTIONS(937), - [anon_sym_return] = ACTIONS(937), - [anon_sym_static] = ACTIONS(937), - [anon_sym_struct] = ACTIONS(937), - [anon_sym_trait] = ACTIONS(937), - [anon_sym_type] = ACTIONS(937), - [anon_sym_union] = ACTIONS(937), - [anon_sym_unsafe] = ACTIONS(937), - [anon_sym_use] = ACTIONS(937), - [anon_sym_where] = ACTIONS(937), - [anon_sym_while] = ACTIONS(937), - [sym_mutable_specifier] = ACTIONS(937), - [sym_integer_literal] = ACTIONS(939), - [aux_sym_string_literal_token1] = ACTIONS(939), - [sym_char_literal] = ACTIONS(939), - [anon_sym_true] = ACTIONS(937), - [anon_sym_false] = ACTIONS(937), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(937), - [sym_super] = ACTIONS(937), - [sym_crate] = ACTIONS(937), - [sym_metavariable] = ACTIONS(939), - [sym__raw_string_literal_start] = ACTIONS(939), - [sym_float_literal] = ACTIONS(939), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_let] = ACTIONS(939), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), }, - [160] = { - [sym_line_comment] = STATE(160), - [sym_block_comment] = STATE(160), + [158] = { + [sym_line_comment] = STATE(158), + [sym_block_comment] = STATE(158), [sym_identifier] = ACTIONS(941), [anon_sym_SEMI] = ACTIONS(943), [anon_sym_LPAREN] = ACTIONS(943), @@ -35076,9 +36207,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(943), [sym_float_literal] = ACTIONS(943), }, - [161] = { - [sym_line_comment] = STATE(161), - [sym_block_comment] = STATE(161), + [159] = { + [sym_line_comment] = STATE(159), + [sym_block_comment] = STATE(159), [sym_identifier] = ACTIONS(945), [anon_sym_SEMI] = ACTIONS(947), [anon_sym_LPAREN] = ACTIONS(947), @@ -35192,58 +36323,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(947), [sym_float_literal] = ACTIONS(947), }, - [162] = { - [sym_attribute_item] = STATE(1011), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1623), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(162), - [sym_block_comment] = STATE(162), - [aux_sym_enum_variant_list_repeat1] = STATE(207), + [160] = { + [sym_attribute_item] = STATE(1157), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1885), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(160), + [sym_block_comment] = STATE(160), + [aux_sym_mod_item_repeat1] = STATE(214), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_RPAREN] = ACTIONS(949), @@ -35308,178 +36439,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [163] = { - [sym_line_comment] = STATE(163), - [sym_block_comment] = STATE(163), - [sym_identifier] = ACTIONS(951), - [anon_sym_SEMI] = ACTIONS(953), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_RPAREN] = ACTIONS(953), - [anon_sym_LBRACK] = ACTIONS(953), - [anon_sym_RBRACK] = ACTIONS(953), - [anon_sym_LBRACE] = ACTIONS(953), - [anon_sym_RBRACE] = ACTIONS(953), - [anon_sym_EQ_GT] = ACTIONS(953), - [anon_sym_COLON] = ACTIONS(951), - [anon_sym_DOLLAR] = ACTIONS(951), - [anon_sym_PLUS] = ACTIONS(951), - [anon_sym_STAR] = ACTIONS(951), - [anon_sym_QMARK] = ACTIONS(953), - [anon_sym_u8] = ACTIONS(951), - [anon_sym_i8] = ACTIONS(951), - [anon_sym_u16] = ACTIONS(951), - [anon_sym_i16] = ACTIONS(951), - [anon_sym_u32] = ACTIONS(951), - [anon_sym_i32] = ACTIONS(951), - [anon_sym_u64] = ACTIONS(951), - [anon_sym_i64] = ACTIONS(951), - [anon_sym_u128] = ACTIONS(951), - [anon_sym_i128] = ACTIONS(951), - [anon_sym_isize] = ACTIONS(951), - [anon_sym_usize] = ACTIONS(951), - [anon_sym_f32] = ACTIONS(951), - [anon_sym_f64] = ACTIONS(951), - [anon_sym_bool] = ACTIONS(951), - [anon_sym_str] = ACTIONS(951), - [anon_sym_char] = ACTIONS(951), - [anon_sym_DASH] = ACTIONS(951), - [anon_sym_SLASH] = ACTIONS(951), - [anon_sym_PERCENT] = ACTIONS(951), - [anon_sym_CARET] = ACTIONS(951), - [anon_sym_BANG] = ACTIONS(951), - [anon_sym_AMP] = ACTIONS(951), - [anon_sym_PIPE] = ACTIONS(951), - [anon_sym_AMP_AMP] = ACTIONS(953), - [anon_sym_PIPE_PIPE] = ACTIONS(953), - [anon_sym_LT_LT] = ACTIONS(951), - [anon_sym_GT_GT] = ACTIONS(951), - [anon_sym_PLUS_EQ] = ACTIONS(953), - [anon_sym_DASH_EQ] = ACTIONS(953), - [anon_sym_STAR_EQ] = ACTIONS(953), - [anon_sym_SLASH_EQ] = ACTIONS(953), - [anon_sym_PERCENT_EQ] = ACTIONS(953), - [anon_sym_CARET_EQ] = ACTIONS(953), - [anon_sym_AMP_EQ] = ACTIONS(953), - [anon_sym_PIPE_EQ] = ACTIONS(953), - [anon_sym_LT_LT_EQ] = ACTIONS(953), - [anon_sym_GT_GT_EQ] = ACTIONS(953), - [anon_sym_EQ] = ACTIONS(951), - [anon_sym_EQ_EQ] = ACTIONS(953), - [anon_sym_BANG_EQ] = ACTIONS(953), - [anon_sym_GT] = ACTIONS(951), - [anon_sym_LT] = ACTIONS(951), - [anon_sym_GT_EQ] = ACTIONS(953), - [anon_sym_LT_EQ] = ACTIONS(953), - [anon_sym_AT] = ACTIONS(953), - [anon_sym__] = ACTIONS(951), - [anon_sym_DOT] = ACTIONS(951), - [anon_sym_DOT_DOT] = ACTIONS(951), - [anon_sym_DOT_DOT_DOT] = ACTIONS(953), - [anon_sym_DOT_DOT_EQ] = ACTIONS(953), - [anon_sym_COMMA] = ACTIONS(953), - [anon_sym_COLON_COLON] = ACTIONS(953), - [anon_sym_DASH_GT] = ACTIONS(953), - [anon_sym_POUND] = ACTIONS(953), - [anon_sym_SQUOTE] = ACTIONS(951), - [anon_sym_as] = ACTIONS(951), - [anon_sym_async] = ACTIONS(951), - [anon_sym_await] = ACTIONS(951), - [anon_sym_break] = ACTIONS(951), - [anon_sym_const] = ACTIONS(951), - [anon_sym_continue] = ACTIONS(951), - [anon_sym_default] = ACTIONS(951), - [anon_sym_enum] = ACTIONS(951), - [anon_sym_fn] = ACTIONS(951), - [anon_sym_for] = ACTIONS(951), - [anon_sym_gen] = ACTIONS(951), - [anon_sym_if] = ACTIONS(951), - [anon_sym_impl] = ACTIONS(951), - [anon_sym_let] = ACTIONS(951), - [anon_sym_loop] = ACTIONS(951), - [anon_sym_match] = ACTIONS(951), - [anon_sym_mod] = ACTIONS(951), - [anon_sym_pub] = ACTIONS(951), - [anon_sym_return] = ACTIONS(951), - [anon_sym_static] = ACTIONS(951), - [anon_sym_struct] = ACTIONS(951), - [anon_sym_trait] = ACTIONS(951), - [anon_sym_type] = ACTIONS(951), - [anon_sym_union] = ACTIONS(951), - [anon_sym_unsafe] = ACTIONS(951), - [anon_sym_use] = ACTIONS(951), - [anon_sym_where] = ACTIONS(951), - [anon_sym_while] = ACTIONS(951), - [sym_mutable_specifier] = ACTIONS(951), - [sym_integer_literal] = ACTIONS(953), - [aux_sym_string_literal_token1] = ACTIONS(953), - [sym_char_literal] = ACTIONS(953), - [anon_sym_true] = ACTIONS(951), - [anon_sym_false] = ACTIONS(951), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(951), - [sym_super] = ACTIONS(951), - [sym_crate] = ACTIONS(951), - [sym_metavariable] = ACTIONS(953), - [sym__raw_string_literal_start] = ACTIONS(953), - [sym_float_literal] = ACTIONS(953), - }, - [164] = { - [sym_attribute_item] = STATE(1011), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1623), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(164), - [sym_block_comment] = STATE(164), - [aux_sym_enum_variant_list_repeat1] = STATE(207), + [161] = { + [sym_attribute_item] = STATE(1157), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1885), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(161), + [sym_block_comment] = STATE(161), + [aux_sym_mod_item_repeat1] = STATE(214), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(955), + [anon_sym_RBRACK] = ACTIONS(951), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -35540,62 +36555,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [165] = { - [sym_attribute_item] = STATE(1011), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1623), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(165), - [sym_block_comment] = STATE(165), - [aux_sym_enum_variant_list_repeat1] = STATE(207), + [162] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3303), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2016), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1794), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_let_condition] = STATE(3218), + [sym__let_chain] = STATE(3220), + [sym__condition] = STATE(3107), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(162), + [sym_block_comment] = STATE(162), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(903), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_BANG] = ACTIONS(903), + [anon_sym_AMP] = ACTIONS(905), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(907), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(495), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(497), + [anon_sym_default] = ACTIONS(475), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(499), + [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(909), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(501), + [anon_sym_static] = ACTIONS(503), + [anon_sym_union] = ACTIONS(475), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(505), + [anon_sym_move] = ACTIONS(507), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [163] = { + [sym_attribute_item] = STATE(1157), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1885), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(163), + [sym_block_comment] = STATE(163), + [aux_sym_mod_item_repeat1] = STATE(214), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(957), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(953), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -35656,177 +36787,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [166] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1687), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_let_condition] = STATE(2883), - [sym__let_chain] = STATE(2887), - [sym__condition] = STATE(2615), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(166), - [sym_block_comment] = STATE(166), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(963), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(965), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [167] = { - [sym_attribute_item] = STATE(1011), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1623), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(167), - [sym_block_comment] = STATE(167), - [aux_sym_enum_variant_list_repeat1] = STATE(207), + [164] = { + [sym_attribute_item] = STATE(1157), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1885), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(164), + [sym_block_comment] = STATE(164), + [aux_sym_mod_item_repeat1] = STATE(214), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(967), + [anon_sym_RPAREN] = ACTIONS(955), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -35888,62 +36903,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [168] = { - [sym_attribute_item] = STATE(1011), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1623), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(168), - [sym_block_comment] = STATE(168), - [aux_sym_enum_variant_list_repeat1] = STATE(207), + [165] = { + [sym_attribute_item] = STATE(1157), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1908), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(165), + [sym_block_comment] = STATE(165), + [aux_sym_mod_item_repeat1] = STATE(206), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(957), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(969), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -36004,62 +37019,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [169] = { - [sym_attribute_item] = STATE(1011), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1623), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(169), - [sym_block_comment] = STATE(169), - [aux_sym_enum_variant_list_repeat1] = STATE(207), + [166] = { + [sym_line_comment] = STATE(166), + [sym_block_comment] = STATE(166), + [sym_identifier] = ACTIONS(959), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym_LPAREN] = ACTIONS(961), + [anon_sym_RPAREN] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_RBRACK] = ACTIONS(961), + [anon_sym_LBRACE] = ACTIONS(961), + [anon_sym_RBRACE] = ACTIONS(961), + [anon_sym_EQ_GT] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(959), + [anon_sym_DOLLAR] = ACTIONS(959), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_u8] = ACTIONS(959), + [anon_sym_i8] = ACTIONS(959), + [anon_sym_u16] = ACTIONS(959), + [anon_sym_i16] = ACTIONS(959), + [anon_sym_u32] = ACTIONS(959), + [anon_sym_i32] = ACTIONS(959), + [anon_sym_u64] = ACTIONS(959), + [anon_sym_i64] = ACTIONS(959), + [anon_sym_u128] = ACTIONS(959), + [anon_sym_i128] = ACTIONS(959), + [anon_sym_isize] = ACTIONS(959), + [anon_sym_usize] = ACTIONS(959), + [anon_sym_f32] = ACTIONS(959), + [anon_sym_f64] = ACTIONS(959), + [anon_sym_bool] = ACTIONS(959), + [anon_sym_str] = ACTIONS(959), + [anon_sym_char] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_SLASH] = ACTIONS(959), + [anon_sym_PERCENT] = ACTIONS(959), + [anon_sym_CARET] = ACTIONS(959), + [anon_sym_BANG] = ACTIONS(959), + [anon_sym_AMP] = ACTIONS(959), + [anon_sym_PIPE] = ACTIONS(959), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(959), + [anon_sym_GT_GT] = ACTIONS(959), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(959), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(959), + [anon_sym_LT] = ACTIONS(959), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_AT] = ACTIONS(961), + [anon_sym__] = ACTIONS(959), + [anon_sym_DOT] = ACTIONS(959), + [anon_sym_DOT_DOT] = ACTIONS(959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(961), + [anon_sym_DOT_DOT_EQ] = ACTIONS(961), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_COLON_COLON] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [anon_sym_POUND] = ACTIONS(961), + [anon_sym_SQUOTE] = ACTIONS(959), + [anon_sym_as] = ACTIONS(959), + [anon_sym_async] = ACTIONS(959), + [anon_sym_await] = ACTIONS(959), + [anon_sym_break] = ACTIONS(959), + [anon_sym_const] = ACTIONS(959), + [anon_sym_continue] = ACTIONS(959), + [anon_sym_default] = ACTIONS(959), + [anon_sym_enum] = ACTIONS(959), + [anon_sym_fn] = ACTIONS(959), + [anon_sym_for] = ACTIONS(959), + [anon_sym_gen] = ACTIONS(959), + [anon_sym_if] = ACTIONS(959), + [anon_sym_impl] = ACTIONS(959), + [anon_sym_let] = ACTIONS(959), + [anon_sym_loop] = ACTIONS(959), + [anon_sym_match] = ACTIONS(959), + [anon_sym_mod] = ACTIONS(959), + [anon_sym_pub] = ACTIONS(959), + [anon_sym_return] = ACTIONS(959), + [anon_sym_static] = ACTIONS(959), + [anon_sym_struct] = ACTIONS(959), + [anon_sym_trait] = ACTIONS(959), + [anon_sym_type] = ACTIONS(959), + [anon_sym_union] = ACTIONS(959), + [anon_sym_unsafe] = ACTIONS(959), + [anon_sym_use] = ACTIONS(959), + [anon_sym_where] = ACTIONS(959), + [anon_sym_while] = ACTIONS(959), + [sym_mutable_specifier] = ACTIONS(959), + [sym_integer_literal] = ACTIONS(961), + [aux_sym_string_literal_token1] = ACTIONS(961), + [sym_char_literal] = ACTIONS(961), + [anon_sym_true] = ACTIONS(959), + [anon_sym_false] = ACTIONS(959), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(959), + [sym_super] = ACTIONS(959), + [sym_crate] = ACTIONS(959), + [sym_metavariable] = ACTIONS(961), + [sym__raw_string_literal_start] = ACTIONS(961), + [sym_float_literal] = ACTIONS(961), + }, + [167] = { + [sym_attribute_item] = STATE(1157), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1885), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(167), + [sym_block_comment] = STATE(167), + [aux_sym_mod_item_repeat1] = STATE(214), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(971), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(963), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -36120,125 +37251,821 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, + [168] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3303), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2016), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1794), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_let_condition] = STATE(3218), + [sym__let_chain] = STATE(3220), + [sym__condition] = STATE(2885), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(168), + [sym_block_comment] = STATE(168), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(903), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_BANG] = ACTIONS(903), + [anon_sym_AMP] = ACTIONS(905), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(907), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(495), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(497), + [anon_sym_default] = ACTIONS(475), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(499), + [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(909), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(501), + [anon_sym_static] = ACTIONS(503), + [anon_sym_union] = ACTIONS(475), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(505), + [anon_sym_move] = ACTIONS(507), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [169] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3303), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2016), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1794), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_let_condition] = STATE(3218), + [sym__let_chain] = STATE(3220), + [sym__condition] = STATE(3084), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(169), + [sym_block_comment] = STATE(169), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(903), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_BANG] = ACTIONS(903), + [anon_sym_AMP] = ACTIONS(905), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(907), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(495), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(497), + [anon_sym_default] = ACTIONS(475), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(499), + [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(909), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(501), + [anon_sym_static] = ACTIONS(503), + [anon_sym_union] = ACTIONS(475), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(505), + [anon_sym_move] = ACTIONS(507), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, [170] = { + [sym_attribute_item] = STATE(1157), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2049), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), [sym_line_comment] = STATE(170), [sym_block_comment] = STATE(170), - [sym_identifier] = ACTIONS(754), - [anon_sym_SEMI] = ACTIONS(756), - [anon_sym_LPAREN] = ACTIONS(756), - [anon_sym_RPAREN] = ACTIONS(756), - [anon_sym_LBRACK] = ACTIONS(756), - [anon_sym_RBRACK] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(756), - [anon_sym_RBRACE] = ACTIONS(756), - [anon_sym_EQ_GT] = ACTIONS(756), - [anon_sym_COLON] = ACTIONS(754), - [anon_sym_DOLLAR] = ACTIONS(754), - [anon_sym_PLUS] = ACTIONS(754), - [anon_sym_STAR] = ACTIONS(754), - [anon_sym_QMARK] = ACTIONS(756), - [anon_sym_u8] = ACTIONS(754), - [anon_sym_i8] = ACTIONS(754), - [anon_sym_u16] = ACTIONS(754), - [anon_sym_i16] = ACTIONS(754), - [anon_sym_u32] = ACTIONS(754), - [anon_sym_i32] = ACTIONS(754), - [anon_sym_u64] = ACTIONS(754), - [anon_sym_i64] = ACTIONS(754), - [anon_sym_u128] = ACTIONS(754), - [anon_sym_i128] = ACTIONS(754), - [anon_sym_isize] = ACTIONS(754), - [anon_sym_usize] = ACTIONS(754), - [anon_sym_f32] = ACTIONS(754), - [anon_sym_f64] = ACTIONS(754), - [anon_sym_bool] = ACTIONS(754), - [anon_sym_str] = ACTIONS(754), - [anon_sym_char] = ACTIONS(754), - [anon_sym_DASH] = ACTIONS(754), - [anon_sym_SLASH] = ACTIONS(754), - [anon_sym_PERCENT] = ACTIONS(754), - [anon_sym_CARET] = ACTIONS(754), - [anon_sym_BANG] = ACTIONS(754), - [anon_sym_AMP] = ACTIONS(754), - [anon_sym_PIPE] = ACTIONS(754), - [anon_sym_AMP_AMP] = ACTIONS(756), - [anon_sym_PIPE_PIPE] = ACTIONS(756), - [anon_sym_LT_LT] = ACTIONS(754), - [anon_sym_GT_GT] = ACTIONS(754), - [anon_sym_PLUS_EQ] = ACTIONS(756), - [anon_sym_DASH_EQ] = ACTIONS(756), - [anon_sym_STAR_EQ] = ACTIONS(756), - [anon_sym_SLASH_EQ] = ACTIONS(756), - [anon_sym_PERCENT_EQ] = ACTIONS(756), - [anon_sym_CARET_EQ] = ACTIONS(756), - [anon_sym_AMP_EQ] = ACTIONS(756), - [anon_sym_PIPE_EQ] = ACTIONS(756), - [anon_sym_LT_LT_EQ] = ACTIONS(756), - [anon_sym_GT_GT_EQ] = ACTIONS(756), - [anon_sym_EQ] = ACTIONS(754), - [anon_sym_EQ_EQ] = ACTIONS(756), - [anon_sym_BANG_EQ] = ACTIONS(756), - [anon_sym_GT] = ACTIONS(754), - [anon_sym_LT] = ACTIONS(754), - [anon_sym_GT_EQ] = ACTIONS(756), - [anon_sym_LT_EQ] = ACTIONS(756), - [anon_sym_AT] = ACTIONS(756), - [anon_sym__] = ACTIONS(754), - [anon_sym_DOT] = ACTIONS(754), - [anon_sym_DOT_DOT] = ACTIONS(754), - [anon_sym_DOT_DOT_DOT] = ACTIONS(756), - [anon_sym_DOT_DOT_EQ] = ACTIONS(756), - [anon_sym_COMMA] = ACTIONS(756), - [anon_sym_COLON_COLON] = ACTIONS(756), - [anon_sym_DASH_GT] = ACTIONS(756), - [anon_sym_POUND] = ACTIONS(756), - [anon_sym_SQUOTE] = ACTIONS(754), - [anon_sym_as] = ACTIONS(754), - [anon_sym_async] = ACTIONS(754), - [anon_sym_await] = ACTIONS(754), - [anon_sym_break] = ACTIONS(754), - [anon_sym_const] = ACTIONS(754), - [anon_sym_continue] = ACTIONS(754), - [anon_sym_default] = ACTIONS(754), - [anon_sym_enum] = ACTIONS(754), - [anon_sym_fn] = ACTIONS(754), - [anon_sym_for] = ACTIONS(754), - [anon_sym_gen] = ACTIONS(754), - [anon_sym_if] = ACTIONS(754), - [anon_sym_impl] = ACTIONS(754), - [anon_sym_let] = ACTIONS(754), - [anon_sym_loop] = ACTIONS(754), - [anon_sym_match] = ACTIONS(754), - [anon_sym_mod] = ACTIONS(754), - [anon_sym_pub] = ACTIONS(754), - [anon_sym_return] = ACTIONS(754), - [anon_sym_static] = ACTIONS(754), - [anon_sym_struct] = ACTIONS(754), - [anon_sym_trait] = ACTIONS(754), - [anon_sym_type] = ACTIONS(754), - [anon_sym_union] = ACTIONS(754), - [anon_sym_unsafe] = ACTIONS(754), - [anon_sym_use] = ACTIONS(754), - [anon_sym_where] = ACTIONS(754), - [anon_sym_while] = ACTIONS(754), - [sym_mutable_specifier] = ACTIONS(754), - [sym_integer_literal] = ACTIONS(756), - [aux_sym_string_literal_token1] = ACTIONS(756), - [sym_char_literal] = ACTIONS(756), - [anon_sym_true] = ACTIONS(754), - [anon_sym_false] = ACTIONS(754), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(754), - [sym_super] = ACTIONS(754), - [sym_crate] = ACTIONS(754), - [sym_metavariable] = ACTIONS(756), - [sym__raw_string_literal_start] = ACTIONS(756), - [sym_float_literal] = ACTIONS(756), + [aux_sym_mod_item_repeat1] = STATE(209), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(965), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(748), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [171] = { + [sym_attribute_item] = STATE(1157), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1885), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), [sym_line_comment] = STATE(171), [sym_block_comment] = STATE(171), + [aux_sym_mod_item_repeat1] = STATE(214), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(967), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(748), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [172] = { + [sym_line_comment] = STATE(172), + [sym_block_comment] = STATE(172), + [sym_identifier] = ACTIONS(969), + [anon_sym_SEMI] = ACTIONS(971), + [anon_sym_LPAREN] = ACTIONS(971), + [anon_sym_RPAREN] = ACTIONS(971), + [anon_sym_LBRACK] = ACTIONS(971), + [anon_sym_RBRACK] = ACTIONS(971), + [anon_sym_LBRACE] = ACTIONS(971), + [anon_sym_RBRACE] = ACTIONS(971), + [anon_sym_EQ_GT] = ACTIONS(971), + [anon_sym_COLON] = ACTIONS(969), + [anon_sym_DOLLAR] = ACTIONS(969), + [anon_sym_PLUS] = ACTIONS(969), + [anon_sym_STAR] = ACTIONS(969), + [anon_sym_QMARK] = ACTIONS(971), + [anon_sym_u8] = ACTIONS(969), + [anon_sym_i8] = ACTIONS(969), + [anon_sym_u16] = ACTIONS(969), + [anon_sym_i16] = ACTIONS(969), + [anon_sym_u32] = ACTIONS(969), + [anon_sym_i32] = ACTIONS(969), + [anon_sym_u64] = ACTIONS(969), + [anon_sym_i64] = ACTIONS(969), + [anon_sym_u128] = ACTIONS(969), + [anon_sym_i128] = ACTIONS(969), + [anon_sym_isize] = ACTIONS(969), + [anon_sym_usize] = ACTIONS(969), + [anon_sym_f32] = ACTIONS(969), + [anon_sym_f64] = ACTIONS(969), + [anon_sym_bool] = ACTIONS(969), + [anon_sym_str] = ACTIONS(969), + [anon_sym_char] = ACTIONS(969), + [anon_sym_DASH] = ACTIONS(969), + [anon_sym_SLASH] = ACTIONS(969), + [anon_sym_PERCENT] = ACTIONS(969), + [anon_sym_CARET] = ACTIONS(969), + [anon_sym_BANG] = ACTIONS(969), + [anon_sym_AMP] = ACTIONS(969), + [anon_sym_PIPE] = ACTIONS(969), + [anon_sym_AMP_AMP] = ACTIONS(971), + [anon_sym_PIPE_PIPE] = ACTIONS(971), + [anon_sym_LT_LT] = ACTIONS(969), + [anon_sym_GT_GT] = ACTIONS(969), + [anon_sym_PLUS_EQ] = ACTIONS(971), + [anon_sym_DASH_EQ] = ACTIONS(971), + [anon_sym_STAR_EQ] = ACTIONS(971), + [anon_sym_SLASH_EQ] = ACTIONS(971), + [anon_sym_PERCENT_EQ] = ACTIONS(971), + [anon_sym_CARET_EQ] = ACTIONS(971), + [anon_sym_AMP_EQ] = ACTIONS(971), + [anon_sym_PIPE_EQ] = ACTIONS(971), + [anon_sym_LT_LT_EQ] = ACTIONS(971), + [anon_sym_GT_GT_EQ] = ACTIONS(971), + [anon_sym_EQ] = ACTIONS(969), + [anon_sym_EQ_EQ] = ACTIONS(971), + [anon_sym_BANG_EQ] = ACTIONS(971), + [anon_sym_GT] = ACTIONS(969), + [anon_sym_LT] = ACTIONS(969), + [anon_sym_GT_EQ] = ACTIONS(971), + [anon_sym_LT_EQ] = ACTIONS(971), + [anon_sym_AT] = ACTIONS(971), + [anon_sym__] = ACTIONS(969), + [anon_sym_DOT] = ACTIONS(969), + [anon_sym_DOT_DOT] = ACTIONS(969), + [anon_sym_DOT_DOT_DOT] = ACTIONS(971), + [anon_sym_DOT_DOT_EQ] = ACTIONS(971), + [anon_sym_COMMA] = ACTIONS(971), + [anon_sym_COLON_COLON] = ACTIONS(971), + [anon_sym_DASH_GT] = ACTIONS(971), + [anon_sym_POUND] = ACTIONS(971), + [anon_sym_SQUOTE] = ACTIONS(969), + [anon_sym_as] = ACTIONS(969), + [anon_sym_async] = ACTIONS(969), + [anon_sym_await] = ACTIONS(969), + [anon_sym_break] = ACTIONS(969), + [anon_sym_const] = ACTIONS(969), + [anon_sym_continue] = ACTIONS(969), + [anon_sym_default] = ACTIONS(969), + [anon_sym_enum] = ACTIONS(969), + [anon_sym_fn] = ACTIONS(969), + [anon_sym_for] = ACTIONS(969), + [anon_sym_gen] = ACTIONS(969), + [anon_sym_if] = ACTIONS(969), + [anon_sym_impl] = ACTIONS(969), + [anon_sym_let] = ACTIONS(969), + [anon_sym_loop] = ACTIONS(969), + [anon_sym_match] = ACTIONS(969), + [anon_sym_mod] = ACTIONS(969), + [anon_sym_pub] = ACTIONS(969), + [anon_sym_return] = ACTIONS(969), + [anon_sym_static] = ACTIONS(969), + [anon_sym_struct] = ACTIONS(969), + [anon_sym_trait] = ACTIONS(969), + [anon_sym_type] = ACTIONS(969), + [anon_sym_union] = ACTIONS(969), + [anon_sym_unsafe] = ACTIONS(969), + [anon_sym_use] = ACTIONS(969), + [anon_sym_where] = ACTIONS(969), + [anon_sym_while] = ACTIONS(969), + [sym_mutable_specifier] = ACTIONS(969), + [sym_integer_literal] = ACTIONS(971), + [aux_sym_string_literal_token1] = ACTIONS(971), + [sym_char_literal] = ACTIONS(971), + [anon_sym_true] = ACTIONS(969), + [anon_sym_false] = ACTIONS(969), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(969), + [sym_super] = ACTIONS(969), + [sym_crate] = ACTIONS(969), + [sym_metavariable] = ACTIONS(971), + [sym__raw_string_literal_start] = ACTIONS(971), + [sym_float_literal] = ACTIONS(971), + }, + [173] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3303), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2016), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1794), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_let_condition] = STATE(3218), + [sym__let_chain] = STATE(3220), + [sym__condition] = STATE(2912), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(173), + [sym_block_comment] = STATE(173), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(903), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_BANG] = ACTIONS(903), + [anon_sym_AMP] = ACTIONS(905), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(907), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(495), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(497), + [anon_sym_default] = ACTIONS(475), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(499), + [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(909), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(501), + [anon_sym_static] = ACTIONS(503), + [anon_sym_union] = ACTIONS(475), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(505), + [anon_sym_move] = ACTIONS(507), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [174] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3303), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2016), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1794), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_let_condition] = STATE(3218), + [sym__let_chain] = STATE(3220), + [sym__condition] = STATE(2914), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(174), + [sym_block_comment] = STATE(174), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(903), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_BANG] = ACTIONS(903), + [anon_sym_AMP] = ACTIONS(905), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(907), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(495), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(497), + [anon_sym_default] = ACTIONS(475), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(499), + [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(909), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(501), + [anon_sym_static] = ACTIONS(503), + [anon_sym_union] = ACTIONS(475), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(505), + [anon_sym_move] = ACTIONS(507), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [175] = { + [sym_line_comment] = STATE(175), + [sym_block_comment] = STATE(175), [sym_identifier] = ACTIONS(973), [anon_sym_SEMI] = ACTIONS(975), [anon_sym_LPAREN] = ACTIONS(975), @@ -36352,9 +38179,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(975), [sym_float_literal] = ACTIONS(975), }, - [172] = { - [sym_line_comment] = STATE(172), - [sym_block_comment] = STATE(172), + [176] = { + [sym_line_comment] = STATE(176), + [sym_block_comment] = STATE(176), [sym_identifier] = ACTIONS(977), [anon_sym_SEMI] = ACTIONS(979), [anon_sym_LPAREN] = ACTIONS(979), @@ -36468,241 +38295,241 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(979), [sym_float_literal] = ACTIONS(979), }, - [173] = { - [sym_line_comment] = STATE(173), - [sym_block_comment] = STATE(173), - [sym_identifier] = ACTIONS(754), - [anon_sym_SEMI] = ACTIONS(756), - [anon_sym_LPAREN] = ACTIONS(756), - [anon_sym_RPAREN] = ACTIONS(756), - [anon_sym_LBRACK] = ACTIONS(756), - [anon_sym_RBRACK] = ACTIONS(756), - [anon_sym_LBRACE] = ACTIONS(756), - [anon_sym_RBRACE] = ACTIONS(756), - [anon_sym_EQ_GT] = ACTIONS(756), - [anon_sym_COLON] = ACTIONS(981), - [anon_sym_DOLLAR] = ACTIONS(754), - [anon_sym_PLUS] = ACTIONS(754), - [anon_sym_STAR] = ACTIONS(754), - [anon_sym_QMARK] = ACTIONS(756), - [anon_sym_u8] = ACTIONS(754), - [anon_sym_i8] = ACTIONS(754), - [anon_sym_u16] = ACTIONS(754), - [anon_sym_i16] = ACTIONS(754), - [anon_sym_u32] = ACTIONS(754), - [anon_sym_i32] = ACTIONS(754), - [anon_sym_u64] = ACTIONS(754), - [anon_sym_i64] = ACTIONS(754), - [anon_sym_u128] = ACTIONS(754), - [anon_sym_i128] = ACTIONS(754), - [anon_sym_isize] = ACTIONS(754), - [anon_sym_usize] = ACTIONS(754), - [anon_sym_f32] = ACTIONS(754), - [anon_sym_f64] = ACTIONS(754), - [anon_sym_bool] = ACTIONS(754), - [anon_sym_str] = ACTIONS(754), - [anon_sym_char] = ACTIONS(754), - [anon_sym_DASH] = ACTIONS(754), - [anon_sym_SLASH] = ACTIONS(754), - [anon_sym_PERCENT] = ACTIONS(754), - [anon_sym_CARET] = ACTIONS(754), - [anon_sym_BANG] = ACTIONS(754), - [anon_sym_AMP] = ACTIONS(754), - [anon_sym_PIPE] = ACTIONS(754), - [anon_sym_AMP_AMP] = ACTIONS(756), - [anon_sym_PIPE_PIPE] = ACTIONS(756), - [anon_sym_LT_LT] = ACTIONS(754), - [anon_sym_GT_GT] = ACTIONS(754), - [anon_sym_PLUS_EQ] = ACTIONS(756), - [anon_sym_DASH_EQ] = ACTIONS(756), - [anon_sym_STAR_EQ] = ACTIONS(756), - [anon_sym_SLASH_EQ] = ACTIONS(756), - [anon_sym_PERCENT_EQ] = ACTIONS(756), - [anon_sym_CARET_EQ] = ACTIONS(756), - [anon_sym_AMP_EQ] = ACTIONS(756), - [anon_sym_PIPE_EQ] = ACTIONS(756), - [anon_sym_LT_LT_EQ] = ACTIONS(756), - [anon_sym_GT_GT_EQ] = ACTIONS(756), - [anon_sym_EQ] = ACTIONS(754), - [anon_sym_EQ_EQ] = ACTIONS(756), - [anon_sym_BANG_EQ] = ACTIONS(756), - [anon_sym_GT] = ACTIONS(754), - [anon_sym_LT] = ACTIONS(754), - [anon_sym_GT_EQ] = ACTIONS(756), - [anon_sym_LT_EQ] = ACTIONS(756), - [anon_sym_AT] = ACTIONS(756), - [anon_sym__] = ACTIONS(754), - [anon_sym_DOT] = ACTIONS(754), - [anon_sym_DOT_DOT] = ACTIONS(754), - [anon_sym_DOT_DOT_DOT] = ACTIONS(756), - [anon_sym_DOT_DOT_EQ] = ACTIONS(756), - [anon_sym_COMMA] = ACTIONS(756), - [anon_sym_COLON_COLON] = ACTIONS(756), - [anon_sym_DASH_GT] = ACTIONS(756), - [anon_sym_POUND] = ACTIONS(756), - [anon_sym_SQUOTE] = ACTIONS(754), - [anon_sym_as] = ACTIONS(754), - [anon_sym_async] = ACTIONS(754), - [anon_sym_await] = ACTIONS(754), - [anon_sym_break] = ACTIONS(754), - [anon_sym_const] = ACTIONS(754), - [anon_sym_continue] = ACTIONS(754), - [anon_sym_default] = ACTIONS(754), - [anon_sym_enum] = ACTIONS(754), - [anon_sym_fn] = ACTIONS(754), - [anon_sym_for] = ACTIONS(754), - [anon_sym_gen] = ACTIONS(754), - [anon_sym_if] = ACTIONS(754), - [anon_sym_impl] = ACTIONS(754), - [anon_sym_let] = ACTIONS(754), - [anon_sym_loop] = ACTIONS(754), - [anon_sym_match] = ACTIONS(754), - [anon_sym_mod] = ACTIONS(754), - [anon_sym_pub] = ACTIONS(754), - [anon_sym_return] = ACTIONS(754), - [anon_sym_static] = ACTIONS(754), - [anon_sym_struct] = ACTIONS(754), - [anon_sym_trait] = ACTIONS(754), - [anon_sym_type] = ACTIONS(754), - [anon_sym_union] = ACTIONS(754), - [anon_sym_unsafe] = ACTIONS(754), - [anon_sym_use] = ACTIONS(754), - [anon_sym_where] = ACTIONS(754), - [anon_sym_while] = ACTIONS(754), - [sym_mutable_specifier] = ACTIONS(754), - [sym_integer_literal] = ACTIONS(756), - [aux_sym_string_literal_token1] = ACTIONS(756), - [sym_char_literal] = ACTIONS(756), - [anon_sym_true] = ACTIONS(754), - [anon_sym_false] = ACTIONS(754), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(754), - [sym_super] = ACTIONS(754), - [sym_crate] = ACTIONS(754), - [sym_metavariable] = ACTIONS(756), - [sym__raw_string_literal_start] = ACTIONS(756), - [sym_float_literal] = ACTIONS(756), + [177] = { + [sym_line_comment] = STATE(177), + [sym_block_comment] = STATE(177), + [aux_sym__non_special_token_repeat1] = STATE(177), + [sym_identifier] = ACTIONS(887), + [anon_sym_SEMI] = ACTIONS(981), + [anon_sym_LPAREN] = ACTIONS(892), + [anon_sym_RPAREN] = ACTIONS(892), + [anon_sym_LBRACK] = ACTIONS(892), + [anon_sym_RBRACK] = ACTIONS(892), + [anon_sym_LBRACE] = ACTIONS(892), + [anon_sym_RBRACE] = ACTIONS(892), + [anon_sym_EQ_GT] = ACTIONS(981), + [anon_sym_COLON] = ACTIONS(984), + [anon_sym_DOLLAR] = ACTIONS(892), + [anon_sym_PLUS] = ACTIONS(984), + [anon_sym_STAR] = ACTIONS(984), + [anon_sym_QMARK] = ACTIONS(981), + [anon_sym_u8] = ACTIONS(887), + [anon_sym_i8] = ACTIONS(887), + [anon_sym_u16] = ACTIONS(887), + [anon_sym_i16] = ACTIONS(887), + [anon_sym_u32] = ACTIONS(887), + [anon_sym_i32] = ACTIONS(887), + [anon_sym_u64] = ACTIONS(887), + [anon_sym_i64] = ACTIONS(887), + [anon_sym_u128] = ACTIONS(887), + [anon_sym_i128] = ACTIONS(887), + [anon_sym_isize] = ACTIONS(887), + [anon_sym_usize] = ACTIONS(887), + [anon_sym_f32] = ACTIONS(887), + [anon_sym_f64] = ACTIONS(887), + [anon_sym_bool] = ACTIONS(887), + [anon_sym_str] = ACTIONS(887), + [anon_sym_char] = ACTIONS(887), + [anon_sym_DASH] = ACTIONS(984), + [anon_sym_SLASH] = ACTIONS(984), + [anon_sym_PERCENT] = ACTIONS(984), + [anon_sym_CARET] = ACTIONS(984), + [anon_sym_BANG] = ACTIONS(984), + [anon_sym_AMP] = ACTIONS(984), + [anon_sym_PIPE] = ACTIONS(984), + [anon_sym_AMP_AMP] = ACTIONS(981), + [anon_sym_PIPE_PIPE] = ACTIONS(981), + [anon_sym_LT_LT] = ACTIONS(984), + [anon_sym_GT_GT] = ACTIONS(984), + [anon_sym_PLUS_EQ] = ACTIONS(981), + [anon_sym_DASH_EQ] = ACTIONS(981), + [anon_sym_STAR_EQ] = ACTIONS(981), + [anon_sym_SLASH_EQ] = ACTIONS(981), + [anon_sym_PERCENT_EQ] = ACTIONS(981), + [anon_sym_CARET_EQ] = ACTIONS(981), + [anon_sym_AMP_EQ] = ACTIONS(981), + [anon_sym_PIPE_EQ] = ACTIONS(981), + [anon_sym_LT_LT_EQ] = ACTIONS(981), + [anon_sym_GT_GT_EQ] = ACTIONS(981), + [anon_sym_EQ] = ACTIONS(984), + [anon_sym_EQ_EQ] = ACTIONS(981), + [anon_sym_BANG_EQ] = ACTIONS(981), + [anon_sym_GT] = ACTIONS(984), + [anon_sym_LT] = ACTIONS(984), + [anon_sym_GT_EQ] = ACTIONS(981), + [anon_sym_LT_EQ] = ACTIONS(981), + [anon_sym_AT] = ACTIONS(981), + [anon_sym__] = ACTIONS(984), + [anon_sym_DOT] = ACTIONS(984), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DOT_DOT_DOT] = ACTIONS(981), + [anon_sym_DOT_DOT_EQ] = ACTIONS(981), + [anon_sym_COMMA] = ACTIONS(981), + [anon_sym_COLON_COLON] = ACTIONS(981), + [anon_sym_DASH_GT] = ACTIONS(981), + [anon_sym_POUND] = ACTIONS(981), + [anon_sym_SQUOTE] = ACTIONS(887), + [anon_sym_as] = ACTIONS(887), + [anon_sym_async] = ACTIONS(887), + [anon_sym_await] = ACTIONS(887), + [anon_sym_break] = ACTIONS(887), + [anon_sym_const] = ACTIONS(887), + [anon_sym_continue] = ACTIONS(887), + [anon_sym_default] = ACTIONS(887), + [anon_sym_enum] = ACTIONS(887), + [anon_sym_fn] = ACTIONS(887), + [anon_sym_for] = ACTIONS(887), + [anon_sym_gen] = ACTIONS(887), + [anon_sym_if] = ACTIONS(887), + [anon_sym_impl] = ACTIONS(887), + [anon_sym_let] = ACTIONS(887), + [anon_sym_loop] = ACTIONS(887), + [anon_sym_match] = ACTIONS(887), + [anon_sym_mod] = ACTIONS(887), + [anon_sym_pub] = ACTIONS(887), + [anon_sym_return] = ACTIONS(887), + [anon_sym_static] = ACTIONS(887), + [anon_sym_struct] = ACTIONS(887), + [anon_sym_trait] = ACTIONS(887), + [anon_sym_type] = ACTIONS(887), + [anon_sym_union] = ACTIONS(887), + [anon_sym_unsafe] = ACTIONS(887), + [anon_sym_use] = ACTIONS(887), + [anon_sym_where] = ACTIONS(887), + [anon_sym_while] = ACTIONS(887), + [sym_mutable_specifier] = ACTIONS(887), + [sym_integer_literal] = ACTIONS(892), + [aux_sym_string_literal_token1] = ACTIONS(892), + [sym_char_literal] = ACTIONS(892), + [anon_sym_true] = ACTIONS(887), + [anon_sym_false] = ACTIONS(887), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(887), + [sym_super] = ACTIONS(887), + [sym_crate] = ACTIONS(887), + [sym__raw_string_literal_start] = ACTIONS(892), + [sym_float_literal] = ACTIONS(892), }, - [174] = { - [sym_line_comment] = STATE(174), - [sym_block_comment] = STATE(174), - [sym_identifier] = ACTIONS(983), - [anon_sym_SEMI] = ACTIONS(985), - [anon_sym_LPAREN] = ACTIONS(985), - [anon_sym_RPAREN] = ACTIONS(985), - [anon_sym_LBRACK] = ACTIONS(985), - [anon_sym_RBRACK] = ACTIONS(985), - [anon_sym_LBRACE] = ACTIONS(985), - [anon_sym_RBRACE] = ACTIONS(985), - [anon_sym_EQ_GT] = ACTIONS(985), - [anon_sym_COLON] = ACTIONS(983), - [anon_sym_DOLLAR] = ACTIONS(983), - [anon_sym_PLUS] = ACTIONS(983), - [anon_sym_STAR] = ACTIONS(983), - [anon_sym_QMARK] = ACTIONS(985), - [anon_sym_u8] = ACTIONS(983), - [anon_sym_i8] = ACTIONS(983), - [anon_sym_u16] = ACTIONS(983), - [anon_sym_i16] = ACTIONS(983), - [anon_sym_u32] = ACTIONS(983), - [anon_sym_i32] = ACTIONS(983), - [anon_sym_u64] = ACTIONS(983), - [anon_sym_i64] = ACTIONS(983), - [anon_sym_u128] = ACTIONS(983), - [anon_sym_i128] = ACTIONS(983), - [anon_sym_isize] = ACTIONS(983), - [anon_sym_usize] = ACTIONS(983), - [anon_sym_f32] = ACTIONS(983), - [anon_sym_f64] = ACTIONS(983), - [anon_sym_bool] = ACTIONS(983), - [anon_sym_str] = ACTIONS(983), - [anon_sym_char] = ACTIONS(983), - [anon_sym_DASH] = ACTIONS(983), - [anon_sym_SLASH] = ACTIONS(983), - [anon_sym_PERCENT] = ACTIONS(983), - [anon_sym_CARET] = ACTIONS(983), - [anon_sym_BANG] = ACTIONS(983), - [anon_sym_AMP] = ACTIONS(983), - [anon_sym_PIPE] = ACTIONS(983), - [anon_sym_AMP_AMP] = ACTIONS(985), - [anon_sym_PIPE_PIPE] = ACTIONS(985), - [anon_sym_LT_LT] = ACTIONS(983), - [anon_sym_GT_GT] = ACTIONS(983), - [anon_sym_PLUS_EQ] = ACTIONS(985), - [anon_sym_DASH_EQ] = ACTIONS(985), - [anon_sym_STAR_EQ] = ACTIONS(985), - [anon_sym_SLASH_EQ] = ACTIONS(985), - [anon_sym_PERCENT_EQ] = ACTIONS(985), - [anon_sym_CARET_EQ] = ACTIONS(985), - [anon_sym_AMP_EQ] = ACTIONS(985), - [anon_sym_PIPE_EQ] = ACTIONS(985), - [anon_sym_LT_LT_EQ] = ACTIONS(985), - [anon_sym_GT_GT_EQ] = ACTIONS(985), - [anon_sym_EQ] = ACTIONS(983), - [anon_sym_EQ_EQ] = ACTIONS(985), - [anon_sym_BANG_EQ] = ACTIONS(985), - [anon_sym_GT] = ACTIONS(983), - [anon_sym_LT] = ACTIONS(983), - [anon_sym_GT_EQ] = ACTIONS(985), - [anon_sym_LT_EQ] = ACTIONS(985), - [anon_sym_AT] = ACTIONS(985), - [anon_sym__] = ACTIONS(983), - [anon_sym_DOT] = ACTIONS(983), - [anon_sym_DOT_DOT] = ACTIONS(983), - [anon_sym_DOT_DOT_DOT] = ACTIONS(985), - [anon_sym_DOT_DOT_EQ] = ACTIONS(985), - [anon_sym_COMMA] = ACTIONS(985), - [anon_sym_COLON_COLON] = ACTIONS(985), - [anon_sym_DASH_GT] = ACTIONS(985), - [anon_sym_POUND] = ACTIONS(985), - [anon_sym_SQUOTE] = ACTIONS(983), - [anon_sym_as] = ACTIONS(983), - [anon_sym_async] = ACTIONS(983), - [anon_sym_await] = ACTIONS(983), - [anon_sym_break] = ACTIONS(983), - [anon_sym_const] = ACTIONS(983), - [anon_sym_continue] = ACTIONS(983), - [anon_sym_default] = ACTIONS(983), - [anon_sym_enum] = ACTIONS(983), - [anon_sym_fn] = ACTIONS(983), - [anon_sym_for] = ACTIONS(983), - [anon_sym_gen] = ACTIONS(983), - [anon_sym_if] = ACTIONS(983), - [anon_sym_impl] = ACTIONS(983), - [anon_sym_let] = ACTIONS(983), - [anon_sym_loop] = ACTIONS(983), - [anon_sym_match] = ACTIONS(983), - [anon_sym_mod] = ACTIONS(983), - [anon_sym_pub] = ACTIONS(983), - [anon_sym_return] = ACTIONS(983), - [anon_sym_static] = ACTIONS(983), - [anon_sym_struct] = ACTIONS(983), - [anon_sym_trait] = ACTIONS(983), - [anon_sym_type] = ACTIONS(983), - [anon_sym_union] = ACTIONS(983), - [anon_sym_unsafe] = ACTIONS(983), - [anon_sym_use] = ACTIONS(983), - [anon_sym_where] = ACTIONS(983), - [anon_sym_while] = ACTIONS(983), - [sym_mutable_specifier] = ACTIONS(983), - [sym_integer_literal] = ACTIONS(985), - [aux_sym_string_literal_token1] = ACTIONS(985), - [sym_char_literal] = ACTIONS(985), - [anon_sym_true] = ACTIONS(983), - [anon_sym_false] = ACTIONS(983), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(983), - [sym_super] = ACTIONS(983), - [sym_crate] = ACTIONS(983), - [sym_metavariable] = ACTIONS(985), - [sym__raw_string_literal_start] = ACTIONS(985), - [sym_float_literal] = ACTIONS(985), + [178] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3303), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2016), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1794), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_let_condition] = STATE(3218), + [sym__let_chain] = STATE(3220), + [sym__condition] = STATE(2930), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(178), + [sym_block_comment] = STATE(178), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(903), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_BANG] = ACTIONS(903), + [anon_sym_AMP] = ACTIONS(905), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(907), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(495), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(497), + [anon_sym_default] = ACTIONS(475), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(499), + [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(909), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(501), + [anon_sym_static] = ACTIONS(503), + [anon_sym_union] = ACTIONS(475), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(505), + [anon_sym_move] = ACTIONS(507), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [175] = { - [sym_line_comment] = STATE(175), - [sym_block_comment] = STATE(175), + [179] = { + [sym_line_comment] = STATE(179), + [sym_block_comment] = STATE(179), [sym_identifier] = ACTIONS(987), [anon_sym_SEMI] = ACTIONS(989), [anon_sym_LPAREN] = ACTIONS(989), @@ -36816,294 +38643,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(989), [sym_float_literal] = ACTIONS(989), }, - [176] = { - [sym_line_comment] = STATE(176), - [sym_block_comment] = STATE(176), - [sym_identifier] = ACTIONS(991), - [anon_sym_SEMI] = ACTIONS(993), - [anon_sym_LPAREN] = ACTIONS(993), - [anon_sym_RPAREN] = ACTIONS(993), - [anon_sym_LBRACK] = ACTIONS(993), - [anon_sym_RBRACK] = ACTIONS(993), - [anon_sym_LBRACE] = ACTIONS(993), - [anon_sym_RBRACE] = ACTIONS(993), - [anon_sym_EQ_GT] = ACTIONS(993), - [anon_sym_COLON] = ACTIONS(991), - [anon_sym_DOLLAR] = ACTIONS(991), - [anon_sym_PLUS] = ACTIONS(991), - [anon_sym_STAR] = ACTIONS(991), - [anon_sym_QMARK] = ACTIONS(993), - [anon_sym_u8] = ACTIONS(991), - [anon_sym_i8] = ACTIONS(991), - [anon_sym_u16] = ACTIONS(991), - [anon_sym_i16] = ACTIONS(991), - [anon_sym_u32] = ACTIONS(991), - [anon_sym_i32] = ACTIONS(991), - [anon_sym_u64] = ACTIONS(991), - [anon_sym_i64] = ACTIONS(991), - [anon_sym_u128] = ACTIONS(991), - [anon_sym_i128] = ACTIONS(991), - [anon_sym_isize] = ACTIONS(991), - [anon_sym_usize] = ACTIONS(991), - [anon_sym_f32] = ACTIONS(991), - [anon_sym_f64] = ACTIONS(991), - [anon_sym_bool] = ACTIONS(991), - [anon_sym_str] = ACTIONS(991), - [anon_sym_char] = ACTIONS(991), - [anon_sym_DASH] = ACTIONS(991), - [anon_sym_SLASH] = ACTIONS(991), - [anon_sym_PERCENT] = ACTIONS(991), - [anon_sym_CARET] = ACTIONS(991), - [anon_sym_BANG] = ACTIONS(991), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(991), - [anon_sym_AMP_AMP] = ACTIONS(993), - [anon_sym_PIPE_PIPE] = ACTIONS(993), - [anon_sym_LT_LT] = ACTIONS(991), - [anon_sym_GT_GT] = ACTIONS(991), - [anon_sym_PLUS_EQ] = ACTIONS(993), - [anon_sym_DASH_EQ] = ACTIONS(993), - [anon_sym_STAR_EQ] = ACTIONS(993), - [anon_sym_SLASH_EQ] = ACTIONS(993), - [anon_sym_PERCENT_EQ] = ACTIONS(993), - [anon_sym_CARET_EQ] = ACTIONS(993), - [anon_sym_AMP_EQ] = ACTIONS(993), - [anon_sym_PIPE_EQ] = ACTIONS(993), - [anon_sym_LT_LT_EQ] = ACTIONS(993), - [anon_sym_GT_GT_EQ] = ACTIONS(993), - [anon_sym_EQ] = ACTIONS(991), - [anon_sym_EQ_EQ] = ACTIONS(993), - [anon_sym_BANG_EQ] = ACTIONS(993), - [anon_sym_GT] = ACTIONS(991), - [anon_sym_LT] = ACTIONS(991), - [anon_sym_GT_EQ] = ACTIONS(993), - [anon_sym_LT_EQ] = ACTIONS(993), - [anon_sym_AT] = ACTIONS(993), - [anon_sym__] = ACTIONS(991), - [anon_sym_DOT] = ACTIONS(991), - [anon_sym_DOT_DOT] = ACTIONS(991), - [anon_sym_DOT_DOT_DOT] = ACTIONS(993), - [anon_sym_DOT_DOT_EQ] = ACTIONS(993), - [anon_sym_COMMA] = ACTIONS(993), - [anon_sym_COLON_COLON] = ACTIONS(993), - [anon_sym_DASH_GT] = ACTIONS(993), - [anon_sym_POUND] = ACTIONS(993), - [anon_sym_SQUOTE] = ACTIONS(991), - [anon_sym_as] = ACTIONS(991), - [anon_sym_async] = ACTIONS(991), - [anon_sym_await] = ACTIONS(991), - [anon_sym_break] = ACTIONS(991), - [anon_sym_const] = ACTIONS(991), - [anon_sym_continue] = ACTIONS(991), - [anon_sym_default] = ACTIONS(991), - [anon_sym_enum] = ACTIONS(991), - [anon_sym_fn] = ACTIONS(991), - [anon_sym_for] = ACTIONS(991), - [anon_sym_gen] = ACTIONS(991), - [anon_sym_if] = ACTIONS(991), - [anon_sym_impl] = ACTIONS(991), - [anon_sym_let] = ACTIONS(991), - [anon_sym_loop] = ACTIONS(991), - [anon_sym_match] = ACTIONS(991), - [anon_sym_mod] = ACTIONS(991), - [anon_sym_pub] = ACTIONS(991), - [anon_sym_return] = ACTIONS(991), - [anon_sym_static] = ACTIONS(991), - [anon_sym_struct] = ACTIONS(991), - [anon_sym_trait] = ACTIONS(991), - [anon_sym_type] = ACTIONS(991), - [anon_sym_union] = ACTIONS(991), - [anon_sym_unsafe] = ACTIONS(991), - [anon_sym_use] = ACTIONS(991), - [anon_sym_where] = ACTIONS(991), - [anon_sym_while] = ACTIONS(991), - [sym_mutable_specifier] = ACTIONS(991), - [sym_integer_literal] = ACTIONS(993), - [aux_sym_string_literal_token1] = ACTIONS(993), - [sym_char_literal] = ACTIONS(993), - [anon_sym_true] = ACTIONS(991), - [anon_sym_false] = ACTIONS(991), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(991), - [sym_super] = ACTIONS(991), - [sym_crate] = ACTIONS(991), - [sym_metavariable] = ACTIONS(993), - [sym__raw_string_literal_start] = ACTIONS(993), - [sym_float_literal] = ACTIONS(993), - }, - [177] = { - [sym_line_comment] = STATE(177), - [sym_block_comment] = STATE(177), - [sym_identifier] = ACTIONS(995), - [anon_sym_SEMI] = ACTIONS(997), - [anon_sym_LPAREN] = ACTIONS(997), - [anon_sym_RPAREN] = ACTIONS(997), - [anon_sym_LBRACK] = ACTIONS(997), - [anon_sym_RBRACK] = ACTIONS(997), - [anon_sym_LBRACE] = ACTIONS(997), - [anon_sym_RBRACE] = ACTIONS(997), - [anon_sym_EQ_GT] = ACTIONS(997), - [anon_sym_COLON] = ACTIONS(995), - [anon_sym_DOLLAR] = ACTIONS(995), - [anon_sym_PLUS] = ACTIONS(995), - [anon_sym_STAR] = ACTIONS(995), - [anon_sym_QMARK] = ACTIONS(997), - [anon_sym_u8] = ACTIONS(995), - [anon_sym_i8] = ACTIONS(995), - [anon_sym_u16] = ACTIONS(995), - [anon_sym_i16] = ACTIONS(995), - [anon_sym_u32] = ACTIONS(995), - [anon_sym_i32] = ACTIONS(995), - [anon_sym_u64] = ACTIONS(995), - [anon_sym_i64] = ACTIONS(995), - [anon_sym_u128] = ACTIONS(995), - [anon_sym_i128] = ACTIONS(995), - [anon_sym_isize] = ACTIONS(995), - [anon_sym_usize] = ACTIONS(995), - [anon_sym_f32] = ACTIONS(995), - [anon_sym_f64] = ACTIONS(995), - [anon_sym_bool] = ACTIONS(995), - [anon_sym_str] = ACTIONS(995), - [anon_sym_char] = ACTIONS(995), - [anon_sym_DASH] = ACTIONS(995), - [anon_sym_SLASH] = ACTIONS(995), - [anon_sym_PERCENT] = ACTIONS(995), - [anon_sym_CARET] = ACTIONS(995), - [anon_sym_BANG] = ACTIONS(995), - [anon_sym_AMP] = ACTIONS(995), - [anon_sym_PIPE] = ACTIONS(995), - [anon_sym_AMP_AMP] = ACTIONS(997), - [anon_sym_PIPE_PIPE] = ACTIONS(997), - [anon_sym_LT_LT] = ACTIONS(995), - [anon_sym_GT_GT] = ACTIONS(995), - [anon_sym_PLUS_EQ] = ACTIONS(997), - [anon_sym_DASH_EQ] = ACTIONS(997), - [anon_sym_STAR_EQ] = ACTIONS(997), - [anon_sym_SLASH_EQ] = ACTIONS(997), - [anon_sym_PERCENT_EQ] = ACTIONS(997), - [anon_sym_CARET_EQ] = ACTIONS(997), - [anon_sym_AMP_EQ] = ACTIONS(997), - [anon_sym_PIPE_EQ] = ACTIONS(997), - [anon_sym_LT_LT_EQ] = ACTIONS(997), - [anon_sym_GT_GT_EQ] = ACTIONS(997), - [anon_sym_EQ] = ACTIONS(995), - [anon_sym_EQ_EQ] = ACTIONS(997), - [anon_sym_BANG_EQ] = ACTIONS(997), - [anon_sym_GT] = ACTIONS(995), - [anon_sym_LT] = ACTIONS(995), - [anon_sym_GT_EQ] = ACTIONS(997), - [anon_sym_LT_EQ] = ACTIONS(997), - [anon_sym_AT] = ACTIONS(997), - [anon_sym__] = ACTIONS(995), - [anon_sym_DOT] = ACTIONS(995), - [anon_sym_DOT_DOT] = ACTIONS(995), - [anon_sym_DOT_DOT_DOT] = ACTIONS(997), - [anon_sym_DOT_DOT_EQ] = ACTIONS(997), - [anon_sym_COMMA] = ACTIONS(997), - [anon_sym_COLON_COLON] = ACTIONS(997), - [anon_sym_DASH_GT] = ACTIONS(997), - [anon_sym_POUND] = ACTIONS(997), - [anon_sym_SQUOTE] = ACTIONS(995), - [anon_sym_as] = ACTIONS(995), - [anon_sym_async] = ACTIONS(995), - [anon_sym_await] = ACTIONS(995), - [anon_sym_break] = ACTIONS(995), - [anon_sym_const] = ACTIONS(995), - [anon_sym_continue] = ACTIONS(995), - [anon_sym_default] = ACTIONS(995), - [anon_sym_enum] = ACTIONS(995), - [anon_sym_fn] = ACTIONS(995), - [anon_sym_for] = ACTIONS(995), - [anon_sym_gen] = ACTIONS(995), - [anon_sym_if] = ACTIONS(995), - [anon_sym_impl] = ACTIONS(995), - [anon_sym_let] = ACTIONS(995), - [anon_sym_loop] = ACTIONS(995), - [anon_sym_match] = ACTIONS(995), - [anon_sym_mod] = ACTIONS(995), - [anon_sym_pub] = ACTIONS(995), - [anon_sym_return] = ACTIONS(995), - [anon_sym_static] = ACTIONS(995), - [anon_sym_struct] = ACTIONS(995), - [anon_sym_trait] = ACTIONS(995), - [anon_sym_type] = ACTIONS(995), - [anon_sym_union] = ACTIONS(995), - [anon_sym_unsafe] = ACTIONS(995), - [anon_sym_use] = ACTIONS(995), - [anon_sym_where] = ACTIONS(995), - [anon_sym_while] = ACTIONS(995), - [sym_mutable_specifier] = ACTIONS(995), - [sym_integer_literal] = ACTIONS(997), - [aux_sym_string_literal_token1] = ACTIONS(997), - [sym_char_literal] = ACTIONS(997), - [anon_sym_true] = ACTIONS(995), - [anon_sym_false] = ACTIONS(995), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(995), - [sym_super] = ACTIONS(995), - [sym_crate] = ACTIONS(995), - [sym_metavariable] = ACTIONS(997), - [sym__raw_string_literal_start] = ACTIONS(997), - [sym_float_literal] = ACTIONS(997), - }, - [178] = { - [sym_attribute_item] = STATE(1011), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1623), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(178), - [sym_block_comment] = STATE(178), - [aux_sym_enum_variant_list_repeat1] = STATE(207), + [180] = { + [sym_attribute_item] = STATE(1157), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1885), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(180), + [sym_block_comment] = STATE(180), + [aux_sym_mod_item_repeat1] = STATE(214), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(991), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(999), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -37164,339 +38759,223 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [179] = { - [sym_line_comment] = STATE(179), - [sym_block_comment] = STATE(179), - [aux_sym__non_special_token_repeat1] = STATE(179), - [sym_identifier] = ACTIONS(758), - [anon_sym_SEMI] = ACTIONS(1001), - [anon_sym_LPAREN] = ACTIONS(763), - [anon_sym_RPAREN] = ACTIONS(763), - [anon_sym_LBRACK] = ACTIONS(763), - [anon_sym_RBRACK] = ACTIONS(763), - [anon_sym_LBRACE] = ACTIONS(763), - [anon_sym_RBRACE] = ACTIONS(763), - [anon_sym_EQ_GT] = ACTIONS(1001), - [anon_sym_COLON] = ACTIONS(1004), - [anon_sym_DOLLAR] = ACTIONS(763), - [anon_sym_PLUS] = ACTIONS(1004), - [anon_sym_STAR] = ACTIONS(1004), - [anon_sym_QMARK] = ACTIONS(1001), - [anon_sym_u8] = ACTIONS(758), - [anon_sym_i8] = ACTIONS(758), - [anon_sym_u16] = ACTIONS(758), - [anon_sym_i16] = ACTIONS(758), - [anon_sym_u32] = ACTIONS(758), - [anon_sym_i32] = ACTIONS(758), - [anon_sym_u64] = ACTIONS(758), - [anon_sym_i64] = ACTIONS(758), - [anon_sym_u128] = ACTIONS(758), - [anon_sym_i128] = ACTIONS(758), - [anon_sym_isize] = ACTIONS(758), - [anon_sym_usize] = ACTIONS(758), - [anon_sym_f32] = ACTIONS(758), - [anon_sym_f64] = ACTIONS(758), - [anon_sym_bool] = ACTIONS(758), - [anon_sym_str] = ACTIONS(758), - [anon_sym_char] = ACTIONS(758), - [anon_sym_DASH] = ACTIONS(1004), - [anon_sym_SLASH] = ACTIONS(1004), - [anon_sym_PERCENT] = ACTIONS(1004), - [anon_sym_CARET] = ACTIONS(1004), - [anon_sym_BANG] = ACTIONS(1004), - [anon_sym_AMP] = ACTIONS(1004), - [anon_sym_PIPE] = ACTIONS(1004), - [anon_sym_AMP_AMP] = ACTIONS(1001), - [anon_sym_PIPE_PIPE] = ACTIONS(1001), - [anon_sym_LT_LT] = ACTIONS(1004), - [anon_sym_GT_GT] = ACTIONS(1004), - [anon_sym_PLUS_EQ] = ACTIONS(1001), - [anon_sym_DASH_EQ] = ACTIONS(1001), - [anon_sym_STAR_EQ] = ACTIONS(1001), - [anon_sym_SLASH_EQ] = ACTIONS(1001), - [anon_sym_PERCENT_EQ] = ACTIONS(1001), - [anon_sym_CARET_EQ] = ACTIONS(1001), - [anon_sym_AMP_EQ] = ACTIONS(1001), - [anon_sym_PIPE_EQ] = ACTIONS(1001), - [anon_sym_LT_LT_EQ] = ACTIONS(1001), - [anon_sym_GT_GT_EQ] = ACTIONS(1001), - [anon_sym_EQ] = ACTIONS(1004), - [anon_sym_EQ_EQ] = ACTIONS(1001), - [anon_sym_BANG_EQ] = ACTIONS(1001), - [anon_sym_GT] = ACTIONS(1004), - [anon_sym_LT] = ACTIONS(1004), - [anon_sym_GT_EQ] = ACTIONS(1001), - [anon_sym_LT_EQ] = ACTIONS(1001), - [anon_sym_AT] = ACTIONS(1001), - [anon_sym__] = ACTIONS(1004), - [anon_sym_DOT] = ACTIONS(1004), - [anon_sym_DOT_DOT] = ACTIONS(1004), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1001), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1001), - [anon_sym_COMMA] = ACTIONS(1001), - [anon_sym_COLON_COLON] = ACTIONS(1001), - [anon_sym_DASH_GT] = ACTIONS(1001), - [anon_sym_POUND] = ACTIONS(1001), - [anon_sym_SQUOTE] = ACTIONS(758), - [anon_sym_as] = ACTIONS(758), - [anon_sym_async] = ACTIONS(758), - [anon_sym_await] = ACTIONS(758), - [anon_sym_break] = ACTIONS(758), - [anon_sym_const] = ACTIONS(758), - [anon_sym_continue] = ACTIONS(758), - [anon_sym_default] = ACTIONS(758), - [anon_sym_enum] = ACTIONS(758), - [anon_sym_fn] = ACTIONS(758), - [anon_sym_for] = ACTIONS(758), - [anon_sym_gen] = ACTIONS(758), - [anon_sym_if] = ACTIONS(758), - [anon_sym_impl] = ACTIONS(758), - [anon_sym_let] = ACTIONS(758), - [anon_sym_loop] = ACTIONS(758), - [anon_sym_match] = ACTIONS(758), - [anon_sym_mod] = ACTIONS(758), - [anon_sym_pub] = ACTIONS(758), - [anon_sym_return] = ACTIONS(758), - [anon_sym_static] = ACTIONS(758), - [anon_sym_struct] = ACTIONS(758), - [anon_sym_trait] = ACTIONS(758), - [anon_sym_type] = ACTIONS(758), - [anon_sym_union] = ACTIONS(758), - [anon_sym_unsafe] = ACTIONS(758), - [anon_sym_use] = ACTIONS(758), - [anon_sym_where] = ACTIONS(758), - [anon_sym_while] = ACTIONS(758), - [sym_mutable_specifier] = ACTIONS(758), - [sym_integer_literal] = ACTIONS(763), - [aux_sym_string_literal_token1] = ACTIONS(763), - [sym_char_literal] = ACTIONS(763), - [anon_sym_true] = ACTIONS(758), - [anon_sym_false] = ACTIONS(758), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(758), - [sym_super] = ACTIONS(758), - [sym_crate] = ACTIONS(758), - [sym__raw_string_literal_start] = ACTIONS(763), - [sym_float_literal] = ACTIONS(763), - }, - [180] = { - [sym_line_comment] = STATE(180), - [sym_block_comment] = STATE(180), - [sym_identifier] = ACTIONS(1007), - [anon_sym_SEMI] = ACTIONS(1009), - [anon_sym_LPAREN] = ACTIONS(1009), - [anon_sym_RPAREN] = ACTIONS(1009), - [anon_sym_LBRACK] = ACTIONS(1009), - [anon_sym_RBRACK] = ACTIONS(1009), - [anon_sym_LBRACE] = ACTIONS(1009), - [anon_sym_RBRACE] = ACTIONS(1009), - [anon_sym_EQ_GT] = ACTIONS(1009), - [anon_sym_COLON] = ACTIONS(1007), - [anon_sym_DOLLAR] = ACTIONS(1007), - [anon_sym_PLUS] = ACTIONS(1007), - [anon_sym_STAR] = ACTIONS(1007), - [anon_sym_QMARK] = ACTIONS(1009), - [anon_sym_u8] = ACTIONS(1007), - [anon_sym_i8] = ACTIONS(1007), - [anon_sym_u16] = ACTIONS(1007), - [anon_sym_i16] = ACTIONS(1007), - [anon_sym_u32] = ACTIONS(1007), - [anon_sym_i32] = ACTIONS(1007), - [anon_sym_u64] = ACTIONS(1007), - [anon_sym_i64] = ACTIONS(1007), - [anon_sym_u128] = ACTIONS(1007), - [anon_sym_i128] = ACTIONS(1007), - [anon_sym_isize] = ACTIONS(1007), - [anon_sym_usize] = ACTIONS(1007), - [anon_sym_f32] = ACTIONS(1007), - [anon_sym_f64] = ACTIONS(1007), - [anon_sym_bool] = ACTIONS(1007), - [anon_sym_str] = ACTIONS(1007), - [anon_sym_char] = ACTIONS(1007), - [anon_sym_DASH] = ACTIONS(1007), - [anon_sym_SLASH] = ACTIONS(1007), - [anon_sym_PERCENT] = ACTIONS(1007), - [anon_sym_CARET] = ACTIONS(1007), - [anon_sym_BANG] = ACTIONS(1007), - [anon_sym_AMP] = ACTIONS(1007), - [anon_sym_PIPE] = ACTIONS(1007), - [anon_sym_AMP_AMP] = ACTIONS(1009), - [anon_sym_PIPE_PIPE] = ACTIONS(1009), - [anon_sym_LT_LT] = ACTIONS(1007), - [anon_sym_GT_GT] = ACTIONS(1007), - [anon_sym_PLUS_EQ] = ACTIONS(1009), - [anon_sym_DASH_EQ] = ACTIONS(1009), - [anon_sym_STAR_EQ] = ACTIONS(1009), - [anon_sym_SLASH_EQ] = ACTIONS(1009), - [anon_sym_PERCENT_EQ] = ACTIONS(1009), - [anon_sym_CARET_EQ] = ACTIONS(1009), - [anon_sym_AMP_EQ] = ACTIONS(1009), - [anon_sym_PIPE_EQ] = ACTIONS(1009), - [anon_sym_LT_LT_EQ] = ACTIONS(1009), - [anon_sym_GT_GT_EQ] = ACTIONS(1009), - [anon_sym_EQ] = ACTIONS(1007), - [anon_sym_EQ_EQ] = ACTIONS(1009), - [anon_sym_BANG_EQ] = ACTIONS(1009), - [anon_sym_GT] = ACTIONS(1007), - [anon_sym_LT] = ACTIONS(1007), - [anon_sym_GT_EQ] = ACTIONS(1009), - [anon_sym_LT_EQ] = ACTIONS(1009), - [anon_sym_AT] = ACTIONS(1009), - [anon_sym__] = ACTIONS(1007), - [anon_sym_DOT] = ACTIONS(1007), - [anon_sym_DOT_DOT] = ACTIONS(1007), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1009), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1009), - [anon_sym_COMMA] = ACTIONS(1009), - [anon_sym_COLON_COLON] = ACTIONS(1009), - [anon_sym_DASH_GT] = ACTIONS(1009), - [anon_sym_POUND] = ACTIONS(1009), - [anon_sym_SQUOTE] = ACTIONS(1007), - [anon_sym_as] = ACTIONS(1007), - [anon_sym_async] = ACTIONS(1007), - [anon_sym_await] = ACTIONS(1007), - [anon_sym_break] = ACTIONS(1007), - [anon_sym_const] = ACTIONS(1007), - [anon_sym_continue] = ACTIONS(1007), - [anon_sym_default] = ACTIONS(1007), - [anon_sym_enum] = ACTIONS(1007), - [anon_sym_fn] = ACTIONS(1007), - [anon_sym_for] = ACTIONS(1007), - [anon_sym_gen] = ACTIONS(1007), - [anon_sym_if] = ACTIONS(1007), - [anon_sym_impl] = ACTIONS(1007), - [anon_sym_let] = ACTIONS(1007), - [anon_sym_loop] = ACTIONS(1007), - [anon_sym_match] = ACTIONS(1007), - [anon_sym_mod] = ACTIONS(1007), - [anon_sym_pub] = ACTIONS(1007), - [anon_sym_return] = ACTIONS(1007), - [anon_sym_static] = ACTIONS(1007), - [anon_sym_struct] = ACTIONS(1007), - [anon_sym_trait] = ACTIONS(1007), - [anon_sym_type] = ACTIONS(1007), - [anon_sym_union] = ACTIONS(1007), - [anon_sym_unsafe] = ACTIONS(1007), - [anon_sym_use] = ACTIONS(1007), - [anon_sym_where] = ACTIONS(1007), - [anon_sym_while] = ACTIONS(1007), - [sym_mutable_specifier] = ACTIONS(1007), - [sym_integer_literal] = ACTIONS(1009), - [aux_sym_string_literal_token1] = ACTIONS(1009), - [sym_char_literal] = ACTIONS(1009), - [anon_sym_true] = ACTIONS(1007), - [anon_sym_false] = ACTIONS(1007), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1007), - [sym_super] = ACTIONS(1007), - [sym_crate] = ACTIONS(1007), - [sym_metavariable] = ACTIONS(1009), - [sym__raw_string_literal_start] = ACTIONS(1009), - [sym_float_literal] = ACTIONS(1009), - }, [181] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1687), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_let_condition] = STATE(2883), - [sym__let_chain] = STATE(2887), - [sym__condition] = STATE(2732), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), [sym_line_comment] = STATE(181), [sym_block_comment] = STATE(181), - [sym_identifier] = ACTIONS(467), + [sym_identifier] = ACTIONS(993), + [anon_sym_SEMI] = ACTIONS(995), + [anon_sym_LPAREN] = ACTIONS(995), + [anon_sym_RPAREN] = ACTIONS(995), + [anon_sym_LBRACK] = ACTIONS(995), + [anon_sym_RBRACK] = ACTIONS(995), + [anon_sym_LBRACE] = ACTIONS(995), + [anon_sym_RBRACE] = ACTIONS(995), + [anon_sym_EQ_GT] = ACTIONS(995), + [anon_sym_COLON] = ACTIONS(993), + [anon_sym_DOLLAR] = ACTIONS(993), + [anon_sym_PLUS] = ACTIONS(993), + [anon_sym_STAR] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(995), + [anon_sym_u8] = ACTIONS(993), + [anon_sym_i8] = ACTIONS(993), + [anon_sym_u16] = ACTIONS(993), + [anon_sym_i16] = ACTIONS(993), + [anon_sym_u32] = ACTIONS(993), + [anon_sym_i32] = ACTIONS(993), + [anon_sym_u64] = ACTIONS(993), + [anon_sym_i64] = ACTIONS(993), + [anon_sym_u128] = ACTIONS(993), + [anon_sym_i128] = ACTIONS(993), + [anon_sym_isize] = ACTIONS(993), + [anon_sym_usize] = ACTIONS(993), + [anon_sym_f32] = ACTIONS(993), + [anon_sym_f64] = ACTIONS(993), + [anon_sym_bool] = ACTIONS(993), + [anon_sym_str] = ACTIONS(993), + [anon_sym_char] = ACTIONS(993), + [anon_sym_DASH] = ACTIONS(993), + [anon_sym_SLASH] = ACTIONS(993), + [anon_sym_PERCENT] = ACTIONS(993), + [anon_sym_CARET] = ACTIONS(993), + [anon_sym_BANG] = ACTIONS(993), + [anon_sym_AMP] = ACTIONS(993), + [anon_sym_PIPE] = ACTIONS(993), + [anon_sym_AMP_AMP] = ACTIONS(995), + [anon_sym_PIPE_PIPE] = ACTIONS(995), + [anon_sym_LT_LT] = ACTIONS(993), + [anon_sym_GT_GT] = ACTIONS(993), + [anon_sym_PLUS_EQ] = ACTIONS(995), + [anon_sym_DASH_EQ] = ACTIONS(995), + [anon_sym_STAR_EQ] = ACTIONS(995), + [anon_sym_SLASH_EQ] = ACTIONS(995), + [anon_sym_PERCENT_EQ] = ACTIONS(995), + [anon_sym_CARET_EQ] = ACTIONS(995), + [anon_sym_AMP_EQ] = ACTIONS(995), + [anon_sym_PIPE_EQ] = ACTIONS(995), + [anon_sym_LT_LT_EQ] = ACTIONS(995), + [anon_sym_GT_GT_EQ] = ACTIONS(995), + [anon_sym_EQ] = ACTIONS(993), + [anon_sym_EQ_EQ] = ACTIONS(995), + [anon_sym_BANG_EQ] = ACTIONS(995), + [anon_sym_GT] = ACTIONS(993), + [anon_sym_LT] = ACTIONS(993), + [anon_sym_GT_EQ] = ACTIONS(995), + [anon_sym_LT_EQ] = ACTIONS(995), + [anon_sym_AT] = ACTIONS(995), + [anon_sym__] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_DOT_DOT] = ACTIONS(993), + [anon_sym_DOT_DOT_DOT] = ACTIONS(995), + [anon_sym_DOT_DOT_EQ] = ACTIONS(995), + [anon_sym_COMMA] = ACTIONS(995), + [anon_sym_COLON_COLON] = ACTIONS(995), + [anon_sym_DASH_GT] = ACTIONS(995), + [anon_sym_POUND] = ACTIONS(995), + [anon_sym_SQUOTE] = ACTIONS(993), + [anon_sym_as] = ACTIONS(993), + [anon_sym_async] = ACTIONS(993), + [anon_sym_await] = ACTIONS(993), + [anon_sym_break] = ACTIONS(993), + [anon_sym_const] = ACTIONS(993), + [anon_sym_continue] = ACTIONS(993), + [anon_sym_default] = ACTIONS(993), + [anon_sym_enum] = ACTIONS(993), + [anon_sym_fn] = ACTIONS(993), + [anon_sym_for] = ACTIONS(993), + [anon_sym_gen] = ACTIONS(993), + [anon_sym_if] = ACTIONS(993), + [anon_sym_impl] = ACTIONS(993), + [anon_sym_let] = ACTIONS(993), + [anon_sym_loop] = ACTIONS(993), + [anon_sym_match] = ACTIONS(993), + [anon_sym_mod] = ACTIONS(993), + [anon_sym_pub] = ACTIONS(993), + [anon_sym_return] = ACTIONS(993), + [anon_sym_static] = ACTIONS(993), + [anon_sym_struct] = ACTIONS(993), + [anon_sym_trait] = ACTIONS(993), + [anon_sym_type] = ACTIONS(993), + [anon_sym_union] = ACTIONS(993), + [anon_sym_unsafe] = ACTIONS(993), + [anon_sym_use] = ACTIONS(993), + [anon_sym_where] = ACTIONS(993), + [anon_sym_while] = ACTIONS(993), + [sym_mutable_specifier] = ACTIONS(993), + [sym_integer_literal] = ACTIONS(995), + [aux_sym_string_literal_token1] = ACTIONS(995), + [sym_char_literal] = ACTIONS(995), + [anon_sym_true] = ACTIONS(993), + [anon_sym_false] = ACTIONS(993), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(993), + [sym_super] = ACTIONS(993), + [sym_crate] = ACTIONS(993), + [sym_metavariable] = ACTIONS(995), + [sym__raw_string_literal_start] = ACTIONS(995), + [sym_float_literal] = ACTIONS(995), + }, + [182] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3303), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2016), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1794), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_let_condition] = STATE(3218), + [sym__let_chain] = STATE(3220), + [sym__condition] = STATE(3024), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(182), + [sym_block_comment] = STATE(182), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(903), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_BANG] = ACTIONS(903), + [anon_sym_AMP] = ACTIONS(905), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(963), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(907), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(495), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(497), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(499), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(965), + [anon_sym_let] = ACTIONS(909), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(501), + [anon_sym_static] = ACTIONS(503), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(505), + [anon_sym_move] = ACTIONS(507), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -37505,533 +38984,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [182] = { - [sym_line_comment] = STATE(182), - [sym_block_comment] = STATE(182), - [sym_identifier] = ACTIONS(1011), - [anon_sym_SEMI] = ACTIONS(1013), - [anon_sym_LPAREN] = ACTIONS(1013), - [anon_sym_RPAREN] = ACTIONS(1013), - [anon_sym_LBRACK] = ACTIONS(1013), - [anon_sym_RBRACK] = ACTIONS(1013), - [anon_sym_LBRACE] = ACTIONS(1013), - [anon_sym_RBRACE] = ACTIONS(1013), - [anon_sym_EQ_GT] = ACTIONS(1013), - [anon_sym_COLON] = ACTIONS(1011), - [anon_sym_DOLLAR] = ACTIONS(1011), - [anon_sym_PLUS] = ACTIONS(1011), - [anon_sym_STAR] = ACTIONS(1011), - [anon_sym_QMARK] = ACTIONS(1013), - [anon_sym_u8] = ACTIONS(1011), - [anon_sym_i8] = ACTIONS(1011), - [anon_sym_u16] = ACTIONS(1011), - [anon_sym_i16] = ACTIONS(1011), - [anon_sym_u32] = ACTIONS(1011), - [anon_sym_i32] = ACTIONS(1011), - [anon_sym_u64] = ACTIONS(1011), - [anon_sym_i64] = ACTIONS(1011), - [anon_sym_u128] = ACTIONS(1011), - [anon_sym_i128] = ACTIONS(1011), - [anon_sym_isize] = ACTIONS(1011), - [anon_sym_usize] = ACTIONS(1011), - [anon_sym_f32] = ACTIONS(1011), - [anon_sym_f64] = ACTIONS(1011), - [anon_sym_bool] = ACTIONS(1011), - [anon_sym_str] = ACTIONS(1011), - [anon_sym_char] = ACTIONS(1011), - [anon_sym_DASH] = ACTIONS(1011), - [anon_sym_SLASH] = ACTIONS(1011), - [anon_sym_PERCENT] = ACTIONS(1011), - [anon_sym_CARET] = ACTIONS(1011), - [anon_sym_BANG] = ACTIONS(1011), - [anon_sym_AMP] = ACTIONS(1011), - [anon_sym_PIPE] = ACTIONS(1011), - [anon_sym_AMP_AMP] = ACTIONS(1013), - [anon_sym_PIPE_PIPE] = ACTIONS(1013), - [anon_sym_LT_LT] = ACTIONS(1011), - [anon_sym_GT_GT] = ACTIONS(1011), - [anon_sym_PLUS_EQ] = ACTIONS(1013), - [anon_sym_DASH_EQ] = ACTIONS(1013), - [anon_sym_STAR_EQ] = ACTIONS(1013), - [anon_sym_SLASH_EQ] = ACTIONS(1013), - [anon_sym_PERCENT_EQ] = ACTIONS(1013), - [anon_sym_CARET_EQ] = ACTIONS(1013), - [anon_sym_AMP_EQ] = ACTIONS(1013), - [anon_sym_PIPE_EQ] = ACTIONS(1013), - [anon_sym_LT_LT_EQ] = ACTIONS(1013), - [anon_sym_GT_GT_EQ] = ACTIONS(1013), - [anon_sym_EQ] = ACTIONS(1011), - [anon_sym_EQ_EQ] = ACTIONS(1013), - [anon_sym_BANG_EQ] = ACTIONS(1013), - [anon_sym_GT] = ACTIONS(1011), - [anon_sym_LT] = ACTIONS(1011), - [anon_sym_GT_EQ] = ACTIONS(1013), - [anon_sym_LT_EQ] = ACTIONS(1013), - [anon_sym_AT] = ACTIONS(1013), - [anon_sym__] = ACTIONS(1011), - [anon_sym_DOT] = ACTIONS(1011), - [anon_sym_DOT_DOT] = ACTIONS(1011), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1013), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1013), - [anon_sym_COMMA] = ACTIONS(1013), - [anon_sym_COLON_COLON] = ACTIONS(1013), - [anon_sym_DASH_GT] = ACTIONS(1013), - [anon_sym_POUND] = ACTIONS(1013), - [anon_sym_SQUOTE] = ACTIONS(1011), - [anon_sym_as] = ACTIONS(1011), - [anon_sym_async] = ACTIONS(1011), - [anon_sym_await] = ACTIONS(1011), - [anon_sym_break] = ACTIONS(1011), - [anon_sym_const] = ACTIONS(1011), - [anon_sym_continue] = ACTIONS(1011), - [anon_sym_default] = ACTIONS(1011), - [anon_sym_enum] = ACTIONS(1011), - [anon_sym_fn] = ACTIONS(1011), - [anon_sym_for] = ACTIONS(1011), - [anon_sym_gen] = ACTIONS(1011), - [anon_sym_if] = ACTIONS(1011), - [anon_sym_impl] = ACTIONS(1011), - [anon_sym_let] = ACTIONS(1011), - [anon_sym_loop] = ACTIONS(1011), - [anon_sym_match] = ACTIONS(1011), - [anon_sym_mod] = ACTIONS(1011), - [anon_sym_pub] = ACTIONS(1011), - [anon_sym_return] = ACTIONS(1011), - [anon_sym_static] = ACTIONS(1011), - [anon_sym_struct] = ACTIONS(1011), - [anon_sym_trait] = ACTIONS(1011), - [anon_sym_type] = ACTIONS(1011), - [anon_sym_union] = ACTIONS(1011), - [anon_sym_unsafe] = ACTIONS(1011), - [anon_sym_use] = ACTIONS(1011), - [anon_sym_where] = ACTIONS(1011), - [anon_sym_while] = ACTIONS(1011), - [sym_mutable_specifier] = ACTIONS(1011), - [sym_integer_literal] = ACTIONS(1013), - [aux_sym_string_literal_token1] = ACTIONS(1013), - [sym_char_literal] = ACTIONS(1013), - [anon_sym_true] = ACTIONS(1011), - [anon_sym_false] = ACTIONS(1011), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1011), - [sym_super] = ACTIONS(1011), - [sym_crate] = ACTIONS(1011), - [sym_metavariable] = ACTIONS(1013), - [sym__raw_string_literal_start] = ACTIONS(1013), - [sym_float_literal] = ACTIONS(1013), - }, [183] = { - [sym_bracketed_type] = STATE(3529), - [sym_generic_function] = STATE(1664), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1626), - [sym__expression] = STATE(1868), - [sym_macro_invocation] = STATE(1671), - [sym_scoped_identifier] = STATE(1575), - [sym_scoped_type_identifier_in_expression_position] = STATE(3163), - [sym_range_expression] = STATE(1666), - [sym_unary_expression] = STATE(1664), - [sym_try_expression] = STATE(1664), - [sym_reference_expression] = STATE(1664), - [sym_binary_expression] = STATE(1664), - [sym_assignment_expression] = STATE(1664), - [sym_compound_assignment_expr] = STATE(1664), - [sym_type_cast_expression] = STATE(1664), - [sym_return_expression] = STATE(1664), - [sym_yield_expression] = STATE(1664), - [sym_call_expression] = STATE(1664), - [sym_array_expression] = STATE(1664), - [sym_parenthesized_expression] = STATE(1664), - [sym_tuple_expression] = STATE(1664), - [sym_unit_expression] = STATE(1664), - [sym_struct_expression] = STATE(1664), - [sym_if_expression] = STATE(1664), - [sym_let_condition] = STATE(3226), - [sym__let_chain] = STATE(3228), - [sym__condition] = STATE(3536), - [sym_match_expression] = STATE(1664), - [sym_while_expression] = STATE(1664), - [sym_loop_expression] = STATE(1664), - [sym_for_expression] = STATE(1664), - [sym_const_block] = STATE(1664), - [sym_closure_expression] = STATE(1664), - [sym_closure_parameters] = STATE(232), - [sym_label] = STATE(3614), - [sym_break_expression] = STATE(1664), - [sym_continue_expression] = STATE(1664), - [sym_index_expression] = STATE(1664), - [sym_await_expression] = STATE(1664), - [sym_field_expression] = STATE(1597), - [sym_unsafe_block] = STATE(1664), - [sym_async_block] = STATE(1664), - [sym_gen_block] = STATE(1664), - [sym_try_block] = STATE(1664), - [sym_block] = STATE(1664), - [sym__literal] = STATE(1664), - [sym_string_literal] = STATE(1786), - [sym_raw_string_literal] = STATE(1786), - [sym_boolean_literal] = STATE(1786), + [sym_attribute_item] = STATE(1157), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1885), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), [sym_line_comment] = STATE(183), [sym_block_comment] = STATE(183), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1015), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_BANG] = ACTIONS(1015), - [anon_sym_AMP] = ACTIONS(1017), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1019), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_let] = ACTIONS(1021), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [184] = { - [sym_line_comment] = STATE(184), - [sym_block_comment] = STATE(184), - [sym_identifier] = ACTIONS(1023), - [anon_sym_SEMI] = ACTIONS(1025), - [anon_sym_LPAREN] = ACTIONS(1025), - [anon_sym_RPAREN] = ACTIONS(1025), - [anon_sym_LBRACK] = ACTIONS(1025), - [anon_sym_RBRACK] = ACTIONS(1025), - [anon_sym_LBRACE] = ACTIONS(1025), - [anon_sym_RBRACE] = ACTIONS(1025), - [anon_sym_EQ_GT] = ACTIONS(1025), - [anon_sym_COLON] = ACTIONS(1023), - [anon_sym_DOLLAR] = ACTIONS(1023), - [anon_sym_PLUS] = ACTIONS(1023), - [anon_sym_STAR] = ACTIONS(1023), - [anon_sym_QMARK] = ACTIONS(1025), - [anon_sym_u8] = ACTIONS(1023), - [anon_sym_i8] = ACTIONS(1023), - [anon_sym_u16] = ACTIONS(1023), - [anon_sym_i16] = ACTIONS(1023), - [anon_sym_u32] = ACTIONS(1023), - [anon_sym_i32] = ACTIONS(1023), - [anon_sym_u64] = ACTIONS(1023), - [anon_sym_i64] = ACTIONS(1023), - [anon_sym_u128] = ACTIONS(1023), - [anon_sym_i128] = ACTIONS(1023), - [anon_sym_isize] = ACTIONS(1023), - [anon_sym_usize] = ACTIONS(1023), - [anon_sym_f32] = ACTIONS(1023), - [anon_sym_f64] = ACTIONS(1023), - [anon_sym_bool] = ACTIONS(1023), - [anon_sym_str] = ACTIONS(1023), - [anon_sym_char] = ACTIONS(1023), - [anon_sym_DASH] = ACTIONS(1023), - [anon_sym_SLASH] = ACTIONS(1023), - [anon_sym_PERCENT] = ACTIONS(1023), - [anon_sym_CARET] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(1023), - [anon_sym_AMP] = ACTIONS(1023), - [anon_sym_PIPE] = ACTIONS(1023), - [anon_sym_AMP_AMP] = ACTIONS(1025), - [anon_sym_PIPE_PIPE] = ACTIONS(1025), - [anon_sym_LT_LT] = ACTIONS(1023), - [anon_sym_GT_GT] = ACTIONS(1023), - [anon_sym_PLUS_EQ] = ACTIONS(1025), - [anon_sym_DASH_EQ] = ACTIONS(1025), - [anon_sym_STAR_EQ] = ACTIONS(1025), - [anon_sym_SLASH_EQ] = ACTIONS(1025), - [anon_sym_PERCENT_EQ] = ACTIONS(1025), - [anon_sym_CARET_EQ] = ACTIONS(1025), - [anon_sym_AMP_EQ] = ACTIONS(1025), - [anon_sym_PIPE_EQ] = ACTIONS(1025), - [anon_sym_LT_LT_EQ] = ACTIONS(1025), - [anon_sym_GT_GT_EQ] = ACTIONS(1025), - [anon_sym_EQ] = ACTIONS(1023), - [anon_sym_EQ_EQ] = ACTIONS(1025), - [anon_sym_BANG_EQ] = ACTIONS(1025), - [anon_sym_GT] = ACTIONS(1023), - [anon_sym_LT] = ACTIONS(1023), - [anon_sym_GT_EQ] = ACTIONS(1025), - [anon_sym_LT_EQ] = ACTIONS(1025), - [anon_sym_AT] = ACTIONS(1025), - [anon_sym__] = ACTIONS(1023), - [anon_sym_DOT] = ACTIONS(1023), - [anon_sym_DOT_DOT] = ACTIONS(1023), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1025), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1025), - [anon_sym_COMMA] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(1025), - [anon_sym_DASH_GT] = ACTIONS(1025), - [anon_sym_POUND] = ACTIONS(1025), - [anon_sym_SQUOTE] = ACTIONS(1023), - [anon_sym_as] = ACTIONS(1023), - [anon_sym_async] = ACTIONS(1023), - [anon_sym_await] = ACTIONS(1023), - [anon_sym_break] = ACTIONS(1023), - [anon_sym_const] = ACTIONS(1023), - [anon_sym_continue] = ACTIONS(1023), - [anon_sym_default] = ACTIONS(1023), - [anon_sym_enum] = ACTIONS(1023), - [anon_sym_fn] = ACTIONS(1023), - [anon_sym_for] = ACTIONS(1023), - [anon_sym_gen] = ACTIONS(1023), - [anon_sym_if] = ACTIONS(1023), - [anon_sym_impl] = ACTIONS(1023), - [anon_sym_let] = ACTIONS(1023), - [anon_sym_loop] = ACTIONS(1023), - [anon_sym_match] = ACTIONS(1023), - [anon_sym_mod] = ACTIONS(1023), - [anon_sym_pub] = ACTIONS(1023), - [anon_sym_return] = ACTIONS(1023), - [anon_sym_static] = ACTIONS(1023), - [anon_sym_struct] = ACTIONS(1023), - [anon_sym_trait] = ACTIONS(1023), - [anon_sym_type] = ACTIONS(1023), - [anon_sym_union] = ACTIONS(1023), - [anon_sym_unsafe] = ACTIONS(1023), - [anon_sym_use] = ACTIONS(1023), - [anon_sym_where] = ACTIONS(1023), - [anon_sym_while] = ACTIONS(1023), - [sym_mutable_specifier] = ACTIONS(1023), - [sym_integer_literal] = ACTIONS(1025), - [aux_sym_string_literal_token1] = ACTIONS(1025), - [sym_char_literal] = ACTIONS(1025), - [anon_sym_true] = ACTIONS(1023), - [anon_sym_false] = ACTIONS(1023), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1023), - [sym_super] = ACTIONS(1023), - [sym_crate] = ACTIONS(1023), - [sym_metavariable] = ACTIONS(1025), - [sym__raw_string_literal_start] = ACTIONS(1025), - [sym_float_literal] = ACTIONS(1025), - }, - [185] = { - [sym_line_comment] = STATE(185), - [sym_block_comment] = STATE(185), - [sym_identifier] = ACTIONS(1027), - [anon_sym_SEMI] = ACTIONS(1029), - [anon_sym_LPAREN] = ACTIONS(1029), - [anon_sym_RPAREN] = ACTIONS(1029), - [anon_sym_LBRACK] = ACTIONS(1029), - [anon_sym_RBRACK] = ACTIONS(1029), - [anon_sym_LBRACE] = ACTIONS(1029), - [anon_sym_RBRACE] = ACTIONS(1029), - [anon_sym_EQ_GT] = ACTIONS(1029), - [anon_sym_COLON] = ACTIONS(1027), - [anon_sym_DOLLAR] = ACTIONS(1027), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_STAR] = ACTIONS(1027), - [anon_sym_QMARK] = ACTIONS(1029), - [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_DASH] = ACTIONS(1027), - [anon_sym_SLASH] = ACTIONS(1027), - [anon_sym_PERCENT] = ACTIONS(1027), - [anon_sym_CARET] = ACTIONS(1027), - [anon_sym_BANG] = ACTIONS(1027), - [anon_sym_AMP] = ACTIONS(1027), - [anon_sym_PIPE] = ACTIONS(1027), - [anon_sym_AMP_AMP] = ACTIONS(1029), - [anon_sym_PIPE_PIPE] = ACTIONS(1029), - [anon_sym_LT_LT] = ACTIONS(1027), - [anon_sym_GT_GT] = ACTIONS(1027), - [anon_sym_PLUS_EQ] = ACTIONS(1029), - [anon_sym_DASH_EQ] = ACTIONS(1029), - [anon_sym_STAR_EQ] = ACTIONS(1029), - [anon_sym_SLASH_EQ] = ACTIONS(1029), - [anon_sym_PERCENT_EQ] = ACTIONS(1029), - [anon_sym_CARET_EQ] = ACTIONS(1029), - [anon_sym_AMP_EQ] = ACTIONS(1029), - [anon_sym_PIPE_EQ] = ACTIONS(1029), - [anon_sym_LT_LT_EQ] = ACTIONS(1029), - [anon_sym_GT_GT_EQ] = ACTIONS(1029), - [anon_sym_EQ] = ACTIONS(1027), - [anon_sym_EQ_EQ] = ACTIONS(1029), - [anon_sym_BANG_EQ] = ACTIONS(1029), - [anon_sym_GT] = ACTIONS(1027), - [anon_sym_LT] = ACTIONS(1027), - [anon_sym_GT_EQ] = ACTIONS(1029), - [anon_sym_LT_EQ] = ACTIONS(1029), - [anon_sym_AT] = ACTIONS(1029), - [anon_sym__] = ACTIONS(1027), - [anon_sym_DOT] = ACTIONS(1027), - [anon_sym_DOT_DOT] = ACTIONS(1027), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1029), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1029), - [anon_sym_COMMA] = ACTIONS(1029), - [anon_sym_COLON_COLON] = ACTIONS(1029), - [anon_sym_DASH_GT] = ACTIONS(1029), - [anon_sym_POUND] = ACTIONS(1029), - [anon_sym_SQUOTE] = ACTIONS(1027), - [anon_sym_as] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1027), - [anon_sym_await] = ACTIONS(1027), - [anon_sym_break] = ACTIONS(1027), - [anon_sym_const] = ACTIONS(1027), - [anon_sym_continue] = ACTIONS(1027), - [anon_sym_default] = ACTIONS(1027), - [anon_sym_enum] = ACTIONS(1027), - [anon_sym_fn] = ACTIONS(1027), - [anon_sym_for] = ACTIONS(1027), - [anon_sym_gen] = ACTIONS(1027), - [anon_sym_if] = ACTIONS(1027), - [anon_sym_impl] = ACTIONS(1027), - [anon_sym_let] = ACTIONS(1027), - [anon_sym_loop] = ACTIONS(1027), - [anon_sym_match] = ACTIONS(1027), - [anon_sym_mod] = ACTIONS(1027), - [anon_sym_pub] = ACTIONS(1027), - [anon_sym_return] = ACTIONS(1027), - [anon_sym_static] = ACTIONS(1027), - [anon_sym_struct] = ACTIONS(1027), - [anon_sym_trait] = ACTIONS(1027), - [anon_sym_type] = ACTIONS(1027), - [anon_sym_union] = ACTIONS(1027), - [anon_sym_unsafe] = ACTIONS(1027), - [anon_sym_use] = ACTIONS(1027), - [anon_sym_where] = ACTIONS(1027), - [anon_sym_while] = ACTIONS(1027), - [sym_mutable_specifier] = ACTIONS(1027), - [sym_integer_literal] = ACTIONS(1029), - [aux_sym_string_literal_token1] = ACTIONS(1029), - [sym_char_literal] = ACTIONS(1029), - [anon_sym_true] = ACTIONS(1027), - [anon_sym_false] = ACTIONS(1027), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1027), - [sym_super] = ACTIONS(1027), - [sym_crate] = ACTIONS(1027), - [sym_metavariable] = ACTIONS(1029), - [sym__raw_string_literal_start] = ACTIONS(1029), - [sym_float_literal] = ACTIONS(1029), - }, - [186] = { - [sym_attribute_item] = STATE(1011), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1623), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(186), - [sym_block_comment] = STATE(186), - [aux_sym_enum_variant_list_repeat1] = STATE(207), + [aux_sym_mod_item_repeat1] = STATE(214), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1031), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(997), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -38092,107 +39107,339 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [187] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1687), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_let_condition] = STATE(2883), - [sym__let_chain] = STATE(2887), - [sym__condition] = STATE(2587), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(187), - [sym_block_comment] = STATE(187), - [sym_identifier] = ACTIONS(467), + [184] = { + [sym_line_comment] = STATE(184), + [sym_block_comment] = STATE(184), + [sym_identifier] = ACTIONS(999), + [anon_sym_SEMI] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1001), + [anon_sym_RPAREN] = ACTIONS(1001), + [anon_sym_LBRACK] = ACTIONS(1001), + [anon_sym_RBRACK] = ACTIONS(1001), + [anon_sym_LBRACE] = ACTIONS(1001), + [anon_sym_RBRACE] = ACTIONS(1001), + [anon_sym_EQ_GT] = ACTIONS(1001), + [anon_sym_COLON] = ACTIONS(999), + [anon_sym_DOLLAR] = ACTIONS(999), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_STAR] = ACTIONS(999), + [anon_sym_QMARK] = ACTIONS(1001), + [anon_sym_u8] = ACTIONS(999), + [anon_sym_i8] = ACTIONS(999), + [anon_sym_u16] = ACTIONS(999), + [anon_sym_i16] = ACTIONS(999), + [anon_sym_u32] = ACTIONS(999), + [anon_sym_i32] = ACTIONS(999), + [anon_sym_u64] = ACTIONS(999), + [anon_sym_i64] = ACTIONS(999), + [anon_sym_u128] = ACTIONS(999), + [anon_sym_i128] = ACTIONS(999), + [anon_sym_isize] = ACTIONS(999), + [anon_sym_usize] = ACTIONS(999), + [anon_sym_f32] = ACTIONS(999), + [anon_sym_f64] = ACTIONS(999), + [anon_sym_bool] = ACTIONS(999), + [anon_sym_str] = ACTIONS(999), + [anon_sym_char] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(999), + [anon_sym_PERCENT] = ACTIONS(999), + [anon_sym_CARET] = ACTIONS(999), + [anon_sym_BANG] = ACTIONS(999), + [anon_sym_AMP] = ACTIONS(999), + [anon_sym_PIPE] = ACTIONS(999), + [anon_sym_AMP_AMP] = ACTIONS(1001), + [anon_sym_PIPE_PIPE] = ACTIONS(1001), + [anon_sym_LT_LT] = ACTIONS(999), + [anon_sym_GT_GT] = ACTIONS(999), + [anon_sym_PLUS_EQ] = ACTIONS(1001), + [anon_sym_DASH_EQ] = ACTIONS(1001), + [anon_sym_STAR_EQ] = ACTIONS(1001), + [anon_sym_SLASH_EQ] = ACTIONS(1001), + [anon_sym_PERCENT_EQ] = ACTIONS(1001), + [anon_sym_CARET_EQ] = ACTIONS(1001), + [anon_sym_AMP_EQ] = ACTIONS(1001), + [anon_sym_PIPE_EQ] = ACTIONS(1001), + [anon_sym_LT_LT_EQ] = ACTIONS(1001), + [anon_sym_GT_GT_EQ] = ACTIONS(1001), + [anon_sym_EQ] = ACTIONS(999), + [anon_sym_EQ_EQ] = ACTIONS(1001), + [anon_sym_BANG_EQ] = ACTIONS(1001), + [anon_sym_GT] = ACTIONS(999), + [anon_sym_LT] = ACTIONS(999), + [anon_sym_GT_EQ] = ACTIONS(1001), + [anon_sym_LT_EQ] = ACTIONS(1001), + [anon_sym_AT] = ACTIONS(1001), + [anon_sym__] = ACTIONS(999), + [anon_sym_DOT] = ACTIONS(999), + [anon_sym_DOT_DOT] = ACTIONS(999), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1001), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1001), + [anon_sym_COMMA] = ACTIONS(1001), + [anon_sym_COLON_COLON] = ACTIONS(1001), + [anon_sym_DASH_GT] = ACTIONS(1001), + [anon_sym_POUND] = ACTIONS(1001), + [anon_sym_SQUOTE] = ACTIONS(999), + [anon_sym_as] = ACTIONS(999), + [anon_sym_async] = ACTIONS(999), + [anon_sym_await] = ACTIONS(999), + [anon_sym_break] = ACTIONS(999), + [anon_sym_const] = ACTIONS(999), + [anon_sym_continue] = ACTIONS(999), + [anon_sym_default] = ACTIONS(999), + [anon_sym_enum] = ACTIONS(999), + [anon_sym_fn] = ACTIONS(999), + [anon_sym_for] = ACTIONS(999), + [anon_sym_gen] = ACTIONS(999), + [anon_sym_if] = ACTIONS(999), + [anon_sym_impl] = ACTIONS(999), + [anon_sym_let] = ACTIONS(999), + [anon_sym_loop] = ACTIONS(999), + [anon_sym_match] = ACTIONS(999), + [anon_sym_mod] = ACTIONS(999), + [anon_sym_pub] = ACTIONS(999), + [anon_sym_return] = ACTIONS(999), + [anon_sym_static] = ACTIONS(999), + [anon_sym_struct] = ACTIONS(999), + [anon_sym_trait] = ACTIONS(999), + [anon_sym_type] = ACTIONS(999), + [anon_sym_union] = ACTIONS(999), + [anon_sym_unsafe] = ACTIONS(999), + [anon_sym_use] = ACTIONS(999), + [anon_sym_where] = ACTIONS(999), + [anon_sym_while] = ACTIONS(999), + [sym_mutable_specifier] = ACTIONS(999), + [sym_integer_literal] = ACTIONS(1001), + [aux_sym_string_literal_token1] = ACTIONS(1001), + [sym_char_literal] = ACTIONS(1001), + [anon_sym_true] = ACTIONS(999), + [anon_sym_false] = ACTIONS(999), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(999), + [sym_super] = ACTIONS(999), + [sym_crate] = ACTIONS(999), + [sym_metavariable] = ACTIONS(1001), + [sym__raw_string_literal_start] = ACTIONS(1001), + [sym_float_literal] = ACTIONS(1001), + }, + [185] = { + [sym_line_comment] = STATE(185), + [sym_block_comment] = STATE(185), + [sym_identifier] = ACTIONS(1003), + [anon_sym_SEMI] = ACTIONS(1005), + [anon_sym_LPAREN] = ACTIONS(1005), + [anon_sym_RPAREN] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(1005), + [anon_sym_RBRACK] = ACTIONS(1005), + [anon_sym_LBRACE] = ACTIONS(1005), + [anon_sym_RBRACE] = ACTIONS(1005), + [anon_sym_EQ_GT] = ACTIONS(1005), + [anon_sym_COLON] = ACTIONS(1003), + [anon_sym_DOLLAR] = ACTIONS(1003), + [anon_sym_PLUS] = ACTIONS(1003), + [anon_sym_STAR] = ACTIONS(1003), + [anon_sym_QMARK] = ACTIONS(1005), + [anon_sym_u8] = ACTIONS(1003), + [anon_sym_i8] = ACTIONS(1003), + [anon_sym_u16] = ACTIONS(1003), + [anon_sym_i16] = ACTIONS(1003), + [anon_sym_u32] = ACTIONS(1003), + [anon_sym_i32] = ACTIONS(1003), + [anon_sym_u64] = ACTIONS(1003), + [anon_sym_i64] = ACTIONS(1003), + [anon_sym_u128] = ACTIONS(1003), + [anon_sym_i128] = ACTIONS(1003), + [anon_sym_isize] = ACTIONS(1003), + [anon_sym_usize] = ACTIONS(1003), + [anon_sym_f32] = ACTIONS(1003), + [anon_sym_f64] = ACTIONS(1003), + [anon_sym_bool] = ACTIONS(1003), + [anon_sym_str] = ACTIONS(1003), + [anon_sym_char] = ACTIONS(1003), + [anon_sym_DASH] = ACTIONS(1003), + [anon_sym_SLASH] = ACTIONS(1003), + [anon_sym_PERCENT] = ACTIONS(1003), + [anon_sym_CARET] = ACTIONS(1003), + [anon_sym_BANG] = ACTIONS(1003), + [anon_sym_AMP] = ACTIONS(1003), + [anon_sym_PIPE] = ACTIONS(1003), + [anon_sym_AMP_AMP] = ACTIONS(1005), + [anon_sym_PIPE_PIPE] = ACTIONS(1005), + [anon_sym_LT_LT] = ACTIONS(1003), + [anon_sym_GT_GT] = ACTIONS(1003), + [anon_sym_PLUS_EQ] = ACTIONS(1005), + [anon_sym_DASH_EQ] = ACTIONS(1005), + [anon_sym_STAR_EQ] = ACTIONS(1005), + [anon_sym_SLASH_EQ] = ACTIONS(1005), + [anon_sym_PERCENT_EQ] = ACTIONS(1005), + [anon_sym_CARET_EQ] = ACTIONS(1005), + [anon_sym_AMP_EQ] = ACTIONS(1005), + [anon_sym_PIPE_EQ] = ACTIONS(1005), + [anon_sym_LT_LT_EQ] = ACTIONS(1005), + [anon_sym_GT_GT_EQ] = ACTIONS(1005), + [anon_sym_EQ] = ACTIONS(1003), + [anon_sym_EQ_EQ] = ACTIONS(1005), + [anon_sym_BANG_EQ] = ACTIONS(1005), + [anon_sym_GT] = ACTIONS(1003), + [anon_sym_LT] = ACTIONS(1003), + [anon_sym_GT_EQ] = ACTIONS(1005), + [anon_sym_LT_EQ] = ACTIONS(1005), + [anon_sym_AT] = ACTIONS(1005), + [anon_sym__] = ACTIONS(1003), + [anon_sym_DOT] = ACTIONS(1003), + [anon_sym_DOT_DOT] = ACTIONS(1003), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1005), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1005), + [anon_sym_COMMA] = ACTIONS(1005), + [anon_sym_COLON_COLON] = ACTIONS(1005), + [anon_sym_DASH_GT] = ACTIONS(1005), + [anon_sym_POUND] = ACTIONS(1005), + [anon_sym_SQUOTE] = ACTIONS(1003), + [anon_sym_as] = ACTIONS(1003), + [anon_sym_async] = ACTIONS(1003), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_break] = ACTIONS(1003), + [anon_sym_const] = ACTIONS(1003), + [anon_sym_continue] = ACTIONS(1003), + [anon_sym_default] = ACTIONS(1003), + [anon_sym_enum] = ACTIONS(1003), + [anon_sym_fn] = ACTIONS(1003), + [anon_sym_for] = ACTIONS(1003), + [anon_sym_gen] = ACTIONS(1003), + [anon_sym_if] = ACTIONS(1003), + [anon_sym_impl] = ACTIONS(1003), + [anon_sym_let] = ACTIONS(1003), + [anon_sym_loop] = ACTIONS(1003), + [anon_sym_match] = ACTIONS(1003), + [anon_sym_mod] = ACTIONS(1003), + [anon_sym_pub] = ACTIONS(1003), + [anon_sym_return] = ACTIONS(1003), + [anon_sym_static] = ACTIONS(1003), + [anon_sym_struct] = ACTIONS(1003), + [anon_sym_trait] = ACTIONS(1003), + [anon_sym_type] = ACTIONS(1003), + [anon_sym_union] = ACTIONS(1003), + [anon_sym_unsafe] = ACTIONS(1003), + [anon_sym_use] = ACTIONS(1003), + [anon_sym_where] = ACTIONS(1003), + [anon_sym_while] = ACTIONS(1003), + [sym_mutable_specifier] = ACTIONS(1003), + [sym_integer_literal] = ACTIONS(1005), + [aux_sym_string_literal_token1] = ACTIONS(1005), + [sym_char_literal] = ACTIONS(1005), + [anon_sym_true] = ACTIONS(1003), + [anon_sym_false] = ACTIONS(1003), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1003), + [sym_super] = ACTIONS(1003), + [sym_crate] = ACTIONS(1003), + [sym_metavariable] = ACTIONS(1005), + [sym__raw_string_literal_start] = ACTIONS(1005), + [sym_float_literal] = ACTIONS(1005), + }, + [186] = { + [sym_attribute_item] = STATE(1157), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1885), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(186), + [sym_block_comment] = STATE(186), + [aux_sym_mod_item_repeat1] = STATE(214), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1007), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(963), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(748), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(965), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -38201,114 +39448,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [188] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1687), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_let_condition] = STATE(2883), - [sym__let_chain] = STATE(2887), - [sym__condition] = STATE(2681), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(188), - [sym_block_comment] = STATE(188), - [sym_identifier] = ACTIONS(467), + [187] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3303), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2016), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1794), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_let_condition] = STATE(3218), + [sym__let_chain] = STATE(3220), + [sym__condition] = STATE(3064), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(187), + [sym_block_comment] = STATE(187), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(903), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_BANG] = ACTIONS(903), + [anon_sym_AMP] = ACTIONS(905), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(963), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(907), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(495), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(497), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(499), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(965), + [anon_sym_let] = ACTIONS(909), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(501), + [anon_sym_static] = ACTIONS(503), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(505), + [anon_sym_move] = ACTIONS(507), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -38317,114 +39564,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [189] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1687), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_let_condition] = STATE(2883), - [sym__let_chain] = STATE(2887), - [sym__condition] = STATE(2695), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(189), - [sym_block_comment] = STATE(189), - [sym_identifier] = ACTIONS(467), + [188] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3303), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2016), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1794), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_let_condition] = STATE(3218), + [sym__let_chain] = STATE(3220), + [sym__condition] = STATE(3033), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(188), + [sym_block_comment] = STATE(188), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(903), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_BANG] = ACTIONS(903), + [anon_sym_AMP] = ACTIONS(905), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(963), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(907), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(495), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(497), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(499), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(965), + [anon_sym_let] = ACTIONS(909), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(501), + [anon_sym_static] = ACTIONS(503), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(505), + [anon_sym_move] = ACTIONS(507), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -38433,578 +39680,694 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, + [189] = { + [sym_line_comment] = STATE(189), + [sym_block_comment] = STATE(189), + [sym_identifier] = ACTIONS(1009), + [anon_sym_SEMI] = ACTIONS(1011), + [anon_sym_LPAREN] = ACTIONS(1011), + [anon_sym_RPAREN] = ACTIONS(1011), + [anon_sym_LBRACK] = ACTIONS(1011), + [anon_sym_RBRACK] = ACTIONS(1011), + [anon_sym_LBRACE] = ACTIONS(1011), + [anon_sym_RBRACE] = ACTIONS(1011), + [anon_sym_EQ_GT] = ACTIONS(1011), + [anon_sym_COLON] = ACTIONS(1009), + [anon_sym_DOLLAR] = ACTIONS(1009), + [anon_sym_PLUS] = ACTIONS(1009), + [anon_sym_STAR] = ACTIONS(1009), + [anon_sym_QMARK] = ACTIONS(1011), + [anon_sym_u8] = ACTIONS(1009), + [anon_sym_i8] = ACTIONS(1009), + [anon_sym_u16] = ACTIONS(1009), + [anon_sym_i16] = ACTIONS(1009), + [anon_sym_u32] = ACTIONS(1009), + [anon_sym_i32] = ACTIONS(1009), + [anon_sym_u64] = ACTIONS(1009), + [anon_sym_i64] = ACTIONS(1009), + [anon_sym_u128] = ACTIONS(1009), + [anon_sym_i128] = ACTIONS(1009), + [anon_sym_isize] = ACTIONS(1009), + [anon_sym_usize] = ACTIONS(1009), + [anon_sym_f32] = ACTIONS(1009), + [anon_sym_f64] = ACTIONS(1009), + [anon_sym_bool] = ACTIONS(1009), + [anon_sym_str] = ACTIONS(1009), + [anon_sym_char] = ACTIONS(1009), + [anon_sym_DASH] = ACTIONS(1009), + [anon_sym_SLASH] = ACTIONS(1009), + [anon_sym_PERCENT] = ACTIONS(1009), + [anon_sym_CARET] = ACTIONS(1009), + [anon_sym_BANG] = ACTIONS(1009), + [anon_sym_AMP] = ACTIONS(1009), + [anon_sym_PIPE] = ACTIONS(1009), + [anon_sym_AMP_AMP] = ACTIONS(1011), + [anon_sym_PIPE_PIPE] = ACTIONS(1011), + [anon_sym_LT_LT] = ACTIONS(1009), + [anon_sym_GT_GT] = ACTIONS(1009), + [anon_sym_PLUS_EQ] = ACTIONS(1011), + [anon_sym_DASH_EQ] = ACTIONS(1011), + [anon_sym_STAR_EQ] = ACTIONS(1011), + [anon_sym_SLASH_EQ] = ACTIONS(1011), + [anon_sym_PERCENT_EQ] = ACTIONS(1011), + [anon_sym_CARET_EQ] = ACTIONS(1011), + [anon_sym_AMP_EQ] = ACTIONS(1011), + [anon_sym_PIPE_EQ] = ACTIONS(1011), + [anon_sym_LT_LT_EQ] = ACTIONS(1011), + [anon_sym_GT_GT_EQ] = ACTIONS(1011), + [anon_sym_EQ] = ACTIONS(1009), + [anon_sym_EQ_EQ] = ACTIONS(1011), + [anon_sym_BANG_EQ] = ACTIONS(1011), + [anon_sym_GT] = ACTIONS(1009), + [anon_sym_LT] = ACTIONS(1009), + [anon_sym_GT_EQ] = ACTIONS(1011), + [anon_sym_LT_EQ] = ACTIONS(1011), + [anon_sym_AT] = ACTIONS(1011), + [anon_sym__] = ACTIONS(1009), + [anon_sym_DOT] = ACTIONS(1009), + [anon_sym_DOT_DOT] = ACTIONS(1009), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1011), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1011), + [anon_sym_COMMA] = ACTIONS(1011), + [anon_sym_COLON_COLON] = ACTIONS(1011), + [anon_sym_DASH_GT] = ACTIONS(1011), + [anon_sym_POUND] = ACTIONS(1011), + [anon_sym_SQUOTE] = ACTIONS(1009), + [anon_sym_as] = ACTIONS(1009), + [anon_sym_async] = ACTIONS(1009), + [anon_sym_await] = ACTIONS(1009), + [anon_sym_break] = ACTIONS(1009), + [anon_sym_const] = ACTIONS(1009), + [anon_sym_continue] = ACTIONS(1009), + [anon_sym_default] = ACTIONS(1009), + [anon_sym_enum] = ACTIONS(1009), + [anon_sym_fn] = ACTIONS(1009), + [anon_sym_for] = ACTIONS(1009), + [anon_sym_gen] = ACTIONS(1009), + [anon_sym_if] = ACTIONS(1009), + [anon_sym_impl] = ACTIONS(1009), + [anon_sym_let] = ACTIONS(1009), + [anon_sym_loop] = ACTIONS(1009), + [anon_sym_match] = ACTIONS(1009), + [anon_sym_mod] = ACTIONS(1009), + [anon_sym_pub] = ACTIONS(1009), + [anon_sym_return] = ACTIONS(1009), + [anon_sym_static] = ACTIONS(1009), + [anon_sym_struct] = ACTIONS(1009), + [anon_sym_trait] = ACTIONS(1009), + [anon_sym_type] = ACTIONS(1009), + [anon_sym_union] = ACTIONS(1009), + [anon_sym_unsafe] = ACTIONS(1009), + [anon_sym_use] = ACTIONS(1009), + [anon_sym_where] = ACTIONS(1009), + [anon_sym_while] = ACTIONS(1009), + [sym_mutable_specifier] = ACTIONS(1009), + [sym_integer_literal] = ACTIONS(1011), + [aux_sym_string_literal_token1] = ACTIONS(1011), + [sym_char_literal] = ACTIONS(1011), + [anon_sym_true] = ACTIONS(1009), + [anon_sym_false] = ACTIONS(1009), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1009), + [sym_super] = ACTIONS(1009), + [sym_crate] = ACTIONS(1009), + [sym_metavariable] = ACTIONS(1011), + [sym__raw_string_literal_start] = ACTIONS(1011), + [sym_float_literal] = ACTIONS(1011), + }, [190] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1687), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_let_condition] = STATE(2883), - [sym__let_chain] = STATE(2887), - [sym__condition] = STATE(2582), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), [sym_line_comment] = STATE(190), [sym_block_comment] = STATE(190), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(963), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(965), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), + [sym_identifier] = ACTIONS(758), + [anon_sym_SEMI] = ACTIONS(760), + [anon_sym_LPAREN] = ACTIONS(760), + [anon_sym_RPAREN] = ACTIONS(760), + [anon_sym_LBRACK] = ACTIONS(760), + [anon_sym_RBRACK] = ACTIONS(760), + [anon_sym_LBRACE] = ACTIONS(760), + [anon_sym_RBRACE] = ACTIONS(760), + [anon_sym_EQ_GT] = ACTIONS(760), + [anon_sym_COLON] = ACTIONS(758), + [anon_sym_DOLLAR] = ACTIONS(758), + [anon_sym_PLUS] = ACTIONS(758), + [anon_sym_STAR] = ACTIONS(758), + [anon_sym_QMARK] = ACTIONS(760), + [anon_sym_u8] = ACTIONS(758), + [anon_sym_i8] = ACTIONS(758), + [anon_sym_u16] = ACTIONS(758), + [anon_sym_i16] = ACTIONS(758), + [anon_sym_u32] = ACTIONS(758), + [anon_sym_i32] = ACTIONS(758), + [anon_sym_u64] = ACTIONS(758), + [anon_sym_i64] = ACTIONS(758), + [anon_sym_u128] = ACTIONS(758), + [anon_sym_i128] = ACTIONS(758), + [anon_sym_isize] = ACTIONS(758), + [anon_sym_usize] = ACTIONS(758), + [anon_sym_f32] = ACTIONS(758), + [anon_sym_f64] = ACTIONS(758), + [anon_sym_bool] = ACTIONS(758), + [anon_sym_str] = ACTIONS(758), + [anon_sym_char] = ACTIONS(758), + [anon_sym_DASH] = ACTIONS(758), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_PERCENT] = ACTIONS(758), + [anon_sym_CARET] = ACTIONS(758), + [anon_sym_BANG] = ACTIONS(758), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(758), + [anon_sym_AMP_AMP] = ACTIONS(760), + [anon_sym_PIPE_PIPE] = ACTIONS(760), + [anon_sym_LT_LT] = ACTIONS(758), + [anon_sym_GT_GT] = ACTIONS(758), + [anon_sym_PLUS_EQ] = ACTIONS(760), + [anon_sym_DASH_EQ] = ACTIONS(760), + [anon_sym_STAR_EQ] = ACTIONS(760), + [anon_sym_SLASH_EQ] = ACTIONS(760), + [anon_sym_PERCENT_EQ] = ACTIONS(760), + [anon_sym_CARET_EQ] = ACTIONS(760), + [anon_sym_AMP_EQ] = ACTIONS(760), + [anon_sym_PIPE_EQ] = ACTIONS(760), + [anon_sym_LT_LT_EQ] = ACTIONS(760), + [anon_sym_GT_GT_EQ] = ACTIONS(760), + [anon_sym_EQ] = ACTIONS(758), + [anon_sym_EQ_EQ] = ACTIONS(760), + [anon_sym_BANG_EQ] = ACTIONS(760), + [anon_sym_GT] = ACTIONS(758), + [anon_sym_LT] = ACTIONS(758), + [anon_sym_GT_EQ] = ACTIONS(760), + [anon_sym_LT_EQ] = ACTIONS(760), + [anon_sym_AT] = ACTIONS(760), + [anon_sym__] = ACTIONS(758), + [anon_sym_DOT] = ACTIONS(758), + [anon_sym_DOT_DOT] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [anon_sym_DOT_DOT_EQ] = ACTIONS(760), + [anon_sym_COMMA] = ACTIONS(760), + [anon_sym_COLON_COLON] = ACTIONS(760), + [anon_sym_DASH_GT] = ACTIONS(760), + [anon_sym_POUND] = ACTIONS(760), + [anon_sym_SQUOTE] = ACTIONS(758), + [anon_sym_as] = ACTIONS(758), + [anon_sym_async] = ACTIONS(758), + [anon_sym_await] = ACTIONS(758), + [anon_sym_break] = ACTIONS(758), + [anon_sym_const] = ACTIONS(758), + [anon_sym_continue] = ACTIONS(758), + [anon_sym_default] = ACTIONS(758), + [anon_sym_enum] = ACTIONS(758), + [anon_sym_fn] = ACTIONS(758), + [anon_sym_for] = ACTIONS(758), + [anon_sym_gen] = ACTIONS(758), + [anon_sym_if] = ACTIONS(758), + [anon_sym_impl] = ACTIONS(758), + [anon_sym_let] = ACTIONS(758), + [anon_sym_loop] = ACTIONS(758), + [anon_sym_match] = ACTIONS(758), + [anon_sym_mod] = ACTIONS(758), + [anon_sym_pub] = ACTIONS(758), + [anon_sym_return] = ACTIONS(758), + [anon_sym_static] = ACTIONS(758), + [anon_sym_struct] = ACTIONS(758), + [anon_sym_trait] = ACTIONS(758), + [anon_sym_type] = ACTIONS(758), + [anon_sym_union] = ACTIONS(758), + [anon_sym_unsafe] = ACTIONS(758), + [anon_sym_use] = ACTIONS(758), + [anon_sym_where] = ACTIONS(758), + [anon_sym_while] = ACTIONS(758), + [sym_mutable_specifier] = ACTIONS(758), + [sym_integer_literal] = ACTIONS(760), + [aux_sym_string_literal_token1] = ACTIONS(760), + [sym_char_literal] = ACTIONS(760), + [anon_sym_true] = ACTIONS(758), + [anon_sym_false] = ACTIONS(758), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [sym_self] = ACTIONS(758), + [sym_super] = ACTIONS(758), + [sym_crate] = ACTIONS(758), + [sym_metavariable] = ACTIONS(760), + [sym__raw_string_literal_start] = ACTIONS(760), + [sym_float_literal] = ACTIONS(760), }, [191] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1687), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_let_condition] = STATE(2883), - [sym__let_chain] = STATE(2887), - [sym__condition] = STATE(2560), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), [sym_line_comment] = STATE(191), [sym_block_comment] = STATE(191), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(963), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(965), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), + [sym_identifier] = ACTIONS(758), + [anon_sym_SEMI] = ACTIONS(760), + [anon_sym_LPAREN] = ACTIONS(760), + [anon_sym_RPAREN] = ACTIONS(760), + [anon_sym_LBRACK] = ACTIONS(760), + [anon_sym_RBRACK] = ACTIONS(760), + [anon_sym_LBRACE] = ACTIONS(760), + [anon_sym_RBRACE] = ACTIONS(760), + [anon_sym_EQ_GT] = ACTIONS(760), + [anon_sym_COLON] = ACTIONS(1013), + [anon_sym_DOLLAR] = ACTIONS(758), + [anon_sym_PLUS] = ACTIONS(758), + [anon_sym_STAR] = ACTIONS(758), + [anon_sym_QMARK] = ACTIONS(760), + [anon_sym_u8] = ACTIONS(758), + [anon_sym_i8] = ACTIONS(758), + [anon_sym_u16] = ACTIONS(758), + [anon_sym_i16] = ACTIONS(758), + [anon_sym_u32] = ACTIONS(758), + [anon_sym_i32] = ACTIONS(758), + [anon_sym_u64] = ACTIONS(758), + [anon_sym_i64] = ACTIONS(758), + [anon_sym_u128] = ACTIONS(758), + [anon_sym_i128] = ACTIONS(758), + [anon_sym_isize] = ACTIONS(758), + [anon_sym_usize] = ACTIONS(758), + [anon_sym_f32] = ACTIONS(758), + [anon_sym_f64] = ACTIONS(758), + [anon_sym_bool] = ACTIONS(758), + [anon_sym_str] = ACTIONS(758), + [anon_sym_char] = ACTIONS(758), + [anon_sym_DASH] = ACTIONS(758), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_PERCENT] = ACTIONS(758), + [anon_sym_CARET] = ACTIONS(758), + [anon_sym_BANG] = ACTIONS(758), + [anon_sym_AMP] = ACTIONS(758), + [anon_sym_PIPE] = ACTIONS(758), + [anon_sym_AMP_AMP] = ACTIONS(760), + [anon_sym_PIPE_PIPE] = ACTIONS(760), + [anon_sym_LT_LT] = ACTIONS(758), + [anon_sym_GT_GT] = ACTIONS(758), + [anon_sym_PLUS_EQ] = ACTIONS(760), + [anon_sym_DASH_EQ] = ACTIONS(760), + [anon_sym_STAR_EQ] = ACTIONS(760), + [anon_sym_SLASH_EQ] = ACTIONS(760), + [anon_sym_PERCENT_EQ] = ACTIONS(760), + [anon_sym_CARET_EQ] = ACTIONS(760), + [anon_sym_AMP_EQ] = ACTIONS(760), + [anon_sym_PIPE_EQ] = ACTIONS(760), + [anon_sym_LT_LT_EQ] = ACTIONS(760), + [anon_sym_GT_GT_EQ] = ACTIONS(760), + [anon_sym_EQ] = ACTIONS(758), + [anon_sym_EQ_EQ] = ACTIONS(760), + [anon_sym_BANG_EQ] = ACTIONS(760), + [anon_sym_GT] = ACTIONS(758), + [anon_sym_LT] = ACTIONS(758), + [anon_sym_GT_EQ] = ACTIONS(760), + [anon_sym_LT_EQ] = ACTIONS(760), + [anon_sym_AT] = ACTIONS(760), + [anon_sym__] = ACTIONS(758), + [anon_sym_DOT] = ACTIONS(758), + [anon_sym_DOT_DOT] = ACTIONS(758), + [anon_sym_DOT_DOT_DOT] = ACTIONS(760), + [anon_sym_DOT_DOT_EQ] = ACTIONS(760), + [anon_sym_COMMA] = ACTIONS(760), + [anon_sym_COLON_COLON] = ACTIONS(760), + [anon_sym_DASH_GT] = ACTIONS(760), + [anon_sym_POUND] = ACTIONS(760), + [anon_sym_SQUOTE] = ACTIONS(758), + [anon_sym_as] = ACTIONS(758), + [anon_sym_async] = ACTIONS(758), + [anon_sym_await] = ACTIONS(758), + [anon_sym_break] = ACTIONS(758), + [anon_sym_const] = ACTIONS(758), + [anon_sym_continue] = ACTIONS(758), + [anon_sym_default] = ACTIONS(758), + [anon_sym_enum] = ACTIONS(758), + [anon_sym_fn] = ACTIONS(758), + [anon_sym_for] = ACTIONS(758), + [anon_sym_gen] = ACTIONS(758), + [anon_sym_if] = ACTIONS(758), + [anon_sym_impl] = ACTIONS(758), + [anon_sym_let] = ACTIONS(758), + [anon_sym_loop] = ACTIONS(758), + [anon_sym_match] = ACTIONS(758), + [anon_sym_mod] = ACTIONS(758), + [anon_sym_pub] = ACTIONS(758), + [anon_sym_return] = ACTIONS(758), + [anon_sym_static] = ACTIONS(758), + [anon_sym_struct] = ACTIONS(758), + [anon_sym_trait] = ACTIONS(758), + [anon_sym_type] = ACTIONS(758), + [anon_sym_union] = ACTIONS(758), + [anon_sym_unsafe] = ACTIONS(758), + [anon_sym_use] = ACTIONS(758), + [anon_sym_where] = ACTIONS(758), + [anon_sym_while] = ACTIONS(758), + [sym_mutable_specifier] = ACTIONS(758), + [sym_integer_literal] = ACTIONS(760), + [aux_sym_string_literal_token1] = ACTIONS(760), + [sym_char_literal] = ACTIONS(760), + [anon_sym_true] = ACTIONS(758), + [anon_sym_false] = ACTIONS(758), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [sym_self] = ACTIONS(758), + [sym_super] = ACTIONS(758), + [sym_crate] = ACTIONS(758), + [sym_metavariable] = ACTIONS(760), + [sym__raw_string_literal_start] = ACTIONS(760), + [sym_float_literal] = ACTIONS(760), }, [192] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1687), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_let_condition] = STATE(2883), - [sym__let_chain] = STATE(2887), - [sym__condition] = STATE(2562), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), [sym_line_comment] = STATE(192), [sym_block_comment] = STATE(192), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(963), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(965), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [sym_identifier] = ACTIONS(1015), + [anon_sym_SEMI] = ACTIONS(1017), + [anon_sym_LPAREN] = ACTIONS(1017), + [anon_sym_RPAREN] = ACTIONS(1017), + [anon_sym_LBRACK] = ACTIONS(1017), + [anon_sym_RBRACK] = ACTIONS(1017), + [anon_sym_LBRACE] = ACTIONS(1017), + [anon_sym_RBRACE] = ACTIONS(1017), + [anon_sym_EQ_GT] = ACTIONS(1017), + [anon_sym_COLON] = ACTIONS(1015), + [anon_sym_DOLLAR] = ACTIONS(1015), + [anon_sym_PLUS] = ACTIONS(1015), + [anon_sym_STAR] = ACTIONS(1015), + [anon_sym_QMARK] = ACTIONS(1017), + [anon_sym_u8] = ACTIONS(1015), + [anon_sym_i8] = ACTIONS(1015), + [anon_sym_u16] = ACTIONS(1015), + [anon_sym_i16] = ACTIONS(1015), + [anon_sym_u32] = ACTIONS(1015), + [anon_sym_i32] = ACTIONS(1015), + [anon_sym_u64] = ACTIONS(1015), + [anon_sym_i64] = ACTIONS(1015), + [anon_sym_u128] = ACTIONS(1015), + [anon_sym_i128] = ACTIONS(1015), + [anon_sym_isize] = ACTIONS(1015), + [anon_sym_usize] = ACTIONS(1015), + [anon_sym_f32] = ACTIONS(1015), + [anon_sym_f64] = ACTIONS(1015), + [anon_sym_bool] = ACTIONS(1015), + [anon_sym_str] = ACTIONS(1015), + [anon_sym_char] = ACTIONS(1015), + [anon_sym_DASH] = ACTIONS(1015), + [anon_sym_SLASH] = ACTIONS(1015), + [anon_sym_PERCENT] = ACTIONS(1015), + [anon_sym_CARET] = ACTIONS(1015), + [anon_sym_BANG] = ACTIONS(1015), + [anon_sym_AMP] = ACTIONS(1015), + [anon_sym_PIPE] = ACTIONS(1015), + [anon_sym_AMP_AMP] = ACTIONS(1017), + [anon_sym_PIPE_PIPE] = ACTIONS(1017), + [anon_sym_LT_LT] = ACTIONS(1015), + [anon_sym_GT_GT] = ACTIONS(1015), + [anon_sym_PLUS_EQ] = ACTIONS(1017), + [anon_sym_DASH_EQ] = ACTIONS(1017), + [anon_sym_STAR_EQ] = ACTIONS(1017), + [anon_sym_SLASH_EQ] = ACTIONS(1017), + [anon_sym_PERCENT_EQ] = ACTIONS(1017), + [anon_sym_CARET_EQ] = ACTIONS(1017), + [anon_sym_AMP_EQ] = ACTIONS(1017), + [anon_sym_PIPE_EQ] = ACTIONS(1017), + [anon_sym_LT_LT_EQ] = ACTIONS(1017), + [anon_sym_GT_GT_EQ] = ACTIONS(1017), + [anon_sym_EQ] = ACTIONS(1015), + [anon_sym_EQ_EQ] = ACTIONS(1017), + [anon_sym_BANG_EQ] = ACTIONS(1017), + [anon_sym_GT] = ACTIONS(1015), + [anon_sym_LT] = ACTIONS(1015), + [anon_sym_GT_EQ] = ACTIONS(1017), + [anon_sym_LT_EQ] = ACTIONS(1017), + [anon_sym_AT] = ACTIONS(1017), + [anon_sym__] = ACTIONS(1015), + [anon_sym_DOT] = ACTIONS(1015), + [anon_sym_DOT_DOT] = ACTIONS(1015), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1017), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1017), + [anon_sym_COMMA] = ACTIONS(1017), + [anon_sym_COLON_COLON] = ACTIONS(1017), + [anon_sym_DASH_GT] = ACTIONS(1017), + [anon_sym_POUND] = ACTIONS(1017), + [anon_sym_SQUOTE] = ACTIONS(1015), + [anon_sym_as] = ACTIONS(1015), + [anon_sym_async] = ACTIONS(1015), + [anon_sym_await] = ACTIONS(1015), + [anon_sym_break] = ACTIONS(1015), + [anon_sym_const] = ACTIONS(1015), + [anon_sym_continue] = ACTIONS(1015), + [anon_sym_default] = ACTIONS(1015), + [anon_sym_enum] = ACTIONS(1015), + [anon_sym_fn] = ACTIONS(1015), + [anon_sym_for] = ACTIONS(1015), + [anon_sym_gen] = ACTIONS(1015), + [anon_sym_if] = ACTIONS(1015), + [anon_sym_impl] = ACTIONS(1015), + [anon_sym_let] = ACTIONS(1015), + [anon_sym_loop] = ACTIONS(1015), + [anon_sym_match] = ACTIONS(1015), + [anon_sym_mod] = ACTIONS(1015), + [anon_sym_pub] = ACTIONS(1015), + [anon_sym_return] = ACTIONS(1015), + [anon_sym_static] = ACTIONS(1015), + [anon_sym_struct] = ACTIONS(1015), + [anon_sym_trait] = ACTIONS(1015), + [anon_sym_type] = ACTIONS(1015), + [anon_sym_union] = ACTIONS(1015), + [anon_sym_unsafe] = ACTIONS(1015), + [anon_sym_use] = ACTIONS(1015), + [anon_sym_where] = ACTIONS(1015), + [anon_sym_while] = ACTIONS(1015), + [sym_mutable_specifier] = ACTIONS(1015), + [sym_integer_literal] = ACTIONS(1017), + [aux_sym_string_literal_token1] = ACTIONS(1017), + [sym_char_literal] = ACTIONS(1017), + [anon_sym_true] = ACTIONS(1015), + [anon_sym_false] = ACTIONS(1015), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1015), + [sym_super] = ACTIONS(1015), + [sym_crate] = ACTIONS(1015), + [sym_metavariable] = ACTIONS(1017), + [sym__raw_string_literal_start] = ACTIONS(1017), + [sym_float_literal] = ACTIONS(1017), }, [193] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1687), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_let_condition] = STATE(2883), - [sym__let_chain] = STATE(2887), - [sym__condition] = STATE(2588), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), [sym_line_comment] = STATE(193), [sym_block_comment] = STATE(193), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(963), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(965), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [sym_identifier] = ACTIONS(1019), + [anon_sym_SEMI] = ACTIONS(1021), + [anon_sym_LPAREN] = ACTIONS(1021), + [anon_sym_RPAREN] = ACTIONS(1021), + [anon_sym_LBRACK] = ACTIONS(1021), + [anon_sym_RBRACK] = ACTIONS(1021), + [anon_sym_LBRACE] = ACTIONS(1021), + [anon_sym_RBRACE] = ACTIONS(1021), + [anon_sym_EQ_GT] = ACTIONS(1021), + [anon_sym_COLON] = ACTIONS(1019), + [anon_sym_DOLLAR] = ACTIONS(1019), + [anon_sym_PLUS] = ACTIONS(1019), + [anon_sym_STAR] = ACTIONS(1019), + [anon_sym_QMARK] = ACTIONS(1021), + [anon_sym_u8] = ACTIONS(1019), + [anon_sym_i8] = ACTIONS(1019), + [anon_sym_u16] = ACTIONS(1019), + [anon_sym_i16] = ACTIONS(1019), + [anon_sym_u32] = ACTIONS(1019), + [anon_sym_i32] = ACTIONS(1019), + [anon_sym_u64] = ACTIONS(1019), + [anon_sym_i64] = ACTIONS(1019), + [anon_sym_u128] = ACTIONS(1019), + [anon_sym_i128] = ACTIONS(1019), + [anon_sym_isize] = ACTIONS(1019), + [anon_sym_usize] = ACTIONS(1019), + [anon_sym_f32] = ACTIONS(1019), + [anon_sym_f64] = ACTIONS(1019), + [anon_sym_bool] = ACTIONS(1019), + [anon_sym_str] = ACTIONS(1019), + [anon_sym_char] = ACTIONS(1019), + [anon_sym_DASH] = ACTIONS(1019), + [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_PERCENT] = ACTIONS(1019), + [anon_sym_CARET] = ACTIONS(1019), + [anon_sym_BANG] = ACTIONS(1019), + [anon_sym_AMP] = ACTIONS(1019), + [anon_sym_PIPE] = ACTIONS(1019), + [anon_sym_AMP_AMP] = ACTIONS(1021), + [anon_sym_PIPE_PIPE] = ACTIONS(1021), + [anon_sym_LT_LT] = ACTIONS(1019), + [anon_sym_GT_GT] = ACTIONS(1019), + [anon_sym_PLUS_EQ] = ACTIONS(1021), + [anon_sym_DASH_EQ] = ACTIONS(1021), + [anon_sym_STAR_EQ] = ACTIONS(1021), + [anon_sym_SLASH_EQ] = ACTIONS(1021), + [anon_sym_PERCENT_EQ] = ACTIONS(1021), + [anon_sym_CARET_EQ] = ACTIONS(1021), + [anon_sym_AMP_EQ] = ACTIONS(1021), + [anon_sym_PIPE_EQ] = ACTIONS(1021), + [anon_sym_LT_LT_EQ] = ACTIONS(1021), + [anon_sym_GT_GT_EQ] = ACTIONS(1021), + [anon_sym_EQ] = ACTIONS(1019), + [anon_sym_EQ_EQ] = ACTIONS(1021), + [anon_sym_BANG_EQ] = ACTIONS(1021), + [anon_sym_GT] = ACTIONS(1019), + [anon_sym_LT] = ACTIONS(1019), + [anon_sym_GT_EQ] = ACTIONS(1021), + [anon_sym_LT_EQ] = ACTIONS(1021), + [anon_sym_AT] = ACTIONS(1021), + [anon_sym__] = ACTIONS(1019), + [anon_sym_DOT] = ACTIONS(1019), + [anon_sym_DOT_DOT] = ACTIONS(1019), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1021), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1021), + [anon_sym_COMMA] = ACTIONS(1021), + [anon_sym_COLON_COLON] = ACTIONS(1021), + [anon_sym_DASH_GT] = ACTIONS(1021), + [anon_sym_POUND] = ACTIONS(1021), + [anon_sym_SQUOTE] = ACTIONS(1019), + [anon_sym_as] = ACTIONS(1019), + [anon_sym_async] = ACTIONS(1019), + [anon_sym_await] = ACTIONS(1019), + [anon_sym_break] = ACTIONS(1019), + [anon_sym_const] = ACTIONS(1019), + [anon_sym_continue] = ACTIONS(1019), + [anon_sym_default] = ACTIONS(1019), + [anon_sym_enum] = ACTIONS(1019), + [anon_sym_fn] = ACTIONS(1019), + [anon_sym_for] = ACTIONS(1019), + [anon_sym_gen] = ACTIONS(1019), + [anon_sym_if] = ACTIONS(1019), + [anon_sym_impl] = ACTIONS(1019), + [anon_sym_let] = ACTIONS(1019), + [anon_sym_loop] = ACTIONS(1019), + [anon_sym_match] = ACTIONS(1019), + [anon_sym_mod] = ACTIONS(1019), + [anon_sym_pub] = ACTIONS(1019), + [anon_sym_return] = ACTIONS(1019), + [anon_sym_static] = ACTIONS(1019), + [anon_sym_struct] = ACTIONS(1019), + [anon_sym_trait] = ACTIONS(1019), + [anon_sym_type] = ACTIONS(1019), + [anon_sym_union] = ACTIONS(1019), + [anon_sym_unsafe] = ACTIONS(1019), + [anon_sym_use] = ACTIONS(1019), + [anon_sym_where] = ACTIONS(1019), + [anon_sym_while] = ACTIONS(1019), + [sym_mutable_specifier] = ACTIONS(1019), + [sym_integer_literal] = ACTIONS(1021), + [aux_sym_string_literal_token1] = ACTIONS(1021), + [sym_char_literal] = ACTIONS(1021), + [anon_sym_true] = ACTIONS(1019), + [anon_sym_false] = ACTIONS(1019), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1019), + [sym_super] = ACTIONS(1019), + [sym_crate] = ACTIONS(1019), + [sym_metavariable] = ACTIONS(1021), + [sym__raw_string_literal_start] = ACTIONS(1021), + [sym_float_literal] = ACTIONS(1021), }, [194] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1687), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_let_condition] = STATE(2883), - [sym__let_chain] = STATE(2887), - [sym__condition] = STATE(2604), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [sym_attribute_item] = STATE(1157), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1885), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), [sym_line_comment] = STATE(194), [sym_block_comment] = STATE(194), - [sym_identifier] = ACTIONS(467), + [aux_sym_mod_item_repeat1] = STATE(214), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(1023), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(963), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(748), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(965), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -39013,244 +40376,244 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [195] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1687), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_let_condition] = STATE(2883), - [sym__let_chain] = STATE(2887), - [sym__condition] = STATE(2605), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), [sym_line_comment] = STATE(195), [sym_block_comment] = STATE(195), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(963), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(965), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [sym_identifier] = ACTIONS(1025), + [anon_sym_SEMI] = ACTIONS(1027), + [anon_sym_LPAREN] = ACTIONS(1027), + [anon_sym_RPAREN] = ACTIONS(1027), + [anon_sym_LBRACK] = ACTIONS(1027), + [anon_sym_RBRACK] = ACTIONS(1027), + [anon_sym_LBRACE] = ACTIONS(1027), + [anon_sym_RBRACE] = ACTIONS(1027), + [anon_sym_EQ_GT] = ACTIONS(1027), + [anon_sym_COLON] = ACTIONS(1025), + [anon_sym_DOLLAR] = ACTIONS(1025), + [anon_sym_PLUS] = ACTIONS(1025), + [anon_sym_STAR] = ACTIONS(1025), + [anon_sym_QMARK] = ACTIONS(1027), + [anon_sym_u8] = ACTIONS(1025), + [anon_sym_i8] = ACTIONS(1025), + [anon_sym_u16] = ACTIONS(1025), + [anon_sym_i16] = ACTIONS(1025), + [anon_sym_u32] = ACTIONS(1025), + [anon_sym_i32] = ACTIONS(1025), + [anon_sym_u64] = ACTIONS(1025), + [anon_sym_i64] = ACTIONS(1025), + [anon_sym_u128] = ACTIONS(1025), + [anon_sym_i128] = ACTIONS(1025), + [anon_sym_isize] = ACTIONS(1025), + [anon_sym_usize] = ACTIONS(1025), + [anon_sym_f32] = ACTIONS(1025), + [anon_sym_f64] = ACTIONS(1025), + [anon_sym_bool] = ACTIONS(1025), + [anon_sym_str] = ACTIONS(1025), + [anon_sym_char] = ACTIONS(1025), + [anon_sym_DASH] = ACTIONS(1025), + [anon_sym_SLASH] = ACTIONS(1025), + [anon_sym_PERCENT] = ACTIONS(1025), + [anon_sym_CARET] = ACTIONS(1025), + [anon_sym_BANG] = ACTIONS(1025), + [anon_sym_AMP] = ACTIONS(1025), + [anon_sym_PIPE] = ACTIONS(1025), + [anon_sym_AMP_AMP] = ACTIONS(1027), + [anon_sym_PIPE_PIPE] = ACTIONS(1027), + [anon_sym_LT_LT] = ACTIONS(1025), + [anon_sym_GT_GT] = ACTIONS(1025), + [anon_sym_PLUS_EQ] = ACTIONS(1027), + [anon_sym_DASH_EQ] = ACTIONS(1027), + [anon_sym_STAR_EQ] = ACTIONS(1027), + [anon_sym_SLASH_EQ] = ACTIONS(1027), + [anon_sym_PERCENT_EQ] = ACTIONS(1027), + [anon_sym_CARET_EQ] = ACTIONS(1027), + [anon_sym_AMP_EQ] = ACTIONS(1027), + [anon_sym_PIPE_EQ] = ACTIONS(1027), + [anon_sym_LT_LT_EQ] = ACTIONS(1027), + [anon_sym_GT_GT_EQ] = ACTIONS(1027), + [anon_sym_EQ] = ACTIONS(1025), + [anon_sym_EQ_EQ] = ACTIONS(1027), + [anon_sym_BANG_EQ] = ACTIONS(1027), + [anon_sym_GT] = ACTIONS(1025), + [anon_sym_LT] = ACTIONS(1025), + [anon_sym_GT_EQ] = ACTIONS(1027), + [anon_sym_LT_EQ] = ACTIONS(1027), + [anon_sym_AT] = ACTIONS(1027), + [anon_sym__] = ACTIONS(1025), + [anon_sym_DOT] = ACTIONS(1025), + [anon_sym_DOT_DOT] = ACTIONS(1025), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1027), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1027), + [anon_sym_COMMA] = ACTIONS(1027), + [anon_sym_COLON_COLON] = ACTIONS(1027), + [anon_sym_DASH_GT] = ACTIONS(1027), + [anon_sym_POUND] = ACTIONS(1027), + [anon_sym_SQUOTE] = ACTIONS(1025), + [anon_sym_as] = ACTIONS(1025), + [anon_sym_async] = ACTIONS(1025), + [anon_sym_await] = ACTIONS(1025), + [anon_sym_break] = ACTIONS(1025), + [anon_sym_const] = ACTIONS(1025), + [anon_sym_continue] = ACTIONS(1025), + [anon_sym_default] = ACTIONS(1025), + [anon_sym_enum] = ACTIONS(1025), + [anon_sym_fn] = ACTIONS(1025), + [anon_sym_for] = ACTIONS(1025), + [anon_sym_gen] = ACTIONS(1025), + [anon_sym_if] = ACTIONS(1025), + [anon_sym_impl] = ACTIONS(1025), + [anon_sym_let] = ACTIONS(1025), + [anon_sym_loop] = ACTIONS(1025), + [anon_sym_match] = ACTIONS(1025), + [anon_sym_mod] = ACTIONS(1025), + [anon_sym_pub] = ACTIONS(1025), + [anon_sym_return] = ACTIONS(1025), + [anon_sym_static] = ACTIONS(1025), + [anon_sym_struct] = ACTIONS(1025), + [anon_sym_trait] = ACTIONS(1025), + [anon_sym_type] = ACTIONS(1025), + [anon_sym_union] = ACTIONS(1025), + [anon_sym_unsafe] = ACTIONS(1025), + [anon_sym_use] = ACTIONS(1025), + [anon_sym_where] = ACTIONS(1025), + [anon_sym_while] = ACTIONS(1025), + [sym_mutable_specifier] = ACTIONS(1025), + [sym_integer_literal] = ACTIONS(1027), + [aux_sym_string_literal_token1] = ACTIONS(1027), + [sym_char_literal] = ACTIONS(1027), + [anon_sym_true] = ACTIONS(1025), + [anon_sym_false] = ACTIONS(1025), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1025), + [sym_super] = ACTIONS(1025), + [sym_crate] = ACTIONS(1025), + [sym_metavariable] = ACTIONS(1027), + [sym__raw_string_literal_start] = ACTIONS(1027), + [sym_float_literal] = ACTIONS(1027), }, [196] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1687), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_let_condition] = STATE(2883), - [sym__let_chain] = STATE(2887), - [sym__condition] = STATE(2617), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), [sym_line_comment] = STATE(196), [sym_block_comment] = STATE(196), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(963), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(965), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [sym_identifier] = ACTIONS(1029), + [anon_sym_SEMI] = ACTIONS(1031), + [anon_sym_LPAREN] = ACTIONS(1031), + [anon_sym_RPAREN] = ACTIONS(1031), + [anon_sym_LBRACK] = ACTIONS(1031), + [anon_sym_RBRACK] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1031), + [anon_sym_RBRACE] = ACTIONS(1031), + [anon_sym_EQ_GT] = ACTIONS(1031), + [anon_sym_COLON] = ACTIONS(1029), + [anon_sym_DOLLAR] = ACTIONS(1029), + [anon_sym_PLUS] = ACTIONS(1029), + [anon_sym_STAR] = ACTIONS(1029), + [anon_sym_QMARK] = ACTIONS(1031), + [anon_sym_u8] = ACTIONS(1029), + [anon_sym_i8] = ACTIONS(1029), + [anon_sym_u16] = ACTIONS(1029), + [anon_sym_i16] = ACTIONS(1029), + [anon_sym_u32] = ACTIONS(1029), + [anon_sym_i32] = ACTIONS(1029), + [anon_sym_u64] = ACTIONS(1029), + [anon_sym_i64] = ACTIONS(1029), + [anon_sym_u128] = ACTIONS(1029), + [anon_sym_i128] = ACTIONS(1029), + [anon_sym_isize] = ACTIONS(1029), + [anon_sym_usize] = ACTIONS(1029), + [anon_sym_f32] = ACTIONS(1029), + [anon_sym_f64] = ACTIONS(1029), + [anon_sym_bool] = ACTIONS(1029), + [anon_sym_str] = ACTIONS(1029), + [anon_sym_char] = ACTIONS(1029), + [anon_sym_DASH] = ACTIONS(1029), + [anon_sym_SLASH] = ACTIONS(1029), + [anon_sym_PERCENT] = ACTIONS(1029), + [anon_sym_CARET] = ACTIONS(1029), + [anon_sym_BANG] = ACTIONS(1029), + [anon_sym_AMP] = ACTIONS(1029), + [anon_sym_PIPE] = ACTIONS(1029), + [anon_sym_AMP_AMP] = ACTIONS(1031), + [anon_sym_PIPE_PIPE] = ACTIONS(1031), + [anon_sym_LT_LT] = ACTIONS(1029), + [anon_sym_GT_GT] = ACTIONS(1029), + [anon_sym_PLUS_EQ] = ACTIONS(1031), + [anon_sym_DASH_EQ] = ACTIONS(1031), + [anon_sym_STAR_EQ] = ACTIONS(1031), + [anon_sym_SLASH_EQ] = ACTIONS(1031), + [anon_sym_PERCENT_EQ] = ACTIONS(1031), + [anon_sym_CARET_EQ] = ACTIONS(1031), + [anon_sym_AMP_EQ] = ACTIONS(1031), + [anon_sym_PIPE_EQ] = ACTIONS(1031), + [anon_sym_LT_LT_EQ] = ACTIONS(1031), + [anon_sym_GT_GT_EQ] = ACTIONS(1031), + [anon_sym_EQ] = ACTIONS(1029), + [anon_sym_EQ_EQ] = ACTIONS(1031), + [anon_sym_BANG_EQ] = ACTIONS(1031), + [anon_sym_GT] = ACTIONS(1029), + [anon_sym_LT] = ACTIONS(1029), + [anon_sym_GT_EQ] = ACTIONS(1031), + [anon_sym_LT_EQ] = ACTIONS(1031), + [anon_sym_AT] = ACTIONS(1031), + [anon_sym__] = ACTIONS(1029), + [anon_sym_DOT] = ACTIONS(1029), + [anon_sym_DOT_DOT] = ACTIONS(1029), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1031), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1031), + [anon_sym_COMMA] = ACTIONS(1031), + [anon_sym_COLON_COLON] = ACTIONS(1031), + [anon_sym_DASH_GT] = ACTIONS(1031), + [anon_sym_POUND] = ACTIONS(1031), + [anon_sym_SQUOTE] = ACTIONS(1029), + [anon_sym_as] = ACTIONS(1029), + [anon_sym_async] = ACTIONS(1029), + [anon_sym_await] = ACTIONS(1029), + [anon_sym_break] = ACTIONS(1029), + [anon_sym_const] = ACTIONS(1029), + [anon_sym_continue] = ACTIONS(1029), + [anon_sym_default] = ACTIONS(1029), + [anon_sym_enum] = ACTIONS(1029), + [anon_sym_fn] = ACTIONS(1029), + [anon_sym_for] = ACTIONS(1029), + [anon_sym_gen] = ACTIONS(1029), + [anon_sym_if] = ACTIONS(1029), + [anon_sym_impl] = ACTIONS(1029), + [anon_sym_let] = ACTIONS(1029), + [anon_sym_loop] = ACTIONS(1029), + [anon_sym_match] = ACTIONS(1029), + [anon_sym_mod] = ACTIONS(1029), + [anon_sym_pub] = ACTIONS(1029), + [anon_sym_return] = ACTIONS(1029), + [anon_sym_static] = ACTIONS(1029), + [anon_sym_struct] = ACTIONS(1029), + [anon_sym_trait] = ACTIONS(1029), + [anon_sym_type] = ACTIONS(1029), + [anon_sym_union] = ACTIONS(1029), + [anon_sym_unsafe] = ACTIONS(1029), + [anon_sym_use] = ACTIONS(1029), + [anon_sym_where] = ACTIONS(1029), + [anon_sym_while] = ACTIONS(1029), + [sym_mutable_specifier] = ACTIONS(1029), + [sym_integer_literal] = ACTIONS(1031), + [aux_sym_string_literal_token1] = ACTIONS(1031), + [sym_char_literal] = ACTIONS(1031), + [anon_sym_true] = ACTIONS(1029), + [anon_sym_false] = ACTIONS(1029), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1029), + [sym_super] = ACTIONS(1029), + [sym_crate] = ACTIONS(1029), + [sym_metavariable] = ACTIONS(1031), + [sym__raw_string_literal_start] = ACTIONS(1031), + [sym_float_literal] = ACTIONS(1031), }, [197] = { [sym_line_comment] = STATE(197), @@ -39371,49 +40734,279 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [198] = { [sym_line_comment] = STATE(198), [sym_block_comment] = STATE(198), - [sym_identifier] = ACTIONS(1037), - [anon_sym_SEMI] = ACTIONS(1039), - [anon_sym_LPAREN] = ACTIONS(1039), - [anon_sym_RPAREN] = ACTIONS(1039), - [anon_sym_LBRACK] = ACTIONS(1039), - [anon_sym_RBRACK] = ACTIONS(1039), - [anon_sym_LBRACE] = ACTIONS(1039), - [anon_sym_RBRACE] = ACTIONS(1039), - [anon_sym_EQ_GT] = ACTIONS(1039), - [anon_sym_COLON] = ACTIONS(1037), - [anon_sym_DOLLAR] = ACTIONS(1039), - [anon_sym_PLUS] = ACTIONS(1037), - [anon_sym_STAR] = ACTIONS(1037), - [anon_sym_QMARK] = ACTIONS(1039), - [anon_sym_u8] = ACTIONS(1037), - [anon_sym_i8] = ACTIONS(1037), - [anon_sym_u16] = ACTIONS(1037), - [anon_sym_i16] = ACTIONS(1037), - [anon_sym_u32] = ACTIONS(1037), - [anon_sym_i32] = ACTIONS(1037), - [anon_sym_u64] = ACTIONS(1037), - [anon_sym_i64] = ACTIONS(1037), - [anon_sym_u128] = ACTIONS(1037), - [anon_sym_i128] = ACTIONS(1037), - [anon_sym_isize] = ACTIONS(1037), - [anon_sym_usize] = ACTIONS(1037), - [anon_sym_f32] = ACTIONS(1037), - [anon_sym_f64] = ACTIONS(1037), - [anon_sym_bool] = ACTIONS(1037), - [anon_sym_str] = ACTIONS(1037), - [anon_sym_char] = ACTIONS(1037), - [anon_sym_DASH] = ACTIONS(1037), - [anon_sym_SLASH] = ACTIONS(1037), - [anon_sym_PERCENT] = ACTIONS(1037), - [anon_sym_CARET] = ACTIONS(1037), - [anon_sym_BANG] = ACTIONS(1037), - [anon_sym_AMP] = ACTIONS(1037), - [anon_sym_PIPE] = ACTIONS(1037), - [anon_sym_AMP_AMP] = ACTIONS(1039), - [anon_sym_PIPE_PIPE] = ACTIONS(1039), - [anon_sym_LT_LT] = ACTIONS(1037), - [anon_sym_GT_GT] = ACTIONS(1037), - [anon_sym_PLUS_EQ] = ACTIONS(1039), + [sym_identifier] = ACTIONS(919), + [anon_sym_SEMI] = ACTIONS(921), + [anon_sym_LPAREN] = ACTIONS(921), + [anon_sym_RPAREN] = ACTIONS(921), + [anon_sym_LBRACK] = ACTIONS(921), + [anon_sym_RBRACK] = ACTIONS(921), + [anon_sym_LBRACE] = ACTIONS(921), + [anon_sym_RBRACE] = ACTIONS(921), + [anon_sym_EQ_GT] = ACTIONS(921), + [anon_sym_COLON] = ACTIONS(919), + [anon_sym_DOLLAR] = ACTIONS(921), + [anon_sym_PLUS] = ACTIONS(919), + [anon_sym_STAR] = ACTIONS(919), + [anon_sym_QMARK] = ACTIONS(921), + [anon_sym_u8] = ACTIONS(919), + [anon_sym_i8] = ACTIONS(919), + [anon_sym_u16] = ACTIONS(919), + [anon_sym_i16] = ACTIONS(919), + [anon_sym_u32] = ACTIONS(919), + [anon_sym_i32] = ACTIONS(919), + [anon_sym_u64] = ACTIONS(919), + [anon_sym_i64] = ACTIONS(919), + [anon_sym_u128] = ACTIONS(919), + [anon_sym_i128] = ACTIONS(919), + [anon_sym_isize] = ACTIONS(919), + [anon_sym_usize] = ACTIONS(919), + [anon_sym_f32] = ACTIONS(919), + [anon_sym_f64] = ACTIONS(919), + [anon_sym_bool] = ACTIONS(919), + [anon_sym_str] = ACTIONS(919), + [anon_sym_char] = ACTIONS(919), + [anon_sym_DASH] = ACTIONS(919), + [anon_sym_SLASH] = ACTIONS(919), + [anon_sym_PERCENT] = ACTIONS(919), + [anon_sym_CARET] = ACTIONS(919), + [anon_sym_BANG] = ACTIONS(919), + [anon_sym_AMP] = ACTIONS(919), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_AMP_AMP] = ACTIONS(921), + [anon_sym_PIPE_PIPE] = ACTIONS(921), + [anon_sym_LT_LT] = ACTIONS(919), + [anon_sym_GT_GT] = ACTIONS(919), + [anon_sym_PLUS_EQ] = ACTIONS(921), + [anon_sym_DASH_EQ] = ACTIONS(921), + [anon_sym_STAR_EQ] = ACTIONS(921), + [anon_sym_SLASH_EQ] = ACTIONS(921), + [anon_sym_PERCENT_EQ] = ACTIONS(921), + [anon_sym_CARET_EQ] = ACTIONS(921), + [anon_sym_AMP_EQ] = ACTIONS(921), + [anon_sym_PIPE_EQ] = ACTIONS(921), + [anon_sym_LT_LT_EQ] = ACTIONS(921), + [anon_sym_GT_GT_EQ] = ACTIONS(921), + [anon_sym_EQ] = ACTIONS(919), + [anon_sym_EQ_EQ] = ACTIONS(921), + [anon_sym_BANG_EQ] = ACTIONS(921), + [anon_sym_GT] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(919), + [anon_sym_GT_EQ] = ACTIONS(921), + [anon_sym_LT_EQ] = ACTIONS(921), + [anon_sym_AT] = ACTIONS(921), + [anon_sym__] = ACTIONS(919), + [anon_sym_DOT] = ACTIONS(919), + [anon_sym_DOT_DOT] = ACTIONS(919), + [anon_sym_DOT_DOT_DOT] = ACTIONS(921), + [anon_sym_DOT_DOT_EQ] = ACTIONS(921), + [anon_sym_COMMA] = ACTIONS(921), + [anon_sym_COLON_COLON] = ACTIONS(921), + [anon_sym_DASH_GT] = ACTIONS(921), + [anon_sym_POUND] = ACTIONS(921), + [anon_sym_SQUOTE] = ACTIONS(919), + [anon_sym_as] = ACTIONS(919), + [anon_sym_async] = ACTIONS(919), + [anon_sym_await] = ACTIONS(919), + [anon_sym_break] = ACTIONS(919), + [anon_sym_const] = ACTIONS(919), + [anon_sym_continue] = ACTIONS(919), + [anon_sym_default] = ACTIONS(919), + [anon_sym_enum] = ACTIONS(919), + [anon_sym_fn] = ACTIONS(919), + [anon_sym_for] = ACTIONS(919), + [anon_sym_gen] = ACTIONS(919), + [anon_sym_if] = ACTIONS(919), + [anon_sym_impl] = ACTIONS(919), + [anon_sym_let] = ACTIONS(919), + [anon_sym_loop] = ACTIONS(919), + [anon_sym_match] = ACTIONS(919), + [anon_sym_mod] = ACTIONS(919), + [anon_sym_pub] = ACTIONS(919), + [anon_sym_return] = ACTIONS(919), + [anon_sym_static] = ACTIONS(919), + [anon_sym_struct] = ACTIONS(919), + [anon_sym_trait] = ACTIONS(919), + [anon_sym_type] = ACTIONS(919), + [anon_sym_union] = ACTIONS(919), + [anon_sym_unsafe] = ACTIONS(919), + [anon_sym_use] = ACTIONS(919), + [anon_sym_where] = ACTIONS(919), + [anon_sym_while] = ACTIONS(919), + [sym_mutable_specifier] = ACTIONS(919), + [sym_integer_literal] = ACTIONS(921), + [aux_sym_string_literal_token1] = ACTIONS(921), + [sym_char_literal] = ACTIONS(921), + [anon_sym_true] = ACTIONS(919), + [anon_sym_false] = ACTIONS(919), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(919), + [sym_super] = ACTIONS(919), + [sym_crate] = ACTIONS(919), + [sym__raw_string_literal_start] = ACTIONS(921), + [sym_float_literal] = ACTIONS(921), + }, + [199] = { + [sym_attribute_item] = STATE(1157), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1874), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(199), + [sym_block_comment] = STATE(199), + [aux_sym_mod_item_repeat1] = STATE(1156), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(748), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [200] = { + [sym_line_comment] = STATE(200), + [sym_block_comment] = STATE(200), + [sym_identifier] = ACTIONS(1037), + [anon_sym_SEMI] = ACTIONS(1039), + [anon_sym_LPAREN] = ACTIONS(1039), + [anon_sym_RPAREN] = ACTIONS(1039), + [anon_sym_LBRACK] = ACTIONS(1039), + [anon_sym_RBRACK] = ACTIONS(1039), + [anon_sym_LBRACE] = ACTIONS(1039), + [anon_sym_RBRACE] = ACTIONS(1039), + [anon_sym_EQ_GT] = ACTIONS(1039), + [anon_sym_COLON] = ACTIONS(1037), + [anon_sym_DOLLAR] = ACTIONS(1039), + [anon_sym_PLUS] = ACTIONS(1037), + [anon_sym_STAR] = ACTIONS(1037), + [anon_sym_QMARK] = ACTIONS(1039), + [anon_sym_u8] = ACTIONS(1037), + [anon_sym_i8] = ACTIONS(1037), + [anon_sym_u16] = ACTIONS(1037), + [anon_sym_i16] = ACTIONS(1037), + [anon_sym_u32] = ACTIONS(1037), + [anon_sym_i32] = ACTIONS(1037), + [anon_sym_u64] = ACTIONS(1037), + [anon_sym_i64] = ACTIONS(1037), + [anon_sym_u128] = ACTIONS(1037), + [anon_sym_i128] = ACTIONS(1037), + [anon_sym_isize] = ACTIONS(1037), + [anon_sym_usize] = ACTIONS(1037), + [anon_sym_f32] = ACTIONS(1037), + [anon_sym_f64] = ACTIONS(1037), + [anon_sym_bool] = ACTIONS(1037), + [anon_sym_str] = ACTIONS(1037), + [anon_sym_char] = ACTIONS(1037), + [anon_sym_DASH] = ACTIONS(1037), + [anon_sym_SLASH] = ACTIONS(1037), + [anon_sym_PERCENT] = ACTIONS(1037), + [anon_sym_CARET] = ACTIONS(1037), + [anon_sym_BANG] = ACTIONS(1037), + [anon_sym_AMP] = ACTIONS(1037), + [anon_sym_PIPE] = ACTIONS(1037), + [anon_sym_AMP_AMP] = ACTIONS(1039), + [anon_sym_PIPE_PIPE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1037), + [anon_sym_GT_GT] = ACTIONS(1037), + [anon_sym_PLUS_EQ] = ACTIONS(1039), [anon_sym_DASH_EQ] = ACTIONS(1039), [anon_sym_STAR_EQ] = ACTIONS(1039), [anon_sym_SLASH_EQ] = ACTIONS(1039), @@ -39483,288 +41076,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1039), [sym_float_literal] = ACTIONS(1039), }, - [199] = { - [sym_line_comment] = STATE(199), - [sym_block_comment] = STATE(199), - [sym_identifier] = ACTIONS(995), - [anon_sym_SEMI] = ACTIONS(997), - [anon_sym_LPAREN] = ACTIONS(997), - [anon_sym_RPAREN] = ACTIONS(997), - [anon_sym_LBRACK] = ACTIONS(997), - [anon_sym_RBRACK] = ACTIONS(997), - [anon_sym_LBRACE] = ACTIONS(997), - [anon_sym_RBRACE] = ACTIONS(997), - [anon_sym_EQ_GT] = ACTIONS(997), - [anon_sym_COLON] = ACTIONS(995), - [anon_sym_DOLLAR] = ACTIONS(997), - [anon_sym_PLUS] = ACTIONS(995), - [anon_sym_STAR] = ACTIONS(995), - [anon_sym_QMARK] = ACTIONS(997), - [anon_sym_u8] = ACTIONS(995), - [anon_sym_i8] = ACTIONS(995), - [anon_sym_u16] = ACTIONS(995), - [anon_sym_i16] = ACTIONS(995), - [anon_sym_u32] = ACTIONS(995), - [anon_sym_i32] = ACTIONS(995), - [anon_sym_u64] = ACTIONS(995), - [anon_sym_i64] = ACTIONS(995), - [anon_sym_u128] = ACTIONS(995), - [anon_sym_i128] = ACTIONS(995), - [anon_sym_isize] = ACTIONS(995), - [anon_sym_usize] = ACTIONS(995), - [anon_sym_f32] = ACTIONS(995), - [anon_sym_f64] = ACTIONS(995), - [anon_sym_bool] = ACTIONS(995), - [anon_sym_str] = ACTIONS(995), - [anon_sym_char] = ACTIONS(995), - [anon_sym_DASH] = ACTIONS(995), - [anon_sym_SLASH] = ACTIONS(995), - [anon_sym_PERCENT] = ACTIONS(995), - [anon_sym_CARET] = ACTIONS(995), - [anon_sym_BANG] = ACTIONS(995), - [anon_sym_AMP] = ACTIONS(995), - [anon_sym_PIPE] = ACTIONS(995), - [anon_sym_AMP_AMP] = ACTIONS(997), - [anon_sym_PIPE_PIPE] = ACTIONS(997), - [anon_sym_LT_LT] = ACTIONS(995), - [anon_sym_GT_GT] = ACTIONS(995), - [anon_sym_PLUS_EQ] = ACTIONS(997), - [anon_sym_DASH_EQ] = ACTIONS(997), - [anon_sym_STAR_EQ] = ACTIONS(997), - [anon_sym_SLASH_EQ] = ACTIONS(997), - [anon_sym_PERCENT_EQ] = ACTIONS(997), - [anon_sym_CARET_EQ] = ACTIONS(997), - [anon_sym_AMP_EQ] = ACTIONS(997), - [anon_sym_PIPE_EQ] = ACTIONS(997), - [anon_sym_LT_LT_EQ] = ACTIONS(997), - [anon_sym_GT_GT_EQ] = ACTIONS(997), - [anon_sym_EQ] = ACTIONS(995), - [anon_sym_EQ_EQ] = ACTIONS(997), - [anon_sym_BANG_EQ] = ACTIONS(997), - [anon_sym_GT] = ACTIONS(995), - [anon_sym_LT] = ACTIONS(995), - [anon_sym_GT_EQ] = ACTIONS(997), - [anon_sym_LT_EQ] = ACTIONS(997), - [anon_sym_AT] = ACTIONS(997), - [anon_sym__] = ACTIONS(995), - [anon_sym_DOT] = ACTIONS(995), - [anon_sym_DOT_DOT] = ACTIONS(995), - [anon_sym_DOT_DOT_DOT] = ACTIONS(997), - [anon_sym_DOT_DOT_EQ] = ACTIONS(997), - [anon_sym_COMMA] = ACTIONS(997), - [anon_sym_COLON_COLON] = ACTIONS(997), - [anon_sym_DASH_GT] = ACTIONS(997), - [anon_sym_POUND] = ACTIONS(997), - [anon_sym_SQUOTE] = ACTIONS(995), - [anon_sym_as] = ACTIONS(995), - [anon_sym_async] = ACTIONS(995), - [anon_sym_await] = ACTIONS(995), - [anon_sym_break] = ACTIONS(995), - [anon_sym_const] = ACTIONS(995), - [anon_sym_continue] = ACTIONS(995), - [anon_sym_default] = ACTIONS(995), - [anon_sym_enum] = ACTIONS(995), - [anon_sym_fn] = ACTIONS(995), - [anon_sym_for] = ACTIONS(995), - [anon_sym_gen] = ACTIONS(995), - [anon_sym_if] = ACTIONS(995), - [anon_sym_impl] = ACTIONS(995), - [anon_sym_let] = ACTIONS(995), - [anon_sym_loop] = ACTIONS(995), - [anon_sym_match] = ACTIONS(995), - [anon_sym_mod] = ACTIONS(995), - [anon_sym_pub] = ACTIONS(995), - [anon_sym_return] = ACTIONS(995), - [anon_sym_static] = ACTIONS(995), - [anon_sym_struct] = ACTIONS(995), - [anon_sym_trait] = ACTIONS(995), - [anon_sym_type] = ACTIONS(995), - [anon_sym_union] = ACTIONS(995), - [anon_sym_unsafe] = ACTIONS(995), - [anon_sym_use] = ACTIONS(995), - [anon_sym_where] = ACTIONS(995), - [anon_sym_while] = ACTIONS(995), - [sym_mutable_specifier] = ACTIONS(995), - [sym_integer_literal] = ACTIONS(997), - [aux_sym_string_literal_token1] = ACTIONS(997), - [sym_char_literal] = ACTIONS(997), - [anon_sym_true] = ACTIONS(995), - [anon_sym_false] = ACTIONS(995), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(995), - [sym_super] = ACTIONS(995), - [sym_crate] = ACTIONS(995), - [sym__raw_string_literal_start] = ACTIONS(997), - [sym_float_literal] = ACTIONS(997), - }, - [200] = { - [sym_line_comment] = STATE(200), - [sym_block_comment] = STATE(200), - [sym_identifier] = ACTIONS(1007), - [anon_sym_SEMI] = ACTIONS(1009), - [anon_sym_LPAREN] = ACTIONS(1009), - [anon_sym_RPAREN] = ACTIONS(1009), - [anon_sym_LBRACK] = ACTIONS(1009), - [anon_sym_RBRACK] = ACTIONS(1009), - [anon_sym_LBRACE] = ACTIONS(1009), - [anon_sym_RBRACE] = ACTIONS(1009), - [anon_sym_EQ_GT] = ACTIONS(1009), - [anon_sym_COLON] = ACTIONS(1007), - [anon_sym_DOLLAR] = ACTIONS(1009), - [anon_sym_PLUS] = ACTIONS(1007), - [anon_sym_STAR] = ACTIONS(1007), - [anon_sym_QMARK] = ACTIONS(1009), - [anon_sym_u8] = ACTIONS(1007), - [anon_sym_i8] = ACTIONS(1007), - [anon_sym_u16] = ACTIONS(1007), - [anon_sym_i16] = ACTIONS(1007), - [anon_sym_u32] = ACTIONS(1007), - [anon_sym_i32] = ACTIONS(1007), - [anon_sym_u64] = ACTIONS(1007), - [anon_sym_i64] = ACTIONS(1007), - [anon_sym_u128] = ACTIONS(1007), - [anon_sym_i128] = ACTIONS(1007), - [anon_sym_isize] = ACTIONS(1007), - [anon_sym_usize] = ACTIONS(1007), - [anon_sym_f32] = ACTIONS(1007), - [anon_sym_f64] = ACTIONS(1007), - [anon_sym_bool] = ACTIONS(1007), - [anon_sym_str] = ACTIONS(1007), - [anon_sym_char] = ACTIONS(1007), - [anon_sym_DASH] = ACTIONS(1007), - [anon_sym_SLASH] = ACTIONS(1007), - [anon_sym_PERCENT] = ACTIONS(1007), - [anon_sym_CARET] = ACTIONS(1007), - [anon_sym_BANG] = ACTIONS(1007), - [anon_sym_AMP] = ACTIONS(1007), - [anon_sym_PIPE] = ACTIONS(1007), - [anon_sym_AMP_AMP] = ACTIONS(1009), - [anon_sym_PIPE_PIPE] = ACTIONS(1009), - [anon_sym_LT_LT] = ACTIONS(1007), - [anon_sym_GT_GT] = ACTIONS(1007), - [anon_sym_PLUS_EQ] = ACTIONS(1009), - [anon_sym_DASH_EQ] = ACTIONS(1009), - [anon_sym_STAR_EQ] = ACTIONS(1009), - [anon_sym_SLASH_EQ] = ACTIONS(1009), - [anon_sym_PERCENT_EQ] = ACTIONS(1009), - [anon_sym_CARET_EQ] = ACTIONS(1009), - [anon_sym_AMP_EQ] = ACTIONS(1009), - [anon_sym_PIPE_EQ] = ACTIONS(1009), - [anon_sym_LT_LT_EQ] = ACTIONS(1009), - [anon_sym_GT_GT_EQ] = ACTIONS(1009), - [anon_sym_EQ] = ACTIONS(1007), - [anon_sym_EQ_EQ] = ACTIONS(1009), - [anon_sym_BANG_EQ] = ACTIONS(1009), - [anon_sym_GT] = ACTIONS(1007), - [anon_sym_LT] = ACTIONS(1007), - [anon_sym_GT_EQ] = ACTIONS(1009), - [anon_sym_LT_EQ] = ACTIONS(1009), - [anon_sym_AT] = ACTIONS(1009), - [anon_sym__] = ACTIONS(1007), - [anon_sym_DOT] = ACTIONS(1007), - [anon_sym_DOT_DOT] = ACTIONS(1007), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1009), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1009), - [anon_sym_COMMA] = ACTIONS(1009), - [anon_sym_COLON_COLON] = ACTIONS(1009), - [anon_sym_DASH_GT] = ACTIONS(1009), - [anon_sym_POUND] = ACTIONS(1009), - [anon_sym_SQUOTE] = ACTIONS(1007), - [anon_sym_as] = ACTIONS(1007), - [anon_sym_async] = ACTIONS(1007), - [anon_sym_await] = ACTIONS(1007), - [anon_sym_break] = ACTIONS(1007), - [anon_sym_const] = ACTIONS(1007), - [anon_sym_continue] = ACTIONS(1007), - [anon_sym_default] = ACTIONS(1007), - [anon_sym_enum] = ACTIONS(1007), - [anon_sym_fn] = ACTIONS(1007), - [anon_sym_for] = ACTIONS(1007), - [anon_sym_gen] = ACTIONS(1007), - [anon_sym_if] = ACTIONS(1007), - [anon_sym_impl] = ACTIONS(1007), - [anon_sym_let] = ACTIONS(1007), - [anon_sym_loop] = ACTIONS(1007), - [anon_sym_match] = ACTIONS(1007), - [anon_sym_mod] = ACTIONS(1007), - [anon_sym_pub] = ACTIONS(1007), - [anon_sym_return] = ACTIONS(1007), - [anon_sym_static] = ACTIONS(1007), - [anon_sym_struct] = ACTIONS(1007), - [anon_sym_trait] = ACTIONS(1007), - [anon_sym_type] = ACTIONS(1007), - [anon_sym_union] = ACTIONS(1007), - [anon_sym_unsafe] = ACTIONS(1007), - [anon_sym_use] = ACTIONS(1007), - [anon_sym_where] = ACTIONS(1007), - [anon_sym_while] = ACTIONS(1007), - [sym_mutable_specifier] = ACTIONS(1007), - [sym_integer_literal] = ACTIONS(1009), - [aux_sym_string_literal_token1] = ACTIONS(1009), - [sym_char_literal] = ACTIONS(1009), - [anon_sym_true] = ACTIONS(1007), - [anon_sym_false] = ACTIONS(1007), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1007), - [sym_super] = ACTIONS(1007), - [sym_crate] = ACTIONS(1007), - [sym__raw_string_literal_start] = ACTIONS(1009), - [sym_float_literal] = ACTIONS(1009), - }, [201] = { - [sym_attribute_item] = STATE(1011), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1624), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [sym_attribute_item] = STATE(1157), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1848), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), [sym_line_comment] = STATE(201), [sym_block_comment] = STATE(201), - [aux_sym_enum_variant_list_repeat1] = STATE(1010), + [aux_sym_mod_item_repeat1] = STATE(1156), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -39831,466 +41194,236 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [202] = { [sym_line_comment] = STATE(202), [sym_block_comment] = STATE(202), - [sym_identifier] = ACTIONS(1011), - [anon_sym_SEMI] = ACTIONS(1013), - [anon_sym_LPAREN] = ACTIONS(1013), - [anon_sym_RPAREN] = ACTIONS(1013), - [anon_sym_LBRACK] = ACTIONS(1013), - [anon_sym_RBRACK] = ACTIONS(1013), - [anon_sym_LBRACE] = ACTIONS(1013), - [anon_sym_RBRACE] = ACTIONS(1013), - [anon_sym_EQ_GT] = ACTIONS(1013), - [anon_sym_COLON] = ACTIONS(1011), - [anon_sym_DOLLAR] = ACTIONS(1013), - [anon_sym_PLUS] = ACTIONS(1011), - [anon_sym_STAR] = ACTIONS(1011), - [anon_sym_QMARK] = ACTIONS(1013), - [anon_sym_u8] = ACTIONS(1011), - [anon_sym_i8] = ACTIONS(1011), - [anon_sym_u16] = ACTIONS(1011), - [anon_sym_i16] = ACTIONS(1011), - [anon_sym_u32] = ACTIONS(1011), - [anon_sym_i32] = ACTIONS(1011), - [anon_sym_u64] = ACTIONS(1011), - [anon_sym_i64] = ACTIONS(1011), - [anon_sym_u128] = ACTIONS(1011), - [anon_sym_i128] = ACTIONS(1011), - [anon_sym_isize] = ACTIONS(1011), - [anon_sym_usize] = ACTIONS(1011), - [anon_sym_f32] = ACTIONS(1011), - [anon_sym_f64] = ACTIONS(1011), - [anon_sym_bool] = ACTIONS(1011), - [anon_sym_str] = ACTIONS(1011), - [anon_sym_char] = ACTIONS(1011), - [anon_sym_DASH] = ACTIONS(1011), - [anon_sym_SLASH] = ACTIONS(1011), - [anon_sym_PERCENT] = ACTIONS(1011), - [anon_sym_CARET] = ACTIONS(1011), - [anon_sym_BANG] = ACTIONS(1011), - [anon_sym_AMP] = ACTIONS(1011), - [anon_sym_PIPE] = ACTIONS(1011), - [anon_sym_AMP_AMP] = ACTIONS(1013), - [anon_sym_PIPE_PIPE] = ACTIONS(1013), - [anon_sym_LT_LT] = ACTIONS(1011), - [anon_sym_GT_GT] = ACTIONS(1011), - [anon_sym_PLUS_EQ] = ACTIONS(1013), - [anon_sym_DASH_EQ] = ACTIONS(1013), - [anon_sym_STAR_EQ] = ACTIONS(1013), - [anon_sym_SLASH_EQ] = ACTIONS(1013), - [anon_sym_PERCENT_EQ] = ACTIONS(1013), - [anon_sym_CARET_EQ] = ACTIONS(1013), - [anon_sym_AMP_EQ] = ACTIONS(1013), - [anon_sym_PIPE_EQ] = ACTIONS(1013), - [anon_sym_LT_LT_EQ] = ACTIONS(1013), - [anon_sym_GT_GT_EQ] = ACTIONS(1013), - [anon_sym_EQ] = ACTIONS(1011), - [anon_sym_EQ_EQ] = ACTIONS(1013), - [anon_sym_BANG_EQ] = ACTIONS(1013), - [anon_sym_GT] = ACTIONS(1011), - [anon_sym_LT] = ACTIONS(1011), - [anon_sym_GT_EQ] = ACTIONS(1013), - [anon_sym_LT_EQ] = ACTIONS(1013), - [anon_sym_AT] = ACTIONS(1013), - [anon_sym__] = ACTIONS(1011), - [anon_sym_DOT] = ACTIONS(1011), - [anon_sym_DOT_DOT] = ACTIONS(1011), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1013), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1013), - [anon_sym_COMMA] = ACTIONS(1013), - [anon_sym_COLON_COLON] = ACTIONS(1013), - [anon_sym_DASH_GT] = ACTIONS(1013), - [anon_sym_POUND] = ACTIONS(1013), - [anon_sym_SQUOTE] = ACTIONS(1011), - [anon_sym_as] = ACTIONS(1011), - [anon_sym_async] = ACTIONS(1011), - [anon_sym_await] = ACTIONS(1011), - [anon_sym_break] = ACTIONS(1011), - [anon_sym_const] = ACTIONS(1011), - [anon_sym_continue] = ACTIONS(1011), - [anon_sym_default] = ACTIONS(1011), - [anon_sym_enum] = ACTIONS(1011), - [anon_sym_fn] = ACTIONS(1011), - [anon_sym_for] = ACTIONS(1011), - [anon_sym_gen] = ACTIONS(1011), - [anon_sym_if] = ACTIONS(1011), - [anon_sym_impl] = ACTIONS(1011), - [anon_sym_let] = ACTIONS(1011), - [anon_sym_loop] = ACTIONS(1011), - [anon_sym_match] = ACTIONS(1011), - [anon_sym_mod] = ACTIONS(1011), - [anon_sym_pub] = ACTIONS(1011), - [anon_sym_return] = ACTIONS(1011), - [anon_sym_static] = ACTIONS(1011), - [anon_sym_struct] = ACTIONS(1011), - [anon_sym_trait] = ACTIONS(1011), - [anon_sym_type] = ACTIONS(1011), - [anon_sym_union] = ACTIONS(1011), - [anon_sym_unsafe] = ACTIONS(1011), - [anon_sym_use] = ACTIONS(1011), - [anon_sym_where] = ACTIONS(1011), - [anon_sym_while] = ACTIONS(1011), - [sym_mutable_specifier] = ACTIONS(1011), - [sym_integer_literal] = ACTIONS(1013), - [aux_sym_string_literal_token1] = ACTIONS(1013), - [sym_char_literal] = ACTIONS(1013), - [anon_sym_true] = ACTIONS(1011), - [anon_sym_false] = ACTIONS(1011), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1011), - [sym_super] = ACTIONS(1011), - [sym_crate] = ACTIONS(1011), - [sym__raw_string_literal_start] = ACTIONS(1013), - [sym_float_literal] = ACTIONS(1013), + [sym_identifier] = ACTIONS(1009), + [anon_sym_SEMI] = ACTIONS(1011), + [anon_sym_LPAREN] = ACTIONS(1011), + [anon_sym_RPAREN] = ACTIONS(1011), + [anon_sym_LBRACK] = ACTIONS(1011), + [anon_sym_RBRACK] = ACTIONS(1011), + [anon_sym_LBRACE] = ACTIONS(1011), + [anon_sym_RBRACE] = ACTIONS(1011), + [anon_sym_EQ_GT] = ACTIONS(1011), + [anon_sym_COLON] = ACTIONS(1009), + [anon_sym_DOLLAR] = ACTIONS(1011), + [anon_sym_PLUS] = ACTIONS(1009), + [anon_sym_STAR] = ACTIONS(1009), + [anon_sym_QMARK] = ACTIONS(1011), + [anon_sym_u8] = ACTIONS(1009), + [anon_sym_i8] = ACTIONS(1009), + [anon_sym_u16] = ACTIONS(1009), + [anon_sym_i16] = ACTIONS(1009), + [anon_sym_u32] = ACTIONS(1009), + [anon_sym_i32] = ACTIONS(1009), + [anon_sym_u64] = ACTIONS(1009), + [anon_sym_i64] = ACTIONS(1009), + [anon_sym_u128] = ACTIONS(1009), + [anon_sym_i128] = ACTIONS(1009), + [anon_sym_isize] = ACTIONS(1009), + [anon_sym_usize] = ACTIONS(1009), + [anon_sym_f32] = ACTIONS(1009), + [anon_sym_f64] = ACTIONS(1009), + [anon_sym_bool] = ACTIONS(1009), + [anon_sym_str] = ACTIONS(1009), + [anon_sym_char] = ACTIONS(1009), + [anon_sym_DASH] = ACTIONS(1009), + [anon_sym_SLASH] = ACTIONS(1009), + [anon_sym_PERCENT] = ACTIONS(1009), + [anon_sym_CARET] = ACTIONS(1009), + [anon_sym_BANG] = ACTIONS(1009), + [anon_sym_AMP] = ACTIONS(1009), + [anon_sym_PIPE] = ACTIONS(1009), + [anon_sym_AMP_AMP] = ACTIONS(1011), + [anon_sym_PIPE_PIPE] = ACTIONS(1011), + [anon_sym_LT_LT] = ACTIONS(1009), + [anon_sym_GT_GT] = ACTIONS(1009), + [anon_sym_PLUS_EQ] = ACTIONS(1011), + [anon_sym_DASH_EQ] = ACTIONS(1011), + [anon_sym_STAR_EQ] = ACTIONS(1011), + [anon_sym_SLASH_EQ] = ACTIONS(1011), + [anon_sym_PERCENT_EQ] = ACTIONS(1011), + [anon_sym_CARET_EQ] = ACTIONS(1011), + [anon_sym_AMP_EQ] = ACTIONS(1011), + [anon_sym_PIPE_EQ] = ACTIONS(1011), + [anon_sym_LT_LT_EQ] = ACTIONS(1011), + [anon_sym_GT_GT_EQ] = ACTIONS(1011), + [anon_sym_EQ] = ACTIONS(1009), + [anon_sym_EQ_EQ] = ACTIONS(1011), + [anon_sym_BANG_EQ] = ACTIONS(1011), + [anon_sym_GT] = ACTIONS(1009), + [anon_sym_LT] = ACTIONS(1009), + [anon_sym_GT_EQ] = ACTIONS(1011), + [anon_sym_LT_EQ] = ACTIONS(1011), + [anon_sym_AT] = ACTIONS(1011), + [anon_sym__] = ACTIONS(1009), + [anon_sym_DOT] = ACTIONS(1009), + [anon_sym_DOT_DOT] = ACTIONS(1009), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1011), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1011), + [anon_sym_COMMA] = ACTIONS(1011), + [anon_sym_COLON_COLON] = ACTIONS(1011), + [anon_sym_DASH_GT] = ACTIONS(1011), + [anon_sym_POUND] = ACTIONS(1011), + [anon_sym_SQUOTE] = ACTIONS(1009), + [anon_sym_as] = ACTIONS(1009), + [anon_sym_async] = ACTIONS(1009), + [anon_sym_await] = ACTIONS(1009), + [anon_sym_break] = ACTIONS(1009), + [anon_sym_const] = ACTIONS(1009), + [anon_sym_continue] = ACTIONS(1009), + [anon_sym_default] = ACTIONS(1009), + [anon_sym_enum] = ACTIONS(1009), + [anon_sym_fn] = ACTIONS(1009), + [anon_sym_for] = ACTIONS(1009), + [anon_sym_gen] = ACTIONS(1009), + [anon_sym_if] = ACTIONS(1009), + [anon_sym_impl] = ACTIONS(1009), + [anon_sym_let] = ACTIONS(1009), + [anon_sym_loop] = ACTIONS(1009), + [anon_sym_match] = ACTIONS(1009), + [anon_sym_mod] = ACTIONS(1009), + [anon_sym_pub] = ACTIONS(1009), + [anon_sym_return] = ACTIONS(1009), + [anon_sym_static] = ACTIONS(1009), + [anon_sym_struct] = ACTIONS(1009), + [anon_sym_trait] = ACTIONS(1009), + [anon_sym_type] = ACTIONS(1009), + [anon_sym_union] = ACTIONS(1009), + [anon_sym_unsafe] = ACTIONS(1009), + [anon_sym_use] = ACTIONS(1009), + [anon_sym_where] = ACTIONS(1009), + [anon_sym_while] = ACTIONS(1009), + [sym_mutable_specifier] = ACTIONS(1009), + [sym_integer_literal] = ACTIONS(1011), + [aux_sym_string_literal_token1] = ACTIONS(1011), + [sym_char_literal] = ACTIONS(1011), + [anon_sym_true] = ACTIONS(1009), + [anon_sym_false] = ACTIONS(1009), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1009), + [sym_super] = ACTIONS(1009), + [sym_crate] = ACTIONS(1009), + [sym__raw_string_literal_start] = ACTIONS(1011), + [sym_float_literal] = ACTIONS(1011), }, [203] = { [sym_line_comment] = STATE(203), [sym_block_comment] = STATE(203), - [sym_identifier] = ACTIONS(1023), - [anon_sym_SEMI] = ACTIONS(1025), - [anon_sym_LPAREN] = ACTIONS(1025), - [anon_sym_RPAREN] = ACTIONS(1025), - [anon_sym_LBRACK] = ACTIONS(1025), - [anon_sym_RBRACK] = ACTIONS(1025), - [anon_sym_LBRACE] = ACTIONS(1025), - [anon_sym_RBRACE] = ACTIONS(1025), - [anon_sym_EQ_GT] = ACTIONS(1025), - [anon_sym_COLON] = ACTIONS(1023), - [anon_sym_DOLLAR] = ACTIONS(1025), - [anon_sym_PLUS] = ACTIONS(1023), - [anon_sym_STAR] = ACTIONS(1023), - [anon_sym_QMARK] = ACTIONS(1025), - [anon_sym_u8] = ACTIONS(1023), - [anon_sym_i8] = ACTIONS(1023), - [anon_sym_u16] = ACTIONS(1023), - [anon_sym_i16] = ACTIONS(1023), - [anon_sym_u32] = ACTIONS(1023), - [anon_sym_i32] = ACTIONS(1023), - [anon_sym_u64] = ACTIONS(1023), - [anon_sym_i64] = ACTIONS(1023), - [anon_sym_u128] = ACTIONS(1023), - [anon_sym_i128] = ACTIONS(1023), - [anon_sym_isize] = ACTIONS(1023), - [anon_sym_usize] = ACTIONS(1023), - [anon_sym_f32] = ACTIONS(1023), - [anon_sym_f64] = ACTIONS(1023), - [anon_sym_bool] = ACTIONS(1023), - [anon_sym_str] = ACTIONS(1023), - [anon_sym_char] = ACTIONS(1023), - [anon_sym_DASH] = ACTIONS(1023), - [anon_sym_SLASH] = ACTIONS(1023), - [anon_sym_PERCENT] = ACTIONS(1023), - [anon_sym_CARET] = ACTIONS(1023), - [anon_sym_BANG] = ACTIONS(1023), - [anon_sym_AMP] = ACTIONS(1023), - [anon_sym_PIPE] = ACTIONS(1023), - [anon_sym_AMP_AMP] = ACTIONS(1025), - [anon_sym_PIPE_PIPE] = ACTIONS(1025), - [anon_sym_LT_LT] = ACTIONS(1023), - [anon_sym_GT_GT] = ACTIONS(1023), - [anon_sym_PLUS_EQ] = ACTIONS(1025), - [anon_sym_DASH_EQ] = ACTIONS(1025), - [anon_sym_STAR_EQ] = ACTIONS(1025), - [anon_sym_SLASH_EQ] = ACTIONS(1025), - [anon_sym_PERCENT_EQ] = ACTIONS(1025), - [anon_sym_CARET_EQ] = ACTIONS(1025), - [anon_sym_AMP_EQ] = ACTIONS(1025), - [anon_sym_PIPE_EQ] = ACTIONS(1025), - [anon_sym_LT_LT_EQ] = ACTIONS(1025), - [anon_sym_GT_GT_EQ] = ACTIONS(1025), - [anon_sym_EQ] = ACTIONS(1023), - [anon_sym_EQ_EQ] = ACTIONS(1025), - [anon_sym_BANG_EQ] = ACTIONS(1025), - [anon_sym_GT] = ACTIONS(1023), - [anon_sym_LT] = ACTIONS(1023), - [anon_sym_GT_EQ] = ACTIONS(1025), - [anon_sym_LT_EQ] = ACTIONS(1025), - [anon_sym_AT] = ACTIONS(1025), - [anon_sym__] = ACTIONS(1023), - [anon_sym_DOT] = ACTIONS(1023), - [anon_sym_DOT_DOT] = ACTIONS(1023), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1025), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1025), - [anon_sym_COMMA] = ACTIONS(1025), - [anon_sym_COLON_COLON] = ACTIONS(1025), - [anon_sym_DASH_GT] = ACTIONS(1025), - [anon_sym_POUND] = ACTIONS(1025), - [anon_sym_SQUOTE] = ACTIONS(1023), - [anon_sym_as] = ACTIONS(1023), - [anon_sym_async] = ACTIONS(1023), - [anon_sym_await] = ACTIONS(1023), - [anon_sym_break] = ACTIONS(1023), - [anon_sym_const] = ACTIONS(1023), - [anon_sym_continue] = ACTIONS(1023), - [anon_sym_default] = ACTIONS(1023), - [anon_sym_enum] = ACTIONS(1023), - [anon_sym_fn] = ACTIONS(1023), - [anon_sym_for] = ACTIONS(1023), - [anon_sym_gen] = ACTIONS(1023), - [anon_sym_if] = ACTIONS(1023), - [anon_sym_impl] = ACTIONS(1023), - [anon_sym_let] = ACTIONS(1023), - [anon_sym_loop] = ACTIONS(1023), - [anon_sym_match] = ACTIONS(1023), - [anon_sym_mod] = ACTIONS(1023), - [anon_sym_pub] = ACTIONS(1023), - [anon_sym_return] = ACTIONS(1023), - [anon_sym_static] = ACTIONS(1023), - [anon_sym_struct] = ACTIONS(1023), - [anon_sym_trait] = ACTIONS(1023), - [anon_sym_type] = ACTIONS(1023), - [anon_sym_union] = ACTIONS(1023), - [anon_sym_unsafe] = ACTIONS(1023), - [anon_sym_use] = ACTIONS(1023), - [anon_sym_where] = ACTIONS(1023), - [anon_sym_while] = ACTIONS(1023), - [sym_mutable_specifier] = ACTIONS(1023), - [sym_integer_literal] = ACTIONS(1025), - [aux_sym_string_literal_token1] = ACTIONS(1025), - [sym_char_literal] = ACTIONS(1025), - [anon_sym_true] = ACTIONS(1023), - [anon_sym_false] = ACTIONS(1023), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1023), - [sym_super] = ACTIONS(1023), - [sym_crate] = ACTIONS(1023), - [sym__raw_string_literal_start] = ACTIONS(1025), - [sym_float_literal] = ACTIONS(1025), + [sym_identifier] = ACTIONS(999), + [anon_sym_SEMI] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1001), + [anon_sym_RPAREN] = ACTIONS(1001), + [anon_sym_LBRACK] = ACTIONS(1001), + [anon_sym_RBRACK] = ACTIONS(1001), + [anon_sym_LBRACE] = ACTIONS(1001), + [anon_sym_RBRACE] = ACTIONS(1001), + [anon_sym_EQ_GT] = ACTIONS(1001), + [anon_sym_COLON] = ACTIONS(999), + [anon_sym_DOLLAR] = ACTIONS(1001), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_STAR] = ACTIONS(999), + [anon_sym_QMARK] = ACTIONS(1001), + [anon_sym_u8] = ACTIONS(999), + [anon_sym_i8] = ACTIONS(999), + [anon_sym_u16] = ACTIONS(999), + [anon_sym_i16] = ACTIONS(999), + [anon_sym_u32] = ACTIONS(999), + [anon_sym_i32] = ACTIONS(999), + [anon_sym_u64] = ACTIONS(999), + [anon_sym_i64] = ACTIONS(999), + [anon_sym_u128] = ACTIONS(999), + [anon_sym_i128] = ACTIONS(999), + [anon_sym_isize] = ACTIONS(999), + [anon_sym_usize] = ACTIONS(999), + [anon_sym_f32] = ACTIONS(999), + [anon_sym_f64] = ACTIONS(999), + [anon_sym_bool] = ACTIONS(999), + [anon_sym_str] = ACTIONS(999), + [anon_sym_char] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(999), + [anon_sym_PERCENT] = ACTIONS(999), + [anon_sym_CARET] = ACTIONS(999), + [anon_sym_BANG] = ACTIONS(999), + [anon_sym_AMP] = ACTIONS(999), + [anon_sym_PIPE] = ACTIONS(999), + [anon_sym_AMP_AMP] = ACTIONS(1001), + [anon_sym_PIPE_PIPE] = ACTIONS(1001), + [anon_sym_LT_LT] = ACTIONS(999), + [anon_sym_GT_GT] = ACTIONS(999), + [anon_sym_PLUS_EQ] = ACTIONS(1001), + [anon_sym_DASH_EQ] = ACTIONS(1001), + [anon_sym_STAR_EQ] = ACTIONS(1001), + [anon_sym_SLASH_EQ] = ACTIONS(1001), + [anon_sym_PERCENT_EQ] = ACTIONS(1001), + [anon_sym_CARET_EQ] = ACTIONS(1001), + [anon_sym_AMP_EQ] = ACTIONS(1001), + [anon_sym_PIPE_EQ] = ACTIONS(1001), + [anon_sym_LT_LT_EQ] = ACTIONS(1001), + [anon_sym_GT_GT_EQ] = ACTIONS(1001), + [anon_sym_EQ] = ACTIONS(999), + [anon_sym_EQ_EQ] = ACTIONS(1001), + [anon_sym_BANG_EQ] = ACTIONS(1001), + [anon_sym_GT] = ACTIONS(999), + [anon_sym_LT] = ACTIONS(999), + [anon_sym_GT_EQ] = ACTIONS(1001), + [anon_sym_LT_EQ] = ACTIONS(1001), + [anon_sym_AT] = ACTIONS(1001), + [anon_sym__] = ACTIONS(999), + [anon_sym_DOT] = ACTIONS(999), + [anon_sym_DOT_DOT] = ACTIONS(999), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1001), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1001), + [anon_sym_COMMA] = ACTIONS(1001), + [anon_sym_COLON_COLON] = ACTIONS(1001), + [anon_sym_DASH_GT] = ACTIONS(1001), + [anon_sym_POUND] = ACTIONS(1001), + [anon_sym_SQUOTE] = ACTIONS(999), + [anon_sym_as] = ACTIONS(999), + [anon_sym_async] = ACTIONS(999), + [anon_sym_await] = ACTIONS(999), + [anon_sym_break] = ACTIONS(999), + [anon_sym_const] = ACTIONS(999), + [anon_sym_continue] = ACTIONS(999), + [anon_sym_default] = ACTIONS(999), + [anon_sym_enum] = ACTIONS(999), + [anon_sym_fn] = ACTIONS(999), + [anon_sym_for] = ACTIONS(999), + [anon_sym_gen] = ACTIONS(999), + [anon_sym_if] = ACTIONS(999), + [anon_sym_impl] = ACTIONS(999), + [anon_sym_let] = ACTIONS(999), + [anon_sym_loop] = ACTIONS(999), + [anon_sym_match] = ACTIONS(999), + [anon_sym_mod] = ACTIONS(999), + [anon_sym_pub] = ACTIONS(999), + [anon_sym_return] = ACTIONS(999), + [anon_sym_static] = ACTIONS(999), + [anon_sym_struct] = ACTIONS(999), + [anon_sym_trait] = ACTIONS(999), + [anon_sym_type] = ACTIONS(999), + [anon_sym_union] = ACTIONS(999), + [anon_sym_unsafe] = ACTIONS(999), + [anon_sym_use] = ACTIONS(999), + [anon_sym_where] = ACTIONS(999), + [anon_sym_while] = ACTIONS(999), + [sym_mutable_specifier] = ACTIONS(999), + [sym_integer_literal] = ACTIONS(1001), + [aux_sym_string_literal_token1] = ACTIONS(1001), + [sym_char_literal] = ACTIONS(1001), + [anon_sym_true] = ACTIONS(999), + [anon_sym_false] = ACTIONS(999), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(999), + [sym_super] = ACTIONS(999), + [sym_crate] = ACTIONS(999), + [sym__raw_string_literal_start] = ACTIONS(1001), + [sym_float_literal] = ACTIONS(1001), }, [204] = { [sym_line_comment] = STATE(204), [sym_block_comment] = STATE(204), - [sym_identifier] = ACTIONS(1027), - [anon_sym_SEMI] = ACTIONS(1029), - [anon_sym_LPAREN] = ACTIONS(1029), - [anon_sym_RPAREN] = ACTIONS(1029), - [anon_sym_LBRACK] = ACTIONS(1029), - [anon_sym_RBRACK] = ACTIONS(1029), - [anon_sym_LBRACE] = ACTIONS(1029), - [anon_sym_RBRACE] = ACTIONS(1029), - [anon_sym_EQ_GT] = ACTIONS(1029), - [anon_sym_COLON] = ACTIONS(1027), - [anon_sym_DOLLAR] = ACTIONS(1029), - [anon_sym_PLUS] = ACTIONS(1027), - [anon_sym_STAR] = ACTIONS(1027), - [anon_sym_QMARK] = ACTIONS(1029), - [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_DASH] = ACTIONS(1027), - [anon_sym_SLASH] = ACTIONS(1027), - [anon_sym_PERCENT] = ACTIONS(1027), - [anon_sym_CARET] = ACTIONS(1027), - [anon_sym_BANG] = ACTIONS(1027), - [anon_sym_AMP] = ACTIONS(1027), - [anon_sym_PIPE] = ACTIONS(1027), - [anon_sym_AMP_AMP] = ACTIONS(1029), - [anon_sym_PIPE_PIPE] = ACTIONS(1029), - [anon_sym_LT_LT] = ACTIONS(1027), - [anon_sym_GT_GT] = ACTIONS(1027), - [anon_sym_PLUS_EQ] = ACTIONS(1029), - [anon_sym_DASH_EQ] = ACTIONS(1029), - [anon_sym_STAR_EQ] = ACTIONS(1029), - [anon_sym_SLASH_EQ] = ACTIONS(1029), - [anon_sym_PERCENT_EQ] = ACTIONS(1029), - [anon_sym_CARET_EQ] = ACTIONS(1029), - [anon_sym_AMP_EQ] = ACTIONS(1029), - [anon_sym_PIPE_EQ] = ACTIONS(1029), - [anon_sym_LT_LT_EQ] = ACTIONS(1029), - [anon_sym_GT_GT_EQ] = ACTIONS(1029), - [anon_sym_EQ] = ACTIONS(1027), - [anon_sym_EQ_EQ] = ACTIONS(1029), - [anon_sym_BANG_EQ] = ACTIONS(1029), - [anon_sym_GT] = ACTIONS(1027), - [anon_sym_LT] = ACTIONS(1027), - [anon_sym_GT_EQ] = ACTIONS(1029), - [anon_sym_LT_EQ] = ACTIONS(1029), - [anon_sym_AT] = ACTIONS(1029), - [anon_sym__] = ACTIONS(1027), - [anon_sym_DOT] = ACTIONS(1027), - [anon_sym_DOT_DOT] = ACTIONS(1027), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1029), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1029), - [anon_sym_COMMA] = ACTIONS(1029), - [anon_sym_COLON_COLON] = ACTIONS(1029), - [anon_sym_DASH_GT] = ACTIONS(1029), - [anon_sym_POUND] = ACTIONS(1029), - [anon_sym_SQUOTE] = ACTIONS(1027), - [anon_sym_as] = ACTIONS(1027), - [anon_sym_async] = ACTIONS(1027), - [anon_sym_await] = ACTIONS(1027), - [anon_sym_break] = ACTIONS(1027), - [anon_sym_const] = ACTIONS(1027), - [anon_sym_continue] = ACTIONS(1027), - [anon_sym_default] = ACTIONS(1027), - [anon_sym_enum] = ACTIONS(1027), - [anon_sym_fn] = ACTIONS(1027), - [anon_sym_for] = ACTIONS(1027), - [anon_sym_gen] = ACTIONS(1027), - [anon_sym_if] = ACTIONS(1027), - [anon_sym_impl] = ACTIONS(1027), - [anon_sym_let] = ACTIONS(1027), - [anon_sym_loop] = ACTIONS(1027), - [anon_sym_match] = ACTIONS(1027), - [anon_sym_mod] = ACTIONS(1027), - [anon_sym_pub] = ACTIONS(1027), - [anon_sym_return] = ACTIONS(1027), - [anon_sym_static] = ACTIONS(1027), - [anon_sym_struct] = ACTIONS(1027), - [anon_sym_trait] = ACTIONS(1027), - [anon_sym_type] = ACTIONS(1027), - [anon_sym_union] = ACTIONS(1027), - [anon_sym_unsafe] = ACTIONS(1027), - [anon_sym_use] = ACTIONS(1027), - [anon_sym_where] = ACTIONS(1027), - [anon_sym_while] = ACTIONS(1027), - [sym_mutable_specifier] = ACTIONS(1027), - [sym_integer_literal] = ACTIONS(1029), - [aux_sym_string_literal_token1] = ACTIONS(1029), - [sym_char_literal] = ACTIONS(1029), - [anon_sym_true] = ACTIONS(1027), - [anon_sym_false] = ACTIONS(1027), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1027), - [sym_super] = ACTIONS(1027), - [sym_crate] = ACTIONS(1027), - [sym__raw_string_literal_start] = ACTIONS(1029), - [sym_float_literal] = ACTIONS(1029), - }, - [205] = { - [sym_attribute_item] = STATE(1011), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1623), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(205), - [sym_block_comment] = STATE(205), - [aux_sym_enum_variant_list_repeat1] = STATE(207), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(748), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [206] = { - [sym_line_comment] = STATE(206), - [sym_block_comment] = STATE(206), [sym_identifier] = ACTIONS(1041), [anon_sym_SEMI] = ACTIONS(1043), [anon_sym_LPAREN] = ACTIONS(1043), @@ -40403,173 +41536,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1043), [sym_float_literal] = ACTIONS(1043), }, - [207] = { - [sym_attribute_item] = STATE(1011), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1638), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(207), - [sym_block_comment] = STATE(207), - [aux_sym_enum_variant_list_repeat1] = STATE(1010), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(748), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), + [205] = { + [sym_line_comment] = STATE(205), + [sym_block_comment] = STATE(205), + [sym_identifier] = ACTIONS(977), + [anon_sym_SEMI] = ACTIONS(979), + [anon_sym_LPAREN] = ACTIONS(979), + [anon_sym_RPAREN] = ACTIONS(979), + [anon_sym_LBRACK] = ACTIONS(979), + [anon_sym_RBRACK] = ACTIONS(979), + [anon_sym_LBRACE] = ACTIONS(979), + [anon_sym_RBRACE] = ACTIONS(979), + [anon_sym_EQ_GT] = ACTIONS(979), + [anon_sym_COLON] = ACTIONS(977), + [anon_sym_DOLLAR] = ACTIONS(979), + [anon_sym_PLUS] = ACTIONS(977), + [anon_sym_STAR] = ACTIONS(977), + [anon_sym_QMARK] = ACTIONS(979), + [anon_sym_u8] = ACTIONS(977), + [anon_sym_i8] = ACTIONS(977), + [anon_sym_u16] = ACTIONS(977), + [anon_sym_i16] = ACTIONS(977), + [anon_sym_u32] = ACTIONS(977), + [anon_sym_i32] = ACTIONS(977), + [anon_sym_u64] = ACTIONS(977), + [anon_sym_i64] = ACTIONS(977), + [anon_sym_u128] = ACTIONS(977), + [anon_sym_i128] = ACTIONS(977), + [anon_sym_isize] = ACTIONS(977), + [anon_sym_usize] = ACTIONS(977), + [anon_sym_f32] = ACTIONS(977), + [anon_sym_f64] = ACTIONS(977), + [anon_sym_bool] = ACTIONS(977), + [anon_sym_str] = ACTIONS(977), + [anon_sym_char] = ACTIONS(977), + [anon_sym_DASH] = ACTIONS(977), + [anon_sym_SLASH] = ACTIONS(977), + [anon_sym_PERCENT] = ACTIONS(977), + [anon_sym_CARET] = ACTIONS(977), + [anon_sym_BANG] = ACTIONS(977), + [anon_sym_AMP] = ACTIONS(977), + [anon_sym_PIPE] = ACTIONS(977), + [anon_sym_AMP_AMP] = ACTIONS(979), + [anon_sym_PIPE_PIPE] = ACTIONS(979), + [anon_sym_LT_LT] = ACTIONS(977), + [anon_sym_GT_GT] = ACTIONS(977), + [anon_sym_PLUS_EQ] = ACTIONS(979), + [anon_sym_DASH_EQ] = ACTIONS(979), + [anon_sym_STAR_EQ] = ACTIONS(979), + [anon_sym_SLASH_EQ] = ACTIONS(979), + [anon_sym_PERCENT_EQ] = ACTIONS(979), + [anon_sym_CARET_EQ] = ACTIONS(979), + [anon_sym_AMP_EQ] = ACTIONS(979), + [anon_sym_PIPE_EQ] = ACTIONS(979), + [anon_sym_LT_LT_EQ] = ACTIONS(979), + [anon_sym_GT_GT_EQ] = ACTIONS(979), + [anon_sym_EQ] = ACTIONS(977), + [anon_sym_EQ_EQ] = ACTIONS(979), + [anon_sym_BANG_EQ] = ACTIONS(979), + [anon_sym_GT] = ACTIONS(977), + [anon_sym_LT] = ACTIONS(977), + [anon_sym_GT_EQ] = ACTIONS(979), + [anon_sym_LT_EQ] = ACTIONS(979), + [anon_sym_AT] = ACTIONS(979), + [anon_sym__] = ACTIONS(977), + [anon_sym_DOT] = ACTIONS(977), + [anon_sym_DOT_DOT] = ACTIONS(977), + [anon_sym_DOT_DOT_DOT] = ACTIONS(979), + [anon_sym_DOT_DOT_EQ] = ACTIONS(979), + [anon_sym_COMMA] = ACTIONS(979), + [anon_sym_COLON_COLON] = ACTIONS(979), + [anon_sym_DASH_GT] = ACTIONS(979), + [anon_sym_POUND] = ACTIONS(979), + [anon_sym_SQUOTE] = ACTIONS(977), + [anon_sym_as] = ACTIONS(977), + [anon_sym_async] = ACTIONS(977), + [anon_sym_await] = ACTIONS(977), + [anon_sym_break] = ACTIONS(977), + [anon_sym_const] = ACTIONS(977), + [anon_sym_continue] = ACTIONS(977), + [anon_sym_default] = ACTIONS(977), + [anon_sym_enum] = ACTIONS(977), + [anon_sym_fn] = ACTIONS(977), + [anon_sym_for] = ACTIONS(977), + [anon_sym_gen] = ACTIONS(977), + [anon_sym_if] = ACTIONS(977), + [anon_sym_impl] = ACTIONS(977), + [anon_sym_let] = ACTIONS(977), + [anon_sym_loop] = ACTIONS(977), + [anon_sym_match] = ACTIONS(977), + [anon_sym_mod] = ACTIONS(977), + [anon_sym_pub] = ACTIONS(977), + [anon_sym_return] = ACTIONS(977), + [anon_sym_static] = ACTIONS(977), + [anon_sym_struct] = ACTIONS(977), + [anon_sym_trait] = ACTIONS(977), + [anon_sym_type] = ACTIONS(977), + [anon_sym_union] = ACTIONS(977), + [anon_sym_unsafe] = ACTIONS(977), + [anon_sym_use] = ACTIONS(977), + [anon_sym_where] = ACTIONS(977), + [anon_sym_while] = ACTIONS(977), + [sym_mutable_specifier] = ACTIONS(977), + [sym_integer_literal] = ACTIONS(979), + [aux_sym_string_literal_token1] = ACTIONS(979), + [sym_char_literal] = ACTIONS(979), + [anon_sym_true] = ACTIONS(977), + [anon_sym_false] = ACTIONS(977), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [sym_self] = ACTIONS(977), + [sym_super] = ACTIONS(977), + [sym_crate] = ACTIONS(977), + [sym__raw_string_literal_start] = ACTIONS(979), + [sym_float_literal] = ACTIONS(979), }, - [208] = { - [sym_attribute_item] = STATE(1011), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1894), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(208), - [sym_block_comment] = STATE(208), - [aux_sym_enum_variant_list_repeat1] = STATE(1010), + [206] = { + [sym_attribute_item] = STATE(1157), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2158), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(206), + [sym_block_comment] = STATE(206), + [aux_sym_mod_item_repeat1] = STATE(1156), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -40633,288 +41766,288 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [209] = { - [sym_line_comment] = STATE(209), - [sym_block_comment] = STATE(209), - [sym_identifier] = ACTIONS(1045), - [anon_sym_SEMI] = ACTIONS(1047), - [anon_sym_LPAREN] = ACTIONS(1047), - [anon_sym_RPAREN] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1047), - [anon_sym_RBRACK] = ACTIONS(1047), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_RBRACE] = ACTIONS(1047), - [anon_sym_EQ_GT] = ACTIONS(1047), - [anon_sym_COLON] = ACTIONS(1045), - [anon_sym_DOLLAR] = ACTIONS(1047), - [anon_sym_PLUS] = ACTIONS(1045), - [anon_sym_STAR] = ACTIONS(1045), - [anon_sym_QMARK] = ACTIONS(1047), - [anon_sym_u8] = ACTIONS(1045), - [anon_sym_i8] = ACTIONS(1045), - [anon_sym_u16] = ACTIONS(1045), - [anon_sym_i16] = ACTIONS(1045), - [anon_sym_u32] = ACTIONS(1045), - [anon_sym_i32] = ACTIONS(1045), - [anon_sym_u64] = ACTIONS(1045), - [anon_sym_i64] = ACTIONS(1045), - [anon_sym_u128] = ACTIONS(1045), - [anon_sym_i128] = ACTIONS(1045), - [anon_sym_isize] = ACTIONS(1045), - [anon_sym_usize] = ACTIONS(1045), - [anon_sym_f32] = ACTIONS(1045), - [anon_sym_f64] = ACTIONS(1045), - [anon_sym_bool] = ACTIONS(1045), - [anon_sym_str] = ACTIONS(1045), - [anon_sym_char] = ACTIONS(1045), - [anon_sym_DASH] = ACTIONS(1045), - [anon_sym_SLASH] = ACTIONS(1045), - [anon_sym_PERCENT] = ACTIONS(1045), - [anon_sym_CARET] = ACTIONS(1045), - [anon_sym_BANG] = ACTIONS(1045), - [anon_sym_AMP] = ACTIONS(1045), - [anon_sym_PIPE] = ACTIONS(1045), - [anon_sym_AMP_AMP] = ACTIONS(1047), - [anon_sym_PIPE_PIPE] = ACTIONS(1047), - [anon_sym_LT_LT] = ACTIONS(1045), - [anon_sym_GT_GT] = ACTIONS(1045), - [anon_sym_PLUS_EQ] = ACTIONS(1047), - [anon_sym_DASH_EQ] = ACTIONS(1047), - [anon_sym_STAR_EQ] = ACTIONS(1047), - [anon_sym_SLASH_EQ] = ACTIONS(1047), - [anon_sym_PERCENT_EQ] = ACTIONS(1047), - [anon_sym_CARET_EQ] = ACTIONS(1047), - [anon_sym_AMP_EQ] = ACTIONS(1047), - [anon_sym_PIPE_EQ] = ACTIONS(1047), - [anon_sym_LT_LT_EQ] = ACTIONS(1047), - [anon_sym_GT_GT_EQ] = ACTIONS(1047), - [anon_sym_EQ] = ACTIONS(1045), - [anon_sym_EQ_EQ] = ACTIONS(1047), - [anon_sym_BANG_EQ] = ACTIONS(1047), - [anon_sym_GT] = ACTIONS(1045), - [anon_sym_LT] = ACTIONS(1045), - [anon_sym_GT_EQ] = ACTIONS(1047), - [anon_sym_LT_EQ] = ACTIONS(1047), - [anon_sym_AT] = ACTIONS(1047), - [anon_sym__] = ACTIONS(1045), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_DOT_DOT] = ACTIONS(1045), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1047), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1047), - [anon_sym_COMMA] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1047), - [anon_sym_DASH_GT] = ACTIONS(1047), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_SQUOTE] = ACTIONS(1045), - [anon_sym_as] = ACTIONS(1045), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_await] = ACTIONS(1045), - [anon_sym_break] = ACTIONS(1045), - [anon_sym_const] = ACTIONS(1045), - [anon_sym_continue] = ACTIONS(1045), - [anon_sym_default] = ACTIONS(1045), - [anon_sym_enum] = ACTIONS(1045), - [anon_sym_fn] = ACTIONS(1045), - [anon_sym_for] = ACTIONS(1045), - [anon_sym_gen] = ACTIONS(1045), - [anon_sym_if] = ACTIONS(1045), - [anon_sym_impl] = ACTIONS(1045), - [anon_sym_let] = ACTIONS(1045), - [anon_sym_loop] = ACTIONS(1045), - [anon_sym_match] = ACTIONS(1045), - [anon_sym_mod] = ACTIONS(1045), - [anon_sym_pub] = ACTIONS(1045), - [anon_sym_return] = ACTIONS(1045), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_struct] = ACTIONS(1045), - [anon_sym_trait] = ACTIONS(1045), - [anon_sym_type] = ACTIONS(1045), - [anon_sym_union] = ACTIONS(1045), - [anon_sym_unsafe] = ACTIONS(1045), - [anon_sym_use] = ACTIONS(1045), - [anon_sym_where] = ACTIONS(1045), - [anon_sym_while] = ACTIONS(1045), - [sym_mutable_specifier] = ACTIONS(1045), - [sym_integer_literal] = ACTIONS(1047), - [aux_sym_string_literal_token1] = ACTIONS(1047), - [sym_char_literal] = ACTIONS(1047), - [anon_sym_true] = ACTIONS(1045), - [anon_sym_false] = ACTIONS(1045), + [207] = { + [sym_line_comment] = STATE(207), + [sym_block_comment] = STATE(207), + [sym_identifier] = ACTIONS(941), + [anon_sym_SEMI] = ACTIONS(943), + [anon_sym_LPAREN] = ACTIONS(943), + [anon_sym_RPAREN] = ACTIONS(943), + [anon_sym_LBRACK] = ACTIONS(943), + [anon_sym_RBRACK] = ACTIONS(943), + [anon_sym_LBRACE] = ACTIONS(943), + [anon_sym_RBRACE] = ACTIONS(943), + [anon_sym_EQ_GT] = ACTIONS(943), + [anon_sym_COLON] = ACTIONS(941), + [anon_sym_DOLLAR] = ACTIONS(943), + [anon_sym_PLUS] = ACTIONS(941), + [anon_sym_STAR] = ACTIONS(941), + [anon_sym_QMARK] = ACTIONS(943), + [anon_sym_u8] = ACTIONS(941), + [anon_sym_i8] = ACTIONS(941), + [anon_sym_u16] = ACTIONS(941), + [anon_sym_i16] = ACTIONS(941), + [anon_sym_u32] = ACTIONS(941), + [anon_sym_i32] = ACTIONS(941), + [anon_sym_u64] = ACTIONS(941), + [anon_sym_i64] = ACTIONS(941), + [anon_sym_u128] = ACTIONS(941), + [anon_sym_i128] = ACTIONS(941), + [anon_sym_isize] = ACTIONS(941), + [anon_sym_usize] = ACTIONS(941), + [anon_sym_f32] = ACTIONS(941), + [anon_sym_f64] = ACTIONS(941), + [anon_sym_bool] = ACTIONS(941), + [anon_sym_str] = ACTIONS(941), + [anon_sym_char] = ACTIONS(941), + [anon_sym_DASH] = ACTIONS(941), + [anon_sym_SLASH] = ACTIONS(941), + [anon_sym_PERCENT] = ACTIONS(941), + [anon_sym_CARET] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(941), + [anon_sym_AMP] = ACTIONS(941), + [anon_sym_PIPE] = ACTIONS(941), + [anon_sym_AMP_AMP] = ACTIONS(943), + [anon_sym_PIPE_PIPE] = ACTIONS(943), + [anon_sym_LT_LT] = ACTIONS(941), + [anon_sym_GT_GT] = ACTIONS(941), + [anon_sym_PLUS_EQ] = ACTIONS(943), + [anon_sym_DASH_EQ] = ACTIONS(943), + [anon_sym_STAR_EQ] = ACTIONS(943), + [anon_sym_SLASH_EQ] = ACTIONS(943), + [anon_sym_PERCENT_EQ] = ACTIONS(943), + [anon_sym_CARET_EQ] = ACTIONS(943), + [anon_sym_AMP_EQ] = ACTIONS(943), + [anon_sym_PIPE_EQ] = ACTIONS(943), + [anon_sym_LT_LT_EQ] = ACTIONS(943), + [anon_sym_GT_GT_EQ] = ACTIONS(943), + [anon_sym_EQ] = ACTIONS(941), + [anon_sym_EQ_EQ] = ACTIONS(943), + [anon_sym_BANG_EQ] = ACTIONS(943), + [anon_sym_GT] = ACTIONS(941), + [anon_sym_LT] = ACTIONS(941), + [anon_sym_GT_EQ] = ACTIONS(943), + [anon_sym_LT_EQ] = ACTIONS(943), + [anon_sym_AT] = ACTIONS(943), + [anon_sym__] = ACTIONS(941), + [anon_sym_DOT] = ACTIONS(941), + [anon_sym_DOT_DOT] = ACTIONS(941), + [anon_sym_DOT_DOT_DOT] = ACTIONS(943), + [anon_sym_DOT_DOT_EQ] = ACTIONS(943), + [anon_sym_COMMA] = ACTIONS(943), + [anon_sym_COLON_COLON] = ACTIONS(943), + [anon_sym_DASH_GT] = ACTIONS(943), + [anon_sym_POUND] = ACTIONS(943), + [anon_sym_SQUOTE] = ACTIONS(941), + [anon_sym_as] = ACTIONS(941), + [anon_sym_async] = ACTIONS(941), + [anon_sym_await] = ACTIONS(941), + [anon_sym_break] = ACTIONS(941), + [anon_sym_const] = ACTIONS(941), + [anon_sym_continue] = ACTIONS(941), + [anon_sym_default] = ACTIONS(941), + [anon_sym_enum] = ACTIONS(941), + [anon_sym_fn] = ACTIONS(941), + [anon_sym_for] = ACTIONS(941), + [anon_sym_gen] = ACTIONS(941), + [anon_sym_if] = ACTIONS(941), + [anon_sym_impl] = ACTIONS(941), + [anon_sym_let] = ACTIONS(941), + [anon_sym_loop] = ACTIONS(941), + [anon_sym_match] = ACTIONS(941), + [anon_sym_mod] = ACTIONS(941), + [anon_sym_pub] = ACTIONS(941), + [anon_sym_return] = ACTIONS(941), + [anon_sym_static] = ACTIONS(941), + [anon_sym_struct] = ACTIONS(941), + [anon_sym_trait] = ACTIONS(941), + [anon_sym_type] = ACTIONS(941), + [anon_sym_union] = ACTIONS(941), + [anon_sym_unsafe] = ACTIONS(941), + [anon_sym_use] = ACTIONS(941), + [anon_sym_where] = ACTIONS(941), + [anon_sym_while] = ACTIONS(941), + [sym_mutable_specifier] = ACTIONS(941), + [sym_integer_literal] = ACTIONS(943), + [aux_sym_string_literal_token1] = ACTIONS(943), + [sym_char_literal] = ACTIONS(943), + [anon_sym_true] = ACTIONS(941), + [anon_sym_false] = ACTIONS(941), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1045), - [sym_super] = ACTIONS(1045), - [sym_crate] = ACTIONS(1045), - [sym__raw_string_literal_start] = ACTIONS(1047), - [sym_float_literal] = ACTIONS(1047), + [sym_self] = ACTIONS(941), + [sym_super] = ACTIONS(941), + [sym_crate] = ACTIONS(941), + [sym__raw_string_literal_start] = ACTIONS(943), + [sym_float_literal] = ACTIONS(943), }, - [210] = { - [sym_line_comment] = STATE(210), - [sym_block_comment] = STATE(210), - [sym_identifier] = ACTIONS(1049), - [anon_sym_SEMI] = ACTIONS(1051), - [anon_sym_LPAREN] = ACTIONS(1051), - [anon_sym_RPAREN] = ACTIONS(1051), - [anon_sym_LBRACK] = ACTIONS(1051), - [anon_sym_RBRACK] = ACTIONS(1051), - [anon_sym_LBRACE] = ACTIONS(1051), - [anon_sym_RBRACE] = ACTIONS(1051), - [anon_sym_EQ_GT] = ACTIONS(1051), - [anon_sym_COLON] = ACTIONS(1049), - [anon_sym_DOLLAR] = ACTIONS(1051), - [anon_sym_PLUS] = ACTIONS(1049), - [anon_sym_STAR] = ACTIONS(1049), - [anon_sym_QMARK] = ACTIONS(1051), - [anon_sym_u8] = ACTIONS(1049), - [anon_sym_i8] = ACTIONS(1049), - [anon_sym_u16] = ACTIONS(1049), - [anon_sym_i16] = ACTIONS(1049), - [anon_sym_u32] = ACTIONS(1049), - [anon_sym_i32] = ACTIONS(1049), - [anon_sym_u64] = ACTIONS(1049), - [anon_sym_i64] = ACTIONS(1049), - [anon_sym_u128] = ACTIONS(1049), - [anon_sym_i128] = ACTIONS(1049), - [anon_sym_isize] = ACTIONS(1049), - [anon_sym_usize] = ACTIONS(1049), - [anon_sym_f32] = ACTIONS(1049), - [anon_sym_f64] = ACTIONS(1049), - [anon_sym_bool] = ACTIONS(1049), - [anon_sym_str] = ACTIONS(1049), - [anon_sym_char] = ACTIONS(1049), - [anon_sym_DASH] = ACTIONS(1049), - [anon_sym_SLASH] = ACTIONS(1049), - [anon_sym_PERCENT] = ACTIONS(1049), - [anon_sym_CARET] = ACTIONS(1049), - [anon_sym_BANG] = ACTIONS(1049), - [anon_sym_AMP] = ACTIONS(1049), - [anon_sym_PIPE] = ACTIONS(1049), - [anon_sym_AMP_AMP] = ACTIONS(1051), - [anon_sym_PIPE_PIPE] = ACTIONS(1051), - [anon_sym_LT_LT] = ACTIONS(1049), - [anon_sym_GT_GT] = ACTIONS(1049), - [anon_sym_PLUS_EQ] = ACTIONS(1051), - [anon_sym_DASH_EQ] = ACTIONS(1051), - [anon_sym_STAR_EQ] = ACTIONS(1051), - [anon_sym_SLASH_EQ] = ACTIONS(1051), - [anon_sym_PERCENT_EQ] = ACTIONS(1051), - [anon_sym_CARET_EQ] = ACTIONS(1051), - [anon_sym_AMP_EQ] = ACTIONS(1051), - [anon_sym_PIPE_EQ] = ACTIONS(1051), - [anon_sym_LT_LT_EQ] = ACTIONS(1051), - [anon_sym_GT_GT_EQ] = ACTIONS(1051), - [anon_sym_EQ] = ACTIONS(1049), - [anon_sym_EQ_EQ] = ACTIONS(1051), - [anon_sym_BANG_EQ] = ACTIONS(1051), - [anon_sym_GT] = ACTIONS(1049), - [anon_sym_LT] = ACTIONS(1049), - [anon_sym_GT_EQ] = ACTIONS(1051), - [anon_sym_LT_EQ] = ACTIONS(1051), - [anon_sym_AT] = ACTIONS(1051), - [anon_sym__] = ACTIONS(1049), - [anon_sym_DOT] = ACTIONS(1049), - [anon_sym_DOT_DOT] = ACTIONS(1049), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1051), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1051), - [anon_sym_COMMA] = ACTIONS(1051), - [anon_sym_COLON_COLON] = ACTIONS(1051), - [anon_sym_DASH_GT] = ACTIONS(1051), - [anon_sym_POUND] = ACTIONS(1051), - [anon_sym_SQUOTE] = ACTIONS(1049), - [anon_sym_as] = ACTIONS(1049), - [anon_sym_async] = ACTIONS(1049), - [anon_sym_await] = ACTIONS(1049), - [anon_sym_break] = ACTIONS(1049), - [anon_sym_const] = ACTIONS(1049), - [anon_sym_continue] = ACTIONS(1049), - [anon_sym_default] = ACTIONS(1049), - [anon_sym_enum] = ACTIONS(1049), - [anon_sym_fn] = ACTIONS(1049), - [anon_sym_for] = ACTIONS(1049), - [anon_sym_gen] = ACTIONS(1049), - [anon_sym_if] = ACTIONS(1049), - [anon_sym_impl] = ACTIONS(1049), - [anon_sym_let] = ACTIONS(1049), - [anon_sym_loop] = ACTIONS(1049), - [anon_sym_match] = ACTIONS(1049), - [anon_sym_mod] = ACTIONS(1049), - [anon_sym_pub] = ACTIONS(1049), - [anon_sym_return] = ACTIONS(1049), - [anon_sym_static] = ACTIONS(1049), - [anon_sym_struct] = ACTIONS(1049), - [anon_sym_trait] = ACTIONS(1049), - [anon_sym_type] = ACTIONS(1049), - [anon_sym_union] = ACTIONS(1049), - [anon_sym_unsafe] = ACTIONS(1049), - [anon_sym_use] = ACTIONS(1049), - [anon_sym_where] = ACTIONS(1049), - [anon_sym_while] = ACTIONS(1049), - [sym_mutable_specifier] = ACTIONS(1049), - [sym_integer_literal] = ACTIONS(1051), - [aux_sym_string_literal_token1] = ACTIONS(1051), - [sym_char_literal] = ACTIONS(1051), - [anon_sym_true] = ACTIONS(1049), - [anon_sym_false] = ACTIONS(1049), + [208] = { + [sym_line_comment] = STATE(208), + [sym_block_comment] = STATE(208), + [sym_identifier] = ACTIONS(987), + [anon_sym_SEMI] = ACTIONS(989), + [anon_sym_LPAREN] = ACTIONS(989), + [anon_sym_RPAREN] = ACTIONS(989), + [anon_sym_LBRACK] = ACTIONS(989), + [anon_sym_RBRACK] = ACTIONS(989), + [anon_sym_LBRACE] = ACTIONS(989), + [anon_sym_RBRACE] = ACTIONS(989), + [anon_sym_EQ_GT] = ACTIONS(989), + [anon_sym_COLON] = ACTIONS(987), + [anon_sym_DOLLAR] = ACTIONS(989), + [anon_sym_PLUS] = ACTIONS(987), + [anon_sym_STAR] = ACTIONS(987), + [anon_sym_QMARK] = ACTIONS(989), + [anon_sym_u8] = ACTIONS(987), + [anon_sym_i8] = ACTIONS(987), + [anon_sym_u16] = ACTIONS(987), + [anon_sym_i16] = ACTIONS(987), + [anon_sym_u32] = ACTIONS(987), + [anon_sym_i32] = ACTIONS(987), + [anon_sym_u64] = ACTIONS(987), + [anon_sym_i64] = ACTIONS(987), + [anon_sym_u128] = ACTIONS(987), + [anon_sym_i128] = ACTIONS(987), + [anon_sym_isize] = ACTIONS(987), + [anon_sym_usize] = ACTIONS(987), + [anon_sym_f32] = ACTIONS(987), + [anon_sym_f64] = ACTIONS(987), + [anon_sym_bool] = ACTIONS(987), + [anon_sym_str] = ACTIONS(987), + [anon_sym_char] = ACTIONS(987), + [anon_sym_DASH] = ACTIONS(987), + [anon_sym_SLASH] = ACTIONS(987), + [anon_sym_PERCENT] = ACTIONS(987), + [anon_sym_CARET] = ACTIONS(987), + [anon_sym_BANG] = ACTIONS(987), + [anon_sym_AMP] = ACTIONS(987), + [anon_sym_PIPE] = ACTIONS(987), + [anon_sym_AMP_AMP] = ACTIONS(989), + [anon_sym_PIPE_PIPE] = ACTIONS(989), + [anon_sym_LT_LT] = ACTIONS(987), + [anon_sym_GT_GT] = ACTIONS(987), + [anon_sym_PLUS_EQ] = ACTIONS(989), + [anon_sym_DASH_EQ] = ACTIONS(989), + [anon_sym_STAR_EQ] = ACTIONS(989), + [anon_sym_SLASH_EQ] = ACTIONS(989), + [anon_sym_PERCENT_EQ] = ACTIONS(989), + [anon_sym_CARET_EQ] = ACTIONS(989), + [anon_sym_AMP_EQ] = ACTIONS(989), + [anon_sym_PIPE_EQ] = ACTIONS(989), + [anon_sym_LT_LT_EQ] = ACTIONS(989), + [anon_sym_GT_GT_EQ] = ACTIONS(989), + [anon_sym_EQ] = ACTIONS(987), + [anon_sym_EQ_EQ] = ACTIONS(989), + [anon_sym_BANG_EQ] = ACTIONS(989), + [anon_sym_GT] = ACTIONS(987), + [anon_sym_LT] = ACTIONS(987), + [anon_sym_GT_EQ] = ACTIONS(989), + [anon_sym_LT_EQ] = ACTIONS(989), + [anon_sym_AT] = ACTIONS(989), + [anon_sym__] = ACTIONS(987), + [anon_sym_DOT] = ACTIONS(987), + [anon_sym_DOT_DOT] = ACTIONS(987), + [anon_sym_DOT_DOT_DOT] = ACTIONS(989), + [anon_sym_DOT_DOT_EQ] = ACTIONS(989), + [anon_sym_COMMA] = ACTIONS(989), + [anon_sym_COLON_COLON] = ACTIONS(989), + [anon_sym_DASH_GT] = ACTIONS(989), + [anon_sym_POUND] = ACTIONS(989), + [anon_sym_SQUOTE] = ACTIONS(987), + [anon_sym_as] = ACTIONS(987), + [anon_sym_async] = ACTIONS(987), + [anon_sym_await] = ACTIONS(987), + [anon_sym_break] = ACTIONS(987), + [anon_sym_const] = ACTIONS(987), + [anon_sym_continue] = ACTIONS(987), + [anon_sym_default] = ACTIONS(987), + [anon_sym_enum] = ACTIONS(987), + [anon_sym_fn] = ACTIONS(987), + [anon_sym_for] = ACTIONS(987), + [anon_sym_gen] = ACTIONS(987), + [anon_sym_if] = ACTIONS(987), + [anon_sym_impl] = ACTIONS(987), + [anon_sym_let] = ACTIONS(987), + [anon_sym_loop] = ACTIONS(987), + [anon_sym_match] = ACTIONS(987), + [anon_sym_mod] = ACTIONS(987), + [anon_sym_pub] = ACTIONS(987), + [anon_sym_return] = ACTIONS(987), + [anon_sym_static] = ACTIONS(987), + [anon_sym_struct] = ACTIONS(987), + [anon_sym_trait] = ACTIONS(987), + [anon_sym_type] = ACTIONS(987), + [anon_sym_union] = ACTIONS(987), + [anon_sym_unsafe] = ACTIONS(987), + [anon_sym_use] = ACTIONS(987), + [anon_sym_where] = ACTIONS(987), + [anon_sym_while] = ACTIONS(987), + [sym_mutable_specifier] = ACTIONS(987), + [sym_integer_literal] = ACTIONS(989), + [aux_sym_string_literal_token1] = ACTIONS(989), + [sym_char_literal] = ACTIONS(989), + [anon_sym_true] = ACTIONS(987), + [anon_sym_false] = ACTIONS(987), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1049), - [sym_super] = ACTIONS(1049), - [sym_crate] = ACTIONS(1049), - [sym__raw_string_literal_start] = ACTIONS(1051), - [sym_float_literal] = ACTIONS(1051), + [sym_self] = ACTIONS(987), + [sym_super] = ACTIONS(987), + [sym_crate] = ACTIONS(987), + [sym__raw_string_literal_start] = ACTIONS(989), + [sym_float_literal] = ACTIONS(989), }, - [211] = { - [sym_attribute_item] = STATE(1011), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1899), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(211), - [sym_block_comment] = STATE(211), - [aux_sym_enum_variant_list_repeat1] = STATE(1010), + [209] = { + [sym_attribute_item] = STATE(1157), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2149), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(209), + [sym_block_comment] = STATE(209), + [aux_sym_mod_item_repeat1] = STATE(1156), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -40978,58 +42111,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [212] = { - [sym_attribute_item] = STATE(1011), - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1617), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(212), - [sym_block_comment] = STATE(212), - [aux_sym_enum_variant_list_repeat1] = STATE(1010), + [210] = { + [sym_line_comment] = STATE(210), + [sym_block_comment] = STATE(210), + [sym_identifier] = ACTIONS(1045), + [anon_sym_SEMI] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1047), + [anon_sym_RPAREN] = ACTIONS(1047), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_RBRACK] = ACTIONS(1047), + [anon_sym_LBRACE] = ACTIONS(1047), + [anon_sym_RBRACE] = ACTIONS(1047), + [anon_sym_EQ_GT] = ACTIONS(1047), + [anon_sym_COLON] = ACTIONS(1045), + [anon_sym_DOLLAR] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1045), + [anon_sym_STAR] = ACTIONS(1045), + [anon_sym_QMARK] = ACTIONS(1047), + [anon_sym_u8] = ACTIONS(1045), + [anon_sym_i8] = ACTIONS(1045), + [anon_sym_u16] = ACTIONS(1045), + [anon_sym_i16] = ACTIONS(1045), + [anon_sym_u32] = ACTIONS(1045), + [anon_sym_i32] = ACTIONS(1045), + [anon_sym_u64] = ACTIONS(1045), + [anon_sym_i64] = ACTIONS(1045), + [anon_sym_u128] = ACTIONS(1045), + [anon_sym_i128] = ACTIONS(1045), + [anon_sym_isize] = ACTIONS(1045), + [anon_sym_usize] = ACTIONS(1045), + [anon_sym_f32] = ACTIONS(1045), + [anon_sym_f64] = ACTIONS(1045), + [anon_sym_bool] = ACTIONS(1045), + [anon_sym_str] = ACTIONS(1045), + [anon_sym_char] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1045), + [anon_sym_SLASH] = ACTIONS(1045), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_CARET] = ACTIONS(1045), + [anon_sym_BANG] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1045), + [anon_sym_PIPE] = ACTIONS(1045), + [anon_sym_AMP_AMP] = ACTIONS(1047), + [anon_sym_PIPE_PIPE] = ACTIONS(1047), + [anon_sym_LT_LT] = ACTIONS(1045), + [anon_sym_GT_GT] = ACTIONS(1045), + [anon_sym_PLUS_EQ] = ACTIONS(1047), + [anon_sym_DASH_EQ] = ACTIONS(1047), + [anon_sym_STAR_EQ] = ACTIONS(1047), + [anon_sym_SLASH_EQ] = ACTIONS(1047), + [anon_sym_PERCENT_EQ] = ACTIONS(1047), + [anon_sym_CARET_EQ] = ACTIONS(1047), + [anon_sym_AMP_EQ] = ACTIONS(1047), + [anon_sym_PIPE_EQ] = ACTIONS(1047), + [anon_sym_LT_LT_EQ] = ACTIONS(1047), + [anon_sym_GT_GT_EQ] = ACTIONS(1047), + [anon_sym_EQ] = ACTIONS(1045), + [anon_sym_EQ_EQ] = ACTIONS(1047), + [anon_sym_BANG_EQ] = ACTIONS(1047), + [anon_sym_GT] = ACTIONS(1045), + [anon_sym_LT] = ACTIONS(1045), + [anon_sym_GT_EQ] = ACTIONS(1047), + [anon_sym_LT_EQ] = ACTIONS(1047), + [anon_sym_AT] = ACTIONS(1047), + [anon_sym__] = ACTIONS(1045), + [anon_sym_DOT] = ACTIONS(1045), + [anon_sym_DOT_DOT] = ACTIONS(1045), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1047), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1047), + [anon_sym_COMMA] = ACTIONS(1047), + [anon_sym_COLON_COLON] = ACTIONS(1047), + [anon_sym_DASH_GT] = ACTIONS(1047), + [anon_sym_POUND] = ACTIONS(1047), + [anon_sym_SQUOTE] = ACTIONS(1045), + [anon_sym_as] = ACTIONS(1045), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_await] = ACTIONS(1045), + [anon_sym_break] = ACTIONS(1045), + [anon_sym_const] = ACTIONS(1045), + [anon_sym_continue] = ACTIONS(1045), + [anon_sym_default] = ACTIONS(1045), + [anon_sym_enum] = ACTIONS(1045), + [anon_sym_fn] = ACTIONS(1045), + [anon_sym_for] = ACTIONS(1045), + [anon_sym_gen] = ACTIONS(1045), + [anon_sym_if] = ACTIONS(1045), + [anon_sym_impl] = ACTIONS(1045), + [anon_sym_let] = ACTIONS(1045), + [anon_sym_loop] = ACTIONS(1045), + [anon_sym_match] = ACTIONS(1045), + [anon_sym_mod] = ACTIONS(1045), + [anon_sym_pub] = ACTIONS(1045), + [anon_sym_return] = ACTIONS(1045), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_struct] = ACTIONS(1045), + [anon_sym_trait] = ACTIONS(1045), + [anon_sym_type] = ACTIONS(1045), + [anon_sym_union] = ACTIONS(1045), + [anon_sym_unsafe] = ACTIONS(1045), + [anon_sym_use] = ACTIONS(1045), + [anon_sym_where] = ACTIONS(1045), + [anon_sym_while] = ACTIONS(1045), + [sym_mutable_specifier] = ACTIONS(1045), + [sym_integer_literal] = ACTIONS(1047), + [aux_sym_string_literal_token1] = ACTIONS(1047), + [sym_char_literal] = ACTIONS(1047), + [anon_sym_true] = ACTIONS(1045), + [anon_sym_false] = ACTIONS(1045), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1045), + [sym_super] = ACTIONS(1045), + [sym_crate] = ACTIONS(1045), + [sym__raw_string_literal_start] = ACTIONS(1047), + [sym_float_literal] = ACTIONS(1047), + }, + [211] = { + [sym_attribute_item] = STATE(1157), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1885), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(211), + [sym_block_comment] = STATE(211), + [aux_sym_mod_item_repeat1] = STATE(214), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -41093,9 +42341,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [213] = { - [sym_line_comment] = STATE(213), - [sym_block_comment] = STATE(213), + [212] = { + [sym_line_comment] = STATE(212), + [sym_block_comment] = STATE(212), [sym_identifier] = ACTIONS(973), [anon_sym_SEMI] = ACTIONS(975), [anon_sym_LPAREN] = ACTIONS(975), @@ -41208,403 +42456,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(975), [sym_float_literal] = ACTIONS(975), }, - [214] = { - [sym_line_comment] = STATE(214), - [sym_block_comment] = STATE(214), - [sym_identifier] = ACTIONS(931), - [anon_sym_SEMI] = ACTIONS(933), - [anon_sym_LPAREN] = ACTIONS(933), - [anon_sym_RPAREN] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(933), - [anon_sym_RBRACK] = ACTIONS(933), - [anon_sym_LBRACE] = ACTIONS(933), - [anon_sym_RBRACE] = ACTIONS(933), - [anon_sym_EQ_GT] = ACTIONS(933), - [anon_sym_COLON] = ACTIONS(931), - [anon_sym_DOLLAR] = ACTIONS(933), - [anon_sym_PLUS] = ACTIONS(931), - [anon_sym_STAR] = ACTIONS(931), - [anon_sym_QMARK] = ACTIONS(933), - [anon_sym_u8] = ACTIONS(931), - [anon_sym_i8] = ACTIONS(931), - [anon_sym_u16] = ACTIONS(931), - [anon_sym_i16] = ACTIONS(931), - [anon_sym_u32] = ACTIONS(931), - [anon_sym_i32] = ACTIONS(931), - [anon_sym_u64] = ACTIONS(931), - [anon_sym_i64] = ACTIONS(931), - [anon_sym_u128] = ACTIONS(931), - [anon_sym_i128] = ACTIONS(931), - [anon_sym_isize] = ACTIONS(931), - [anon_sym_usize] = ACTIONS(931), - [anon_sym_f32] = ACTIONS(931), - [anon_sym_f64] = ACTIONS(931), - [anon_sym_bool] = ACTIONS(931), - [anon_sym_str] = ACTIONS(931), - [anon_sym_char] = ACTIONS(931), - [anon_sym_DASH] = ACTIONS(931), - [anon_sym_SLASH] = ACTIONS(931), - [anon_sym_PERCENT] = ACTIONS(931), - [anon_sym_CARET] = ACTIONS(931), - [anon_sym_BANG] = ACTIONS(931), - [anon_sym_AMP] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(931), - [anon_sym_AMP_AMP] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [anon_sym_LT_LT] = ACTIONS(931), - [anon_sym_GT_GT] = ACTIONS(931), - [anon_sym_PLUS_EQ] = ACTIONS(933), - [anon_sym_DASH_EQ] = ACTIONS(933), - [anon_sym_STAR_EQ] = ACTIONS(933), - [anon_sym_SLASH_EQ] = ACTIONS(933), - [anon_sym_PERCENT_EQ] = ACTIONS(933), - [anon_sym_CARET_EQ] = ACTIONS(933), - [anon_sym_AMP_EQ] = ACTIONS(933), - [anon_sym_PIPE_EQ] = ACTIONS(933), - [anon_sym_LT_LT_EQ] = ACTIONS(933), - [anon_sym_GT_GT_EQ] = ACTIONS(933), - [anon_sym_EQ] = ACTIONS(931), - [anon_sym_EQ_EQ] = ACTIONS(933), - [anon_sym_BANG_EQ] = ACTIONS(933), - [anon_sym_GT] = ACTIONS(931), - [anon_sym_LT] = ACTIONS(931), - [anon_sym_GT_EQ] = ACTIONS(933), - [anon_sym_LT_EQ] = ACTIONS(933), - [anon_sym_AT] = ACTIONS(933), - [anon_sym__] = ACTIONS(931), - [anon_sym_DOT] = ACTIONS(931), - [anon_sym_DOT_DOT] = ACTIONS(931), - [anon_sym_DOT_DOT_DOT] = ACTIONS(933), - [anon_sym_DOT_DOT_EQ] = ACTIONS(933), - [anon_sym_COMMA] = ACTIONS(933), - [anon_sym_COLON_COLON] = ACTIONS(933), - [anon_sym_DASH_GT] = ACTIONS(933), - [anon_sym_POUND] = ACTIONS(933), - [anon_sym_SQUOTE] = ACTIONS(931), - [anon_sym_as] = ACTIONS(931), - [anon_sym_async] = ACTIONS(931), - [anon_sym_await] = ACTIONS(931), - [anon_sym_break] = ACTIONS(931), - [anon_sym_const] = ACTIONS(931), - [anon_sym_continue] = ACTIONS(931), - [anon_sym_default] = ACTIONS(931), - [anon_sym_enum] = ACTIONS(931), - [anon_sym_fn] = ACTIONS(931), - [anon_sym_for] = ACTIONS(931), - [anon_sym_gen] = ACTIONS(931), - [anon_sym_if] = ACTIONS(931), - [anon_sym_impl] = ACTIONS(931), - [anon_sym_let] = ACTIONS(931), - [anon_sym_loop] = ACTIONS(931), - [anon_sym_match] = ACTIONS(931), - [anon_sym_mod] = ACTIONS(931), - [anon_sym_pub] = ACTIONS(931), - [anon_sym_return] = ACTIONS(931), - [anon_sym_static] = ACTIONS(931), - [anon_sym_struct] = ACTIONS(931), - [anon_sym_trait] = ACTIONS(931), - [anon_sym_type] = ACTIONS(931), - [anon_sym_union] = ACTIONS(931), - [anon_sym_unsafe] = ACTIONS(931), - [anon_sym_use] = ACTIONS(931), - [anon_sym_where] = ACTIONS(931), - [anon_sym_while] = ACTIONS(931), - [sym_mutable_specifier] = ACTIONS(931), - [sym_integer_literal] = ACTIONS(933), - [aux_sym_string_literal_token1] = ACTIONS(933), - [sym_char_literal] = ACTIONS(933), - [anon_sym_true] = ACTIONS(931), - [anon_sym_false] = ACTIONS(931), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(931), - [sym_super] = ACTIONS(931), - [sym_crate] = ACTIONS(931), - [sym__raw_string_literal_start] = ACTIONS(933), - [sym_float_literal] = ACTIONS(933), - }, - [215] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1418), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(215), - [sym_block_comment] = STATE(215), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1053), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [sym_mutable_specifier] = ACTIONS(1055), - [anon_sym_raw] = ACTIONS(1057), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [216] = { - [sym_bracketed_type] = STATE(3529), - [sym_generic_function] = STATE(1664), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1626), - [sym__expression] = STATE(1677), - [sym_macro_invocation] = STATE(1671), - [sym_scoped_identifier] = STATE(1575), - [sym_scoped_type_identifier_in_expression_position] = STATE(3163), - [sym_range_expression] = STATE(1666), - [sym_unary_expression] = STATE(1664), - [sym_try_expression] = STATE(1664), - [sym_reference_expression] = STATE(1664), - [sym_binary_expression] = STATE(1664), - [sym_assignment_expression] = STATE(1664), - [sym_compound_assignment_expr] = STATE(1664), - [sym_type_cast_expression] = STATE(1664), - [sym_return_expression] = STATE(1664), - [sym_yield_expression] = STATE(1664), - [sym_call_expression] = STATE(1664), - [sym_array_expression] = STATE(1664), - [sym_parenthesized_expression] = STATE(1664), - [sym_tuple_expression] = STATE(1664), - [sym_unit_expression] = STATE(1664), - [sym_struct_expression] = STATE(1664), - [sym_if_expression] = STATE(1664), - [sym_match_expression] = STATE(1664), - [sym_while_expression] = STATE(1664), - [sym_loop_expression] = STATE(1664), - [sym_for_expression] = STATE(1664), - [sym_const_block] = STATE(1664), - [sym_closure_expression] = STATE(1664), - [sym_closure_parameters] = STATE(232), - [sym_label] = STATE(3614), - [sym_break_expression] = STATE(1664), - [sym_continue_expression] = STATE(1664), - [sym_index_expression] = STATE(1664), - [sym_await_expression] = STATE(1664), - [sym_field_expression] = STATE(1597), - [sym_unsafe_block] = STATE(1664), - [sym_async_block] = STATE(1664), - [sym_gen_block] = STATE(1664), - [sym_try_block] = STATE(1664), - [sym_block] = STATE(1664), - [sym__literal] = STATE(1664), - [sym_string_literal] = STATE(1786), - [sym_raw_string_literal] = STATE(1786), - [sym_boolean_literal] = STATE(1786), - [sym_line_comment] = STATE(216), - [sym_block_comment] = STATE(216), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1015), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_BANG] = ACTIONS(1015), - [anon_sym_AMP] = ACTIONS(1017), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [sym_mutable_specifier] = ACTIONS(1061), - [anon_sym_raw] = ACTIONS(1063), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), + [213] = { + [sym_line_comment] = STATE(213), + [sym_block_comment] = STATE(213), + [sym_identifier] = ACTIONS(1049), + [anon_sym_SEMI] = ACTIONS(1051), + [anon_sym_LPAREN] = ACTIONS(1051), + [anon_sym_RPAREN] = ACTIONS(1051), + [anon_sym_LBRACK] = ACTIONS(1051), + [anon_sym_RBRACK] = ACTIONS(1051), + [anon_sym_LBRACE] = ACTIONS(1051), + [anon_sym_RBRACE] = ACTIONS(1051), + [anon_sym_EQ_GT] = ACTIONS(1051), + [anon_sym_COLON] = ACTIONS(1049), + [anon_sym_DOLLAR] = ACTIONS(1051), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_STAR] = ACTIONS(1049), + [anon_sym_QMARK] = ACTIONS(1051), + [anon_sym_u8] = ACTIONS(1049), + [anon_sym_i8] = ACTIONS(1049), + [anon_sym_u16] = ACTIONS(1049), + [anon_sym_i16] = ACTIONS(1049), + [anon_sym_u32] = ACTIONS(1049), + [anon_sym_i32] = ACTIONS(1049), + [anon_sym_u64] = ACTIONS(1049), + [anon_sym_i64] = ACTIONS(1049), + [anon_sym_u128] = ACTIONS(1049), + [anon_sym_i128] = ACTIONS(1049), + [anon_sym_isize] = ACTIONS(1049), + [anon_sym_usize] = ACTIONS(1049), + [anon_sym_f32] = ACTIONS(1049), + [anon_sym_f64] = ACTIONS(1049), + [anon_sym_bool] = ACTIONS(1049), + [anon_sym_str] = ACTIONS(1049), + [anon_sym_char] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_SLASH] = ACTIONS(1049), + [anon_sym_PERCENT] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_AMP] = ACTIONS(1049), + [anon_sym_PIPE] = ACTIONS(1049), + [anon_sym_AMP_AMP] = ACTIONS(1051), + [anon_sym_PIPE_PIPE] = ACTIONS(1051), + [anon_sym_LT_LT] = ACTIONS(1049), + [anon_sym_GT_GT] = ACTIONS(1049), + [anon_sym_PLUS_EQ] = ACTIONS(1051), + [anon_sym_DASH_EQ] = ACTIONS(1051), + [anon_sym_STAR_EQ] = ACTIONS(1051), + [anon_sym_SLASH_EQ] = ACTIONS(1051), + [anon_sym_PERCENT_EQ] = ACTIONS(1051), + [anon_sym_CARET_EQ] = ACTIONS(1051), + [anon_sym_AMP_EQ] = ACTIONS(1051), + [anon_sym_PIPE_EQ] = ACTIONS(1051), + [anon_sym_LT_LT_EQ] = ACTIONS(1051), + [anon_sym_GT_GT_EQ] = ACTIONS(1051), + [anon_sym_EQ] = ACTIONS(1049), + [anon_sym_EQ_EQ] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1051), + [anon_sym_GT] = ACTIONS(1049), + [anon_sym_LT] = ACTIONS(1049), + [anon_sym_GT_EQ] = ACTIONS(1051), + [anon_sym_LT_EQ] = ACTIONS(1051), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym__] = ACTIONS(1049), + [anon_sym_DOT] = ACTIONS(1049), + [anon_sym_DOT_DOT] = ACTIONS(1049), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1051), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1051), + [anon_sym_COMMA] = ACTIONS(1051), + [anon_sym_COLON_COLON] = ACTIONS(1051), + [anon_sym_DASH_GT] = ACTIONS(1051), + [anon_sym_POUND] = ACTIONS(1051), + [anon_sym_SQUOTE] = ACTIONS(1049), + [anon_sym_as] = ACTIONS(1049), + [anon_sym_async] = ACTIONS(1049), + [anon_sym_await] = ACTIONS(1049), + [anon_sym_break] = ACTIONS(1049), + [anon_sym_const] = ACTIONS(1049), + [anon_sym_continue] = ACTIONS(1049), + [anon_sym_default] = ACTIONS(1049), + [anon_sym_enum] = ACTIONS(1049), + [anon_sym_fn] = ACTIONS(1049), + [anon_sym_for] = ACTIONS(1049), + [anon_sym_gen] = ACTIONS(1049), + [anon_sym_if] = ACTIONS(1049), + [anon_sym_impl] = ACTIONS(1049), + [anon_sym_let] = ACTIONS(1049), + [anon_sym_loop] = ACTIONS(1049), + [anon_sym_match] = ACTIONS(1049), + [anon_sym_mod] = ACTIONS(1049), + [anon_sym_pub] = ACTIONS(1049), + [anon_sym_return] = ACTIONS(1049), + [anon_sym_static] = ACTIONS(1049), + [anon_sym_struct] = ACTIONS(1049), + [anon_sym_trait] = ACTIONS(1049), + [anon_sym_type] = ACTIONS(1049), + [anon_sym_union] = ACTIONS(1049), + [anon_sym_unsafe] = ACTIONS(1049), + [anon_sym_use] = ACTIONS(1049), + [anon_sym_where] = ACTIONS(1049), + [anon_sym_while] = ACTIONS(1049), + [sym_mutable_specifier] = ACTIONS(1049), + [sym_integer_literal] = ACTIONS(1051), + [aux_sym_string_literal_token1] = ACTIONS(1051), + [sym_char_literal] = ACTIONS(1051), + [anon_sym_true] = ACTIONS(1049), + [anon_sym_false] = ACTIONS(1049), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), + [sym_self] = ACTIONS(1049), + [sym_super] = ACTIONS(1049), + [sym_crate] = ACTIONS(1049), + [sym__raw_string_literal_start] = ACTIONS(1051), + [sym_float_literal] = ACTIONS(1051), }, - [217] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1819), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(217), - [sym_block_comment] = STATE(217), - [aux_sym_tuple_expression_repeat1] = STATE(229), + [214] = { + [sym_attribute_item] = STATE(1157), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1854), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(214), + [sym_block_comment] = STATE(214), + [aux_sym_mod_item_repeat1] = STATE(1156), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1065), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -41632,6 +42652,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(748), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -41665,219 +42686,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [218] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1596), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_let_condition] = STATE(2580), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(218), - [sym_block_comment] = STATE(218), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1053), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(965), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [219] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1704), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(246), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1441), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(219), - [sym_block_comment] = STATE(219), - [sym_identifier] = ACTIONS(467), + [215] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2008), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(215), + [sym_block_comment] = STATE(215), + [aux_sym_tuple_expression_repeat1] = STATE(218), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1053), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1067), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1071), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(1075), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -41886,63 +42793,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [220] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1751), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1490), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(220), - [sym_block_comment] = STATE(220), + [216] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1763), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1637), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(216), + [sym_block_comment] = STATE(216), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -41970,10 +42877,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1055), + [anon_sym_DOT_DOT] = ACTIONS(1057), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1079), + [anon_sym_DASH_GT] = ACTIONS(1059), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -42007,105 +42914,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [221] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1742), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_let_condition] = STATE(2580), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(221), - [sym_block_comment] = STATE(221), - [sym_identifier] = ACTIONS(467), + [217] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3303), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1890), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1794), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1631), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(217), + [sym_block_comment] = STATE(217), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(903), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_BANG] = ACTIONS(903), + [anon_sym_AMP] = ACTIONS(905), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(963), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym__] = ACTIONS(1061), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DASH_GT] = ACTIONS(1065), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(495), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(497), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(499), [anon_sym_if] = ACTIONS(361), - [anon_sym_let] = ACTIONS(965), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(501), + [anon_sym_static] = ACTIONS(503), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(505), + [anon_sym_move] = ACTIONS(507), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -42114,67 +43021,181 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [222] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1658), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(222), - [sym_block_comment] = STATE(222), - [aux_sym_tuple_expression_repeat1] = STATE(245), + [218] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2133), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(218), + [sym_block_comment] = STATE(218), + [aux_sym_tuple_expression_repeat1] = STATE(218), + [sym_identifier] = ACTIONS(1067), + [anon_sym_LPAREN] = ACTIONS(1070), + [anon_sym_RPAREN] = ACTIONS(1073), + [anon_sym_LBRACK] = ACTIONS(1075), + [anon_sym_LBRACE] = ACTIONS(1078), + [anon_sym_STAR] = ACTIONS(1081), + [anon_sym_u8] = ACTIONS(1084), + [anon_sym_i8] = ACTIONS(1084), + [anon_sym_u16] = ACTIONS(1084), + [anon_sym_i16] = ACTIONS(1084), + [anon_sym_u32] = ACTIONS(1084), + [anon_sym_i32] = ACTIONS(1084), + [anon_sym_u64] = ACTIONS(1084), + [anon_sym_i64] = ACTIONS(1084), + [anon_sym_u128] = ACTIONS(1084), + [anon_sym_i128] = ACTIONS(1084), + [anon_sym_isize] = ACTIONS(1084), + [anon_sym_usize] = ACTIONS(1084), + [anon_sym_f32] = ACTIONS(1084), + [anon_sym_f64] = ACTIONS(1084), + [anon_sym_bool] = ACTIONS(1084), + [anon_sym_str] = ACTIONS(1084), + [anon_sym_char] = ACTIONS(1084), + [anon_sym_DASH] = ACTIONS(1081), + [anon_sym_BANG] = ACTIONS(1081), + [anon_sym_AMP] = ACTIONS(1087), + [anon_sym_PIPE] = ACTIONS(1090), + [anon_sym_LT] = ACTIONS(1093), + [anon_sym_DOT_DOT] = ACTIONS(1096), + [anon_sym_COLON_COLON] = ACTIONS(1099), + [anon_sym_SQUOTE] = ACTIONS(1102), + [anon_sym_async] = ACTIONS(1105), + [anon_sym_break] = ACTIONS(1108), + [anon_sym_const] = ACTIONS(1111), + [anon_sym_continue] = ACTIONS(1114), + [anon_sym_default] = ACTIONS(1117), + [anon_sym_for] = ACTIONS(1120), + [anon_sym_gen] = ACTIONS(1123), + [anon_sym_if] = ACTIONS(1126), + [anon_sym_loop] = ACTIONS(1129), + [anon_sym_match] = ACTIONS(1132), + [anon_sym_return] = ACTIONS(1135), + [anon_sym_static] = ACTIONS(1138), + [anon_sym_union] = ACTIONS(1117), + [anon_sym_unsafe] = ACTIONS(1141), + [anon_sym_while] = ACTIONS(1144), + [anon_sym_yield] = ACTIONS(1147), + [anon_sym_move] = ACTIONS(1150), + [anon_sym_try] = ACTIONS(1153), + [sym_integer_literal] = ACTIONS(1156), + [aux_sym_string_literal_token1] = ACTIONS(1159), + [sym_char_literal] = ACTIONS(1156), + [anon_sym_true] = ACTIONS(1162), + [anon_sym_false] = ACTIONS(1162), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1165), + [sym_super] = ACTIONS(1168), + [sym_crate] = ACTIONS(1168), + [sym_metavariable] = ACTIONS(1171), + [sym__raw_string_literal_start] = ACTIONS(1174), + [sym_float_literal] = ACTIONS(1156), + }, + [219] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1993), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(219), + [sym_block_comment] = STATE(219), + [aux_sym_tuple_expression_repeat1] = STATE(218), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1081), + [anon_sym_RPAREN] = ACTIONS(1177), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -42235,58 +43256,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [223] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1758), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1441), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(223), - [sym_block_comment] = STATE(223), + [220] = { + [sym_bracketed_type] = STATE(4005), + [sym_generic_function] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3402), + [sym__expression_except_range] = STATE(1901), + [sym__expression] = STATE(1968), + [sym_macro_invocation] = STATE(1963), + [sym_scoped_identifier] = STATE(1832), + [sym_scoped_type_identifier_in_expression_position] = STATE(3592), + [sym_range_expression] = STATE(1960), + [sym_unary_expression] = STATE(1957), + [sym_try_expression] = STATE(1957), + [sym_reference_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_assignment_expression] = STATE(1957), + [sym_compound_assignment_expr] = STATE(1957), + [sym_type_cast_expression] = STATE(1957), + [sym_return_expression] = STATE(1957), + [sym_yield_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_array_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_tuple_expression] = STATE(1957), + [sym_unit_expression] = STATE(1957), + [sym_struct_expression] = STATE(1957), + [sym_if_expression] = STATE(1957), + [sym_match_expression] = STATE(1957), + [sym_while_expression] = STATE(1957), + [sym_loop_expression] = STATE(1957), + [sym_for_expression] = STATE(1957), + [sym_const_block] = STATE(1957), + [sym_closure_expression] = STATE(1957), + [sym_closure_parameters] = STATE(235), + [sym_label] = STATE(4110), + [sym_break_expression] = STATE(1957), + [sym_continue_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_await_expression] = STATE(1957), + [sym_field_expression] = STATE(1898), + [sym_unsafe_block] = STATE(1957), + [sym_async_block] = STATE(1957), + [sym_gen_block] = STATE(1957), + [sym_try_block] = STATE(1957), + [sym_block] = STATE(1957), + [sym__literal] = STATE(1957), + [sym_string_literal] = STATE(1932), + [sym_raw_string_literal] = STATE(1932), + [sym_boolean_literal] = STATE(1932), + [sym_line_comment] = STATE(220), + [sym_block_comment] = STATE(220), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_LBRACK] = ACTIONS(513), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(933), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(933), + [anon_sym_BANG] = ACTIONS(933), + [anon_sym_AMP] = ACTIONS(935), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [sym_mutable_specifier] = ACTIONS(1181), + [anon_sym_raw] = ACTIONS(1183), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [221] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2114), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(221), + [sym_block_comment] = STATE(221), + [aux_sym_tuple_expression_repeat1] = STATE(215), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1185), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -42307,15 +43444,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1071), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1075), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -42349,60 +43484,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [224] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1815), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(224), - [sym_block_comment] = STATE(224), - [aux_sym_tuple_expression_repeat1] = STATE(229), + [222] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1761), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1631), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(222), + [sym_block_comment] = STATE(222), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1083), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -42423,13 +43556,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(349), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1061), + [anon_sym_DOT_DOT] = ACTIONS(1057), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DASH_GT] = ACTIONS(1065), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -42463,105 +43598,333 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, + [223] = { + [sym_bracketed_type] = STATE(4005), + [sym_generic_function] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3402), + [sym__expression_except_range] = STATE(1901), + [sym__expression] = STATE(2074), + [sym_macro_invocation] = STATE(1963), + [sym_scoped_identifier] = STATE(1832), + [sym_scoped_type_identifier_in_expression_position] = STATE(3592), + [sym_range_expression] = STATE(1960), + [sym_unary_expression] = STATE(1957), + [sym_try_expression] = STATE(1957), + [sym_reference_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_assignment_expression] = STATE(1957), + [sym_compound_assignment_expr] = STATE(1957), + [sym_type_cast_expression] = STATE(1957), + [sym_return_expression] = STATE(1957), + [sym_yield_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_array_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_tuple_expression] = STATE(1957), + [sym_unit_expression] = STATE(1957), + [sym_struct_expression] = STATE(1957), + [sym_if_expression] = STATE(1957), + [sym_let_condition] = STATE(3049), + [sym_match_expression] = STATE(1957), + [sym_while_expression] = STATE(1957), + [sym_loop_expression] = STATE(1957), + [sym_for_expression] = STATE(1957), + [sym_const_block] = STATE(1957), + [sym_closure_expression] = STATE(1957), + [sym_closure_parameters] = STATE(235), + [sym_label] = STATE(4110), + [sym_break_expression] = STATE(1957), + [sym_continue_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_await_expression] = STATE(1957), + [sym_field_expression] = STATE(1898), + [sym_unsafe_block] = STATE(1957), + [sym_async_block] = STATE(1957), + [sym_gen_block] = STATE(1957), + [sym_try_block] = STATE(1957), + [sym_block] = STATE(1957), + [sym__literal] = STATE(1957), + [sym_string_literal] = STATE(1932), + [sym_raw_string_literal] = STATE(1932), + [sym_boolean_literal] = STATE(1932), + [sym_line_comment] = STATE(223), + [sym_block_comment] = STATE(223), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_LBRACK] = ACTIONS(513), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(933), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(933), + [anon_sym_BANG] = ACTIONS(933), + [anon_sym_AMP] = ACTIONS(935), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_let] = ACTIONS(939), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [224] = { + [sym_bracketed_type] = STATE(4005), + [sym_generic_function] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3402), + [sym__expression_except_range] = STATE(1901), + [sym__expression] = STATE(2130), + [sym_macro_invocation] = STATE(1963), + [sym_scoped_identifier] = STATE(1832), + [sym_scoped_type_identifier_in_expression_position] = STATE(3592), + [sym_range_expression] = STATE(1960), + [sym_unary_expression] = STATE(1957), + [sym_try_expression] = STATE(1957), + [sym_reference_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_assignment_expression] = STATE(1957), + [sym_compound_assignment_expr] = STATE(1957), + [sym_type_cast_expression] = STATE(1957), + [sym_return_expression] = STATE(1957), + [sym_yield_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_array_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_tuple_expression] = STATE(1957), + [sym_unit_expression] = STATE(1957), + [sym_struct_expression] = STATE(1957), + [sym_if_expression] = STATE(1957), + [sym_let_condition] = STATE(3049), + [sym_match_expression] = STATE(1957), + [sym_while_expression] = STATE(1957), + [sym_loop_expression] = STATE(1957), + [sym_for_expression] = STATE(1957), + [sym_const_block] = STATE(1957), + [sym_closure_expression] = STATE(1957), + [sym_closure_parameters] = STATE(235), + [sym_label] = STATE(4110), + [sym_break_expression] = STATE(1957), + [sym_continue_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_await_expression] = STATE(1957), + [sym_field_expression] = STATE(1898), + [sym_unsafe_block] = STATE(1957), + [sym_async_block] = STATE(1957), + [sym_gen_block] = STATE(1957), + [sym_try_block] = STATE(1957), + [sym_block] = STATE(1957), + [sym__literal] = STATE(1957), + [sym_string_literal] = STATE(1932), + [sym_raw_string_literal] = STATE(1932), + [sym_boolean_literal] = STATE(1932), + [sym_line_comment] = STATE(224), + [sym_block_comment] = STATE(224), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_LBRACK] = ACTIONS(513), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(933), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(933), + [anon_sym_BANG] = ACTIONS(933), + [anon_sym_AMP] = ACTIONS(935), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(937), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_let] = ACTIONS(939), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, [225] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1604), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1490), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3303), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1858), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1794), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1637), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), [sym_line_comment] = STATE(225), [sym_block_comment] = STATE(225), - [sym_identifier] = ACTIONS(467), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(503), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(903), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_BANG] = ACTIONS(903), + [anon_sym_AMP] = ACTIONS(905), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(1053), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(1079), + [anon_sym__] = ACTIONS(1055), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DASH_GT] = ACTIONS(1059), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(495), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(497), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(499), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(501), + [anon_sym_static] = ACTIONS(503), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(505), + [anon_sym_move] = ACTIONS(507), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -42570,67 +43933,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [226] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1815), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2088), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1631), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), [sym_line_comment] = STATE(226), [sym_block_comment] = STATE(226), - [aux_sym_tuple_expression_repeat1] = STATE(217), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1083), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -42651,13 +44012,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(349), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1061), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DASH_GT] = ACTIONS(1065), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -42692,104 +44055,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [227] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1775), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1471), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3303), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1895), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1794), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1720), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), [sym_line_comment] = STATE(227), [sym_block_comment] = STATE(227), - [sym_identifier] = ACTIONS(339), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(349), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(903), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(493), + [anon_sym_BANG] = ACTIONS(903), + [anon_sym_AMP] = ACTIONS(905), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1085), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1087), + [anon_sym__] = ACTIONS(1187), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DASH_GT] = ACTIONS(1189), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(495), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_continue] = ACTIONS(497), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(499), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), + [anon_sym_return] = ACTIONS(501), + [anon_sym_static] = ACTIONS(503), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(505), + [anon_sym_move] = ACTIONS(507), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -42798,67 +44161,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [228] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1810), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3303), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2020), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1794), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1637), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), [sym_line_comment] = STATE(228), [sym_block_comment] = STATE(228), - [aux_sym_tuple_expression_repeat1] = STATE(224), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1191), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_BANG] = ACTIONS(1191), + [anon_sym_AMP] = ACTIONS(1193), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1055), + [anon_sym_DOT_DOT] = ACTIONS(1195), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DASH_GT] = ACTIONS(1059), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(473), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(475), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(477), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(475), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [229] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1930), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1720), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(229), + [sym_block_comment] = STATE(229), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1089), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -42879,13 +44354,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(349), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1187), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DASH_GT] = ACTIONS(1189), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -42919,168 +44396,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [229] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1864), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(229), - [sym_block_comment] = STATE(229), - [aux_sym_tuple_expression_repeat1] = STATE(229), - [sym_identifier] = ACTIONS(1091), - [anon_sym_LPAREN] = ACTIONS(1094), - [anon_sym_RPAREN] = ACTIONS(1097), - [anon_sym_LBRACK] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1102), - [anon_sym_STAR] = ACTIONS(1105), - [anon_sym_u8] = ACTIONS(1108), - [anon_sym_i8] = ACTIONS(1108), - [anon_sym_u16] = ACTIONS(1108), - [anon_sym_i16] = ACTIONS(1108), - [anon_sym_u32] = ACTIONS(1108), - [anon_sym_i32] = ACTIONS(1108), - [anon_sym_u64] = ACTIONS(1108), - [anon_sym_i64] = ACTIONS(1108), - [anon_sym_u128] = ACTIONS(1108), - [anon_sym_i128] = ACTIONS(1108), - [anon_sym_isize] = ACTIONS(1108), - [anon_sym_usize] = ACTIONS(1108), - [anon_sym_f32] = ACTIONS(1108), - [anon_sym_f64] = ACTIONS(1108), - [anon_sym_bool] = ACTIONS(1108), - [anon_sym_str] = ACTIONS(1108), - [anon_sym_char] = ACTIONS(1108), - [anon_sym_DASH] = ACTIONS(1105), - [anon_sym_BANG] = ACTIONS(1105), - [anon_sym_AMP] = ACTIONS(1111), - [anon_sym_PIPE] = ACTIONS(1114), - [anon_sym_LT] = ACTIONS(1117), - [anon_sym_DOT_DOT] = ACTIONS(1120), - [anon_sym_COLON_COLON] = ACTIONS(1123), - [anon_sym_SQUOTE] = ACTIONS(1126), - [anon_sym_async] = ACTIONS(1129), - [anon_sym_break] = ACTIONS(1132), - [anon_sym_const] = ACTIONS(1135), - [anon_sym_continue] = ACTIONS(1138), - [anon_sym_default] = ACTIONS(1141), - [anon_sym_for] = ACTIONS(1144), - [anon_sym_gen] = ACTIONS(1147), - [anon_sym_if] = ACTIONS(1150), - [anon_sym_loop] = ACTIONS(1153), - [anon_sym_match] = ACTIONS(1156), - [anon_sym_return] = ACTIONS(1159), - [anon_sym_static] = ACTIONS(1162), - [anon_sym_union] = ACTIONS(1141), - [anon_sym_unsafe] = ACTIONS(1165), - [anon_sym_while] = ACTIONS(1168), - [anon_sym_yield] = ACTIONS(1171), - [anon_sym_move] = ACTIONS(1174), - [anon_sym_try] = ACTIONS(1177), - [sym_integer_literal] = ACTIONS(1180), - [aux_sym_string_literal_token1] = ACTIONS(1183), - [sym_char_literal] = ACTIONS(1180), - [anon_sym_true] = ACTIONS(1186), - [anon_sym_false] = ACTIONS(1186), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1189), - [sym_super] = ACTIONS(1192), - [sym_crate] = ACTIONS(1192), - [sym_metavariable] = ACTIONS(1195), - [sym__raw_string_literal_start] = ACTIONS(1198), - [sym_float_literal] = ACTIONS(1180), - }, [230] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1518), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1471), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1722), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), [sym_line_comment] = STATE(230), [sym_block_comment] = STATE(230), [sym_identifier] = ACTIONS(339), @@ -43105,15 +44468,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1085), - [anon_sym_DOT_DOT] = ACTIONS(1201), + [anon_sym_DOT_DOT] = ACTIONS(1057), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1087), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -43130,6 +44491,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), + [sym_mutable_specifier] = ACTIONS(1197), + [anon_sym_raw] = ACTIONS(1199), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), @@ -43148,104 +44511,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [231] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1726), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(246), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1471), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3303), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1722), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1794), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), [sym_line_comment] = STATE(231), [sym_block_comment] = STATE(231), - [sym_identifier] = ACTIONS(467), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1067), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_STAR] = ACTIONS(903), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_BANG] = ACTIONS(903), + [anon_sym_AMP] = ACTIONS(905), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1085), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(1087), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), + [anon_sym_break] = ACTIONS(495), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(497), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(499), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(501), + [anon_sym_static] = ACTIONS(503), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [sym_mutable_specifier] = ACTIONS(1201), + [anon_sym_raw] = ACTIONS(1203), + [anon_sym_yield] = ACTIONS(505), + [anon_sym_move] = ACTIONS(507), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -43254,340 +44617,226 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [232] = { - [sym_bracketed_type] = STATE(3529), - [sym_generic_function] = STATE(1664), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1626), - [sym__expression] = STATE(1790), - [sym_macro_invocation] = STATE(1671), - [sym_scoped_identifier] = STATE(1575), - [sym_scoped_type_identifier_in_expression_position] = STATE(3163), - [sym_range_expression] = STATE(1666), - [sym_unary_expression] = STATE(1664), - [sym_try_expression] = STATE(1664), - [sym_reference_expression] = STATE(1664), - [sym_binary_expression] = STATE(1664), - [sym_assignment_expression] = STATE(1664), - [sym_compound_assignment_expr] = STATE(1664), - [sym_type_cast_expression] = STATE(1664), - [sym_return_expression] = STATE(1664), - [sym_yield_expression] = STATE(1664), - [sym_call_expression] = STATE(1664), - [sym_array_expression] = STATE(1664), - [sym_parenthesized_expression] = STATE(1664), - [sym_tuple_expression] = STATE(1664), - [sym_unit_expression] = STATE(1664), - [sym_struct_expression] = STATE(1664), - [sym_if_expression] = STATE(1664), - [sym_match_expression] = STATE(1664), - [sym_while_expression] = STATE(1664), - [sym_loop_expression] = STATE(1664), - [sym_for_expression] = STATE(1664), - [sym_const_block] = STATE(1664), - [sym_closure_expression] = STATE(1664), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3303), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2098), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1794), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), [sym_closure_parameters] = STATE(232), - [sym_label] = STATE(3614), - [sym_break_expression] = STATE(1664), - [sym_continue_expression] = STATE(1664), - [sym_index_expression] = STATE(1664), - [sym_await_expression] = STATE(1664), - [sym_field_expression] = STATE(1597), - [sym_unsafe_block] = STATE(1664), - [sym_async_block] = STATE(1664), - [sym_gen_block] = STATE(1664), - [sym_try_block] = STATE(1664), - [sym_block] = STATE(1706), - [sym__literal] = STATE(1664), - [sym_string_literal] = STATE(1786), - [sym_raw_string_literal] = STATE(1786), - [sym_boolean_literal] = STATE(1786), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1720), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), [sym_line_comment] = STATE(232), [sym_block_comment] = STATE(232), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1015), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(413), - [anon_sym_BANG] = ACTIONS(1015), - [anon_sym_AMP] = ACTIONS(1017), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1191), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_BANG] = ACTIONS(1191), + [anon_sym_AMP] = ACTIONS(1193), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1203), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_DASH_GT] = ACTIONS(1205), + [anon_sym__] = ACTIONS(1187), + [anon_sym_DOT_DOT] = ACTIONS(1195), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DASH_GT] = ACTIONS(1189), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(473), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(475), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(477), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(475), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [233] = { - [sym_bracketed_type] = STATE(3529), - [sym_generic_function] = STATE(1664), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1626), - [sym__expression] = STATE(1793), - [sym_macro_invocation] = STATE(1671), - [sym_scoped_identifier] = STATE(1575), - [sym_scoped_type_identifier_in_expression_position] = STATE(3163), - [sym_range_expression] = STATE(1666), - [sym_unary_expression] = STATE(1664), - [sym_try_expression] = STATE(1664), - [sym_reference_expression] = STATE(1664), - [sym_binary_expression] = STATE(1664), - [sym_assignment_expression] = STATE(1664), - [sym_compound_assignment_expr] = STATE(1664), - [sym_type_cast_expression] = STATE(1664), - [sym_return_expression] = STATE(1664), - [sym_yield_expression] = STATE(1664), - [sym_call_expression] = STATE(1664), - [sym_array_expression] = STATE(1664), - [sym_parenthesized_expression] = STATE(1664), - [sym_tuple_expression] = STATE(1664), - [sym_unit_expression] = STATE(1664), - [sym_struct_expression] = STATE(1664), - [sym_if_expression] = STATE(1664), - [sym_match_expression] = STATE(1664), - [sym_while_expression] = STATE(1664), - [sym_loop_expression] = STATE(1664), - [sym_for_expression] = STATE(1664), - [sym_const_block] = STATE(1664), - [sym_closure_expression] = STATE(1664), - [sym_closure_parameters] = STATE(232), - [sym_label] = STATE(3614), - [sym_break_expression] = STATE(1664), - [sym_continue_expression] = STATE(1664), - [sym_index_expression] = STATE(1664), - [sym_await_expression] = STATE(1664), - [sym_field_expression] = STATE(1597), - [sym_unsafe_block] = STATE(1664), - [sym_async_block] = STATE(1664), - [sym_gen_block] = STATE(1664), - [sym_try_block] = STATE(1664), - [sym_block] = STATE(1805), - [sym__literal] = STATE(1664), - [sym_string_literal] = STATE(1786), - [sym_raw_string_literal] = STATE(1786), - [sym_boolean_literal] = STATE(1786), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1759), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1720), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), [sym_line_comment] = STATE(233), [sym_block_comment] = STATE(233), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1015), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(413), - [anon_sym_BANG] = ACTIONS(1015), - [anon_sym_AMP] = ACTIONS(1017), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1207), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_DASH_GT] = ACTIONS(1209), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [234] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1641), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1441), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(234), - [sym_block_comment] = STATE(234), - [sym_identifier] = ACTIONS(467), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(503), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(349), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1071), - [anon_sym_DOT_DOT] = ACTIONS(1053), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(1075), + [anon_sym__] = ACTIONS(1187), + [anon_sym_DOT_DOT] = ACTIONS(1057), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DASH_GT] = ACTIONS(1189), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -43596,181 +44845,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [235] = { - [sym_bracketed_type] = STATE(3529), - [sym_generic_function] = STATE(1664), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1626), - [sym__expression] = STATE(1796), - [sym_macro_invocation] = STATE(1671), - [sym_scoped_identifier] = STATE(1575), - [sym_scoped_type_identifier_in_expression_position] = STATE(3163), - [sym_range_expression] = STATE(1666), - [sym_unary_expression] = STATE(1664), - [sym_try_expression] = STATE(1664), - [sym_reference_expression] = STATE(1664), - [sym_binary_expression] = STATE(1664), - [sym_assignment_expression] = STATE(1664), - [sym_compound_assignment_expr] = STATE(1664), - [sym_type_cast_expression] = STATE(1664), - [sym_return_expression] = STATE(1664), - [sym_yield_expression] = STATE(1664), - [sym_call_expression] = STATE(1664), - [sym_array_expression] = STATE(1664), - [sym_parenthesized_expression] = STATE(1664), - [sym_tuple_expression] = STATE(1664), - [sym_unit_expression] = STATE(1664), - [sym_struct_expression] = STATE(1664), - [sym_if_expression] = STATE(1664), - [sym_match_expression] = STATE(1664), - [sym_while_expression] = STATE(1664), - [sym_loop_expression] = STATE(1664), - [sym_for_expression] = STATE(1664), - [sym_const_block] = STATE(1664), - [sym_closure_expression] = STATE(1664), - [sym_closure_parameters] = STATE(232), - [sym_label] = STATE(3614), - [sym_break_expression] = STATE(1664), - [sym_continue_expression] = STATE(1664), - [sym_index_expression] = STATE(1664), - [sym_await_expression] = STATE(1664), - [sym_field_expression] = STATE(1597), - [sym_unsafe_block] = STATE(1664), - [sym_async_block] = STATE(1664), - [sym_gen_block] = STATE(1664), - [sym_try_block] = STATE(1664), - [sym_block] = STATE(1660), - [sym__literal] = STATE(1664), - [sym_string_literal] = STATE(1786), - [sym_raw_string_literal] = STATE(1786), - [sym_boolean_literal] = STATE(1786), - [sym_line_comment] = STATE(235), - [sym_block_comment] = STATE(235), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1015), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(413), - [anon_sym_BANG] = ACTIONS(1015), - [anon_sym_AMP] = ACTIONS(1017), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1211), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_DASH_GT] = ACTIONS(1213), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [236] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1844), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(236), - [sym_block_comment] = STATE(236), - [aux_sym_tuple_expression_repeat1] = STATE(244), + [234] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1971), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1637), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(234), + [sym_block_comment] = STATE(234), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1215), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -43791,13 +44924,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(349), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1055), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DASH_GT] = ACTIONS(1059), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -43831,62 +44966,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [237] = { - [sym_bracketed_type] = STATE(3529), - [sym_generic_function] = STATE(1664), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1626), - [sym__expression] = STATE(1764), - [sym_macro_invocation] = STATE(1671), - [sym_scoped_identifier] = STATE(1575), - [sym_scoped_type_identifier_in_expression_position] = STATE(3163), - [sym_range_expression] = STATE(1666), - [sym_unary_expression] = STATE(1664), - [sym_try_expression] = STATE(1664), - [sym_reference_expression] = STATE(1664), - [sym_binary_expression] = STATE(1664), - [sym_assignment_expression] = STATE(1664), - [sym_compound_assignment_expr] = STATE(1664), - [sym_type_cast_expression] = STATE(1664), - [sym_return_expression] = STATE(1664), - [sym_yield_expression] = STATE(1664), - [sym_call_expression] = STATE(1664), - [sym_array_expression] = STATE(1664), - [sym_parenthesized_expression] = STATE(1664), - [sym_tuple_expression] = STATE(1664), - [sym_unit_expression] = STATE(1664), - [sym_struct_expression] = STATE(1664), - [sym_if_expression] = STATE(1664), - [sym_let_condition] = STATE(2580), - [sym_match_expression] = STATE(1664), - [sym_while_expression] = STATE(1664), - [sym_loop_expression] = STATE(1664), - [sym_for_expression] = STATE(1664), - [sym_const_block] = STATE(1664), - [sym_closure_expression] = STATE(1664), - [sym_closure_parameters] = STATE(232), - [sym_label] = STATE(3614), - [sym_break_expression] = STATE(1664), - [sym_continue_expression] = STATE(1664), - [sym_index_expression] = STATE(1664), - [sym_await_expression] = STATE(1664), - [sym_field_expression] = STATE(1597), - [sym_unsafe_block] = STATE(1664), - [sym_async_block] = STATE(1664), - [sym_gen_block] = STATE(1664), - [sym_try_block] = STATE(1664), - [sym_block] = STATE(1664), - [sym__literal] = STATE(1664), - [sym_string_literal] = STATE(1786), - [sym_raw_string_literal] = STATE(1786), - [sym_boolean_literal] = STATE(1786), - [sym_line_comment] = STATE(237), - [sym_block_comment] = STATE(237), + [235] = { + [sym_bracketed_type] = STATE(4005), + [sym_generic_function] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3402), + [sym__expression_except_range] = STATE(1901), + [sym__expression] = STATE(1944), + [sym_macro_invocation] = STATE(1963), + [sym_scoped_identifier] = STATE(1832), + [sym_scoped_type_identifier_in_expression_position] = STATE(3592), + [sym_range_expression] = STATE(1960), + [sym_unary_expression] = STATE(1957), + [sym_try_expression] = STATE(1957), + [sym_reference_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_assignment_expression] = STATE(1957), + [sym_compound_assignment_expr] = STATE(1957), + [sym_type_cast_expression] = STATE(1957), + [sym_return_expression] = STATE(1957), + [sym_yield_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_array_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_tuple_expression] = STATE(1957), + [sym_unit_expression] = STATE(1957), + [sym_struct_expression] = STATE(1957), + [sym_if_expression] = STATE(1957), + [sym_match_expression] = STATE(1957), + [sym_while_expression] = STATE(1957), + [sym_loop_expression] = STATE(1957), + [sym_for_expression] = STATE(1957), + [sym_const_block] = STATE(1957), + [sym_closure_expression] = STATE(1957), + [sym_closure_parameters] = STATE(235), + [sym_label] = STATE(4110), + [sym_break_expression] = STATE(1957), + [sym_continue_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_await_expression] = STATE(1957), + [sym_field_expression] = STATE(1898), + [sym_unsafe_block] = STATE(1957), + [sym_async_block] = STATE(1957), + [sym_gen_block] = STATE(1957), + [sym_try_block] = STATE(1957), + [sym_block] = STATE(2028), + [sym__literal] = STATE(1957), + [sym_string_literal] = STATE(1932), + [sym_raw_string_literal] = STATE(1932), + [sym_boolean_literal] = STATE(1932), + [sym_line_comment] = STATE(235), + [sym_block_comment] = STATE(235), [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_LBRACK] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1015), + [anon_sym_STAR] = ACTIONS(933), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -43904,13 +45038,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(411), [anon_sym_str] = ACTIONS(411), [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_BANG] = ACTIONS(1015), - [anon_sym_AMP] = ACTIONS(1017), + [anon_sym_DASH] = ACTIONS(413), + [anon_sym_BANG] = ACTIONS(933), + [anon_sym_AMP] = ACTIONS(935), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym__] = ACTIONS(1205), + [anon_sym_DOT_DOT] = ACTIONS(1179), [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_DASH_GT] = ACTIONS(1207), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(417), [anon_sym_break] = ACTIONS(419), @@ -43920,7 +45056,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(427), [anon_sym_gen] = ACTIONS(429), [anon_sym_if] = ACTIONS(431), - [anon_sym_let] = ACTIONS(1021), [anon_sym_loop] = ACTIONS(433), [anon_sym_match] = ACTIONS(435), [anon_sym_return] = ACTIONS(437), @@ -43945,105 +45080,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(463), [sym_float_literal] = ACTIONS(451), }, - [238] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1418), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(238), - [sym_block_comment] = STATE(238), - [sym_identifier] = ACTIONS(339), + [236] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3303), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2018), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1794), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1631), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(236), + [sym_block_comment] = STATE(236), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1191), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(469), + [anon_sym_BANG] = ACTIONS(1191), + [anon_sym_AMP] = ACTIONS(1193), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1201), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym__] = ACTIONS(1061), + [anon_sym_DOT_DOT] = ACTIONS(1195), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_DASH_GT] = ACTIONS(1065), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(477), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [sym_mutable_specifier] = ACTIONS(1217), - [anon_sym_raw] = ACTIONS(1219), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -44052,65 +45187,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [239] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1502), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1490), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(239), - [sym_block_comment] = STATE(239), + [237] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2060), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(237), + [sym_block_comment] = STATE(237), + [aux_sym_tuple_expression_repeat1] = STATE(241), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1209), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -44131,15 +45268,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(1201), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1079), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -44173,105 +45308,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [240] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1418), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(246), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(240), - [sym_block_comment] = STATE(240), - [sym_identifier] = ACTIONS(467), + [238] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3303), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1722), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1794), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(238), + [sym_block_comment] = STATE(238), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1067), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_STAR] = ACTIONS(1191), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(1191), + [anon_sym_BANG] = ACTIONS(1191), + [anon_sym_AMP] = ACTIONS(1193), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(1195), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), + [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(477), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [sym_mutable_specifier] = ACTIONS(1221), - [anon_sym_raw] = ACTIONS(1223), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [sym_mutable_specifier] = ACTIONS(1211), + [anon_sym_raw] = ACTIONS(1213), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -44280,69 +45415,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [241] = { - [sym_bracketed_type] = STATE(3529), - [sym_generic_function] = STATE(1664), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1626), - [sym__expression] = STATE(1867), - [sym_macro_invocation] = STATE(1671), - [sym_scoped_identifier] = STATE(1575), - [sym_scoped_type_identifier_in_expression_position] = STATE(3163), - [sym_range_expression] = STATE(1666), - [sym_unary_expression] = STATE(1664), - [sym_try_expression] = STATE(1664), - [sym_reference_expression] = STATE(1664), - [sym_binary_expression] = STATE(1664), - [sym_assignment_expression] = STATE(1664), - [sym_compound_assignment_expr] = STATE(1664), - [sym_type_cast_expression] = STATE(1664), - [sym_return_expression] = STATE(1664), - [sym_yield_expression] = STATE(1664), - [sym_call_expression] = STATE(1664), - [sym_array_expression] = STATE(1664), - [sym_parenthesized_expression] = STATE(1664), - [sym_tuple_expression] = STATE(1664), - [sym_unit_expression] = STATE(1664), - [sym_struct_expression] = STATE(1664), - [sym_if_expression] = STATE(1664), - [sym_let_condition] = STATE(2580), - [sym_match_expression] = STATE(1664), - [sym_while_expression] = STATE(1664), - [sym_loop_expression] = STATE(1664), - [sym_for_expression] = STATE(1664), - [sym_const_block] = STATE(1664), - [sym_closure_expression] = STATE(1664), - [sym_closure_parameters] = STATE(232), - [sym_label] = STATE(3614), - [sym_break_expression] = STATE(1664), - [sym_continue_expression] = STATE(1664), - [sym_index_expression] = STATE(1664), - [sym_await_expression] = STATE(1664), - [sym_field_expression] = STATE(1597), - [sym_unsafe_block] = STATE(1664), - [sym_async_block] = STATE(1664), - [sym_gen_block] = STATE(1664), - [sym_try_block] = STATE(1664), - [sym_block] = STATE(1664), - [sym__literal] = STATE(1664), - [sym_string_literal] = STATE(1786), - [sym_raw_string_literal] = STATE(1786), - [sym_boolean_literal] = STATE(1786), - [sym_line_comment] = STATE(241), - [sym_block_comment] = STATE(241), + [239] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3303), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2090), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1794), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_let_condition] = STATE(3049), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(239), + [sym_block_comment] = STATE(239), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(903), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_BANG] = ACTIONS(903), + [anon_sym_AMP] = ACTIONS(905), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(907), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(495), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(497), + [anon_sym_default] = ACTIONS(475), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(499), + [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(909), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(501), + [anon_sym_static] = ACTIONS(503), + [anon_sym_union] = ACTIONS(475), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(505), + [anon_sym_move] = ACTIONS(507), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [240] = { + [sym_bracketed_type] = STATE(4005), + [sym_generic_function] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3402), + [sym__expression_except_range] = STATE(1901), + [sym__expression] = STATE(2082), + [sym_macro_invocation] = STATE(1963), + [sym_scoped_identifier] = STATE(1832), + [sym_scoped_type_identifier_in_expression_position] = STATE(3592), + [sym_range_expression] = STATE(1960), + [sym_unary_expression] = STATE(1957), + [sym_try_expression] = STATE(1957), + [sym_reference_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_assignment_expression] = STATE(1957), + [sym_compound_assignment_expr] = STATE(1957), + [sym_type_cast_expression] = STATE(1957), + [sym_return_expression] = STATE(1957), + [sym_yield_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_array_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_tuple_expression] = STATE(1957), + [sym_unit_expression] = STATE(1957), + [sym_struct_expression] = STATE(1957), + [sym_if_expression] = STATE(1957), + [sym_match_expression] = STATE(1957), + [sym_while_expression] = STATE(1957), + [sym_loop_expression] = STATE(1957), + [sym_for_expression] = STATE(1957), + [sym_const_block] = STATE(1957), + [sym_closure_expression] = STATE(1957), + [sym_closure_parameters] = STATE(235), + [sym_label] = STATE(4110), + [sym_break_expression] = STATE(1957), + [sym_continue_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_await_expression] = STATE(1957), + [sym_field_expression] = STATE(1898), + [sym_unsafe_block] = STATE(1957), + [sym_async_block] = STATE(1957), + [sym_gen_block] = STATE(1957), + [sym_try_block] = STATE(1957), + [sym_block] = STATE(2037), + [sym__literal] = STATE(1957), + [sym_string_literal] = STATE(1932), + [sym_raw_string_literal] = STATE(1932), + [sym_boolean_literal] = STATE(1932), + [sym_line_comment] = STATE(240), + [sym_block_comment] = STATE(240), [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_LBRACK] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1015), + [anon_sym_STAR] = ACTIONS(933), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -44360,13 +45608,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(411), [anon_sym_str] = ACTIONS(411), [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_BANG] = ACTIONS(1015), - [anon_sym_AMP] = ACTIONS(1017), + [anon_sym_DASH] = ACTIONS(413), + [anon_sym_BANG] = ACTIONS(933), + [anon_sym_AMP] = ACTIONS(935), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1019), + [anon_sym__] = ACTIONS(1215), + [anon_sym_DOT_DOT] = ACTIONS(1179), [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_DASH_GT] = ACTIONS(1217), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(417), [anon_sym_break] = ACTIONS(419), @@ -44376,7 +45626,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(427), [anon_sym_gen] = ACTIONS(429), [anon_sym_if] = ACTIONS(431), - [anon_sym_let] = ACTIONS(1021), [anon_sym_loop] = ACTIONS(433), [anon_sym_match] = ACTIONS(435), [anon_sym_return] = ACTIONS(437), @@ -44401,172 +45650,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(463), [sym_float_literal] = ACTIONS(451), }, - [242] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1653), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1471), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(242), - [sym_block_comment] = STATE(242), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(503), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1085), - [anon_sym_DOT_DOT] = ACTIONS(1053), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(1087), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [243] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1526), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1441), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(243), - [sym_block_comment] = STATE(243), + [241] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2104), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(241), + [sym_block_comment] = STATE(241), + [aux_sym_tuple_expression_repeat1] = STATE(218), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1219), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -44587,15 +45724,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(23), [anon_sym_str] = ACTIONS(23), [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(349), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1071), - [anon_sym_DOT_DOT] = ACTIONS(1201), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1075), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), @@ -44629,60 +45764,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [244] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1656), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(244), - [sym_block_comment] = STATE(244), - [aux_sym_tuple_expression_repeat1] = STATE(229), + [242] = { + [sym_bracketed_type] = STATE(4005), + [sym_generic_function] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3402), + [sym__expression_except_range] = STATE(1901), + [sym__expression] = STATE(1977), + [sym_macro_invocation] = STATE(1963), + [sym_scoped_identifier] = STATE(1832), + [sym_scoped_type_identifier_in_expression_position] = STATE(3592), + [sym_range_expression] = STATE(1960), + [sym_unary_expression] = STATE(1957), + [sym_try_expression] = STATE(1957), + [sym_reference_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_assignment_expression] = STATE(1957), + [sym_compound_assignment_expr] = STATE(1957), + [sym_type_cast_expression] = STATE(1957), + [sym_return_expression] = STATE(1957), + [sym_yield_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_array_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_tuple_expression] = STATE(1957), + [sym_unit_expression] = STATE(1957), + [sym_struct_expression] = STATE(1957), + [sym_if_expression] = STATE(1957), + [sym_match_expression] = STATE(1957), + [sym_while_expression] = STATE(1957), + [sym_loop_expression] = STATE(1957), + [sym_for_expression] = STATE(1957), + [sym_const_block] = STATE(1957), + [sym_closure_expression] = STATE(1957), + [sym_closure_parameters] = STATE(235), + [sym_label] = STATE(4110), + [sym_break_expression] = STATE(1957), + [sym_continue_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_await_expression] = STATE(1957), + [sym_field_expression] = STATE(1898), + [sym_unsafe_block] = STATE(1957), + [sym_async_block] = STATE(1957), + [sym_gen_block] = STATE(1957), + [sym_try_block] = STATE(1957), + [sym_block] = STATE(2094), + [sym__literal] = STATE(1957), + [sym_string_literal] = STATE(1932), + [sym_raw_string_literal] = STATE(1932), + [sym_boolean_literal] = STATE(1932), + [sym_line_comment] = STATE(242), + [sym_block_comment] = STATE(242), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_LBRACK] = ACTIONS(513), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(933), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(413), + [anon_sym_BANG] = ACTIONS(933), + [anon_sym_AMP] = ACTIONS(935), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1221), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_DASH_GT] = ACTIONS(1223), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [243] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2104), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(243), + [sym_block_comment] = STATE(243), + [aux_sym_tuple_expression_repeat1] = STATE(246), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1225), + [anon_sym_RPAREN] = ACTIONS(1219), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), @@ -44743,65 +45992,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [245] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1844), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(245), - [sym_block_comment] = STATE(245), - [aux_sym_tuple_expression_repeat1] = STATE(229), - [sym_identifier] = ACTIONS(339), + [244] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3303), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1883), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1794), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_let_condition] = STATE(3049), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(244), + [sym_block_comment] = STATE(244), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1215), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), + [anon_sym_STAR] = ACTIONS(903), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_BANG] = ACTIONS(903), + [anon_sym_AMP] = ACTIONS(905), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(495), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(497), + [anon_sym_default] = ACTIONS(475), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(499), + [anon_sym_if] = ACTIONS(361), + [anon_sym_let] = ACTIONS(909), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(501), + [anon_sym_static] = ACTIONS(503), + [anon_sym_union] = ACTIONS(475), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(505), + [anon_sym_move] = ACTIONS(507), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [245] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2008), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(245), + [sym_block_comment] = STATE(245), + [aux_sym_tuple_expression_repeat1] = STATE(219), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1053), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), [anon_sym_i16] = ACTIONS(23), [anon_sym_u32] = ACTIONS(23), @@ -44858,104 +46221,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [246] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1688), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(246), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1490), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2040), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), [sym_line_comment] = STATE(246), [sym_block_comment] = STATE(246), - [sym_identifier] = ACTIONS(467), + [aux_sym_tuple_expression_repeat1] = STATE(218), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1225), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1067), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(471), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_DASH_GT] = ACTIONS(1079), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -44964,516 +46327,628 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [247] = { - [sym_bracketed_type] = STATE(3529), - [sym_generic_function] = STATE(1664), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1626), - [sym__expression] = STATE(1725), - [sym_macro_invocation] = STATE(1671), - [sym_scoped_identifier] = STATE(1575), - [sym_scoped_type_identifier_in_expression_position] = STATE(3163), - [sym_range_expression] = STATE(1666), - [sym_unary_expression] = STATE(1664), - [sym_try_expression] = STATE(1664), - [sym_reference_expression] = STATE(1664), - [sym_binary_expression] = STATE(1664), - [sym_assignment_expression] = STATE(1664), - [sym_compound_assignment_expr] = STATE(1664), - [sym_type_cast_expression] = STATE(1664), - [sym_return_expression] = STATE(1664), - [sym_yield_expression] = STATE(1664), - [sym_call_expression] = STATE(1664), - [sym_array_expression] = STATE(1664), - [sym_parenthesized_expression] = STATE(1664), - [sym_tuple_expression] = STATE(1664), - [sym_unit_expression] = STATE(1664), - [sym_struct_expression] = STATE(1664), - [sym_if_expression] = STATE(1664), - [sym_match_expression] = STATE(1664), - [sym_while_expression] = STATE(1664), - [sym_loop_expression] = STATE(1664), - [sym_for_expression] = STATE(1664), - [sym_const_block] = STATE(1664), - [sym_closure_expression] = STATE(1664), - [sym_closure_parameters] = STATE(232), - [sym_label] = STATE(3614), - [sym_break_expression] = STATE(1664), - [sym_continue_expression] = STATE(1664), - [sym_index_expression] = STATE(1664), - [sym_await_expression] = STATE(1664), - [sym_field_expression] = STATE(1597), - [sym_unsafe_block] = STATE(1664), - [sym_async_block] = STATE(1664), - [sym_gen_block] = STATE(1664), - [sym_try_block] = STATE(1664), - [sym_block] = STATE(1664), - [sym__literal] = STATE(1664), - [sym_string_literal] = STATE(1786), - [sym_raw_string_literal] = STATE(1786), - [sym_boolean_literal] = STATE(1786), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3303), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1875), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1794), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), [sym_line_comment] = STATE(247), [sym_block_comment] = STATE(247), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1015), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_BANG] = ACTIONS(1015), - [anon_sym_AMP] = ACTIONS(1017), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(903), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_BANG] = ACTIONS(903), + [anon_sym_AMP] = ACTIONS(905), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_DOT_DOT] = ACTIONS(907), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(495), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(497), + [anon_sym_default] = ACTIONS(475), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(499), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(501), + [anon_sym_static] = ACTIONS(503), + [anon_sym_union] = ACTIONS(475), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(505), + [anon_sym_move] = ACTIONS(507), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [248] = { - [sym_bracketed_type] = STATE(3529), - [sym_generic_function] = STATE(1664), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1626), - [sym__expression] = STATE(1762), - [sym_macro_invocation] = STATE(1671), - [sym_scoped_identifier] = STATE(1575), - [sym_scoped_type_identifier_in_expression_position] = STATE(3163), - [sym_range_expression] = STATE(1666), - [sym_unary_expression] = STATE(1664), - [sym_try_expression] = STATE(1664), - [sym_reference_expression] = STATE(1664), - [sym_binary_expression] = STATE(1664), - [sym_assignment_expression] = STATE(1664), - [sym_compound_assignment_expr] = STATE(1664), - [sym_type_cast_expression] = STATE(1664), - [sym_return_expression] = STATE(1664), - [sym_yield_expression] = STATE(1664), - [sym_call_expression] = STATE(1664), - [sym_array_expression] = STATE(1664), - [sym_parenthesized_expression] = STATE(1664), - [sym_tuple_expression] = STATE(1664), - [sym_unit_expression] = STATE(1664), - [sym_struct_expression] = STATE(1664), - [sym_if_expression] = STATE(1664), - [sym_match_expression] = STATE(1664), - [sym_while_expression] = STATE(1664), - [sym_loop_expression] = STATE(1664), - [sym_for_expression] = STATE(1664), - [sym_const_block] = STATE(1664), - [sym_closure_expression] = STATE(1664), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3303), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1740), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1794), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), [sym_closure_parameters] = STATE(232), - [sym_label] = STATE(3614), - [sym_break_expression] = STATE(1664), - [sym_continue_expression] = STATE(1664), - [sym_index_expression] = STATE(1664), - [sym_await_expression] = STATE(1664), - [sym_field_expression] = STATE(1597), - [sym_unsafe_block] = STATE(1664), - [sym_async_block] = STATE(1664), - [sym_gen_block] = STATE(1664), - [sym_try_block] = STATE(1664), - [sym_block] = STATE(1664), - [sym__literal] = STATE(1664), - [sym_string_literal] = STATE(1786), - [sym_raw_string_literal] = STATE(1786), - [sym_boolean_literal] = STATE(1786), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), [sym_line_comment] = STATE(248), [sym_block_comment] = STATE(248), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1015), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_BANG] = ACTIONS(1015), - [anon_sym_AMP] = ACTIONS(1017), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1191), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(1191), + [anon_sym_BANG] = ACTIONS(1191), + [anon_sym_AMP] = ACTIONS(1193), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_DOT_DOT] = ACTIONS(1195), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(473), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(475), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(477), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(475), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [249] = { - [sym_bracketed_type] = STATE(3529), - [sym_generic_function] = STATE(1664), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1626), - [sym__expression] = STATE(1763), - [sym_macro_invocation] = STATE(1671), - [sym_scoped_identifier] = STATE(1575), - [sym_scoped_type_identifier_in_expression_position] = STATE(3163), - [sym_range_expression] = STATE(1666), - [sym_unary_expression] = STATE(1664), - [sym_try_expression] = STATE(1664), - [sym_reference_expression] = STATE(1664), - [sym_binary_expression] = STATE(1664), - [sym_assignment_expression] = STATE(1664), - [sym_compound_assignment_expr] = STATE(1664), - [sym_type_cast_expression] = STATE(1664), - [sym_return_expression] = STATE(1664), - [sym_yield_expression] = STATE(1664), - [sym_call_expression] = STATE(1664), - [sym_array_expression] = STATE(1664), - [sym_parenthesized_expression] = STATE(1664), - [sym_tuple_expression] = STATE(1664), - [sym_unit_expression] = STATE(1664), - [sym_struct_expression] = STATE(1664), - [sym_if_expression] = STATE(1664), - [sym_match_expression] = STATE(1664), - [sym_while_expression] = STATE(1664), - [sym_loop_expression] = STATE(1664), - [sym_for_expression] = STATE(1664), - [sym_const_block] = STATE(1664), - [sym_closure_expression] = STATE(1664), - [sym_closure_parameters] = STATE(232), - [sym_label] = STATE(3614), - [sym_break_expression] = STATE(1664), - [sym_continue_expression] = STATE(1664), - [sym_index_expression] = STATE(1664), - [sym_await_expression] = STATE(1664), - [sym_field_expression] = STATE(1597), - [sym_unsafe_block] = STATE(1664), - [sym_async_block] = STATE(1664), - [sym_gen_block] = STATE(1664), - [sym_try_block] = STATE(1664), - [sym_block] = STATE(1664), - [sym__literal] = STATE(1664), - [sym_string_literal] = STATE(1786), - [sym_raw_string_literal] = STATE(1786), - [sym_boolean_literal] = STATE(1786), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2118), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), [sym_line_comment] = STATE(249), [sym_block_comment] = STATE(249), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1015), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_BANG] = ACTIONS(1015), - [anon_sym_AMP] = ACTIONS(1017), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [250] = { - [sym_bracketed_type] = STATE(3529), - [sym_generic_function] = STATE(1664), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1626), - [sym__expression] = STATE(1764), - [sym_macro_invocation] = STATE(1671), - [sym_scoped_identifier] = STATE(1575), - [sym_scoped_type_identifier_in_expression_position] = STATE(3163), - [sym_range_expression] = STATE(1666), - [sym_unary_expression] = STATE(1664), - [sym_try_expression] = STATE(1664), - [sym_reference_expression] = STATE(1664), - [sym_binary_expression] = STATE(1664), - [sym_assignment_expression] = STATE(1664), - [sym_compound_assignment_expr] = STATE(1664), - [sym_type_cast_expression] = STATE(1664), - [sym_return_expression] = STATE(1664), - [sym_yield_expression] = STATE(1664), - [sym_call_expression] = STATE(1664), - [sym_array_expression] = STATE(1664), - [sym_parenthesized_expression] = STATE(1664), - [sym_tuple_expression] = STATE(1664), - [sym_unit_expression] = STATE(1664), - [sym_struct_expression] = STATE(1664), - [sym_if_expression] = STATE(1664), - [sym_match_expression] = STATE(1664), - [sym_while_expression] = STATE(1664), - [sym_loop_expression] = STATE(1664), - [sym_for_expression] = STATE(1664), - [sym_const_block] = STATE(1664), - [sym_closure_expression] = STATE(1664), - [sym_closure_parameters] = STATE(232), - [sym_label] = STATE(3614), - [sym_break_expression] = STATE(1664), - [sym_continue_expression] = STATE(1664), - [sym_index_expression] = STATE(1664), - [sym_await_expression] = STATE(1664), - [sym_field_expression] = STATE(1597), - [sym_unsafe_block] = STATE(1664), - [sym_async_block] = STATE(1664), - [sym_gen_block] = STATE(1664), - [sym_try_block] = STATE(1664), - [sym_block] = STATE(1664), - [sym__literal] = STATE(1664), - [sym_string_literal] = STATE(1786), - [sym_raw_string_literal] = STATE(1786), - [sym_boolean_literal] = STATE(1786), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2021), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(471), + [sym_match_expression] = STATE(471), + [sym_while_expression] = STATE(471), + [sym_loop_expression] = STATE(471), + [sym_for_expression] = STATE(471), + [sym_const_block] = STATE(471), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4104), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(471), + [sym_async_block] = STATE(471), + [sym_gen_block] = STATE(471), + [sym_try_block] = STATE(471), + [sym_block] = STATE(471), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), [sym_line_comment] = STATE(250), [sym_block_comment] = STATE(250), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1015), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_BANG] = ACTIONS(1015), - [anon_sym_AMP] = ACTIONS(1017), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(1227), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), + [anon_sym_async] = ACTIONS(1229), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(1231), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(1233), + [anon_sym_gen] = ACTIONS(1235), + [anon_sym_if] = ACTIONS(1237), + [anon_sym_loop] = ACTIONS(1239), + [anon_sym_match] = ACTIONS(1241), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(1243), + [anon_sym_while] = ACTIONS(1245), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(1247), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, [251] = { - [sym_bracketed_type] = STATE(3529), - [sym_generic_function] = STATE(1664), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1626), - [sym__expression] = STATE(1765), - [sym_macro_invocation] = STATE(1671), - [sym_scoped_identifier] = STATE(1575), - [sym_scoped_type_identifier_in_expression_position] = STATE(3163), - [sym_range_expression] = STATE(1666), - [sym_unary_expression] = STATE(1664), - [sym_try_expression] = STATE(1664), - [sym_reference_expression] = STATE(1664), - [sym_binary_expression] = STATE(1664), - [sym_assignment_expression] = STATE(1664), - [sym_compound_assignment_expr] = STATE(1664), - [sym_type_cast_expression] = STATE(1664), - [sym_return_expression] = STATE(1664), - [sym_yield_expression] = STATE(1664), - [sym_call_expression] = STATE(1664), - [sym_array_expression] = STATE(1664), - [sym_parenthesized_expression] = STATE(1664), - [sym_tuple_expression] = STATE(1664), - [sym_unit_expression] = STATE(1664), - [sym_struct_expression] = STATE(1664), - [sym_if_expression] = STATE(1664), - [sym_match_expression] = STATE(1664), - [sym_while_expression] = STATE(1664), - [sym_loop_expression] = STATE(1664), - [sym_for_expression] = STATE(1664), - [sym_const_block] = STATE(1664), - [sym_closure_expression] = STATE(1664), - [sym_closure_parameters] = STATE(232), - [sym_label] = STATE(3614), - [sym_break_expression] = STATE(1664), - [sym_continue_expression] = STATE(1664), - [sym_index_expression] = STATE(1664), - [sym_await_expression] = STATE(1664), - [sym_field_expression] = STATE(1597), - [sym_unsafe_block] = STATE(1664), - [sym_async_block] = STATE(1664), - [sym_gen_block] = STATE(1664), - [sym_try_block] = STATE(1664), - [sym_block] = STATE(1664), - [sym__literal] = STATE(1664), - [sym_string_literal] = STATE(1786), - [sym_raw_string_literal] = STATE(1786), - [sym_boolean_literal] = STATE(1786), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1725), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), [sym_line_comment] = STATE(251), [sym_block_comment] = STATE(251), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1057), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [252] = { + [sym_bracketed_type] = STATE(4005), + [sym_generic_function] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3402), + [sym__expression_except_range] = STATE(1901), + [sym__expression] = STATE(2141), + [sym_macro_invocation] = STATE(1963), + [sym_scoped_identifier] = STATE(1832), + [sym_scoped_type_identifier_in_expression_position] = STATE(3592), + [sym_range_expression] = STATE(1960), + [sym_unary_expression] = STATE(1957), + [sym_try_expression] = STATE(1957), + [sym_reference_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_assignment_expression] = STATE(1957), + [sym_compound_assignment_expr] = STATE(1957), + [sym_type_cast_expression] = STATE(1957), + [sym_return_expression] = STATE(1957), + [sym_yield_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_array_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_tuple_expression] = STATE(1957), + [sym_unit_expression] = STATE(1957), + [sym_struct_expression] = STATE(1957), + [sym_if_expression] = STATE(1957), + [sym_match_expression] = STATE(1957), + [sym_while_expression] = STATE(1957), + [sym_loop_expression] = STATE(1957), + [sym_for_expression] = STATE(1957), + [sym_const_block] = STATE(1957), + [sym_closure_expression] = STATE(1957), + [sym_closure_parameters] = STATE(235), + [sym_label] = STATE(4110), + [sym_break_expression] = STATE(1957), + [sym_continue_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_await_expression] = STATE(1957), + [sym_field_expression] = STATE(1898), + [sym_unsafe_block] = STATE(1957), + [sym_async_block] = STATE(1957), + [sym_gen_block] = STATE(1957), + [sym_try_block] = STATE(1957), + [sym_block] = STATE(1957), + [sym__literal] = STATE(1957), + [sym_string_literal] = STATE(1932), + [sym_raw_string_literal] = STATE(1932), + [sym_boolean_literal] = STATE(1932), + [sym_line_comment] = STATE(252), + [sym_block_comment] = STATE(252), [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_LBRACK] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1015), + [anon_sym_STAR] = ACTIONS(933), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -45491,124 +46966,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(411), [anon_sym_str] = ACTIONS(411), [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_BANG] = ACTIONS(1015), - [anon_sym_AMP] = ACTIONS(1017), + [anon_sym_DASH] = ACTIONS(933), + [anon_sym_BANG] = ACTIONS(933), + [anon_sym_AMP] = ACTIONS(935), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [252] = { - [sym_bracketed_type] = STATE(3529), - [sym_generic_function] = STATE(1664), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1626), - [sym__expression] = STATE(1766), - [sym_macro_invocation] = STATE(1671), - [sym_scoped_identifier] = STATE(1575), - [sym_scoped_type_identifier_in_expression_position] = STATE(3163), - [sym_range_expression] = STATE(1666), - [sym_unary_expression] = STATE(1664), - [sym_try_expression] = STATE(1664), - [sym_reference_expression] = STATE(1664), - [sym_binary_expression] = STATE(1664), - [sym_assignment_expression] = STATE(1664), - [sym_compound_assignment_expr] = STATE(1664), - [sym_type_cast_expression] = STATE(1664), - [sym_return_expression] = STATE(1664), - [sym_yield_expression] = STATE(1664), - [sym_call_expression] = STATE(1664), - [sym_array_expression] = STATE(1664), - [sym_parenthesized_expression] = STATE(1664), - [sym_tuple_expression] = STATE(1664), - [sym_unit_expression] = STATE(1664), - [sym_struct_expression] = STATE(1664), - [sym_if_expression] = STATE(1664), - [sym_match_expression] = STATE(1664), - [sym_while_expression] = STATE(1664), - [sym_loop_expression] = STATE(1664), - [sym_for_expression] = STATE(1664), - [sym_const_block] = STATE(1664), - [sym_closure_expression] = STATE(1664), - [sym_closure_parameters] = STATE(232), - [sym_label] = STATE(3614), - [sym_break_expression] = STATE(1664), - [sym_continue_expression] = STATE(1664), - [sym_index_expression] = STATE(1664), - [sym_await_expression] = STATE(1664), - [sym_field_expression] = STATE(1597), - [sym_unsafe_block] = STATE(1664), - [sym_async_block] = STATE(1664), - [sym_gen_block] = STATE(1664), - [sym_try_block] = STATE(1664), - [sym_block] = STATE(1664), - [sym__literal] = STATE(1664), - [sym_string_literal] = STATE(1786), - [sym_raw_string_literal] = STATE(1786), - [sym_boolean_literal] = STATE(1786), - [sym_line_comment] = STATE(252), - [sym_block_comment] = STATE(252), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1015), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_BANG] = ACTIONS(1015), - [anon_sym_AMP] = ACTIONS(1017), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_DOT_DOT] = ACTIONS(937), [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(417), @@ -45644,615 +47007,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(451), }, [253] = { - [sym_bracketed_type] = STATE(3529), - [sym_generic_function] = STATE(1664), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1626), - [sym__expression] = STATE(1767), - [sym_macro_invocation] = STATE(1671), - [sym_scoped_identifier] = STATE(1575), - [sym_scoped_type_identifier_in_expression_position] = STATE(3163), - [sym_range_expression] = STATE(1666), - [sym_unary_expression] = STATE(1664), - [sym_try_expression] = STATE(1664), - [sym_reference_expression] = STATE(1664), - [sym_binary_expression] = STATE(1664), - [sym_assignment_expression] = STATE(1664), - [sym_compound_assignment_expr] = STATE(1664), - [sym_type_cast_expression] = STATE(1664), - [sym_return_expression] = STATE(1664), - [sym_yield_expression] = STATE(1664), - [sym_call_expression] = STATE(1664), - [sym_array_expression] = STATE(1664), - [sym_parenthesized_expression] = STATE(1664), - [sym_tuple_expression] = STATE(1664), - [sym_unit_expression] = STATE(1664), - [sym_struct_expression] = STATE(1664), - [sym_if_expression] = STATE(1664), - [sym_match_expression] = STATE(1664), - [sym_while_expression] = STATE(1664), - [sym_loop_expression] = STATE(1664), - [sym_for_expression] = STATE(1664), - [sym_const_block] = STATE(1664), - [sym_closure_expression] = STATE(1664), - [sym_closure_parameters] = STATE(232), - [sym_label] = STATE(3614), - [sym_break_expression] = STATE(1664), - [sym_continue_expression] = STATE(1664), - [sym_index_expression] = STATE(1664), - [sym_await_expression] = STATE(1664), - [sym_field_expression] = STATE(1597), - [sym_unsafe_block] = STATE(1664), - [sym_async_block] = STATE(1664), - [sym_gen_block] = STATE(1664), - [sym_try_block] = STATE(1664), - [sym_block] = STATE(1664), - [sym__literal] = STATE(1664), - [sym_string_literal] = STATE(1786), - [sym_raw_string_literal] = STATE(1786), - [sym_boolean_literal] = STATE(1786), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2029), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), [sym_line_comment] = STATE(253), [sym_block_comment] = STATE(253), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1015), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_BANG] = ACTIONS(1015), - [anon_sym_AMP] = ACTIONS(1017), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [254] = { - [sym_bracketed_type] = STATE(3529), - [sym_generic_function] = STATE(1664), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1626), - [sym__expression] = STATE(1768), - [sym_macro_invocation] = STATE(1671), - [sym_scoped_identifier] = STATE(1575), - [sym_scoped_type_identifier_in_expression_position] = STATE(3163), - [sym_range_expression] = STATE(1666), - [sym_unary_expression] = STATE(1664), - [sym_try_expression] = STATE(1664), - [sym_reference_expression] = STATE(1664), - [sym_binary_expression] = STATE(1664), - [sym_assignment_expression] = STATE(1664), - [sym_compound_assignment_expr] = STATE(1664), - [sym_type_cast_expression] = STATE(1664), - [sym_return_expression] = STATE(1664), - [sym_yield_expression] = STATE(1664), - [sym_call_expression] = STATE(1664), - [sym_array_expression] = STATE(1664), - [sym_parenthesized_expression] = STATE(1664), - [sym_tuple_expression] = STATE(1664), - [sym_unit_expression] = STATE(1664), - [sym_struct_expression] = STATE(1664), - [sym_if_expression] = STATE(1664), - [sym_match_expression] = STATE(1664), - [sym_while_expression] = STATE(1664), - [sym_loop_expression] = STATE(1664), - [sym_for_expression] = STATE(1664), - [sym_const_block] = STATE(1664), - [sym_closure_expression] = STATE(1664), - [sym_closure_parameters] = STATE(232), - [sym_label] = STATE(3614), - [sym_break_expression] = STATE(1664), - [sym_continue_expression] = STATE(1664), - [sym_index_expression] = STATE(1664), - [sym_await_expression] = STATE(1664), - [sym_field_expression] = STATE(1597), - [sym_unsafe_block] = STATE(1664), - [sym_async_block] = STATE(1664), - [sym_gen_block] = STATE(1664), - [sym_try_block] = STATE(1664), - [sym_block] = STATE(1664), - [sym__literal] = STATE(1664), - [sym_string_literal] = STATE(1786), - [sym_raw_string_literal] = STATE(1786), - [sym_boolean_literal] = STATE(1786), - [sym_line_comment] = STATE(254), - [sym_block_comment] = STATE(254), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1015), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_BANG] = ACTIONS(1015), - [anon_sym_AMP] = ACTIONS(1017), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [255] = { - [sym_bracketed_type] = STATE(3529), - [sym_generic_function] = STATE(1664), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1626), - [sym__expression] = STATE(1769), - [sym_macro_invocation] = STATE(1671), - [sym_scoped_identifier] = STATE(1575), - [sym_scoped_type_identifier_in_expression_position] = STATE(3163), - [sym_range_expression] = STATE(1666), - [sym_unary_expression] = STATE(1664), - [sym_try_expression] = STATE(1664), - [sym_reference_expression] = STATE(1664), - [sym_binary_expression] = STATE(1664), - [sym_assignment_expression] = STATE(1664), - [sym_compound_assignment_expr] = STATE(1664), - [sym_type_cast_expression] = STATE(1664), - [sym_return_expression] = STATE(1664), - [sym_yield_expression] = STATE(1664), - [sym_call_expression] = STATE(1664), - [sym_array_expression] = STATE(1664), - [sym_parenthesized_expression] = STATE(1664), - [sym_tuple_expression] = STATE(1664), - [sym_unit_expression] = STATE(1664), - [sym_struct_expression] = STATE(1664), - [sym_if_expression] = STATE(1664), - [sym_match_expression] = STATE(1664), - [sym_while_expression] = STATE(1664), - [sym_loop_expression] = STATE(1664), - [sym_for_expression] = STATE(1664), - [sym_const_block] = STATE(1664), - [sym_closure_expression] = STATE(1664), - [sym_closure_parameters] = STATE(232), - [sym_label] = STATE(3614), - [sym_break_expression] = STATE(1664), - [sym_continue_expression] = STATE(1664), - [sym_index_expression] = STATE(1664), - [sym_await_expression] = STATE(1664), - [sym_field_expression] = STATE(1597), - [sym_unsafe_block] = STATE(1664), - [sym_async_block] = STATE(1664), - [sym_gen_block] = STATE(1664), - [sym_try_block] = STATE(1664), - [sym_block] = STATE(1664), - [sym__literal] = STATE(1664), - [sym_string_literal] = STATE(1786), - [sym_raw_string_literal] = STATE(1786), - [sym_boolean_literal] = STATE(1786), - [sym_line_comment] = STATE(255), - [sym_block_comment] = STATE(255), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1015), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_BANG] = ACTIONS(1015), - [anon_sym_AMP] = ACTIONS(1017), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [256] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1718), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(246), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(256), - [sym_block_comment] = STATE(256), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1067), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1069), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1227), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [257] = { - [sym_bracketed_type] = STATE(3529), - [sym_generic_function] = STATE(1664), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1626), - [sym__expression] = STATE(1657), - [sym_macro_invocation] = STATE(1671), - [sym_scoped_identifier] = STATE(1575), - [sym_scoped_type_identifier_in_expression_position] = STATE(3163), - [sym_range_expression] = STATE(1666), - [sym_unary_expression] = STATE(1664), - [sym_try_expression] = STATE(1664), - [sym_reference_expression] = STATE(1664), - [sym_binary_expression] = STATE(1664), - [sym_assignment_expression] = STATE(1664), - [sym_compound_assignment_expr] = STATE(1664), - [sym_type_cast_expression] = STATE(1664), - [sym_return_expression] = STATE(1664), - [sym_yield_expression] = STATE(1664), - [sym_call_expression] = STATE(1664), - [sym_array_expression] = STATE(1664), - [sym_parenthesized_expression] = STATE(1664), - [sym_tuple_expression] = STATE(1664), - [sym_unit_expression] = STATE(1664), - [sym_struct_expression] = STATE(1664), - [sym_if_expression] = STATE(1664), - [sym_match_expression] = STATE(1664), - [sym_while_expression] = STATE(1664), - [sym_loop_expression] = STATE(1664), - [sym_for_expression] = STATE(1664), - [sym_const_block] = STATE(1664), - [sym_closure_expression] = STATE(1664), - [sym_closure_parameters] = STATE(232), - [sym_label] = STATE(3614), - [sym_break_expression] = STATE(1664), - [sym_continue_expression] = STATE(1664), - [sym_index_expression] = STATE(1664), - [sym_await_expression] = STATE(1664), - [sym_field_expression] = STATE(1597), - [sym_unsafe_block] = STATE(1664), - [sym_async_block] = STATE(1664), - [sym_gen_block] = STATE(1664), - [sym_try_block] = STATE(1664), - [sym_block] = STATE(1664), - [sym__literal] = STATE(1664), - [sym_string_literal] = STATE(1786), - [sym_raw_string_literal] = STATE(1786), - [sym_boolean_literal] = STATE(1786), - [sym_line_comment] = STATE(257), - [sym_block_comment] = STATE(257), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1015), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_BANG] = ACTIONS(1015), - [anon_sym_AMP] = ACTIONS(1017), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [258] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1816), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(258), - [sym_block_comment] = STATE(258), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -46315,103 +47118,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [259] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1892), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(259), - [sym_block_comment] = STATE(259), - [sym_identifier] = ACTIONS(339), + [254] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3303), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1647), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1794), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(254), + [sym_block_comment] = STATE(254), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(903), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_BANG] = ACTIONS(903), + [anon_sym_AMP] = ACTIONS(905), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(495), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_continue] = ACTIONS(497), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(499), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), + [anon_sym_return] = ACTIONS(501), + [anon_sym_static] = ACTIONS(503), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(505), + [anon_sym_move] = ACTIONS(507), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -46420,63 +47223,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [260] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1800), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(260), - [sym_block_comment] = STATE(260), + [255] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1764), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(255), + [sym_block_comment] = STATE(255), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -46504,7 +47307,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1057), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -46539,56 +47342,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [261] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1802), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(261), - [sym_block_comment] = STATE(261), + [256] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2137), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(256), + [sym_block_comment] = STATE(256), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -46651,103 +47454,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [262] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1808), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(262), - [sym_block_comment] = STATE(262), - [sym_identifier] = ACTIONS(339), + [257] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3303), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1875), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1794), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(257), + [sym_block_comment] = STATE(257), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(903), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_BANG] = ACTIONS(903), + [anon_sym_AMP] = ACTIONS(905), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(495), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_continue] = ACTIONS(497), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(499), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), + [anon_sym_return] = ACTIONS(501), + [anon_sym_static] = ACTIONS(503), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(505), + [anon_sym_move] = ACTIONS(507), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -46756,110 +47559,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [263] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1595), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(263), - [sym_block_comment] = STATE(263), - [sym_identifier] = ACTIONS(467), + [258] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3303), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1878), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1794), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(258), + [sym_block_comment] = STATE(258), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(903), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_BANG] = ACTIONS(903), + [anon_sym_AMP] = ACTIONS(905), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1053), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(495), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(497), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(499), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(501), + [anon_sym_static] = ACTIONS(503), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(505), + [anon_sym_move] = ACTIONS(507), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -46868,67 +47671,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [264] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1813), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(471), - [sym_match_expression] = STATE(471), - [sym_while_expression] = STATE(471), - [sym_loop_expression] = STATE(471), - [sym_for_expression] = STATE(471), - [sym_const_block] = STATE(471), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3608), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(471), - [sym_async_block] = STATE(471), - [sym_gen_block] = STATE(471), - [sym_try_block] = STATE(471), - [sym_block] = STATE(471), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(264), - [sym_block_comment] = STATE(264), + [259] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2132), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(259), + [sym_block_comment] = STATE(259), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -46955,24 +47758,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(1231), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(1235), - [anon_sym_gen] = ACTIONS(1237), - [anon_sym_if] = ACTIONS(1239), - [anon_sym_loop] = ACTIONS(1241), - [anon_sym_match] = ACTIONS(1243), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(71), [anon_sym_static] = ACTIONS(367), [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(1245), - [anon_sym_while] = ACTIONS(1247), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(1249), + [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -46987,103 +47790,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [265] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1885), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(265), - [sym_block_comment] = STATE(265), - [sym_identifier] = ACTIONS(339), + [260] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3303), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1879), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1794), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(260), + [sym_block_comment] = STATE(260), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(903), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_BANG] = ACTIONS(903), + [anon_sym_AMP] = ACTIONS(905), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(495), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_continue] = ACTIONS(497), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(499), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), + [anon_sym_return] = ACTIONS(501), + [anon_sym_static] = ACTIONS(503), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(505), + [anon_sym_move] = ACTIONS(507), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -47092,110 +47895,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [266] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1889), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(266), - [sym_block_comment] = STATE(266), - [sym_identifier] = ACTIONS(339), + [261] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3303), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1880), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1794), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(261), + [sym_block_comment] = STATE(261), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(903), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_BANG] = ACTIONS(903), + [anon_sym_AMP] = ACTIONS(905), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(495), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_continue] = ACTIONS(497), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(499), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), + [anon_sym_return] = ACTIONS(501), + [anon_sym_static] = ACTIONS(503), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(505), + [anon_sym_move] = ACTIONS(507), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -47204,110 +48007,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [267] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1718), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(246), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(267), - [sym_block_comment] = STATE(267), - [sym_identifier] = ACTIONS(467), + [262] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3303), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1881), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1794), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(262), + [sym_block_comment] = STATE(262), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1067), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_STAR] = ACTIONS(903), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_BANG] = ACTIONS(903), + [anon_sym_AMP] = ACTIONS(905), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), + [anon_sym_break] = ACTIONS(495), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(497), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(499), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(501), + [anon_sym_static] = ACTIONS(503), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(505), + [anon_sym_move] = ACTIONS(507), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -47316,63 +48119,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [268] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1513), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(268), - [sym_block_comment] = STATE(268), + [263] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3303), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1882), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1794), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(263), + [sym_block_comment] = STATE(263), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(903), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_BANG] = ACTIONS(903), + [anon_sym_AMP] = ACTIONS(905), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(495), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(497), + [anon_sym_default] = ACTIONS(475), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(499), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(501), + [anon_sym_static] = ACTIONS(503), + [anon_sym_union] = ACTIONS(475), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(505), + [anon_sym_move] = ACTIONS(507), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [264] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2009), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(264), + [sym_block_comment] = STATE(264), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -47400,7 +48315,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1201), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -47435,168 +48350,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [269] = { - [sym_bracketed_type] = STATE(3529), - [sym_generic_function] = STATE(1664), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1626), - [sym__expression] = STATE(1863), - [sym_macro_invocation] = STATE(1671), - [sym_scoped_identifier] = STATE(1575), - [sym_scoped_type_identifier_in_expression_position] = STATE(3163), - [sym_range_expression] = STATE(1666), - [sym_unary_expression] = STATE(1664), - [sym_try_expression] = STATE(1664), - [sym_reference_expression] = STATE(1664), - [sym_binary_expression] = STATE(1664), - [sym_assignment_expression] = STATE(1664), - [sym_compound_assignment_expr] = STATE(1664), - [sym_type_cast_expression] = STATE(1664), - [sym_return_expression] = STATE(1664), - [sym_yield_expression] = STATE(1664), - [sym_call_expression] = STATE(1664), - [sym_array_expression] = STATE(1664), - [sym_parenthesized_expression] = STATE(1664), - [sym_tuple_expression] = STATE(1664), - [sym_unit_expression] = STATE(1664), - [sym_struct_expression] = STATE(1664), - [sym_if_expression] = STATE(1664), - [sym_match_expression] = STATE(1664), - [sym_while_expression] = STATE(1664), - [sym_loop_expression] = STATE(1664), - [sym_for_expression] = STATE(1664), - [sym_const_block] = STATE(1664), - [sym_closure_expression] = STATE(1664), - [sym_closure_parameters] = STATE(232), - [sym_label] = STATE(3614), - [sym_break_expression] = STATE(1664), - [sym_continue_expression] = STATE(1664), - [sym_index_expression] = STATE(1664), - [sym_await_expression] = STATE(1664), - [sym_field_expression] = STATE(1597), - [sym_unsafe_block] = STATE(1664), - [sym_async_block] = STATE(1664), - [sym_gen_block] = STATE(1664), - [sym_try_block] = STATE(1664), - [sym_block] = STATE(1664), - [sym__literal] = STATE(1664), - [sym_string_literal] = STATE(1786), - [sym_raw_string_literal] = STATE(1786), - [sym_boolean_literal] = STATE(1786), - [sym_line_comment] = STATE(269), - [sym_block_comment] = STATE(269), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1015), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_BANG] = ACTIONS(1015), - [anon_sym_AMP] = ACTIONS(1017), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1019), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [270] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1377), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(270), - [sym_block_comment] = STATE(270), + [265] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2101), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(265), + [sym_block_comment] = STATE(265), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -47624,7 +48427,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1201), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -47659,56 +48462,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [271] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1521), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(271), - [sym_block_comment] = STATE(271), + [266] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1912), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(266), + [sym_block_comment] = STATE(266), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -47736,7 +48539,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1201), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -47771,168 +48574,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [272] = { - [sym_bracketed_type] = STATE(3529), - [sym_generic_function] = STATE(1664), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1626), - [sym__expression] = STATE(1863), - [sym_macro_invocation] = STATE(1671), - [sym_scoped_identifier] = STATE(1575), - [sym_scoped_type_identifier_in_expression_position] = STATE(3163), - [sym_range_expression] = STATE(1666), - [sym_unary_expression] = STATE(1664), - [sym_try_expression] = STATE(1664), - [sym_reference_expression] = STATE(1664), - [sym_binary_expression] = STATE(1664), - [sym_assignment_expression] = STATE(1664), - [sym_compound_assignment_expr] = STATE(1664), - [sym_type_cast_expression] = STATE(1664), - [sym_return_expression] = STATE(1664), - [sym_yield_expression] = STATE(1664), - [sym_call_expression] = STATE(1664), - [sym_array_expression] = STATE(1664), - [sym_parenthesized_expression] = STATE(1664), - [sym_tuple_expression] = STATE(1664), - [sym_unit_expression] = STATE(1664), - [sym_struct_expression] = STATE(1664), - [sym_if_expression] = STATE(1664), - [sym_match_expression] = STATE(1664), - [sym_while_expression] = STATE(1664), - [sym_loop_expression] = STATE(1664), - [sym_for_expression] = STATE(1664), - [sym_const_block] = STATE(1664), - [sym_closure_expression] = STATE(1664), - [sym_closure_parameters] = STATE(232), - [sym_label] = STATE(3614), - [sym_break_expression] = STATE(1664), - [sym_continue_expression] = STATE(1664), - [sym_index_expression] = STATE(1664), - [sym_await_expression] = STATE(1664), - [sym_field_expression] = STATE(1597), - [sym_unsafe_block] = STATE(1664), - [sym_async_block] = STATE(1664), - [sym_gen_block] = STATE(1664), - [sym_try_block] = STATE(1664), - [sym_block] = STATE(1664), - [sym__literal] = STATE(1664), - [sym_string_literal] = STATE(1786), - [sym_raw_string_literal] = STATE(1786), - [sym_boolean_literal] = STATE(1786), - [sym_line_comment] = STATE(272), - [sym_block_comment] = STATE(272), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1015), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_BANG] = ACTIONS(1015), - [anon_sym_AMP] = ACTIONS(1017), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_COLON_COLON] = ACTIONS(415), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), - }, - [273] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1522), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(273), - [sym_block_comment] = STATE(273), + [267] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2145), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(267), + [sym_block_comment] = STATE(267), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -47960,7 +48651,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1201), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -47995,56 +48686,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [274] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1524), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(274), - [sym_block_comment] = STATE(274), + [268] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1772), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(268), + [sym_block_comment] = STATE(268), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -48072,7 +48763,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1201), + [anon_sym_DOT_DOT] = ACTIONS(1057), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -48107,56 +48798,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [275] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1525), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(275), - [sym_block_comment] = STATE(275), + [269] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1740), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(269), + [sym_block_comment] = STATE(269), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -48184,7 +48875,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1201), + [anon_sym_DOT_DOT] = ACTIONS(1057), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -48219,103 +48910,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [276] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1394), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(276), - [sym_block_comment] = STATE(276), - [sym_identifier] = ACTIONS(467), + [270] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3303), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1983), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1794), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(270), + [sym_block_comment] = STATE(270), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(1191), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(1191), + [anon_sym_BANG] = ACTIONS(1191), + [anon_sym_AMP] = ACTIONS(1193), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1053), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(1195), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(477), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -48324,63 +49015,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [277] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1505), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(277), - [sym_block_comment] = STATE(277), + [271] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1762), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(271), + [sym_block_comment] = STATE(271), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -48408,7 +49099,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1201), + [anon_sym_DOT_DOT] = ACTIONS(1057), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -48443,56 +49134,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [278] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1506), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(278), - [sym_block_comment] = STATE(278), + [272] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1754), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(272), + [sym_block_comment] = STATE(272), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -48520,7 +49211,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1201), + [anon_sym_DOT_DOT] = ACTIONS(1057), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -48555,56 +49246,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [279] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1890), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(279), - [sym_block_comment] = STATE(279), + [273] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1755), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(273), + [sym_block_comment] = STATE(273), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -48632,7 +49323,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1057), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -48667,56 +49358,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [280] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1855), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(280), - [sym_block_comment] = STATE(280), + [274] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1765), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(274), + [sym_block_comment] = STATE(274), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -48744,7 +49435,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1057), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -48779,168 +49470,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [281] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1880), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(462), - [sym_match_expression] = STATE(462), - [sym_while_expression] = STATE(462), - [sym_loop_expression] = STATE(462), - [sym_for_expression] = STATE(462), - [sym_const_block] = STATE(462), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3608), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(462), - [sym_async_block] = STATE(462), - [sym_gen_block] = STATE(462), - [sym_try_block] = STATE(462), - [sym_block] = STATE(462), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(281), - [sym_block_comment] = STATE(281), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(1231), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(1235), - [anon_sym_gen] = ACTIONS(1237), - [anon_sym_if] = ACTIONS(1239), - [anon_sym_loop] = ACTIONS(1241), - [anon_sym_match] = ACTIONS(1243), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(1245), - [anon_sym_while] = ACTIONS(1247), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(1249), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [282] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1887), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(282), - [sym_block_comment] = STATE(282), + [275] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1767), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(275), + [sym_block_comment] = STATE(275), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -48968,7 +49547,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1057), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -49003,56 +49582,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [283] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1895), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(283), - [sym_block_comment] = STATE(283), + [276] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1771), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(276), + [sym_block_comment] = STATE(276), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -49080,7 +49659,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1057), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -49115,56 +49694,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [284] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1896), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(284), - [sym_block_comment] = STATE(284), + [277] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1775), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(277), + [sym_block_comment] = STATE(277), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -49192,7 +49771,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1057), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -49227,168 +49806,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [285] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1869), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(471), - [sym_match_expression] = STATE(471), - [sym_while_expression] = STATE(471), - [sym_loop_expression] = STATE(471), - [sym_for_expression] = STATE(471), - [sym_const_block] = STATE(471), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3608), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(471), - [sym_async_block] = STATE(471), - [sym_gen_block] = STATE(471), - [sym_try_block] = STATE(471), - [sym_block] = STATE(471), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(285), - [sym_block_comment] = STATE(285), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(1231), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(1233), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(1235), - [anon_sym_gen] = ACTIONS(1237), - [anon_sym_if] = ACTIONS(1239), - [anon_sym_loop] = ACTIONS(1241), - [anon_sym_match] = ACTIONS(1243), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(1245), - [anon_sym_while] = ACTIONS(1247), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(1249), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [286] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1871), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(286), - [sym_block_comment] = STATE(286), + [278] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1776), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(278), + [sym_block_comment] = STATE(278), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -49416,7 +49883,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1057), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -49451,56 +49918,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [287] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1897), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(287), - [sym_block_comment] = STATE(287), + [279] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1753), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(279), + [sym_block_comment] = STATE(279), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -49528,7 +49995,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1057), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -49563,56 +50030,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [288] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1507), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(288), - [sym_block_comment] = STATE(288), + [280] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1909), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(280), + [sym_block_comment] = STATE(280), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -49640,7 +50107,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1201), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -49675,103 +50142,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [289] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1508), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(289), - [sym_block_comment] = STATE(289), - [sym_identifier] = ACTIONS(339), + [281] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3303), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1975), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1794), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(281), + [sym_block_comment] = STATE(281), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1191), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(1191), + [anon_sym_BANG] = ACTIONS(1191), + [anon_sym_AMP] = ACTIONS(1193), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1201), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1249), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(477), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -49780,63 +50247,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [290] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1510), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(290), - [sym_block_comment] = STATE(290), + [282] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1764), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(282), + [sym_block_comment] = STATE(282), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -49864,7 +50331,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1201), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -49899,56 +50366,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [291] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1394), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(291), - [sym_block_comment] = STATE(291), + [283] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2120), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(283), + [sym_block_comment] = STATE(283), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -49976,7 +50443,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1201), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -50011,61 +50478,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [292] = { - [sym_bracketed_type] = STATE(3529), - [sym_generic_function] = STATE(1664), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1626), - [sym__expression] = STATE(1676), - [sym_macro_invocation] = STATE(1671), - [sym_scoped_identifier] = STATE(1575), - [sym_scoped_type_identifier_in_expression_position] = STATE(3163), - [sym_range_expression] = STATE(1666), - [sym_unary_expression] = STATE(1664), - [sym_try_expression] = STATE(1664), - [sym_reference_expression] = STATE(1664), - [sym_binary_expression] = STATE(1664), - [sym_assignment_expression] = STATE(1664), - [sym_compound_assignment_expr] = STATE(1664), - [sym_type_cast_expression] = STATE(1664), - [sym_return_expression] = STATE(1664), - [sym_yield_expression] = STATE(1664), - [sym_call_expression] = STATE(1664), - [sym_array_expression] = STATE(1664), - [sym_parenthesized_expression] = STATE(1664), - [sym_tuple_expression] = STATE(1664), - [sym_unit_expression] = STATE(1664), - [sym_struct_expression] = STATE(1664), - [sym_if_expression] = STATE(1664), - [sym_match_expression] = STATE(1664), - [sym_while_expression] = STATE(1664), - [sym_loop_expression] = STATE(1664), - [sym_for_expression] = STATE(1664), - [sym_const_block] = STATE(1664), - [sym_closure_expression] = STATE(1664), - [sym_closure_parameters] = STATE(232), - [sym_label] = STATE(3614), - [sym_break_expression] = STATE(1664), - [sym_continue_expression] = STATE(1664), - [sym_index_expression] = STATE(1664), - [sym_await_expression] = STATE(1664), - [sym_field_expression] = STATE(1597), - [sym_unsafe_block] = STATE(1664), - [sym_async_block] = STATE(1664), - [sym_gen_block] = STATE(1664), - [sym_try_block] = STATE(1664), - [sym_block] = STATE(1664), - [sym__literal] = STATE(1664), - [sym_string_literal] = STATE(1786), - [sym_raw_string_literal] = STATE(1786), - [sym_boolean_literal] = STATE(1786), - [sym_line_comment] = STATE(292), - [sym_block_comment] = STATE(292), + [284] = { + [sym_bracketed_type] = STATE(4005), + [sym_generic_function] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3402), + [sym__expression_except_range] = STATE(1901), + [sym__expression] = STATE(2085), + [sym_macro_invocation] = STATE(1963), + [sym_scoped_identifier] = STATE(1832), + [sym_scoped_type_identifier_in_expression_position] = STATE(3592), + [sym_range_expression] = STATE(1960), + [sym_unary_expression] = STATE(1957), + [sym_try_expression] = STATE(1957), + [sym_reference_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_assignment_expression] = STATE(1957), + [sym_compound_assignment_expr] = STATE(1957), + [sym_type_cast_expression] = STATE(1957), + [sym_return_expression] = STATE(1957), + [sym_yield_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_array_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_tuple_expression] = STATE(1957), + [sym_unit_expression] = STATE(1957), + [sym_struct_expression] = STATE(1957), + [sym_if_expression] = STATE(1957), + [sym_match_expression] = STATE(1957), + [sym_while_expression] = STATE(1957), + [sym_loop_expression] = STATE(1957), + [sym_for_expression] = STATE(1957), + [sym_const_block] = STATE(1957), + [sym_closure_expression] = STATE(1957), + [sym_closure_parameters] = STATE(235), + [sym_label] = STATE(4110), + [sym_break_expression] = STATE(1957), + [sym_continue_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_await_expression] = STATE(1957), + [sym_field_expression] = STATE(1898), + [sym_unsafe_block] = STATE(1957), + [sym_async_block] = STATE(1957), + [sym_gen_block] = STATE(1957), + [sym_try_block] = STATE(1957), + [sym_block] = STATE(1957), + [sym__literal] = STATE(1957), + [sym_string_literal] = STATE(1932), + [sym_raw_string_literal] = STATE(1932), + [sym_boolean_literal] = STATE(1932), + [sym_line_comment] = STATE(284), + [sym_block_comment] = STATE(284), [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_LBRACK] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1015), + [anon_sym_STAR] = ACTIONS(933), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -50083,12 +50550,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(411), [anon_sym_str] = ACTIONS(411), [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_BANG] = ACTIONS(1015), - [anon_sym_AMP] = ACTIONS(1017), + [anon_sym_DASH] = ACTIONS(933), + [anon_sym_BANG] = ACTIONS(933), + [anon_sym_AMP] = ACTIONS(935), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1059), + [anon_sym_DOT_DOT] = ACTIONS(1179), [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(417), @@ -50123,103 +50590,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(463), [sym_float_literal] = ACTIONS(451), }, - [293] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1511), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(293), - [sym_block_comment] = STATE(293), - [sym_identifier] = ACTIONS(339), + [285] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3303), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1884), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1794), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(285), + [sym_block_comment] = STATE(285), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(903), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_BANG] = ACTIONS(903), + [anon_sym_AMP] = ACTIONS(905), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(495), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_continue] = ACTIONS(497), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(499), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), + [anon_sym_return] = ACTIONS(501), + [anon_sym_static] = ACTIONS(503), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(505), + [anon_sym_move] = ACTIONS(507), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -50228,110 +50695,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [294] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1431), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(294), - [sym_block_comment] = STATE(294), - [sym_identifier] = ACTIONS(339), + [286] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3303), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1886), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1794), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(286), + [sym_block_comment] = STATE(286), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(903), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_BANG] = ACTIONS(903), + [anon_sym_AMP] = ACTIONS(905), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1201), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(495), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_continue] = ACTIONS(497), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(499), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), + [anon_sym_return] = ACTIONS(501), + [anon_sym_static] = ACTIONS(503), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(505), + [anon_sym_move] = ACTIONS(507), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -50340,110 +50807,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [295] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1872), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(295), - [sym_block_comment] = STATE(295), - [sym_identifier] = ACTIONS(339), + [287] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3303), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1887), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1794), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(287), + [sym_block_comment] = STATE(287), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(903), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_BANG] = ACTIONS(903), + [anon_sym_AMP] = ACTIONS(905), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(495), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_continue] = ACTIONS(497), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(499), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), + [anon_sym_return] = ACTIONS(501), + [anon_sym_static] = ACTIONS(503), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(505), + [anon_sym_move] = ACTIONS(507), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -50452,110 +50919,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [296] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1862), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(296), - [sym_block_comment] = STATE(296), - [sym_identifier] = ACTIONS(467), + [288] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3303), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1740), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1794), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(288), + [sym_block_comment] = STATE(288), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(903), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_BANG] = ACTIONS(903), + [anon_sym_AMP] = ACTIONS(905), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(963), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(495), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(497), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(499), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(501), + [anon_sym_static] = ACTIONS(503), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(505), + [anon_sym_move] = ACTIONS(507), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -50564,110 +51031,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [297] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1431), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(297), - [sym_block_comment] = STATE(297), - [sym_identifier] = ACTIONS(467), + [289] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3303), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1814), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1794), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(289), + [sym_block_comment] = STATE(289), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(903), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_BANG] = ACTIONS(903), + [anon_sym_AMP] = ACTIONS(905), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1053), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(907), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(495), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(497), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(499), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(501), + [anon_sym_static] = ACTIONS(503), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(505), + [anon_sym_move] = ACTIONS(507), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -50676,63 +51143,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [298] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1690), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(298), - [sym_block_comment] = STATE(298), + [290] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3303), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1888), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1794), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(290), + [sym_block_comment] = STATE(290), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(903), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_BANG] = ACTIONS(903), + [anon_sym_AMP] = ACTIONS(905), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(495), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(497), + [anon_sym_default] = ACTIONS(475), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(499), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(501), + [anon_sym_static] = ACTIONS(503), + [anon_sym_union] = ACTIONS(475), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(505), + [anon_sym_move] = ACTIONS(507), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [291] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1954), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(291), + [sym_block_comment] = STATE(291), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -50795,103 +51374,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [299] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1639), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(299), - [sym_block_comment] = STATE(299), - [sym_identifier] = ACTIONS(467), + [292] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3303), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1938), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1794), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(292), + [sym_block_comment] = STATE(292), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(1191), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(1191), + [anon_sym_BANG] = ACTIONS(1191), + [anon_sym_AMP] = ACTIONS(1193), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1053), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(1195), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(477), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -50900,110 +51479,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [300] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1377), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(300), - [sym_block_comment] = STATE(300), - [sym_identifier] = ACTIONS(467), + [293] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3303), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1703), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1794), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(293), + [sym_block_comment] = STATE(293), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(903), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_BANG] = ACTIONS(903), + [anon_sym_AMP] = ACTIONS(905), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1053), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(495), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(497), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(499), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(501), + [anon_sym_static] = ACTIONS(503), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(505), + [anon_sym_move] = ACTIONS(507), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -51012,110 +51591,222 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [301] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1640), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(301), - [sym_block_comment] = STATE(301), - [sym_identifier] = ACTIONS(467), + [294] = { + [sym_bracketed_type] = STATE(4005), + [sym_generic_function] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3402), + [sym__expression_except_range] = STATE(1901), + [sym__expression] = STATE(1966), + [sym_macro_invocation] = STATE(1963), + [sym_scoped_identifier] = STATE(1832), + [sym_scoped_type_identifier_in_expression_position] = STATE(3592), + [sym_range_expression] = STATE(1960), + [sym_unary_expression] = STATE(1957), + [sym_try_expression] = STATE(1957), + [sym_reference_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_assignment_expression] = STATE(1957), + [sym_compound_assignment_expr] = STATE(1957), + [sym_type_cast_expression] = STATE(1957), + [sym_return_expression] = STATE(1957), + [sym_yield_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_array_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_tuple_expression] = STATE(1957), + [sym_unit_expression] = STATE(1957), + [sym_struct_expression] = STATE(1957), + [sym_if_expression] = STATE(1957), + [sym_match_expression] = STATE(1957), + [sym_while_expression] = STATE(1957), + [sym_loop_expression] = STATE(1957), + [sym_for_expression] = STATE(1957), + [sym_const_block] = STATE(1957), + [sym_closure_expression] = STATE(1957), + [sym_closure_parameters] = STATE(235), + [sym_label] = STATE(4110), + [sym_break_expression] = STATE(1957), + [sym_continue_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_await_expression] = STATE(1957), + [sym_field_expression] = STATE(1898), + [sym_unsafe_block] = STATE(1957), + [sym_async_block] = STATE(1957), + [sym_gen_block] = STATE(1957), + [sym_try_block] = STATE(1957), + [sym_block] = STATE(1957), + [sym__literal] = STATE(1957), + [sym_string_literal] = STATE(1932), + [sym_raw_string_literal] = STATE(1932), + [sym_boolean_literal] = STATE(1932), + [sym_line_comment] = STATE(294), + [sym_block_comment] = STATE(294), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_LBRACK] = ACTIONS(513), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(933), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(933), + [anon_sym_BANG] = ACTIONS(933), + [anon_sym_AMP] = ACTIONS(935), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [295] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2143), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(295), + [sym_block_comment] = STATE(295), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1053), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -51124,110 +51815,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [302] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1645), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(302), - [sym_block_comment] = STATE(302), - [sym_identifier] = ACTIONS(467), + [296] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2131), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(296), + [sym_block_comment] = STATE(296), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1053), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -51236,110 +51927,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [303] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1593), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(303), - [sym_block_comment] = STATE(303), - [sym_identifier] = ACTIONS(467), + [297] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3303), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1938), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1794), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(297), + [sym_block_comment] = STATE(297), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(1191), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(1191), + [anon_sym_BANG] = ACTIONS(1191), + [anon_sym_AMP] = ACTIONS(1193), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1053), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(1249), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(477), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -51348,110 +52039,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [304] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1712), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(246), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(304), - [sym_block_comment] = STATE(304), - [sym_identifier] = ACTIONS(467), + [298] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1951), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(298), + [sym_block_comment] = STATE(298), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1067), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -51460,110 +52151,222 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [305] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1605), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(305), - [sym_block_comment] = STATE(305), - [sym_identifier] = ACTIONS(467), + [299] = { + [sym_bracketed_type] = STATE(4005), + [sym_generic_function] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3402), + [sym__expression_except_range] = STATE(1901), + [sym__expression] = STATE(1905), + [sym_macro_invocation] = STATE(1963), + [sym_scoped_identifier] = STATE(1832), + [sym_scoped_type_identifier_in_expression_position] = STATE(3592), + [sym_range_expression] = STATE(1960), + [sym_unary_expression] = STATE(1957), + [sym_try_expression] = STATE(1957), + [sym_reference_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_assignment_expression] = STATE(1957), + [sym_compound_assignment_expr] = STATE(1957), + [sym_type_cast_expression] = STATE(1957), + [sym_return_expression] = STATE(1957), + [sym_yield_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_array_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_tuple_expression] = STATE(1957), + [sym_unit_expression] = STATE(1957), + [sym_struct_expression] = STATE(1957), + [sym_if_expression] = STATE(1957), + [sym_match_expression] = STATE(1957), + [sym_while_expression] = STATE(1957), + [sym_loop_expression] = STATE(1957), + [sym_for_expression] = STATE(1957), + [sym_const_block] = STATE(1957), + [sym_closure_expression] = STATE(1957), + [sym_closure_parameters] = STATE(235), + [sym_label] = STATE(4110), + [sym_break_expression] = STATE(1957), + [sym_continue_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_await_expression] = STATE(1957), + [sym_field_expression] = STATE(1898), + [sym_unsafe_block] = STATE(1957), + [sym_async_block] = STATE(1957), + [sym_gen_block] = STATE(1957), + [sym_try_block] = STATE(1957), + [sym_block] = STATE(1957), + [sym__literal] = STATE(1957), + [sym_string_literal] = STATE(1932), + [sym_raw_string_literal] = STATE(1932), + [sym_boolean_literal] = STATE(1932), + [sym_line_comment] = STATE(299), + [sym_block_comment] = STATE(299), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_LBRACK] = ACTIONS(513), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(933), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(933), + [anon_sym_BANG] = ACTIONS(933), + [anon_sym_AMP] = ACTIONS(935), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(937), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [300] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2128), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(300), + [sym_block_comment] = STATE(300), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1053), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -51572,623 +52375,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [306] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1627), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(306), - [sym_block_comment] = STATE(306), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1053), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [307] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1631), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(307), - [sym_block_comment] = STATE(307), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1053), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [308] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1394), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(246), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(308), - [sym_block_comment] = STATE(308), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1067), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1069), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [309] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1632), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(309), - [sym_block_comment] = STATE(309), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1053), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [310] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1600), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(310), - [sym_block_comment] = STATE(310), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), + [301] = { + [sym_bracketed_type] = STATE(4005), + [sym_generic_function] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3402), + [sym__expression_except_range] = STATE(1901), + [sym__expression] = STATE(2045), + [sym_macro_invocation] = STATE(1963), + [sym_scoped_identifier] = STATE(1832), + [sym_scoped_type_identifier_in_expression_position] = STATE(3592), + [sym_range_expression] = STATE(1960), + [sym_unary_expression] = STATE(1957), + [sym_try_expression] = STATE(1957), + [sym_reference_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_assignment_expression] = STATE(1957), + [sym_compound_assignment_expr] = STATE(1957), + [sym_type_cast_expression] = STATE(1957), + [sym_return_expression] = STATE(1957), + [sym_yield_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_array_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_tuple_expression] = STATE(1957), + [sym_unit_expression] = STATE(1957), + [sym_struct_expression] = STATE(1957), + [sym_if_expression] = STATE(1957), + [sym_match_expression] = STATE(1957), + [sym_while_expression] = STATE(1957), + [sym_loop_expression] = STATE(1957), + [sym_for_expression] = STATE(1957), + [sym_const_block] = STATE(1957), + [sym_closure_expression] = STATE(1957), + [sym_closure_parameters] = STATE(235), + [sym_label] = STATE(4110), + [sym_break_expression] = STATE(1957), + [sym_continue_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_await_expression] = STATE(1957), + [sym_field_expression] = STATE(1898), + [sym_unsafe_block] = STATE(1957), + [sym_async_block] = STATE(1957), + [sym_gen_block] = STATE(1957), + [sym_try_block] = STATE(1957), + [sym_block] = STATE(1957), + [sym__literal] = STATE(1957), + [sym_string_literal] = STATE(1932), + [sym_raw_string_literal] = STATE(1932), + [sym_boolean_literal] = STATE(1932), + [sym_line_comment] = STATE(301), + [sym_block_comment] = STATE(301), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_LBRACK] = ACTIONS(513), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(933), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(933), + [anon_sym_BANG] = ACTIONS(933), + [anon_sym_AMP] = ACTIONS(935), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1053), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), }, - [311] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1740), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(311), - [sym_block_comment] = STATE(311), + [302] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2077), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(302), + [sym_block_comment] = STATE(302), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -52251,215 +52606,215 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [312] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1511), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(312), - [sym_block_comment] = STATE(312), - [sym_identifier] = ACTIONS(339), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [303] = { + [sym_bracketed_type] = STATE(4005), + [sym_generic_function] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3402), + [sym__expression_except_range] = STATE(1901), + [sym__expression] = STATE(2047), + [sym_macro_invocation] = STATE(1963), + [sym_scoped_identifier] = STATE(1832), + [sym_scoped_type_identifier_in_expression_position] = STATE(3592), + [sym_range_expression] = STATE(1960), + [sym_unary_expression] = STATE(1957), + [sym_try_expression] = STATE(1957), + [sym_reference_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_assignment_expression] = STATE(1957), + [sym_compound_assignment_expr] = STATE(1957), + [sym_type_cast_expression] = STATE(1957), + [sym_return_expression] = STATE(1957), + [sym_yield_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_array_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_tuple_expression] = STATE(1957), + [sym_unit_expression] = STATE(1957), + [sym_struct_expression] = STATE(1957), + [sym_if_expression] = STATE(1957), + [sym_match_expression] = STATE(1957), + [sym_while_expression] = STATE(1957), + [sym_loop_expression] = STATE(1957), + [sym_for_expression] = STATE(1957), + [sym_const_block] = STATE(1957), + [sym_closure_expression] = STATE(1957), + [sym_closure_parameters] = STATE(235), + [sym_label] = STATE(4110), + [sym_break_expression] = STATE(1957), + [sym_continue_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_await_expression] = STATE(1957), + [sym_field_expression] = STATE(1898), + [sym_unsafe_block] = STATE(1957), + [sym_async_block] = STATE(1957), + [sym_gen_block] = STATE(1957), + [sym_try_block] = STATE(1957), + [sym_block] = STATE(1957), + [sym__literal] = STATE(1957), + [sym_string_literal] = STATE(1932), + [sym_raw_string_literal] = STATE(1932), + [sym_boolean_literal] = STATE(1932), + [sym_line_comment] = STATE(303), + [sym_block_comment] = STATE(303), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_LBRACK] = ACTIONS(513), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(933), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(933), + [anon_sym_BANG] = ACTIONS(933), + [anon_sym_AMP] = ACTIONS(935), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1201), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), }, - [313] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1402), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(313), - [sym_block_comment] = STATE(313), - [sym_identifier] = ACTIONS(467), + [304] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3303), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1703), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1794), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(304), + [sym_block_comment] = STATE(304), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(1191), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(1191), + [anon_sym_BANG] = ACTIONS(1191), + [anon_sym_AMP] = ACTIONS(1193), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1053), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(1195), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(477), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -52468,63 +52823,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [314] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1755), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(314), - [sym_block_comment] = STATE(314), + [305] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2160), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(305), + [sym_block_comment] = STATE(305), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -52587,173 +52942,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [315] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1702), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(246), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(315), - [sym_block_comment] = STATE(315), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1067), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1069), + [306] = { + [sym_bracketed_type] = STATE(4005), + [sym_generic_function] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3402), + [sym__expression_except_range] = STATE(1901), + [sym__expression] = STATE(2048), + [sym_macro_invocation] = STATE(1963), + [sym_scoped_identifier] = STATE(1832), + [sym_scoped_type_identifier_in_expression_position] = STATE(3592), + [sym_range_expression] = STATE(1960), + [sym_unary_expression] = STATE(1957), + [sym_try_expression] = STATE(1957), + [sym_reference_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_assignment_expression] = STATE(1957), + [sym_compound_assignment_expr] = STATE(1957), + [sym_type_cast_expression] = STATE(1957), + [sym_return_expression] = STATE(1957), + [sym_yield_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_array_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_tuple_expression] = STATE(1957), + [sym_unit_expression] = STATE(1957), + [sym_struct_expression] = STATE(1957), + [sym_if_expression] = STATE(1957), + [sym_match_expression] = STATE(1957), + [sym_while_expression] = STATE(1957), + [sym_loop_expression] = STATE(1957), + [sym_for_expression] = STATE(1957), + [sym_const_block] = STATE(1957), + [sym_closure_expression] = STATE(1957), + [sym_closure_parameters] = STATE(235), + [sym_label] = STATE(4110), + [sym_break_expression] = STATE(1957), + [sym_continue_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_await_expression] = STATE(1957), + [sym_field_expression] = STATE(1898), + [sym_unsafe_block] = STATE(1957), + [sym_async_block] = STATE(1957), + [sym_gen_block] = STATE(1957), + [sym_try_block] = STATE(1957), + [sym_block] = STATE(1957), + [sym__literal] = STATE(1957), + [sym_string_literal] = STATE(1932), + [sym_raw_string_literal] = STATE(1932), + [sym_boolean_literal] = STATE(1932), + [sym_line_comment] = STATE(306), + [sym_block_comment] = STATE(306), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_LBRACK] = ACTIONS(513), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(933), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(933), + [anon_sym_BANG] = ACTIONS(933), + [anon_sym_AMP] = ACTIONS(935), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1227), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), }, - [316] = { - [sym_bracketed_type] = STATE(3529), - [sym_generic_function] = STATE(1664), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1626), - [sym__expression] = STATE(1866), - [sym_macro_invocation] = STATE(1671), - [sym_scoped_identifier] = STATE(1575), - [sym_scoped_type_identifier_in_expression_position] = STATE(3163), - [sym_range_expression] = STATE(1666), - [sym_unary_expression] = STATE(1664), - [sym_try_expression] = STATE(1664), - [sym_reference_expression] = STATE(1664), - [sym_binary_expression] = STATE(1664), - [sym_assignment_expression] = STATE(1664), - [sym_compound_assignment_expr] = STATE(1664), - [sym_type_cast_expression] = STATE(1664), - [sym_return_expression] = STATE(1664), - [sym_yield_expression] = STATE(1664), - [sym_call_expression] = STATE(1664), - [sym_array_expression] = STATE(1664), - [sym_parenthesized_expression] = STATE(1664), - [sym_tuple_expression] = STATE(1664), - [sym_unit_expression] = STATE(1664), - [sym_struct_expression] = STATE(1664), - [sym_if_expression] = STATE(1664), - [sym_match_expression] = STATE(1664), - [sym_while_expression] = STATE(1664), - [sym_loop_expression] = STATE(1664), - [sym_for_expression] = STATE(1664), - [sym_const_block] = STATE(1664), - [sym_closure_expression] = STATE(1664), - [sym_closure_parameters] = STATE(232), - [sym_label] = STATE(3614), - [sym_break_expression] = STATE(1664), - [sym_continue_expression] = STATE(1664), - [sym_index_expression] = STATE(1664), - [sym_await_expression] = STATE(1664), - [sym_field_expression] = STATE(1597), - [sym_unsafe_block] = STATE(1664), - [sym_async_block] = STATE(1664), - [sym_gen_block] = STATE(1664), - [sym_try_block] = STATE(1664), - [sym_block] = STATE(1664), - [sym__literal] = STATE(1664), - [sym_string_literal] = STATE(1786), - [sym_raw_string_literal] = STATE(1786), - [sym_boolean_literal] = STATE(1786), - [sym_line_comment] = STATE(316), - [sym_block_comment] = STATE(316), + [307] = { + [sym_bracketed_type] = STATE(4005), + [sym_generic_function] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3402), + [sym__expression_except_range] = STATE(1901), + [sym__expression] = STATE(2062), + [sym_macro_invocation] = STATE(1963), + [sym_scoped_identifier] = STATE(1832), + [sym_scoped_type_identifier_in_expression_position] = STATE(3592), + [sym_range_expression] = STATE(1960), + [sym_unary_expression] = STATE(1957), + [sym_try_expression] = STATE(1957), + [sym_reference_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_assignment_expression] = STATE(1957), + [sym_compound_assignment_expr] = STATE(1957), + [sym_type_cast_expression] = STATE(1957), + [sym_return_expression] = STATE(1957), + [sym_yield_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_array_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_tuple_expression] = STATE(1957), + [sym_unit_expression] = STATE(1957), + [sym_struct_expression] = STATE(1957), + [sym_if_expression] = STATE(1957), + [sym_match_expression] = STATE(1957), + [sym_while_expression] = STATE(1957), + [sym_loop_expression] = STATE(1957), + [sym_for_expression] = STATE(1957), + [sym_const_block] = STATE(1957), + [sym_closure_expression] = STATE(1957), + [sym_closure_parameters] = STATE(235), + [sym_label] = STATE(4110), + [sym_break_expression] = STATE(1957), + [sym_continue_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_await_expression] = STATE(1957), + [sym_field_expression] = STATE(1898), + [sym_unsafe_block] = STATE(1957), + [sym_async_block] = STATE(1957), + [sym_gen_block] = STATE(1957), + [sym_try_block] = STATE(1957), + [sym_block] = STATE(1957), + [sym__literal] = STATE(1957), + [sym_string_literal] = STATE(1932), + [sym_raw_string_literal] = STATE(1932), + [sym_boolean_literal] = STATE(1932), + [sym_line_comment] = STATE(307), + [sym_block_comment] = STATE(307), [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_LBRACK] = ACTIONS(513), [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1015), + [anon_sym_STAR] = ACTIONS(933), [anon_sym_u8] = ACTIONS(411), [anon_sym_i8] = ACTIONS(411), [anon_sym_u16] = ACTIONS(411), @@ -52771,12 +53126,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(411), [anon_sym_str] = ACTIONS(411), [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_BANG] = ACTIONS(1015), - [anon_sym_AMP] = ACTIONS(1017), + [anon_sym_DASH] = ACTIONS(933), + [anon_sym_BANG] = ACTIONS(933), + [anon_sym_AMP] = ACTIONS(935), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1019), + [anon_sym_DOT_DOT] = ACTIONS(1179), [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(417), @@ -52811,103 +53166,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(463), [sym_float_literal] = ACTIONS(451), }, - [317] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1402), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(317), - [sym_block_comment] = STATE(317), - [sym_identifier] = ACTIONS(339), + [308] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3303), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1831), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1794), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(308), + [sym_block_comment] = STATE(308), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(903), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_BANG] = ACTIONS(903), + [anon_sym_AMP] = ACTIONS(905), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1201), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(907), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(495), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_continue] = ACTIONS(497), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(499), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), + [anon_sym_return] = ACTIONS(501), + [anon_sym_static] = ACTIONS(503), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(505), + [anon_sym_move] = ACTIONS(507), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -52916,287 +53271,735 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [318] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1581), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(318), - [sym_block_comment] = STATE(318), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), + [309] = { + [sym_bracketed_type] = STATE(4005), + [sym_generic_function] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3402), + [sym__expression_except_range] = STATE(1901), + [sym__expression] = STATE(1905), + [sym_macro_invocation] = STATE(1963), + [sym_scoped_identifier] = STATE(1832), + [sym_scoped_type_identifier_in_expression_position] = STATE(3592), + [sym_range_expression] = STATE(1960), + [sym_unary_expression] = STATE(1957), + [sym_try_expression] = STATE(1957), + [sym_reference_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_assignment_expression] = STATE(1957), + [sym_compound_assignment_expr] = STATE(1957), + [sym_type_cast_expression] = STATE(1957), + [sym_return_expression] = STATE(1957), + [sym_yield_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_array_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_tuple_expression] = STATE(1957), + [sym_unit_expression] = STATE(1957), + [sym_struct_expression] = STATE(1957), + [sym_if_expression] = STATE(1957), + [sym_match_expression] = STATE(1957), + [sym_while_expression] = STATE(1957), + [sym_loop_expression] = STATE(1957), + [sym_for_expression] = STATE(1957), + [sym_const_block] = STATE(1957), + [sym_closure_expression] = STATE(1957), + [sym_closure_parameters] = STATE(235), + [sym_label] = STATE(4110), + [sym_break_expression] = STATE(1957), + [sym_continue_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_await_expression] = STATE(1957), + [sym_field_expression] = STATE(1898), + [sym_unsafe_block] = STATE(1957), + [sym_async_block] = STATE(1957), + [sym_gen_block] = STATE(1957), + [sym_try_block] = STATE(1957), + [sym_block] = STATE(1957), + [sym__literal] = STATE(1957), + [sym_string_literal] = STATE(1932), + [sym_raw_string_literal] = STATE(1932), + [sym_boolean_literal] = STATE(1932), + [sym_line_comment] = STATE(309), + [sym_block_comment] = STATE(309), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_LBRACK] = ACTIONS(513), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(933), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(933), + [anon_sym_BANG] = ACTIONS(933), + [anon_sym_AMP] = ACTIONS(935), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(963), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), }, - [319] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1431), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(246), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(319), - [sym_block_comment] = STATE(319), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1067), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1069), + [310] = { + [sym_bracketed_type] = STATE(4005), + [sym_generic_function] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3402), + [sym__expression_except_range] = STATE(1901), + [sym__expression] = STATE(2068), + [sym_macro_invocation] = STATE(1963), + [sym_scoped_identifier] = STATE(1832), + [sym_scoped_type_identifier_in_expression_position] = STATE(3592), + [sym_range_expression] = STATE(1960), + [sym_unary_expression] = STATE(1957), + [sym_try_expression] = STATE(1957), + [sym_reference_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_assignment_expression] = STATE(1957), + [sym_compound_assignment_expr] = STATE(1957), + [sym_type_cast_expression] = STATE(1957), + [sym_return_expression] = STATE(1957), + [sym_yield_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_array_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_tuple_expression] = STATE(1957), + [sym_unit_expression] = STATE(1957), + [sym_struct_expression] = STATE(1957), + [sym_if_expression] = STATE(1957), + [sym_match_expression] = STATE(1957), + [sym_while_expression] = STATE(1957), + [sym_loop_expression] = STATE(1957), + [sym_for_expression] = STATE(1957), + [sym_const_block] = STATE(1957), + [sym_closure_expression] = STATE(1957), + [sym_closure_parameters] = STATE(235), + [sym_label] = STATE(4110), + [sym_break_expression] = STATE(1957), + [sym_continue_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_await_expression] = STATE(1957), + [sym_field_expression] = STATE(1898), + [sym_unsafe_block] = STATE(1957), + [sym_async_block] = STATE(1957), + [sym_gen_block] = STATE(1957), + [sym_try_block] = STATE(1957), + [sym_block] = STATE(1957), + [sym__literal] = STATE(1957), + [sym_string_literal] = STATE(1932), + [sym_raw_string_literal] = STATE(1932), + [sym_boolean_literal] = STATE(1932), + [sym_line_comment] = STATE(310), + [sym_block_comment] = STATE(310), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_LBRACK] = ACTIONS(513), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(933), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(933), + [anon_sym_BANG] = ACTIONS(933), + [anon_sym_AMP] = ACTIONS(935), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), }, - [320] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1873), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(320), - [sym_block_comment] = STATE(320), + [311] = { + [sym_bracketed_type] = STATE(4005), + [sym_generic_function] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3402), + [sym__expression_except_range] = STATE(1901), + [sym__expression] = STATE(2074), + [sym_macro_invocation] = STATE(1963), + [sym_scoped_identifier] = STATE(1832), + [sym_scoped_type_identifier_in_expression_position] = STATE(3592), + [sym_range_expression] = STATE(1960), + [sym_unary_expression] = STATE(1957), + [sym_try_expression] = STATE(1957), + [sym_reference_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_assignment_expression] = STATE(1957), + [sym_compound_assignment_expr] = STATE(1957), + [sym_type_cast_expression] = STATE(1957), + [sym_return_expression] = STATE(1957), + [sym_yield_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_array_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_tuple_expression] = STATE(1957), + [sym_unit_expression] = STATE(1957), + [sym_struct_expression] = STATE(1957), + [sym_if_expression] = STATE(1957), + [sym_match_expression] = STATE(1957), + [sym_while_expression] = STATE(1957), + [sym_loop_expression] = STATE(1957), + [sym_for_expression] = STATE(1957), + [sym_const_block] = STATE(1957), + [sym_closure_expression] = STATE(1957), + [sym_closure_parameters] = STATE(235), + [sym_label] = STATE(4110), + [sym_break_expression] = STATE(1957), + [sym_continue_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_await_expression] = STATE(1957), + [sym_field_expression] = STATE(1898), + [sym_unsafe_block] = STATE(1957), + [sym_async_block] = STATE(1957), + [sym_gen_block] = STATE(1957), + [sym_try_block] = STATE(1957), + [sym_block] = STATE(1957), + [sym__literal] = STATE(1957), + [sym_string_literal] = STATE(1932), + [sym_raw_string_literal] = STATE(1932), + [sym_boolean_literal] = STATE(1932), + [sym_line_comment] = STATE(311), + [sym_block_comment] = STATE(311), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_LBRACK] = ACTIONS(513), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(933), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(933), + [anon_sym_BANG] = ACTIONS(933), + [anon_sym_AMP] = ACTIONS(935), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [312] = { + [sym_bracketed_type] = STATE(4005), + [sym_generic_function] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3402), + [sym__expression_except_range] = STATE(1901), + [sym__expression] = STATE(2075), + [sym_macro_invocation] = STATE(1963), + [sym_scoped_identifier] = STATE(1832), + [sym_scoped_type_identifier_in_expression_position] = STATE(3592), + [sym_range_expression] = STATE(1960), + [sym_unary_expression] = STATE(1957), + [sym_try_expression] = STATE(1957), + [sym_reference_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_assignment_expression] = STATE(1957), + [sym_compound_assignment_expr] = STATE(1957), + [sym_type_cast_expression] = STATE(1957), + [sym_return_expression] = STATE(1957), + [sym_yield_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_array_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_tuple_expression] = STATE(1957), + [sym_unit_expression] = STATE(1957), + [sym_struct_expression] = STATE(1957), + [sym_if_expression] = STATE(1957), + [sym_match_expression] = STATE(1957), + [sym_while_expression] = STATE(1957), + [sym_loop_expression] = STATE(1957), + [sym_for_expression] = STATE(1957), + [sym_const_block] = STATE(1957), + [sym_closure_expression] = STATE(1957), + [sym_closure_parameters] = STATE(235), + [sym_label] = STATE(4110), + [sym_break_expression] = STATE(1957), + [sym_continue_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_await_expression] = STATE(1957), + [sym_field_expression] = STATE(1898), + [sym_unsafe_block] = STATE(1957), + [sym_async_block] = STATE(1957), + [sym_gen_block] = STATE(1957), + [sym_try_block] = STATE(1957), + [sym_block] = STATE(1957), + [sym__literal] = STATE(1957), + [sym_string_literal] = STATE(1932), + [sym_raw_string_literal] = STATE(1932), + [sym_boolean_literal] = STATE(1932), + [sym_line_comment] = STATE(312), + [sym_block_comment] = STATE(312), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_LBRACK] = ACTIONS(513), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(933), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(933), + [anon_sym_BANG] = ACTIONS(933), + [anon_sym_AMP] = ACTIONS(935), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [313] = { + [sym_bracketed_type] = STATE(4005), + [sym_generic_function] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3402), + [sym__expression_except_range] = STATE(1901), + [sym__expression] = STATE(2080), + [sym_macro_invocation] = STATE(1963), + [sym_scoped_identifier] = STATE(1832), + [sym_scoped_type_identifier_in_expression_position] = STATE(3592), + [sym_range_expression] = STATE(1960), + [sym_unary_expression] = STATE(1957), + [sym_try_expression] = STATE(1957), + [sym_reference_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_assignment_expression] = STATE(1957), + [sym_compound_assignment_expr] = STATE(1957), + [sym_type_cast_expression] = STATE(1957), + [sym_return_expression] = STATE(1957), + [sym_yield_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_array_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_tuple_expression] = STATE(1957), + [sym_unit_expression] = STATE(1957), + [sym_struct_expression] = STATE(1957), + [sym_if_expression] = STATE(1957), + [sym_match_expression] = STATE(1957), + [sym_while_expression] = STATE(1957), + [sym_loop_expression] = STATE(1957), + [sym_for_expression] = STATE(1957), + [sym_const_block] = STATE(1957), + [sym_closure_expression] = STATE(1957), + [sym_closure_parameters] = STATE(235), + [sym_label] = STATE(4110), + [sym_break_expression] = STATE(1957), + [sym_continue_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_await_expression] = STATE(1957), + [sym_field_expression] = STATE(1898), + [sym_unsafe_block] = STATE(1957), + [sym_async_block] = STATE(1957), + [sym_gen_block] = STATE(1957), + [sym_try_block] = STATE(1957), + [sym_block] = STATE(1957), + [sym__literal] = STATE(1957), + [sym_string_literal] = STATE(1932), + [sym_raw_string_literal] = STATE(1932), + [sym_boolean_literal] = STATE(1932), + [sym_line_comment] = STATE(313), + [sym_block_comment] = STATE(313), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_LBRACK] = ACTIONS(513), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(933), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(933), + [anon_sym_BANG] = ACTIONS(933), + [anon_sym_AMP] = ACTIONS(935), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [314] = { + [sym_bracketed_type] = STATE(4005), + [sym_generic_function] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3402), + [sym__expression_except_range] = STATE(1901), + [sym__expression] = STATE(2109), + [sym_macro_invocation] = STATE(1963), + [sym_scoped_identifier] = STATE(1832), + [sym_scoped_type_identifier_in_expression_position] = STATE(3592), + [sym_range_expression] = STATE(1960), + [sym_unary_expression] = STATE(1957), + [sym_try_expression] = STATE(1957), + [sym_reference_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_assignment_expression] = STATE(1957), + [sym_compound_assignment_expr] = STATE(1957), + [sym_type_cast_expression] = STATE(1957), + [sym_return_expression] = STATE(1957), + [sym_yield_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_array_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_tuple_expression] = STATE(1957), + [sym_unit_expression] = STATE(1957), + [sym_struct_expression] = STATE(1957), + [sym_if_expression] = STATE(1957), + [sym_match_expression] = STATE(1957), + [sym_while_expression] = STATE(1957), + [sym_loop_expression] = STATE(1957), + [sym_for_expression] = STATE(1957), + [sym_const_block] = STATE(1957), + [sym_closure_expression] = STATE(1957), + [sym_closure_parameters] = STATE(235), + [sym_label] = STATE(4110), + [sym_break_expression] = STATE(1957), + [sym_continue_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_await_expression] = STATE(1957), + [sym_field_expression] = STATE(1898), + [sym_unsafe_block] = STATE(1957), + [sym_async_block] = STATE(1957), + [sym_gen_block] = STATE(1957), + [sym_try_block] = STATE(1957), + [sym_block] = STATE(1957), + [sym__literal] = STATE(1957), + [sym_string_literal] = STATE(1932), + [sym_raw_string_literal] = STATE(1932), + [sym_boolean_literal] = STATE(1932), + [sym_line_comment] = STATE(314), + [sym_block_comment] = STATE(314), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_LBRACK] = ACTIONS(513), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(933), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(933), + [anon_sym_BANG] = ACTIONS(933), + [anon_sym_AMP] = ACTIONS(935), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [315] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2157), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(315), + [sym_block_comment] = STATE(315), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -53259,103 +54062,327 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [321] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1708), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(246), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(321), - [sym_block_comment] = STATE(321), - [sym_identifier] = ACTIONS(467), + [316] = { + [sym_bracketed_type] = STATE(4005), + [sym_generic_function] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3402), + [sym__expression_except_range] = STATE(1901), + [sym__expression] = STATE(2115), + [sym_macro_invocation] = STATE(1963), + [sym_scoped_identifier] = STATE(1832), + [sym_scoped_type_identifier_in_expression_position] = STATE(3592), + [sym_range_expression] = STATE(1960), + [sym_unary_expression] = STATE(1957), + [sym_try_expression] = STATE(1957), + [sym_reference_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_assignment_expression] = STATE(1957), + [sym_compound_assignment_expr] = STATE(1957), + [sym_type_cast_expression] = STATE(1957), + [sym_return_expression] = STATE(1957), + [sym_yield_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_array_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_tuple_expression] = STATE(1957), + [sym_unit_expression] = STATE(1957), + [sym_struct_expression] = STATE(1957), + [sym_if_expression] = STATE(1957), + [sym_match_expression] = STATE(1957), + [sym_while_expression] = STATE(1957), + [sym_loop_expression] = STATE(1957), + [sym_for_expression] = STATE(1957), + [sym_const_block] = STATE(1957), + [sym_closure_expression] = STATE(1957), + [sym_closure_parameters] = STATE(235), + [sym_label] = STATE(4110), + [sym_break_expression] = STATE(1957), + [sym_continue_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_await_expression] = STATE(1957), + [sym_field_expression] = STATE(1898), + [sym_unsafe_block] = STATE(1957), + [sym_async_block] = STATE(1957), + [sym_gen_block] = STATE(1957), + [sym_try_block] = STATE(1957), + [sym_block] = STATE(1957), + [sym__literal] = STATE(1957), + [sym_string_literal] = STATE(1932), + [sym_raw_string_literal] = STATE(1932), + [sym_boolean_literal] = STATE(1932), + [sym_line_comment] = STATE(316), + [sym_block_comment] = STATE(316), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_LBRACK] = ACTIONS(513), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(933), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(933), + [anon_sym_BANG] = ACTIONS(933), + [anon_sym_AMP] = ACTIONS(935), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [317] = { + [sym_bracketed_type] = STATE(4005), + [sym_generic_function] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3402), + [sym__expression_except_range] = STATE(1901), + [sym__expression] = STATE(2111), + [sym_macro_invocation] = STATE(1963), + [sym_scoped_identifier] = STATE(1832), + [sym_scoped_type_identifier_in_expression_position] = STATE(3592), + [sym_range_expression] = STATE(1960), + [sym_unary_expression] = STATE(1957), + [sym_try_expression] = STATE(1957), + [sym_reference_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_assignment_expression] = STATE(1957), + [sym_compound_assignment_expr] = STATE(1957), + [sym_type_cast_expression] = STATE(1957), + [sym_return_expression] = STATE(1957), + [sym_yield_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_array_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_tuple_expression] = STATE(1957), + [sym_unit_expression] = STATE(1957), + [sym_struct_expression] = STATE(1957), + [sym_if_expression] = STATE(1957), + [sym_match_expression] = STATE(1957), + [sym_while_expression] = STATE(1957), + [sym_loop_expression] = STATE(1957), + [sym_for_expression] = STATE(1957), + [sym_const_block] = STATE(1957), + [sym_closure_expression] = STATE(1957), + [sym_closure_parameters] = STATE(235), + [sym_label] = STATE(4110), + [sym_break_expression] = STATE(1957), + [sym_continue_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_await_expression] = STATE(1957), + [sym_field_expression] = STATE(1898), + [sym_unsafe_block] = STATE(1957), + [sym_async_block] = STATE(1957), + [sym_gen_block] = STATE(1957), + [sym_try_block] = STATE(1957), + [sym_block] = STATE(1957), + [sym__literal] = STATE(1957), + [sym_string_literal] = STATE(1932), + [sym_raw_string_literal] = STATE(1932), + [sym_boolean_literal] = STATE(1932), + [sym_line_comment] = STATE(317), + [sym_block_comment] = STATE(317), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_LBRACK] = ACTIONS(513), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(933), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(933), + [anon_sym_BANG] = ACTIONS(933), + [anon_sym_AMP] = ACTIONS(935), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), + }, + [318] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2073), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(318), + [sym_block_comment] = STATE(318), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1067), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -53364,110 +54391,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [322] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1377), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(246), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(322), - [sym_block_comment] = STATE(322), - [sym_identifier] = ACTIONS(467), + [319] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3303), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1815), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1794), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(319), + [sym_block_comment] = STATE(319), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1067), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_STAR] = ACTIONS(903), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_BANG] = ACTIONS(903), + [anon_sym_AMP] = ACTIONS(905), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(907), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), + [anon_sym_break] = ACTIONS(495), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(497), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(499), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(501), + [anon_sym_static] = ACTIONS(503), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(505), + [anon_sym_move] = ACTIONS(507), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -53476,111 +54503,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [323] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1709), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(246), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(323), - [sym_block_comment] = STATE(323), - [sym_identifier] = ACTIONS(467), + [320] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2146), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(476), + [sym_match_expression] = STATE(476), + [sym_while_expression] = STATE(476), + [sym_loop_expression] = STATE(476), + [sym_for_expression] = STATE(476), + [sym_const_block] = STATE(476), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4104), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(476), + [sym_async_block] = STATE(476), + [sym_gen_block] = STATE(476), + [sym_try_block] = STATE(476), + [sym_block] = STATE(476), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(320), + [sym_block_comment] = STATE(320), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1067), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_LBRACE] = ACTIONS(1227), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), - [anon_sym_const] = ACTIONS(353), + [anon_sym_async] = ACTIONS(1229), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(1231), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), - [anon_sym_try] = ACTIONS(373), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(1233), + [anon_sym_gen] = ACTIONS(1235), + [anon_sym_if] = ACTIONS(1237), + [anon_sym_loop] = ACTIONS(1239), + [anon_sym_match] = ACTIONS(1241), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(1243), + [anon_sym_while] = ACTIONS(1245), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(1247), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -53588,110 +54615,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [324] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1710), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(246), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(324), - [sym_block_comment] = STATE(324), - [sym_identifier] = ACTIONS(467), + [321] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3303), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1821), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1794), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(321), + [sym_block_comment] = STATE(321), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1067), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_STAR] = ACTIONS(903), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_BANG] = ACTIONS(903), + [anon_sym_AMP] = ACTIONS(905), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(907), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), + [anon_sym_break] = ACTIONS(495), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(497), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(499), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(501), + [anon_sym_static] = ACTIONS(503), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(505), + [anon_sym_move] = ACTIONS(507), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -53700,110 +54727,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [325] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1711), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(246), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(325), - [sym_block_comment] = STATE(325), - [sym_identifier] = ACTIONS(467), + [322] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1926), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(322), + [sym_block_comment] = STATE(322), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1067), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -53812,110 +54839,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [326] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1596), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(326), - [sym_block_comment] = STATE(326), - [sym_identifier] = ACTIONS(467), + [323] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3303), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1839), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1794), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(323), + [sym_block_comment] = STATE(323), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(903), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_BANG] = ACTIONS(903), + [anon_sym_AMP] = ACTIONS(905), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1053), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(907), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(495), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(497), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(499), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(501), + [anon_sym_static] = ACTIONS(503), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(505), + [anon_sym_move] = ACTIONS(507), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -53924,222 +54951,222 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [327] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1713), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(246), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(327), - [sym_block_comment] = STATE(327), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1067), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1069), + [324] = { + [sym_bracketed_type] = STATE(4005), + [sym_generic_function] = STATE(1957), + [sym_generic_type_with_turbofish] = STATE(3402), + [sym__expression_except_range] = STATE(1901), + [sym__expression] = STATE(2036), + [sym_macro_invocation] = STATE(1963), + [sym_scoped_identifier] = STATE(1832), + [sym_scoped_type_identifier_in_expression_position] = STATE(3592), + [sym_range_expression] = STATE(1960), + [sym_unary_expression] = STATE(1957), + [sym_try_expression] = STATE(1957), + [sym_reference_expression] = STATE(1957), + [sym_binary_expression] = STATE(1957), + [sym_assignment_expression] = STATE(1957), + [sym_compound_assignment_expr] = STATE(1957), + [sym_type_cast_expression] = STATE(1957), + [sym_return_expression] = STATE(1957), + [sym_yield_expression] = STATE(1957), + [sym_call_expression] = STATE(1957), + [sym_array_expression] = STATE(1957), + [sym_parenthesized_expression] = STATE(1957), + [sym_tuple_expression] = STATE(1957), + [sym_unit_expression] = STATE(1957), + [sym_struct_expression] = STATE(1957), + [sym_if_expression] = STATE(1957), + [sym_match_expression] = STATE(1957), + [sym_while_expression] = STATE(1957), + [sym_loop_expression] = STATE(1957), + [sym_for_expression] = STATE(1957), + [sym_const_block] = STATE(1957), + [sym_closure_expression] = STATE(1957), + [sym_closure_parameters] = STATE(235), + [sym_label] = STATE(4110), + [sym_break_expression] = STATE(1957), + [sym_continue_expression] = STATE(1957), + [sym_index_expression] = STATE(1957), + [sym_await_expression] = STATE(1957), + [sym_field_expression] = STATE(1898), + [sym_unsafe_block] = STATE(1957), + [sym_async_block] = STATE(1957), + [sym_gen_block] = STATE(1957), + [sym_try_block] = STATE(1957), + [sym_block] = STATE(1957), + [sym__literal] = STATE(1957), + [sym_string_literal] = STATE(1932), + [sym_raw_string_literal] = STATE(1932), + [sym_boolean_literal] = STATE(1932), + [sym_line_comment] = STATE(324), + [sym_block_comment] = STATE(324), + [sym_identifier] = ACTIONS(405), + [anon_sym_LPAREN] = ACTIONS(509), + [anon_sym_LBRACK] = ACTIONS(513), + [anon_sym_LBRACE] = ACTIONS(407), + [anon_sym_STAR] = ACTIONS(933), + [anon_sym_u8] = ACTIONS(411), + [anon_sym_i8] = ACTIONS(411), + [anon_sym_u16] = ACTIONS(411), + [anon_sym_i16] = ACTIONS(411), + [anon_sym_u32] = ACTIONS(411), + [anon_sym_i32] = ACTIONS(411), + [anon_sym_u64] = ACTIONS(411), + [anon_sym_i64] = ACTIONS(411), + [anon_sym_u128] = ACTIONS(411), + [anon_sym_i128] = ACTIONS(411), + [anon_sym_isize] = ACTIONS(411), + [anon_sym_usize] = ACTIONS(411), + [anon_sym_f32] = ACTIONS(411), + [anon_sym_f64] = ACTIONS(411), + [anon_sym_bool] = ACTIONS(411), + [anon_sym_str] = ACTIONS(411), + [anon_sym_char] = ACTIONS(411), + [anon_sym_DASH] = ACTIONS(933), + [anon_sym_BANG] = ACTIONS(933), + [anon_sym_AMP] = ACTIONS(935), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(1179), + [anon_sym_COLON_COLON] = ACTIONS(415), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), + [anon_sym_async] = ACTIONS(417), + [anon_sym_break] = ACTIONS(419), + [anon_sym_const] = ACTIONS(421), + [anon_sym_continue] = ACTIONS(423), + [anon_sym_default] = ACTIONS(425), + [anon_sym_for] = ACTIONS(427), + [anon_sym_gen] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_loop] = ACTIONS(433), + [anon_sym_match] = ACTIONS(435), + [anon_sym_return] = ACTIONS(437), + [anon_sym_static] = ACTIONS(439), + [anon_sym_union] = ACTIONS(425), + [anon_sym_unsafe] = ACTIONS(441), + [anon_sym_while] = ACTIONS(443), + [anon_sym_yield] = ACTIONS(445), + [anon_sym_move] = ACTIONS(447), + [anon_sym_try] = ACTIONS(449), + [sym_integer_literal] = ACTIONS(451), + [aux_sym_string_literal_token1] = ACTIONS(453), + [sym_char_literal] = ACTIONS(451), + [anon_sym_true] = ACTIONS(455), + [anon_sym_false] = ACTIONS(455), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), + [sym_self] = ACTIONS(457), + [sym_super] = ACTIONS(459), + [sym_crate] = ACTIONS(459), + [sym_metavariable] = ACTIONS(461), + [sym__raw_string_literal_start] = ACTIONS(463), + [sym_float_literal] = ACTIONS(451), }, - [328] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1714), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(246), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(328), - [sym_block_comment] = STATE(328), - [sym_identifier] = ACTIONS(467), + [325] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2053), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(325), + [sym_block_comment] = STATE(325), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1067), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -54148,110 +55175,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [329] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1715), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(246), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(329), - [sym_block_comment] = STATE(329), - [sym_identifier] = ACTIONS(467), + [326] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1647), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(326), + [sym_block_comment] = STATE(326), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1067), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(1057), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -54260,110 +55287,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [330] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1716), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(246), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(330), - [sym_block_comment] = STATE(330), - [sym_identifier] = ACTIONS(467), + [327] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3303), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1725), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1794), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(327), + [sym_block_comment] = STATE(327), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1067), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_STAR] = ACTIONS(903), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_BANG] = ACTIONS(903), + [anon_sym_AMP] = ACTIONS(905), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), + [anon_sym_break] = ACTIONS(495), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(497), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(499), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(501), + [anon_sym_static] = ACTIONS(503), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(505), + [anon_sym_move] = ACTIONS(507), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -54372,110 +55399,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [331] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1717), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(246), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(331), - [sym_block_comment] = STATE(331), - [sym_identifier] = ACTIONS(467), + [328] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2127), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(328), + [sym_block_comment] = STATE(328), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1067), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -54484,222 +55511,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [332] = { - [sym_else_clause] = STATE(375), - [sym_line_comment] = STATE(332), - [sym_block_comment] = STATE(332), - [ts_builtin_sym_end] = ACTIONS(1251), - [sym_identifier] = ACTIONS(1253), - [anon_sym_SEMI] = ACTIONS(1251), - [anon_sym_macro_rules_BANG] = ACTIONS(1251), - [anon_sym_LPAREN] = ACTIONS(1251), - [anon_sym_LBRACK] = ACTIONS(1251), - [anon_sym_LBRACE] = ACTIONS(1251), - [anon_sym_RBRACE] = ACTIONS(1251), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_QMARK] = ACTIONS(1251), - [anon_sym_u8] = ACTIONS(1253), - [anon_sym_i8] = ACTIONS(1253), - [anon_sym_u16] = ACTIONS(1253), - [anon_sym_i16] = ACTIONS(1253), - [anon_sym_u32] = ACTIONS(1253), - [anon_sym_i32] = ACTIONS(1253), - [anon_sym_u64] = ACTIONS(1253), - [anon_sym_i64] = ACTIONS(1253), - [anon_sym_u128] = ACTIONS(1253), - [anon_sym_i128] = ACTIONS(1253), - [anon_sym_isize] = ACTIONS(1253), - [anon_sym_usize] = ACTIONS(1253), - [anon_sym_f32] = ACTIONS(1253), - [anon_sym_f64] = ACTIONS(1253), - [anon_sym_bool] = ACTIONS(1253), - [anon_sym_str] = ACTIONS(1253), - [anon_sym_char] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(1253), - [anon_sym_PERCENT] = ACTIONS(1253), - [anon_sym_CARET] = ACTIONS(1253), - [anon_sym_BANG] = ACTIONS(1253), - [anon_sym_AMP] = ACTIONS(1253), - [anon_sym_PIPE] = ACTIONS(1253), - [anon_sym_AMP_AMP] = ACTIONS(1251), - [anon_sym_PIPE_PIPE] = ACTIONS(1251), - [anon_sym_LT_LT] = ACTIONS(1253), - [anon_sym_GT_GT] = ACTIONS(1253), - [anon_sym_PLUS_EQ] = ACTIONS(1251), - [anon_sym_DASH_EQ] = ACTIONS(1251), - [anon_sym_STAR_EQ] = ACTIONS(1251), - [anon_sym_SLASH_EQ] = ACTIONS(1251), - [anon_sym_PERCENT_EQ] = ACTIONS(1251), - [anon_sym_CARET_EQ] = ACTIONS(1251), - [anon_sym_AMP_EQ] = ACTIONS(1251), - [anon_sym_PIPE_EQ] = ACTIONS(1251), - [anon_sym_LT_LT_EQ] = ACTIONS(1251), - [anon_sym_GT_GT_EQ] = ACTIONS(1251), - [anon_sym_EQ] = ACTIONS(1253), - [anon_sym_EQ_EQ] = ACTIONS(1251), - [anon_sym_BANG_EQ] = ACTIONS(1251), - [anon_sym_GT] = ACTIONS(1253), - [anon_sym_LT] = ACTIONS(1253), - [anon_sym_GT_EQ] = ACTIONS(1251), - [anon_sym_LT_EQ] = ACTIONS(1251), - [anon_sym_DOT] = ACTIONS(1253), - [anon_sym_DOT_DOT] = ACTIONS(1253), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1251), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1251), - [anon_sym_COLON_COLON] = ACTIONS(1251), - [anon_sym_POUND] = ACTIONS(1251), - [anon_sym_SQUOTE] = ACTIONS(1253), - [anon_sym_as] = ACTIONS(1253), - [anon_sym_async] = ACTIONS(1253), - [anon_sym_break] = ACTIONS(1253), - [anon_sym_const] = ACTIONS(1253), - [anon_sym_continue] = ACTIONS(1253), - [anon_sym_default] = ACTIONS(1253), - [anon_sym_enum] = ACTIONS(1253), - [anon_sym_fn] = ACTIONS(1253), - [anon_sym_for] = ACTIONS(1253), - [anon_sym_gen] = ACTIONS(1253), - [anon_sym_if] = ACTIONS(1253), - [anon_sym_impl] = ACTIONS(1253), - [anon_sym_let] = ACTIONS(1253), - [anon_sym_loop] = ACTIONS(1253), - [anon_sym_match] = ACTIONS(1253), - [anon_sym_mod] = ACTIONS(1253), - [anon_sym_pub] = ACTIONS(1253), - [anon_sym_return] = ACTIONS(1253), - [anon_sym_static] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1253), - [anon_sym_trait] = ACTIONS(1253), - [anon_sym_type] = ACTIONS(1253), - [anon_sym_union] = ACTIONS(1253), - [anon_sym_unsafe] = ACTIONS(1253), - [anon_sym_use] = ACTIONS(1253), - [anon_sym_while] = ACTIONS(1253), - [anon_sym_extern] = ACTIONS(1253), - [anon_sym_else] = ACTIONS(1255), - [anon_sym_yield] = ACTIONS(1253), - [anon_sym_move] = ACTIONS(1253), - [anon_sym_try] = ACTIONS(1253), - [sym_integer_literal] = ACTIONS(1251), - [aux_sym_string_literal_token1] = ACTIONS(1251), - [sym_char_literal] = ACTIONS(1251), - [anon_sym_true] = ACTIONS(1253), - [anon_sym_false] = ACTIONS(1253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1253), - [sym_super] = ACTIONS(1253), - [sym_crate] = ACTIONS(1253), - [sym_metavariable] = ACTIONS(1251), - [sym__raw_string_literal_start] = ACTIONS(1251), - [sym_float_literal] = ACTIONS(1251), - }, - [333] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1595), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(333), - [sym_block_comment] = STATE(333), - [sym_identifier] = ACTIONS(467), + [329] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3303), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1956), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1794), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(329), + [sym_block_comment] = STATE(329), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(1191), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(1191), + [anon_sym_BANG] = ACTIONS(1191), + [anon_sym_AMP] = ACTIONS(1193), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(963), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(1249), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(477), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -54708,63 +55623,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [334] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1662), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(334), - [sym_block_comment] = STATE(334), + [330] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2139), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(330), + [sym_block_comment] = STATE(330), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -54827,103 +55742,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [335] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1402), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(246), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(335), - [sym_block_comment] = STATE(335), - [sym_identifier] = ACTIONS(467), + [331] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3303), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1840), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1794), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(331), + [sym_block_comment] = STATE(331), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1067), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_STAR] = ACTIONS(903), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_BANG] = ACTIONS(903), + [anon_sym_AMP] = ACTIONS(905), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1073), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(907), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), + [anon_sym_break] = ACTIONS(495), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(497), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(499), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(501), + [anon_sym_static] = ACTIONS(503), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(505), + [anon_sym_move] = ACTIONS(507), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -54932,63 +55847,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [336] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1678), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(336), - [sym_block_comment] = STATE(336), + [332] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2136), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(332), + [sym_block_comment] = STATE(332), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -55051,60 +55966,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [337] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1679), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(462), - [sym_match_expression] = STATE(462), - [sym_while_expression] = STATE(462), - [sym_loop_expression] = STATE(462), - [sym_for_expression] = STATE(462), - [sym_const_block] = STATE(462), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3608), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(462), - [sym_async_block] = STATE(462), - [sym_gen_block] = STATE(462), - [sym_try_block] = STATE(462), - [sym_block] = STATE(462), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(337), - [sym_block_comment] = STATE(337), + [333] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2121), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(333), + [sym_block_comment] = STATE(333), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(1229), + [anon_sym_LBRACE] = ACTIONS(343), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -55131,24 +56046,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(1231), + [anon_sym_async] = ACTIONS(351), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(1233), + [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(1235), - [anon_sym_gen] = ACTIONS(1237), - [anon_sym_if] = ACTIONS(1239), - [anon_sym_loop] = ACTIONS(1241), - [anon_sym_match] = ACTIONS(1243), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), [anon_sym_return] = ACTIONS(71), [anon_sym_static] = ACTIONS(367), [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(1245), - [anon_sym_while] = ACTIONS(1247), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(1249), + [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -55163,168 +56078,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [338] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1804), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(246), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(338), - [sym_block_comment] = STATE(338), - [sym_identifier] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1067), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1069), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1227), - [anon_sym_COLON_COLON] = ACTIONS(473), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), - [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), - [anon_sym_try] = ACTIONS(373), - [sym_integer_literal] = ACTIONS(97), - [aux_sym_string_literal_token1] = ACTIONS(99), - [sym_char_literal] = ACTIONS(97), - [anon_sym_true] = ACTIONS(101), - [anon_sym_false] = ACTIONS(101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), - [sym__raw_string_literal_start] = ACTIONS(117), - [sym_float_literal] = ACTIONS(97), - }, - [339] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1784), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(339), - [sym_block_comment] = STATE(339), + [334] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2152), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(334), + [sym_block_comment] = STATE(334), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -55387,56 +56190,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [340] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1874), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(340), - [sym_block_comment] = STATE(340), + [335] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3303), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1997), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1794), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(335), + [sym_block_comment] = STATE(335), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1191), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(1191), + [anon_sym_BANG] = ACTIONS(1191), + [anon_sym_AMP] = ACTIONS(1193), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1195), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(473), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(475), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(477), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(475), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [336] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2071), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(336), + [sym_block_comment] = STATE(336), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -55499,103 +56414,551 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, + [337] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3303), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1837), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1794), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(337), + [sym_block_comment] = STATE(337), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(903), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_BANG] = ACTIONS(903), + [anon_sym_AMP] = ACTIONS(905), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(907), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(495), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(497), + [anon_sym_default] = ACTIONS(475), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(499), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(501), + [anon_sym_static] = ACTIONS(503), + [anon_sym_union] = ACTIONS(475), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(505), + [anon_sym_move] = ACTIONS(507), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [338] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3303), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1725), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1794), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(338), + [sym_block_comment] = STATE(338), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1191), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(1191), + [anon_sym_BANG] = ACTIONS(1191), + [anon_sym_AMP] = ACTIONS(1193), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1195), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(473), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(475), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(477), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(475), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [339] = { + [sym_else_clause] = STATE(388), + [sym_line_comment] = STATE(339), + [sym_block_comment] = STATE(339), + [ts_builtin_sym_end] = ACTIONS(1251), + [sym_identifier] = ACTIONS(1253), + [anon_sym_SEMI] = ACTIONS(1251), + [anon_sym_macro_rules_BANG] = ACTIONS(1251), + [anon_sym_LPAREN] = ACTIONS(1251), + [anon_sym_LBRACK] = ACTIONS(1251), + [anon_sym_LBRACE] = ACTIONS(1251), + [anon_sym_RBRACE] = ACTIONS(1251), + [anon_sym_PLUS] = ACTIONS(1253), + [anon_sym_STAR] = ACTIONS(1253), + [anon_sym_QMARK] = ACTIONS(1251), + [anon_sym_u8] = ACTIONS(1253), + [anon_sym_i8] = ACTIONS(1253), + [anon_sym_u16] = ACTIONS(1253), + [anon_sym_i16] = ACTIONS(1253), + [anon_sym_u32] = ACTIONS(1253), + [anon_sym_i32] = ACTIONS(1253), + [anon_sym_u64] = ACTIONS(1253), + [anon_sym_i64] = ACTIONS(1253), + [anon_sym_u128] = ACTIONS(1253), + [anon_sym_i128] = ACTIONS(1253), + [anon_sym_isize] = ACTIONS(1253), + [anon_sym_usize] = ACTIONS(1253), + [anon_sym_f32] = ACTIONS(1253), + [anon_sym_f64] = ACTIONS(1253), + [anon_sym_bool] = ACTIONS(1253), + [anon_sym_str] = ACTIONS(1253), + [anon_sym_char] = ACTIONS(1253), + [anon_sym_DASH] = ACTIONS(1253), + [anon_sym_SLASH] = ACTIONS(1253), + [anon_sym_PERCENT] = ACTIONS(1253), + [anon_sym_CARET] = ACTIONS(1253), + [anon_sym_BANG] = ACTIONS(1253), + [anon_sym_AMP] = ACTIONS(1253), + [anon_sym_PIPE] = ACTIONS(1253), + [anon_sym_AMP_AMP] = ACTIONS(1251), + [anon_sym_PIPE_PIPE] = ACTIONS(1251), + [anon_sym_LT_LT] = ACTIONS(1253), + [anon_sym_GT_GT] = ACTIONS(1253), + [anon_sym_PLUS_EQ] = ACTIONS(1251), + [anon_sym_DASH_EQ] = ACTIONS(1251), + [anon_sym_STAR_EQ] = ACTIONS(1251), + [anon_sym_SLASH_EQ] = ACTIONS(1251), + [anon_sym_PERCENT_EQ] = ACTIONS(1251), + [anon_sym_CARET_EQ] = ACTIONS(1251), + [anon_sym_AMP_EQ] = ACTIONS(1251), + [anon_sym_PIPE_EQ] = ACTIONS(1251), + [anon_sym_LT_LT_EQ] = ACTIONS(1251), + [anon_sym_GT_GT_EQ] = ACTIONS(1251), + [anon_sym_EQ] = ACTIONS(1253), + [anon_sym_EQ_EQ] = ACTIONS(1251), + [anon_sym_BANG_EQ] = ACTIONS(1251), + [anon_sym_GT] = ACTIONS(1253), + [anon_sym_LT] = ACTIONS(1253), + [anon_sym_GT_EQ] = ACTIONS(1251), + [anon_sym_LT_EQ] = ACTIONS(1251), + [anon_sym_DOT] = ACTIONS(1253), + [anon_sym_DOT_DOT] = ACTIONS(1253), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1251), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1251), + [anon_sym_COLON_COLON] = ACTIONS(1251), + [anon_sym_POUND] = ACTIONS(1251), + [anon_sym_SQUOTE] = ACTIONS(1253), + [anon_sym_as] = ACTIONS(1253), + [anon_sym_async] = ACTIONS(1253), + [anon_sym_break] = ACTIONS(1253), + [anon_sym_const] = ACTIONS(1253), + [anon_sym_continue] = ACTIONS(1253), + [anon_sym_default] = ACTIONS(1253), + [anon_sym_enum] = ACTIONS(1253), + [anon_sym_fn] = ACTIONS(1253), + [anon_sym_for] = ACTIONS(1253), + [anon_sym_gen] = ACTIONS(1253), + [anon_sym_if] = ACTIONS(1253), + [anon_sym_impl] = ACTIONS(1253), + [anon_sym_let] = ACTIONS(1253), + [anon_sym_loop] = ACTIONS(1253), + [anon_sym_match] = ACTIONS(1253), + [anon_sym_mod] = ACTIONS(1253), + [anon_sym_pub] = ACTIONS(1253), + [anon_sym_return] = ACTIONS(1253), + [anon_sym_static] = ACTIONS(1253), + [anon_sym_struct] = ACTIONS(1253), + [anon_sym_trait] = ACTIONS(1253), + [anon_sym_type] = ACTIONS(1253), + [anon_sym_union] = ACTIONS(1253), + [anon_sym_unsafe] = ACTIONS(1253), + [anon_sym_use] = ACTIONS(1253), + [anon_sym_while] = ACTIONS(1253), + [anon_sym_extern] = ACTIONS(1253), + [anon_sym_else] = ACTIONS(1255), + [anon_sym_yield] = ACTIONS(1253), + [anon_sym_move] = ACTIONS(1253), + [anon_sym_try] = ACTIONS(1253), + [sym_integer_literal] = ACTIONS(1251), + [aux_sym_string_literal_token1] = ACTIONS(1251), + [sym_char_literal] = ACTIONS(1251), + [anon_sym_true] = ACTIONS(1253), + [anon_sym_false] = ACTIONS(1253), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1253), + [sym_super] = ACTIONS(1253), + [sym_crate] = ACTIONS(1253), + [sym_metavariable] = ACTIONS(1251), + [sym__raw_string_literal_start] = ACTIONS(1251), + [sym_float_literal] = ACTIONS(1251), + }, + [340] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3303), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1991), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1794), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(340), + [sym_block_comment] = STATE(340), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1191), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(1191), + [anon_sym_BANG] = ACTIONS(1191), + [anon_sym_AMP] = ACTIONS(1193), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1195), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(473), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(475), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(477), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(475), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, [341] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1875), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3303), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1985), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1794), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), [sym_line_comment] = STATE(341), [sym_block_comment] = STATE(341), - [sym_identifier] = ACTIONS(339), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1191), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(1191), + [anon_sym_BANG] = ACTIONS(1191), + [anon_sym_AMP] = ACTIONS(1193), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1195), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(477), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -55604,61 +56967,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [342] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1865), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2116), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), [sym_line_comment] = STATE(342), [sym_block_comment] = STATE(342), [sym_identifier] = ACTIONS(339), @@ -55724,102 +57087,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [343] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1564), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3303), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1822), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1794), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), [sym_line_comment] = STATE(343), [sym_block_comment] = STATE(343), - [sym_identifier] = ACTIONS(467), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(903), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_BANG] = ACTIONS(903), + [anon_sym_AMP] = ACTIONS(905), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(963), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(907), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(495), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(497), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(499), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(501), + [anon_sym_static] = ACTIONS(503), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(505), + [anon_sym_move] = ACTIONS(507), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -55828,61 +57191,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [344] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1812), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2112), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), [sym_line_comment] = STATE(344), [sym_block_comment] = STATE(344), [sym_identifier] = ACTIONS(339), @@ -55948,53 +57311,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [345] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1695), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2117), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), [sym_line_comment] = STATE(345), [sym_block_comment] = STATE(345), [sym_identifier] = ACTIONS(339), @@ -56060,53 +57423,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [346] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1705), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2153), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), [sym_line_comment] = STATE(346), [sym_block_comment] = STATE(346), [sym_identifier] = ACTIONS(339), @@ -56172,53 +57535,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [347] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1876), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1703), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), [sym_line_comment] = STATE(347), [sym_block_comment] = STATE(347), [sym_identifier] = ACTIONS(339), @@ -56248,7 +57611,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1057), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), @@ -56284,53 +57647,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [348] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1877), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2052), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), [sym_line_comment] = STATE(348), [sym_block_comment] = STATE(348), [sym_identifier] = ACTIONS(339), @@ -56396,102 +57759,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(97), }, [349] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1817), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3303), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1984), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1794), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), [sym_line_comment] = STATE(349), [sym_block_comment] = STATE(349), - [sym_identifier] = ACTIONS(339), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(21), - [anon_sym_u8] = ACTIONS(23), - [anon_sym_i8] = ACTIONS(23), - [anon_sym_u16] = ACTIONS(23), - [anon_sym_i16] = ACTIONS(23), - [anon_sym_u32] = ACTIONS(23), - [anon_sym_i32] = ACTIONS(23), - [anon_sym_u64] = ACTIONS(23), - [anon_sym_i64] = ACTIONS(23), - [anon_sym_u128] = ACTIONS(23), - [anon_sym_i128] = ACTIONS(23), - [anon_sym_isize] = ACTIONS(23), - [anon_sym_usize] = ACTIONS(23), - [anon_sym_f32] = ACTIONS(23), - [anon_sym_f64] = ACTIONS(23), - [anon_sym_bool] = ACTIONS(23), - [anon_sym_str] = ACTIONS(23), - [anon_sym_char] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1191), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(1191), + [anon_sym_BANG] = ACTIONS(1191), + [anon_sym_AMP] = ACTIONS(1193), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1195), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(355), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), + [anon_sym_gen] = ACTIONS(477), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(71), - [anon_sym_static] = ACTIONS(367), - [anon_sym_union] = ACTIONS(355), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(91), - [anon_sym_move] = ACTIONS(93), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -56500,63 +57863,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(109), - [sym_super] = ACTIONS(111), - [sym_crate] = ACTIONS(111), - [sym_metavariable] = ACTIONS(115), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, [350] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1879), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3303), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1883), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1794), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), [sym_line_comment] = STATE(350), [sym_block_comment] = STATE(350), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(903), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_BANG] = ACTIONS(903), + [anon_sym_AMP] = ACTIONS(905), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1063), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(495), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(497), + [anon_sym_default] = ACTIONS(475), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(499), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(501), + [anon_sym_static] = ACTIONS(503), + [anon_sym_union] = ACTIONS(475), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(505), + [anon_sym_move] = ACTIONS(507), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [351] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2155), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(351), + [sym_block_comment] = STATE(351), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -56619,56 +58094,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [351] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1820), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(351), - [sym_block_comment] = STATE(351), + [352] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2056), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(352), + [sym_block_comment] = STATE(352), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -56731,56 +58206,392 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [352] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1900), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(352), - [sym_block_comment] = STATE(352), + [353] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3303), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1967), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1794), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(353), + [sym_block_comment] = STATE(353), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1191), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(1191), + [anon_sym_BANG] = ACTIONS(1191), + [anon_sym_AMP] = ACTIONS(1193), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1195), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(473), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(475), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(477), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(475), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [354] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3303), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1955), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1794), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(354), + [sym_block_comment] = STATE(354), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1191), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(1191), + [anon_sym_BANG] = ACTIONS(1191), + [anon_sym_AMP] = ACTIONS(1193), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1195), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(473), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(475), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(477), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(475), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [355] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3303), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1949), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1794), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(355), + [sym_block_comment] = STATE(355), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1191), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(1191), + [anon_sym_BANG] = ACTIONS(1191), + [anon_sym_AMP] = ACTIONS(1193), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1195), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(473), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(475), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(477), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(475), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [356] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2069), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(356), + [sym_block_comment] = STATE(356), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -56843,103 +58654,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [353] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1566), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(353), - [sym_block_comment] = STATE(353), - [sym_identifier] = ACTIONS(467), + [357] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3303), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1945), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1794), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(357), + [sym_block_comment] = STATE(357), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(1191), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(1191), + [anon_sym_BANG] = ACTIONS(1191), + [anon_sym_AMP] = ACTIONS(1193), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(963), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(1195), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(477), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -56948,63 +58759,287 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [354] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1822), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(354), - [sym_block_comment] = STATE(354), + [358] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3303), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1939), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1794), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(358), + [sym_block_comment] = STATE(358), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1191), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(1191), + [anon_sym_BANG] = ACTIONS(1191), + [anon_sym_AMP] = ACTIONS(1193), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1195), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(473), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(475), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(477), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(475), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [359] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3303), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1647), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1794), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(359), + [sym_block_comment] = STATE(359), + [sym_identifier] = ACTIONS(465), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1191), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(1191), + [anon_sym_BANG] = ACTIONS(1191), + [anon_sym_AMP] = ACTIONS(1193), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1195), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(473), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(475), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(477), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(475), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [360] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2144), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(360), + [sym_block_comment] = STATE(360), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -57067,60 +59102,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [355] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1881), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(355), - [sym_block_comment] = STATE(355), + [361] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2076), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(476), + [sym_match_expression] = STATE(476), + [sym_while_expression] = STATE(476), + [sym_loop_expression] = STATE(476), + [sym_for_expression] = STATE(476), + [sym_const_block] = STATE(476), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4104), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(476), + [sym_async_block] = STATE(476), + [sym_gen_block] = STATE(476), + [sym_try_block] = STATE(476), + [sym_block] = STATE(476), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(361), + [sym_block_comment] = STATE(361), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(1227), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -57147,24 +59182,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(1229), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(1231), [anon_sym_continue] = ACTIONS(45), [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_for] = ACTIONS(1233), + [anon_sym_gen] = ACTIONS(1235), + [anon_sym_if] = ACTIONS(1237), + [anon_sym_loop] = ACTIONS(1239), + [anon_sym_match] = ACTIONS(1241), [anon_sym_return] = ACTIONS(71), [anon_sym_static] = ACTIONS(367), [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_unsafe] = ACTIONS(1243), + [anon_sym_while] = ACTIONS(1245), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(1247), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -57179,56 +59214,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [356] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1882), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(356), - [sym_block_comment] = STATE(356), + [362] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2156), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(362), + [sym_block_comment] = STATE(362), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -57291,60 +59326,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [357] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1883), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(357), - [sym_block_comment] = STATE(357), - [sym_identifier] = ACTIONS(339), + [363] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3303), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1925), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1794), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(363), + [sym_block_comment] = STATE(363), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(1191), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(1191), + [anon_sym_BANG] = ACTIONS(1191), + [anon_sym_AMP] = ACTIONS(1193), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1249), + [anon_sym_COLON_COLON] = ACTIONS(471), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(473), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(475), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(477), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(475), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [364] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2138), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(471), + [sym_match_expression] = STATE(471), + [sym_while_expression] = STATE(471), + [sym_loop_expression] = STATE(471), + [sym_for_expression] = STATE(471), + [sym_const_block] = STATE(471), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4104), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(471), + [sym_async_block] = STATE(471), + [sym_gen_block] = STATE(471), + [sym_try_block] = STATE(471), + [sym_block] = STATE(471), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(364), + [sym_block_comment] = STATE(364), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(1227), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -57371,24 +59518,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(351), + [anon_sym_async] = ACTIONS(1229), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(353), + [anon_sym_const] = ACTIONS(1231), [anon_sym_continue] = ACTIONS(45), [anon_sym_default] = ACTIONS(355), - [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(359), - [anon_sym_if] = ACTIONS(361), - [anon_sym_loop] = ACTIONS(363), - [anon_sym_match] = ACTIONS(365), + [anon_sym_for] = ACTIONS(1233), + [anon_sym_gen] = ACTIONS(1235), + [anon_sym_if] = ACTIONS(1237), + [anon_sym_loop] = ACTIONS(1239), + [anon_sym_match] = ACTIONS(1241), [anon_sym_return] = ACTIONS(71), [anon_sym_static] = ACTIONS(367), [anon_sym_union] = ACTIONS(355), - [anon_sym_unsafe] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), + [anon_sym_unsafe] = ACTIONS(1243), + [anon_sym_while] = ACTIONS(1245), [anon_sym_yield] = ACTIONS(91), [anon_sym_move] = ACTIONS(93), - [anon_sym_try] = ACTIONS(373), + [anon_sym_try] = ACTIONS(1247), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), [sym_char_literal] = ACTIONS(97), @@ -57403,56 +59550,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [358] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1884), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(358), - [sym_block_comment] = STATE(358), + [365] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1920), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(365), + [sym_block_comment] = STATE(365), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -57515,103 +59662,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [359] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1826), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(246), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(359), - [sym_block_comment] = STATE(359), - [sym_identifier] = ACTIONS(467), + [366] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1988), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(366), + [sym_block_comment] = STATE(366), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1067), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1227), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -57620,110 +59767,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [360] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1572), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(360), - [sym_block_comment] = STATE(360), - [sym_identifier] = ACTIONS(467), + [367] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2150), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(367), + [sym_block_comment] = STATE(367), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(963), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -57732,110 +59879,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [361] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1579), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(361), - [sym_block_comment] = STATE(361), - [sym_identifier] = ACTIONS(467), + [368] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2142), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(368), + [sym_block_comment] = STATE(368), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(963), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -57844,63 +59991,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [362] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2774), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1888), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1487), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(239), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(362), - [sym_block_comment] = STATE(362), + [369] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2081), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(369), + [sym_block_comment] = STATE(369), [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -57963,103 +60110,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [363] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1574), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(363), - [sym_block_comment] = STATE(363), - [sym_identifier] = ACTIONS(467), + [370] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2123), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(370), + [sym_block_comment] = STATE(370), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(963), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -58068,110 +60215,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [364] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1838), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(246), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(364), - [sym_block_comment] = STATE(364), - [sym_identifier] = ACTIONS(467), + [371] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2119), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(371), + [sym_block_comment] = STATE(371), + [sym_identifier] = ACTIONS(339), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(1067), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(1067), - [anon_sym_BANG] = ACTIONS(1067), - [anon_sym_AMP] = ACTIONS(1069), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1227), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(475), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(353), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(477), + [anon_sym_default] = ACTIONS(355), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(479), + [anon_sym_gen] = ACTIONS(359), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(481), - [anon_sym_static] = ACTIONS(483), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(485), - [anon_sym_move] = ACTIONS(487), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -58180,222 +60327,222 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [365] = { - [sym_bracketed_type] = STATE(3529), - [sym_generic_function] = STATE(1664), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1626), - [sym__expression] = STATE(1760), - [sym_macro_invocation] = STATE(1671), - [sym_scoped_identifier] = STATE(1575), - [sym_scoped_type_identifier_in_expression_position] = STATE(3163), - [sym_range_expression] = STATE(1666), - [sym_unary_expression] = STATE(1664), - [sym_try_expression] = STATE(1664), - [sym_reference_expression] = STATE(1664), - [sym_binary_expression] = STATE(1664), - [sym_assignment_expression] = STATE(1664), - [sym_compound_assignment_expr] = STATE(1664), - [sym_type_cast_expression] = STATE(1664), - [sym_return_expression] = STATE(1664), - [sym_yield_expression] = STATE(1664), - [sym_call_expression] = STATE(1664), - [sym_array_expression] = STATE(1664), - [sym_parenthesized_expression] = STATE(1664), - [sym_tuple_expression] = STATE(1664), - [sym_unit_expression] = STATE(1664), - [sym_struct_expression] = STATE(1664), - [sym_if_expression] = STATE(1664), - [sym_match_expression] = STATE(1664), - [sym_while_expression] = STATE(1664), - [sym_loop_expression] = STATE(1664), - [sym_for_expression] = STATE(1664), - [sym_const_block] = STATE(1664), - [sym_closure_expression] = STATE(1664), - [sym_closure_parameters] = STATE(232), - [sym_label] = STATE(3614), - [sym_break_expression] = STATE(1664), - [sym_continue_expression] = STATE(1664), - [sym_index_expression] = STATE(1664), - [sym_await_expression] = STATE(1664), - [sym_field_expression] = STATE(1597), - [sym_unsafe_block] = STATE(1664), - [sym_async_block] = STATE(1664), - [sym_gen_block] = STATE(1664), - [sym_try_block] = STATE(1664), - [sym_block] = STATE(1664), - [sym__literal] = STATE(1664), - [sym_string_literal] = STATE(1786), - [sym_raw_string_literal] = STATE(1786), - [sym_boolean_literal] = STATE(1786), - [sym_line_comment] = STATE(365), - [sym_block_comment] = STATE(365), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1015), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_BANG] = ACTIONS(1015), - [anon_sym_AMP] = ACTIONS(1017), + [372] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2154), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(372), + [sym_block_comment] = STATE(372), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [366] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1576), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(366), - [sym_block_comment] = STATE(366), - [sym_identifier] = ACTIONS(467), + [373] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3303), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1923), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1794), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(232), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(373), + [sym_block_comment] = STATE(373), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(1191), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(1191), + [anon_sym_BANG] = ACTIONS(1191), + [anon_sym_AMP] = ACTIONS(1193), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(963), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(1249), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(473), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(477), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(479), + [anon_sym_static] = ACTIONS(481), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(483), + [anon_sym_move] = ACTIONS(485), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -58404,222 +60551,222 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [367] = { - [sym_bracketed_type] = STATE(3529), - [sym_generic_function] = STATE(1664), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1626), - [sym__expression] = STATE(1836), - [sym_macro_invocation] = STATE(1671), - [sym_scoped_identifier] = STATE(1575), - [sym_scoped_type_identifier_in_expression_position] = STATE(3163), - [sym_range_expression] = STATE(1666), - [sym_unary_expression] = STATE(1664), - [sym_try_expression] = STATE(1664), - [sym_reference_expression] = STATE(1664), - [sym_binary_expression] = STATE(1664), - [sym_assignment_expression] = STATE(1664), - [sym_compound_assignment_expr] = STATE(1664), - [sym_type_cast_expression] = STATE(1664), - [sym_return_expression] = STATE(1664), - [sym_yield_expression] = STATE(1664), - [sym_call_expression] = STATE(1664), - [sym_array_expression] = STATE(1664), - [sym_parenthesized_expression] = STATE(1664), - [sym_tuple_expression] = STATE(1664), - [sym_unit_expression] = STATE(1664), - [sym_struct_expression] = STATE(1664), - [sym_if_expression] = STATE(1664), - [sym_match_expression] = STATE(1664), - [sym_while_expression] = STATE(1664), - [sym_loop_expression] = STATE(1664), - [sym_for_expression] = STATE(1664), - [sym_const_block] = STATE(1664), - [sym_closure_expression] = STATE(1664), - [sym_closure_parameters] = STATE(232), - [sym_label] = STATE(3614), - [sym_break_expression] = STATE(1664), - [sym_continue_expression] = STATE(1664), - [sym_index_expression] = STATE(1664), - [sym_await_expression] = STATE(1664), - [sym_field_expression] = STATE(1597), - [sym_unsafe_block] = STATE(1664), - [sym_async_block] = STATE(1664), - [sym_gen_block] = STATE(1664), - [sym_try_block] = STATE(1664), - [sym_block] = STATE(1664), - [sym__literal] = STATE(1664), - [sym_string_literal] = STATE(1786), - [sym_raw_string_literal] = STATE(1786), - [sym_boolean_literal] = STATE(1786), - [sym_line_comment] = STATE(367), - [sym_block_comment] = STATE(367), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1015), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_BANG] = ACTIONS(1015), - [anon_sym_AMP] = ACTIONS(1017), + [374] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2147), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(374), + [sym_block_comment] = STATE(374), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [368] = { - [sym_bracketed_type] = STATE(3517), - [sym_generic_function] = STATE(1474), - [sym_generic_type_with_turbofish] = STATE(2974), - [sym__expression_except_range] = STATE(1369), - [sym__expression] = STATE(1577), - [sym_macro_invocation] = STATE(1459), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3119), - [sym_range_expression] = STATE(1482), - [sym_unary_expression] = STATE(1474), - [sym_try_expression] = STATE(1474), - [sym_reference_expression] = STATE(1474), - [sym_binary_expression] = STATE(1474), - [sym_assignment_expression] = STATE(1474), - [sym_compound_assignment_expr] = STATE(1474), - [sym_type_cast_expression] = STATE(1474), - [sym_return_expression] = STATE(1474), - [sym_yield_expression] = STATE(1474), - [sym_call_expression] = STATE(1474), - [sym_array_expression] = STATE(1474), - [sym_parenthesized_expression] = STATE(1474), - [sym_tuple_expression] = STATE(1474), - [sym_unit_expression] = STATE(1474), - [sym_struct_expression] = STATE(1474), - [sym_if_expression] = STATE(1474), - [sym_match_expression] = STATE(1474), - [sym_while_expression] = STATE(1474), - [sym_loop_expression] = STATE(1474), - [sym_for_expression] = STATE(1474), - [sym_const_block] = STATE(1474), - [sym_closure_expression] = STATE(1474), - [sym_closure_parameters] = STATE(225), - [sym_label] = STATE(3565), - [sym_break_expression] = STATE(1474), - [sym_continue_expression] = STATE(1474), - [sym_index_expression] = STATE(1474), - [sym_await_expression] = STATE(1474), - [sym_field_expression] = STATE(1371), - [sym_unsafe_block] = STATE(1474), - [sym_async_block] = STATE(1474), - [sym_gen_block] = STATE(1474), - [sym_try_block] = STATE(1474), - [sym_block] = STATE(1474), - [sym__literal] = STATE(1474), - [sym_string_literal] = STATE(1489), - [sym_raw_string_literal] = STATE(1489), - [sym_boolean_literal] = STATE(1489), - [sym_line_comment] = STATE(368), - [sym_block_comment] = STATE(368), - [sym_identifier] = ACTIONS(467), + [375] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3303), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(1947), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1794), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(227), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(375), + [sym_block_comment] = STATE(375), + [sym_identifier] = ACTIONS(465), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(343), - [anon_sym_STAR] = ACTIONS(959), - [anon_sym_u8] = ACTIONS(469), - [anon_sym_i8] = ACTIONS(469), - [anon_sym_u16] = ACTIONS(469), - [anon_sym_i16] = ACTIONS(469), - [anon_sym_u32] = ACTIONS(469), - [anon_sym_i32] = ACTIONS(469), - [anon_sym_u64] = ACTIONS(469), - [anon_sym_i64] = ACTIONS(469), - [anon_sym_u128] = ACTIONS(469), - [anon_sym_i128] = ACTIONS(469), - [anon_sym_isize] = ACTIONS(469), - [anon_sym_usize] = ACTIONS(469), - [anon_sym_f32] = ACTIONS(469), - [anon_sym_f64] = ACTIONS(469), - [anon_sym_bool] = ACTIONS(469), - [anon_sym_str] = ACTIONS(469), - [anon_sym_char] = ACTIONS(469), - [anon_sym_DASH] = ACTIONS(959), - [anon_sym_BANG] = ACTIONS(959), - [anon_sym_AMP] = ACTIONS(961), + [anon_sym_STAR] = ACTIONS(903), + [anon_sym_u8] = ACTIONS(467), + [anon_sym_i8] = ACTIONS(467), + [anon_sym_u16] = ACTIONS(467), + [anon_sym_i16] = ACTIONS(467), + [anon_sym_u32] = ACTIONS(467), + [anon_sym_i32] = ACTIONS(467), + [anon_sym_u64] = ACTIONS(467), + [anon_sym_i64] = ACTIONS(467), + [anon_sym_u128] = ACTIONS(467), + [anon_sym_i128] = ACTIONS(467), + [anon_sym_isize] = ACTIONS(467), + [anon_sym_usize] = ACTIONS(467), + [anon_sym_f32] = ACTIONS(467), + [anon_sym_f64] = ACTIONS(467), + [anon_sym_bool] = ACTIONS(467), + [anon_sym_str] = ACTIONS(467), + [anon_sym_char] = ACTIONS(467), + [anon_sym_DASH] = ACTIONS(903), + [anon_sym_BANG] = ACTIONS(903), + [anon_sym_AMP] = ACTIONS(905), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(963), - [anon_sym_COLON_COLON] = ACTIONS(473), + [anon_sym_DOT_DOT] = ACTIONS(907), + [anon_sym_COLON_COLON] = ACTIONS(471), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(351), - [anon_sym_break] = ACTIONS(505), + [anon_sym_break] = ACTIONS(495), [anon_sym_const] = ACTIONS(353), - [anon_sym_continue] = ACTIONS(507), - [anon_sym_default] = ACTIONS(477), + [anon_sym_continue] = ACTIONS(497), + [anon_sym_default] = ACTIONS(475), [anon_sym_for] = ACTIONS(357), - [anon_sym_gen] = ACTIONS(509), + [anon_sym_gen] = ACTIONS(499), [anon_sym_if] = ACTIONS(361), [anon_sym_loop] = ACTIONS(363), [anon_sym_match] = ACTIONS(365), - [anon_sym_return] = ACTIONS(511), - [anon_sym_static] = ACTIONS(513), - [anon_sym_union] = ACTIONS(477), + [anon_sym_return] = ACTIONS(501), + [anon_sym_static] = ACTIONS(503), + [anon_sym_union] = ACTIONS(475), [anon_sym_unsafe] = ACTIONS(369), [anon_sym_while] = ACTIONS(371), - [anon_sym_yield] = ACTIONS(515), - [anon_sym_move] = ACTIONS(517), + [anon_sym_yield] = ACTIONS(505), + [anon_sym_move] = ACTIONS(507), [anon_sym_try] = ACTIONS(373), [sym_integer_literal] = ACTIONS(97), [aux_sym_string_literal_token1] = ACTIONS(99), @@ -58628,128 +60775,240 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(489), - [sym_super] = ACTIONS(491), - [sym_crate] = ACTIONS(491), - [sym_metavariable] = ACTIONS(493), + [sym_self] = ACTIONS(487), + [sym_super] = ACTIONS(489), + [sym_crate] = ACTIONS(489), + [sym_metavariable] = ACTIONS(491), [sym__raw_string_literal_start] = ACTIONS(117), [sym_float_literal] = ACTIONS(97), }, - [369] = { - [sym_bracketed_type] = STATE(3529), - [sym_generic_function] = STATE(1664), - [sym_generic_type_with_turbofish] = STATE(2956), - [sym__expression_except_range] = STATE(1626), - [sym__expression] = STATE(1761), - [sym_macro_invocation] = STATE(1671), - [sym_scoped_identifier] = STATE(1575), - [sym_scoped_type_identifier_in_expression_position] = STATE(3163), - [sym_range_expression] = STATE(1666), - [sym_unary_expression] = STATE(1664), - [sym_try_expression] = STATE(1664), - [sym_reference_expression] = STATE(1664), - [sym_binary_expression] = STATE(1664), - [sym_assignment_expression] = STATE(1664), - [sym_compound_assignment_expr] = STATE(1664), - [sym_type_cast_expression] = STATE(1664), - [sym_return_expression] = STATE(1664), - [sym_yield_expression] = STATE(1664), - [sym_call_expression] = STATE(1664), - [sym_array_expression] = STATE(1664), - [sym_parenthesized_expression] = STATE(1664), - [sym_tuple_expression] = STATE(1664), - [sym_unit_expression] = STATE(1664), - [sym_struct_expression] = STATE(1664), - [sym_if_expression] = STATE(1664), - [sym_match_expression] = STATE(1664), - [sym_while_expression] = STATE(1664), - [sym_loop_expression] = STATE(1664), - [sym_for_expression] = STATE(1664), - [sym_const_block] = STATE(1664), - [sym_closure_expression] = STATE(1664), - [sym_closure_parameters] = STATE(232), - [sym_label] = STATE(3614), - [sym_break_expression] = STATE(1664), - [sym_continue_expression] = STATE(1664), - [sym_index_expression] = STATE(1664), - [sym_await_expression] = STATE(1664), - [sym_field_expression] = STATE(1597), - [sym_unsafe_block] = STATE(1664), - [sym_async_block] = STATE(1664), - [sym_gen_block] = STATE(1664), - [sym_try_block] = STATE(1664), - [sym_block] = STATE(1664), - [sym__literal] = STATE(1664), - [sym_string_literal] = STATE(1786), - [sym_raw_string_literal] = STATE(1786), - [sym_boolean_literal] = STATE(1786), - [sym_line_comment] = STATE(369), - [sym_block_comment] = STATE(369), - [sym_identifier] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(495), - [anon_sym_LBRACK] = ACTIONS(497), - [anon_sym_LBRACE] = ACTIONS(407), - [anon_sym_STAR] = ACTIONS(1015), - [anon_sym_u8] = ACTIONS(411), - [anon_sym_i8] = ACTIONS(411), - [anon_sym_u16] = ACTIONS(411), - [anon_sym_i16] = ACTIONS(411), - [anon_sym_u32] = ACTIONS(411), - [anon_sym_i32] = ACTIONS(411), - [anon_sym_u64] = ACTIONS(411), - [anon_sym_i64] = ACTIONS(411), - [anon_sym_u128] = ACTIONS(411), - [anon_sym_i128] = ACTIONS(411), - [anon_sym_isize] = ACTIONS(411), - [anon_sym_usize] = ACTIONS(411), - [anon_sym_f32] = ACTIONS(411), - [anon_sym_f64] = ACTIONS(411), - [anon_sym_bool] = ACTIONS(411), - [anon_sym_str] = ACTIONS(411), - [anon_sym_char] = ACTIONS(411), - [anon_sym_DASH] = ACTIONS(1015), - [anon_sym_BANG] = ACTIONS(1015), - [anon_sym_AMP] = ACTIONS(1017), + [376] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2134), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(376), + [sym_block_comment] = STATE(376), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1059), - [anon_sym_COLON_COLON] = ACTIONS(415), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(417), - [anon_sym_break] = ACTIONS(419), - [anon_sym_const] = ACTIONS(421), - [anon_sym_continue] = ACTIONS(423), - [anon_sym_default] = ACTIONS(425), - [anon_sym_for] = ACTIONS(427), - [anon_sym_gen] = ACTIONS(429), - [anon_sym_if] = ACTIONS(431), - [anon_sym_loop] = ACTIONS(433), - [anon_sym_match] = ACTIONS(435), - [anon_sym_return] = ACTIONS(437), - [anon_sym_static] = ACTIONS(439), - [anon_sym_union] = ACTIONS(425), - [anon_sym_unsafe] = ACTIONS(441), - [anon_sym_while] = ACTIONS(443), - [anon_sym_yield] = ACTIONS(445), - [anon_sym_move] = ACTIONS(447), - [anon_sym_try] = ACTIONS(449), - [sym_integer_literal] = ACTIONS(451), - [aux_sym_string_literal_token1] = ACTIONS(453), - [sym_char_literal] = ACTIONS(451), - [anon_sym_true] = ACTIONS(455), - [anon_sym_false] = ACTIONS(455), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(457), - [sym_super] = ACTIONS(459), - [sym_crate] = ACTIONS(459), - [sym_metavariable] = ACTIONS(461), - [sym__raw_string_literal_start] = ACTIONS(463), - [sym_float_literal] = ACTIONS(451), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), }, - [370] = { - [sym_line_comment] = STATE(370), - [sym_block_comment] = STATE(370), + [377] = { + [sym_bracketed_type] = STATE(4063), + [sym_generic_function] = STATE(1627), + [sym_generic_type_with_turbofish] = STATE(3165), + [sym__expression_except_range] = STATE(1252), + [sym__expression] = STATE(2124), + [sym_macro_invocation] = STATE(1733), + [sym_scoped_identifier] = STATE(1715), + [sym_scoped_type_identifier_in_expression_position] = STATE(3537), + [sym_range_expression] = STATE(1676), + [sym_unary_expression] = STATE(1627), + [sym_try_expression] = STATE(1627), + [sym_reference_expression] = STATE(1627), + [sym_binary_expression] = STATE(1627), + [sym_assignment_expression] = STATE(1627), + [sym_compound_assignment_expr] = STATE(1627), + [sym_type_cast_expression] = STATE(1627), + [sym_return_expression] = STATE(1627), + [sym_yield_expression] = STATE(1627), + [sym_call_expression] = STATE(1627), + [sym_array_expression] = STATE(1627), + [sym_parenthesized_expression] = STATE(1627), + [sym_tuple_expression] = STATE(1627), + [sym_unit_expression] = STATE(1627), + [sym_struct_expression] = STATE(1627), + [sym_if_expression] = STATE(1627), + [sym_match_expression] = STATE(1627), + [sym_while_expression] = STATE(1627), + [sym_loop_expression] = STATE(1627), + [sym_for_expression] = STATE(1627), + [sym_const_block] = STATE(1627), + [sym_closure_expression] = STATE(1627), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(4041), + [sym_break_expression] = STATE(1627), + [sym_continue_expression] = STATE(1627), + [sym_index_expression] = STATE(1627), + [sym_await_expression] = STATE(1627), + [sym_field_expression] = STATE(1366), + [sym_unsafe_block] = STATE(1627), + [sym_async_block] = STATE(1627), + [sym_gen_block] = STATE(1627), + [sym_try_block] = STATE(1627), + [sym_block] = STATE(1627), + [sym__literal] = STATE(1627), + [sym_string_literal] = STATE(1741), + [sym_raw_string_literal] = STATE(1741), + [sym_boolean_literal] = STATE(1741), + [sym_line_comment] = STATE(377), + [sym_block_comment] = STATE(377), + [sym_identifier] = ACTIONS(339), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(343), + [anon_sym_STAR] = ACTIONS(21), + [anon_sym_u8] = ACTIONS(23), + [anon_sym_i8] = ACTIONS(23), + [anon_sym_u16] = ACTIONS(23), + [anon_sym_i16] = ACTIONS(23), + [anon_sym_u32] = ACTIONS(23), + [anon_sym_i32] = ACTIONS(23), + [anon_sym_u64] = ACTIONS(23), + [anon_sym_i64] = ACTIONS(23), + [anon_sym_u128] = ACTIONS(23), + [anon_sym_i128] = ACTIONS(23), + [anon_sym_isize] = ACTIONS(23), + [anon_sym_usize] = ACTIONS(23), + [anon_sym_f32] = ACTIONS(23), + [anon_sym_f64] = ACTIONS(23), + [anon_sym_bool] = ACTIONS(23), + [anon_sym_str] = ACTIONS(23), + [anon_sym_char] = ACTIONS(23), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(351), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(353), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(355), + [anon_sym_for] = ACTIONS(357), + [anon_sym_gen] = ACTIONS(359), + [anon_sym_if] = ACTIONS(361), + [anon_sym_loop] = ACTIONS(363), + [anon_sym_match] = ACTIONS(365), + [anon_sym_return] = ACTIONS(71), + [anon_sym_static] = ACTIONS(367), + [anon_sym_union] = ACTIONS(355), + [anon_sym_unsafe] = ACTIONS(369), + [anon_sym_while] = ACTIONS(371), + [anon_sym_yield] = ACTIONS(91), + [anon_sym_move] = ACTIONS(93), + [anon_sym_try] = ACTIONS(373), + [sym_integer_literal] = ACTIONS(97), + [aux_sym_string_literal_token1] = ACTIONS(99), + [sym_char_literal] = ACTIONS(97), + [anon_sym_true] = ACTIONS(101), + [anon_sym_false] = ACTIONS(101), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(109), + [sym_super] = ACTIONS(111), + [sym_crate] = ACTIONS(111), + [sym_metavariable] = ACTIONS(115), + [sym__raw_string_literal_start] = ACTIONS(117), + [sym_float_literal] = ACTIONS(97), + }, + [378] = { + [sym_line_comment] = STATE(378), + [sym_block_comment] = STATE(378), [ts_builtin_sym_end] = ACTIONS(1257), [sym_identifier] = ACTIONS(1259), [anon_sym_SEMI] = ACTIONS(1257), @@ -58858,9 +61117,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1257), [sym_float_literal] = ACTIONS(1257), }, - [371] = { - [sym_line_comment] = STATE(371), - [sym_block_comment] = STATE(371), + [379] = { + [sym_line_comment] = STATE(379), + [sym_block_comment] = STATE(379), [ts_builtin_sym_end] = ACTIONS(1261), [sym_identifier] = ACTIONS(1263), [anon_sym_SEMI] = ACTIONS(1261), @@ -58969,9 +61228,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1261), [sym_float_literal] = ACTIONS(1261), }, - [372] = { - [sym_line_comment] = STATE(372), - [sym_block_comment] = STATE(372), + [380] = { + [sym_line_comment] = STATE(380), + [sym_block_comment] = STATE(380), [ts_builtin_sym_end] = ACTIONS(1265), [sym_identifier] = ACTIONS(1267), [anon_sym_SEMI] = ACTIONS(1265), @@ -59080,9 +61339,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1265), [sym_float_literal] = ACTIONS(1265), }, - [373] = { - [sym_line_comment] = STATE(373), - [sym_block_comment] = STATE(373), + [381] = { + [sym_line_comment] = STATE(381), + [sym_block_comment] = STATE(381), [ts_builtin_sym_end] = ACTIONS(1269), [sym_identifier] = ACTIONS(1271), [anon_sym_SEMI] = ACTIONS(1269), @@ -59191,9 +61450,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1269), [sym_float_literal] = ACTIONS(1269), }, - [374] = { - [sym_line_comment] = STATE(374), - [sym_block_comment] = STATE(374), + [382] = { + [sym_line_comment] = STATE(382), + [sym_block_comment] = STATE(382), [ts_builtin_sym_end] = ACTIONS(1273), [sym_identifier] = ACTIONS(1275), [anon_sym_SEMI] = ACTIONS(1273), @@ -59302,9 +61561,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1273), [sym_float_literal] = ACTIONS(1273), }, - [375] = { - [sym_line_comment] = STATE(375), - [sym_block_comment] = STATE(375), + [383] = { + [sym_line_comment] = STATE(383), + [sym_block_comment] = STATE(383), [ts_builtin_sym_end] = ACTIONS(1277), [sym_identifier] = ACTIONS(1279), [anon_sym_SEMI] = ACTIONS(1277), @@ -59412,339 +61671,449 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1277), [sym_float_literal] = ACTIONS(1277), }, - [376] = { - [sym_attribute_item] = STATE(420), - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_self_parameter] = STATE(2999), - [sym_variadic_parameter] = STATE(2999), - [sym_parameter] = STATE(2999), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2746), - [sym_bracketed_type] = STATE(3550), - [sym_lifetime] = STATE(2800), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3221), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(2410), - [sym_scoped_identifier] = STATE(2242), - [sym_scoped_type_identifier] = STATE(2118), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(3256), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), - [sym_line_comment] = STATE(376), - [sym_block_comment] = STATE(376), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(1281), - [anon_sym_LPAREN] = ACTIONS(1283), - [anon_sym_RPAREN] = ACTIONS(1285), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1293), - [anon_sym_i8] = ACTIONS(1293), - [anon_sym_u16] = ACTIONS(1293), - [anon_sym_i16] = ACTIONS(1293), - [anon_sym_u32] = ACTIONS(1293), - [anon_sym_i32] = ACTIONS(1293), - [anon_sym_u64] = ACTIONS(1293), - [anon_sym_i64] = ACTIONS(1293), - [anon_sym_u128] = ACTIONS(1293), - [anon_sym_i128] = ACTIONS(1293), - [anon_sym_isize] = ACTIONS(1293), - [anon_sym_usize] = ACTIONS(1293), - [anon_sym_f32] = ACTIONS(1293), - [anon_sym_f64] = ACTIONS(1293), - [anon_sym_bool] = ACTIONS(1293), - [anon_sym_str] = ACTIONS(1293), - [anon_sym_char] = ACTIONS(1293), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1299), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1303), - [anon_sym_DOT_DOT] = ACTIONS(1305), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1307), - [anon_sym_COMMA] = ACTIONS(1309), - [anon_sym_COLON_COLON] = ACTIONS(1311), - [anon_sym_POUND] = ACTIONS(1313), - [anon_sym_SQUOTE] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1319), - [anon_sym_default] = ACTIONS(1321), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1327), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1327), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_ref] = ACTIONS(1333), - [anon_sym_dyn] = ACTIONS(1335), - [sym_mutable_specifier] = ACTIONS(1337), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1345), - [sym_super] = ACTIONS(1347), - [sym_crate] = ACTIONS(1347), - [sym_metavariable] = ACTIONS(1349), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), + [384] = { + [sym_line_comment] = STATE(384), + [sym_block_comment] = STATE(384), + [ts_builtin_sym_end] = ACTIONS(1281), + [sym_identifier] = ACTIONS(1283), + [anon_sym_SEMI] = ACTIONS(1281), + [anon_sym_macro_rules_BANG] = ACTIONS(1281), + [anon_sym_LPAREN] = ACTIONS(1281), + [anon_sym_LBRACK] = ACTIONS(1281), + [anon_sym_LBRACE] = ACTIONS(1281), + [anon_sym_RBRACE] = ACTIONS(1281), + [anon_sym_PLUS] = ACTIONS(1283), + [anon_sym_STAR] = ACTIONS(1283), + [anon_sym_QMARK] = ACTIONS(1281), + [anon_sym_u8] = ACTIONS(1283), + [anon_sym_i8] = ACTIONS(1283), + [anon_sym_u16] = ACTIONS(1283), + [anon_sym_i16] = ACTIONS(1283), + [anon_sym_u32] = ACTIONS(1283), + [anon_sym_i32] = ACTIONS(1283), + [anon_sym_u64] = ACTIONS(1283), + [anon_sym_i64] = ACTIONS(1283), + [anon_sym_u128] = ACTIONS(1283), + [anon_sym_i128] = ACTIONS(1283), + [anon_sym_isize] = ACTIONS(1283), + [anon_sym_usize] = ACTIONS(1283), + [anon_sym_f32] = ACTIONS(1283), + [anon_sym_f64] = ACTIONS(1283), + [anon_sym_bool] = ACTIONS(1283), + [anon_sym_str] = ACTIONS(1283), + [anon_sym_char] = ACTIONS(1283), + [anon_sym_DASH] = ACTIONS(1283), + [anon_sym_SLASH] = ACTIONS(1283), + [anon_sym_PERCENT] = ACTIONS(1283), + [anon_sym_CARET] = ACTIONS(1283), + [anon_sym_BANG] = ACTIONS(1283), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_PIPE] = ACTIONS(1283), + [anon_sym_AMP_AMP] = ACTIONS(1281), + [anon_sym_PIPE_PIPE] = ACTIONS(1281), + [anon_sym_LT_LT] = ACTIONS(1283), + [anon_sym_GT_GT] = ACTIONS(1283), + [anon_sym_PLUS_EQ] = ACTIONS(1281), + [anon_sym_DASH_EQ] = ACTIONS(1281), + [anon_sym_STAR_EQ] = ACTIONS(1281), + [anon_sym_SLASH_EQ] = ACTIONS(1281), + [anon_sym_PERCENT_EQ] = ACTIONS(1281), + [anon_sym_CARET_EQ] = ACTIONS(1281), + [anon_sym_AMP_EQ] = ACTIONS(1281), + [anon_sym_PIPE_EQ] = ACTIONS(1281), + [anon_sym_LT_LT_EQ] = ACTIONS(1281), + [anon_sym_GT_GT_EQ] = ACTIONS(1281), + [anon_sym_EQ] = ACTIONS(1283), + [anon_sym_EQ_EQ] = ACTIONS(1281), + [anon_sym_BANG_EQ] = ACTIONS(1281), + [anon_sym_GT] = ACTIONS(1283), + [anon_sym_LT] = ACTIONS(1283), + [anon_sym_GT_EQ] = ACTIONS(1281), + [anon_sym_LT_EQ] = ACTIONS(1281), + [anon_sym_DOT] = ACTIONS(1283), + [anon_sym_DOT_DOT] = ACTIONS(1283), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1281), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1281), + [anon_sym_COLON_COLON] = ACTIONS(1281), + [anon_sym_POUND] = ACTIONS(1281), + [anon_sym_SQUOTE] = ACTIONS(1283), + [anon_sym_as] = ACTIONS(1283), + [anon_sym_async] = ACTIONS(1283), + [anon_sym_break] = ACTIONS(1283), + [anon_sym_const] = ACTIONS(1283), + [anon_sym_continue] = ACTIONS(1283), + [anon_sym_default] = ACTIONS(1283), + [anon_sym_enum] = ACTIONS(1283), + [anon_sym_fn] = ACTIONS(1283), + [anon_sym_for] = ACTIONS(1283), + [anon_sym_gen] = ACTIONS(1283), + [anon_sym_if] = ACTIONS(1283), + [anon_sym_impl] = ACTIONS(1283), + [anon_sym_let] = ACTIONS(1283), + [anon_sym_loop] = ACTIONS(1283), + [anon_sym_match] = ACTIONS(1283), + [anon_sym_mod] = ACTIONS(1283), + [anon_sym_pub] = ACTIONS(1283), + [anon_sym_return] = ACTIONS(1283), + [anon_sym_static] = ACTIONS(1283), + [anon_sym_struct] = ACTIONS(1283), + [anon_sym_trait] = ACTIONS(1283), + [anon_sym_type] = ACTIONS(1283), + [anon_sym_union] = ACTIONS(1283), + [anon_sym_unsafe] = ACTIONS(1283), + [anon_sym_use] = ACTIONS(1283), + [anon_sym_while] = ACTIONS(1283), + [anon_sym_extern] = ACTIONS(1283), + [anon_sym_yield] = ACTIONS(1283), + [anon_sym_move] = ACTIONS(1283), + [anon_sym_try] = ACTIONS(1283), + [sym_integer_literal] = ACTIONS(1281), + [aux_sym_string_literal_token1] = ACTIONS(1281), + [sym_char_literal] = ACTIONS(1281), + [anon_sym_true] = ACTIONS(1283), + [anon_sym_false] = ACTIONS(1283), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1283), + [sym_super] = ACTIONS(1283), + [sym_crate] = ACTIONS(1283), + [sym_metavariable] = ACTIONS(1281), + [sym__raw_string_literal_start] = ACTIONS(1281), + [sym_float_literal] = ACTIONS(1281), }, - [377] = { - [sym_line_comment] = STATE(377), - [sym_block_comment] = STATE(377), - [ts_builtin_sym_end] = ACTIONS(1353), - [sym_identifier] = ACTIONS(1355), - [anon_sym_SEMI] = ACTIONS(1353), - [anon_sym_macro_rules_BANG] = ACTIONS(1353), - [anon_sym_LPAREN] = ACTIONS(1353), - [anon_sym_LBRACK] = ACTIONS(1353), - [anon_sym_LBRACE] = ACTIONS(1353), - [anon_sym_RBRACE] = ACTIONS(1353), - [anon_sym_PLUS] = ACTIONS(1357), - [anon_sym_STAR] = ACTIONS(1355), - [anon_sym_QMARK] = ACTIONS(1359), - [anon_sym_u8] = ACTIONS(1355), - [anon_sym_i8] = ACTIONS(1355), - [anon_sym_u16] = ACTIONS(1355), - [anon_sym_i16] = ACTIONS(1355), - [anon_sym_u32] = ACTIONS(1355), - [anon_sym_i32] = ACTIONS(1355), - [anon_sym_u64] = ACTIONS(1355), - [anon_sym_i64] = ACTIONS(1355), - [anon_sym_u128] = ACTIONS(1355), - [anon_sym_i128] = ACTIONS(1355), - [anon_sym_isize] = ACTIONS(1355), - [anon_sym_usize] = ACTIONS(1355), - [anon_sym_f32] = ACTIONS(1355), - [anon_sym_f64] = ACTIONS(1355), - [anon_sym_bool] = ACTIONS(1355), - [anon_sym_str] = ACTIONS(1355), - [anon_sym_char] = ACTIONS(1355), - [anon_sym_DASH] = ACTIONS(1355), - [anon_sym_SLASH] = ACTIONS(1357), - [anon_sym_PERCENT] = ACTIONS(1357), - [anon_sym_CARET] = ACTIONS(1357), - [anon_sym_BANG] = ACTIONS(1355), - [anon_sym_AMP] = ACTIONS(1355), - [anon_sym_PIPE] = ACTIONS(1355), - [anon_sym_AMP_AMP] = ACTIONS(1359), - [anon_sym_PIPE_PIPE] = ACTIONS(1359), - [anon_sym_LT_LT] = ACTIONS(1357), - [anon_sym_GT_GT] = ACTIONS(1357), - [anon_sym_PLUS_EQ] = ACTIONS(1359), - [anon_sym_DASH_EQ] = ACTIONS(1359), - [anon_sym_STAR_EQ] = ACTIONS(1359), - [anon_sym_SLASH_EQ] = ACTIONS(1359), - [anon_sym_PERCENT_EQ] = ACTIONS(1359), - [anon_sym_CARET_EQ] = ACTIONS(1359), - [anon_sym_AMP_EQ] = ACTIONS(1359), - [anon_sym_PIPE_EQ] = ACTIONS(1359), - [anon_sym_LT_LT_EQ] = ACTIONS(1359), - [anon_sym_GT_GT_EQ] = ACTIONS(1359), - [anon_sym_EQ] = ACTIONS(1357), - [anon_sym_EQ_EQ] = ACTIONS(1359), - [anon_sym_BANG_EQ] = ACTIONS(1359), - [anon_sym_GT] = ACTIONS(1357), - [anon_sym_LT] = ACTIONS(1355), - [anon_sym_GT_EQ] = ACTIONS(1359), - [anon_sym_LT_EQ] = ACTIONS(1359), - [anon_sym_DOT] = ACTIONS(1357), - [anon_sym_DOT_DOT] = ACTIONS(1355), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1359), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1359), - [anon_sym_COLON_COLON] = ACTIONS(1353), - [anon_sym_POUND] = ACTIONS(1353), - [anon_sym_SQUOTE] = ACTIONS(1355), - [anon_sym_as] = ACTIONS(1357), - [anon_sym_async] = ACTIONS(1355), - [anon_sym_break] = ACTIONS(1355), - [anon_sym_const] = ACTIONS(1355), - [anon_sym_continue] = ACTIONS(1355), - [anon_sym_default] = ACTIONS(1355), - [anon_sym_enum] = ACTIONS(1355), - [anon_sym_fn] = ACTIONS(1355), - [anon_sym_for] = ACTIONS(1355), - [anon_sym_gen] = ACTIONS(1355), - [anon_sym_if] = ACTIONS(1355), - [anon_sym_impl] = ACTIONS(1355), - [anon_sym_let] = ACTIONS(1355), - [anon_sym_loop] = ACTIONS(1355), - [anon_sym_match] = ACTIONS(1355), - [anon_sym_mod] = ACTIONS(1355), - [anon_sym_pub] = ACTIONS(1355), - [anon_sym_return] = ACTIONS(1355), - [anon_sym_static] = ACTIONS(1355), - [anon_sym_struct] = ACTIONS(1355), - [anon_sym_trait] = ACTIONS(1355), - [anon_sym_type] = ACTIONS(1355), - [anon_sym_union] = ACTIONS(1355), - [anon_sym_unsafe] = ACTIONS(1355), - [anon_sym_use] = ACTIONS(1355), - [anon_sym_while] = ACTIONS(1355), - [anon_sym_extern] = ACTIONS(1355), - [anon_sym_yield] = ACTIONS(1355), - [anon_sym_move] = ACTIONS(1355), - [anon_sym_try] = ACTIONS(1355), - [sym_integer_literal] = ACTIONS(1353), + [385] = { + [sym_line_comment] = STATE(385), + [sym_block_comment] = STATE(385), + [ts_builtin_sym_end] = ACTIONS(1285), + [sym_identifier] = ACTIONS(1287), + [anon_sym_SEMI] = ACTIONS(1285), + [anon_sym_macro_rules_BANG] = ACTIONS(1285), + [anon_sym_LPAREN] = ACTIONS(1285), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_LBRACE] = ACTIONS(1285), + [anon_sym_RBRACE] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1287), + [anon_sym_STAR] = ACTIONS(1287), + [anon_sym_QMARK] = ACTIONS(1285), + [anon_sym_u8] = ACTIONS(1287), + [anon_sym_i8] = ACTIONS(1287), + [anon_sym_u16] = ACTIONS(1287), + [anon_sym_i16] = ACTIONS(1287), + [anon_sym_u32] = ACTIONS(1287), + [anon_sym_i32] = ACTIONS(1287), + [anon_sym_u64] = ACTIONS(1287), + [anon_sym_i64] = ACTIONS(1287), + [anon_sym_u128] = ACTIONS(1287), + [anon_sym_i128] = ACTIONS(1287), + [anon_sym_isize] = ACTIONS(1287), + [anon_sym_usize] = ACTIONS(1287), + [anon_sym_f32] = ACTIONS(1287), + [anon_sym_f64] = ACTIONS(1287), + [anon_sym_bool] = ACTIONS(1287), + [anon_sym_str] = ACTIONS(1287), + [anon_sym_char] = ACTIONS(1287), + [anon_sym_DASH] = ACTIONS(1287), + [anon_sym_SLASH] = ACTIONS(1287), + [anon_sym_PERCENT] = ACTIONS(1287), + [anon_sym_CARET] = ACTIONS(1287), + [anon_sym_BANG] = ACTIONS(1287), + [anon_sym_AMP] = ACTIONS(1287), + [anon_sym_PIPE] = ACTIONS(1287), + [anon_sym_AMP_AMP] = ACTIONS(1285), + [anon_sym_PIPE_PIPE] = ACTIONS(1285), + [anon_sym_LT_LT] = ACTIONS(1287), + [anon_sym_GT_GT] = ACTIONS(1287), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_PERCENT_EQ] = ACTIONS(1285), + [anon_sym_CARET_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_EQ] = ACTIONS(1287), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1287), + [anon_sym_LT] = ACTIONS(1287), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym_DOT] = ACTIONS(1287), + [anon_sym_DOT_DOT] = ACTIONS(1287), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1285), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_COLON_COLON] = ACTIONS(1285), + [anon_sym_POUND] = ACTIONS(1285), + [anon_sym_SQUOTE] = ACTIONS(1287), + [anon_sym_as] = ACTIONS(1287), + [anon_sym_async] = ACTIONS(1287), + [anon_sym_break] = ACTIONS(1287), + [anon_sym_const] = ACTIONS(1287), + [anon_sym_continue] = ACTIONS(1287), + [anon_sym_default] = ACTIONS(1287), + [anon_sym_enum] = ACTIONS(1287), + [anon_sym_fn] = ACTIONS(1287), + [anon_sym_for] = ACTIONS(1287), + [anon_sym_gen] = ACTIONS(1287), + [anon_sym_if] = ACTIONS(1287), + [anon_sym_impl] = ACTIONS(1287), + [anon_sym_let] = ACTIONS(1287), + [anon_sym_loop] = ACTIONS(1287), + [anon_sym_match] = ACTIONS(1287), + [anon_sym_mod] = ACTIONS(1287), + [anon_sym_pub] = ACTIONS(1287), + [anon_sym_return] = ACTIONS(1287), + [anon_sym_static] = ACTIONS(1287), + [anon_sym_struct] = ACTIONS(1287), + [anon_sym_trait] = ACTIONS(1287), + [anon_sym_type] = ACTIONS(1287), + [anon_sym_union] = ACTIONS(1287), + [anon_sym_unsafe] = ACTIONS(1287), + [anon_sym_use] = ACTIONS(1287), + [anon_sym_while] = ACTIONS(1287), + [anon_sym_extern] = ACTIONS(1287), + [anon_sym_yield] = ACTIONS(1287), + [anon_sym_move] = ACTIONS(1287), + [anon_sym_try] = ACTIONS(1287), + [sym_integer_literal] = ACTIONS(1285), + [aux_sym_string_literal_token1] = ACTIONS(1285), + [sym_char_literal] = ACTIONS(1285), + [anon_sym_true] = ACTIONS(1287), + [anon_sym_false] = ACTIONS(1287), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1287), + [sym_super] = ACTIONS(1287), + [sym_crate] = ACTIONS(1287), + [sym_metavariable] = ACTIONS(1285), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1285), + }, + [386] = { + [sym_line_comment] = STATE(386), + [sym_block_comment] = STATE(386), + [ts_builtin_sym_end] = ACTIONS(1289), + [sym_identifier] = ACTIONS(1291), + [anon_sym_SEMI] = ACTIONS(1289), + [anon_sym_macro_rules_BANG] = ACTIONS(1289), + [anon_sym_LPAREN] = ACTIONS(1289), + [anon_sym_LBRACK] = ACTIONS(1289), + [anon_sym_LBRACE] = ACTIONS(1289), + [anon_sym_RBRACE] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1291), + [anon_sym_QMARK] = ACTIONS(1289), + [anon_sym_u8] = ACTIONS(1291), + [anon_sym_i8] = ACTIONS(1291), + [anon_sym_u16] = ACTIONS(1291), + [anon_sym_i16] = ACTIONS(1291), + [anon_sym_u32] = ACTIONS(1291), + [anon_sym_i32] = ACTIONS(1291), + [anon_sym_u64] = ACTIONS(1291), + [anon_sym_i64] = ACTIONS(1291), + [anon_sym_u128] = ACTIONS(1291), + [anon_sym_i128] = ACTIONS(1291), + [anon_sym_isize] = ACTIONS(1291), + [anon_sym_usize] = ACTIONS(1291), + [anon_sym_f32] = ACTIONS(1291), + [anon_sym_f64] = ACTIONS(1291), + [anon_sym_bool] = ACTIONS(1291), + [anon_sym_str] = ACTIONS(1291), + [anon_sym_char] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(1291), + [anon_sym_PERCENT] = ACTIONS(1291), + [anon_sym_CARET] = ACTIONS(1291), + [anon_sym_BANG] = ACTIONS(1291), + [anon_sym_AMP] = ACTIONS(1291), + [anon_sym_PIPE] = ACTIONS(1291), + [anon_sym_AMP_AMP] = ACTIONS(1289), + [anon_sym_PIPE_PIPE] = ACTIONS(1289), + [anon_sym_LT_LT] = ACTIONS(1291), + [anon_sym_GT_GT] = ACTIONS(1291), + [anon_sym_PLUS_EQ] = ACTIONS(1289), + [anon_sym_DASH_EQ] = ACTIONS(1289), + [anon_sym_STAR_EQ] = ACTIONS(1289), + [anon_sym_SLASH_EQ] = ACTIONS(1289), + [anon_sym_PERCENT_EQ] = ACTIONS(1289), + [anon_sym_CARET_EQ] = ACTIONS(1289), + [anon_sym_AMP_EQ] = ACTIONS(1289), + [anon_sym_PIPE_EQ] = ACTIONS(1289), + [anon_sym_LT_LT_EQ] = ACTIONS(1289), + [anon_sym_GT_GT_EQ] = ACTIONS(1289), + [anon_sym_EQ] = ACTIONS(1291), + [anon_sym_EQ_EQ] = ACTIONS(1289), + [anon_sym_BANG_EQ] = ACTIONS(1289), + [anon_sym_GT] = ACTIONS(1291), + [anon_sym_LT] = ACTIONS(1291), + [anon_sym_GT_EQ] = ACTIONS(1289), + [anon_sym_LT_EQ] = ACTIONS(1289), + [anon_sym_DOT] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(1291), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1289), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1289), + [anon_sym_COLON_COLON] = ACTIONS(1289), + [anon_sym_POUND] = ACTIONS(1289), + [anon_sym_SQUOTE] = ACTIONS(1291), + [anon_sym_as] = ACTIONS(1291), + [anon_sym_async] = ACTIONS(1291), + [anon_sym_break] = ACTIONS(1291), + [anon_sym_const] = ACTIONS(1291), + [anon_sym_continue] = ACTIONS(1291), + [anon_sym_default] = ACTIONS(1291), + [anon_sym_enum] = ACTIONS(1291), + [anon_sym_fn] = ACTIONS(1291), + [anon_sym_for] = ACTIONS(1291), + [anon_sym_gen] = ACTIONS(1291), + [anon_sym_if] = ACTIONS(1291), + [anon_sym_impl] = ACTIONS(1291), + [anon_sym_let] = ACTIONS(1291), + [anon_sym_loop] = ACTIONS(1291), + [anon_sym_match] = ACTIONS(1291), + [anon_sym_mod] = ACTIONS(1291), + [anon_sym_pub] = ACTIONS(1291), + [anon_sym_return] = ACTIONS(1291), + [anon_sym_static] = ACTIONS(1291), + [anon_sym_struct] = ACTIONS(1291), + [anon_sym_trait] = ACTIONS(1291), + [anon_sym_type] = ACTIONS(1291), + [anon_sym_union] = ACTIONS(1291), + [anon_sym_unsafe] = ACTIONS(1291), + [anon_sym_use] = ACTIONS(1291), + [anon_sym_while] = ACTIONS(1291), + [anon_sym_extern] = ACTIONS(1291), + [anon_sym_yield] = ACTIONS(1291), + [anon_sym_move] = ACTIONS(1291), + [anon_sym_try] = ACTIONS(1291), + [sym_integer_literal] = ACTIONS(1289), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1289), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1291), + [sym_super] = ACTIONS(1291), + [sym_crate] = ACTIONS(1291), + [sym_metavariable] = ACTIONS(1289), + [sym__raw_string_literal_start] = ACTIONS(1289), + [sym_float_literal] = ACTIONS(1289), + }, + [387] = { + [sym_attribute_item] = STATE(429), + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_self_parameter] = STATE(3281), + [sym_variadic_parameter] = STATE(3281), + [sym_parameter] = STATE(3281), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2991), + [sym_bracketed_type] = STATE(4026), + [sym_lifetime] = STATE(3377), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3775), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2751), + [sym_scoped_identifier] = STATE(2534), + [sym_scoped_type_identifier] = STATE(2400), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(3619), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(387), + [sym_block_comment] = STATE(387), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(1293), + [anon_sym_LPAREN] = ACTIONS(1295), + [anon_sym_RPAREN] = ACTIONS(1297), + [anon_sym_LBRACK] = ACTIONS(1299), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1305), + [anon_sym_i8] = ACTIONS(1305), + [anon_sym_u16] = ACTIONS(1305), + [anon_sym_i16] = ACTIONS(1305), + [anon_sym_u32] = ACTIONS(1305), + [anon_sym_i32] = ACTIONS(1305), + [anon_sym_u64] = ACTIONS(1305), + [anon_sym_i64] = ACTIONS(1305), + [anon_sym_u128] = ACTIONS(1305), + [anon_sym_i128] = ACTIONS(1305), + [anon_sym_isize] = ACTIONS(1305), + [anon_sym_usize] = ACTIONS(1305), + [anon_sym_f32] = ACTIONS(1305), + [anon_sym_f64] = ACTIONS(1305), + [anon_sym_bool] = ACTIONS(1305), + [anon_sym_str] = ACTIONS(1305), + [anon_sym_char] = ACTIONS(1305), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1311), + [anon_sym_PIPE] = ACTIONS(1313), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1315), + [anon_sym_DOT_DOT] = ACTIONS(1317), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1319), + [anon_sym_COMMA] = ACTIONS(1321), + [anon_sym_COLON_COLON] = ACTIONS(1323), + [anon_sym_POUND] = ACTIONS(1325), + [anon_sym_SQUOTE] = ACTIONS(1327), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1331), + [anon_sym_default] = ACTIONS(1333), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1339), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1339), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_ref] = ACTIONS(1345), + [anon_sym_dyn] = ACTIONS(1347), + [sym_mutable_specifier] = ACTIONS(1349), + [sym_integer_literal] = ACTIONS(1351), [aux_sym_string_literal_token1] = ACTIONS(1353), - [sym_char_literal] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), [anon_sym_true] = ACTIONS(1355), [anon_sym_false] = ACTIONS(1355), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1355), - [sym_super] = ACTIONS(1355), - [sym_crate] = ACTIONS(1355), - [sym_metavariable] = ACTIONS(1353), - [sym__raw_string_literal_start] = ACTIONS(1353), - [sym_float_literal] = ACTIONS(1353), - }, - [378] = { - [sym_line_comment] = STATE(378), - [sym_block_comment] = STATE(378), - [ts_builtin_sym_end] = ACTIONS(1361), - [sym_identifier] = ACTIONS(1363), - [anon_sym_SEMI] = ACTIONS(1361), - [anon_sym_macro_rules_BANG] = ACTIONS(1361), - [anon_sym_LPAREN] = ACTIONS(1361), - [anon_sym_LBRACK] = ACTIONS(1361), - [anon_sym_LBRACE] = ACTIONS(1361), - [anon_sym_RBRACE] = ACTIONS(1361), - [anon_sym_PLUS] = ACTIONS(1363), - [anon_sym_STAR] = ACTIONS(1363), - [anon_sym_QMARK] = ACTIONS(1361), - [anon_sym_u8] = ACTIONS(1363), - [anon_sym_i8] = ACTIONS(1363), - [anon_sym_u16] = ACTIONS(1363), - [anon_sym_i16] = ACTIONS(1363), - [anon_sym_u32] = ACTIONS(1363), - [anon_sym_i32] = ACTIONS(1363), - [anon_sym_u64] = ACTIONS(1363), - [anon_sym_i64] = ACTIONS(1363), - [anon_sym_u128] = ACTIONS(1363), - [anon_sym_i128] = ACTIONS(1363), - [anon_sym_isize] = ACTIONS(1363), - [anon_sym_usize] = ACTIONS(1363), - [anon_sym_f32] = ACTIONS(1363), - [anon_sym_f64] = ACTIONS(1363), - [anon_sym_bool] = ACTIONS(1363), - [anon_sym_str] = ACTIONS(1363), - [anon_sym_char] = ACTIONS(1363), - [anon_sym_DASH] = ACTIONS(1363), - [anon_sym_SLASH] = ACTIONS(1363), - [anon_sym_PERCENT] = ACTIONS(1363), - [anon_sym_CARET] = ACTIONS(1363), - [anon_sym_BANG] = ACTIONS(1363), - [anon_sym_AMP] = ACTIONS(1363), - [anon_sym_PIPE] = ACTIONS(1363), - [anon_sym_AMP_AMP] = ACTIONS(1361), - [anon_sym_PIPE_PIPE] = ACTIONS(1361), - [anon_sym_LT_LT] = ACTIONS(1363), - [anon_sym_GT_GT] = ACTIONS(1363), - [anon_sym_PLUS_EQ] = ACTIONS(1361), - [anon_sym_DASH_EQ] = ACTIONS(1361), - [anon_sym_STAR_EQ] = ACTIONS(1361), - [anon_sym_SLASH_EQ] = ACTIONS(1361), - [anon_sym_PERCENT_EQ] = ACTIONS(1361), - [anon_sym_CARET_EQ] = ACTIONS(1361), - [anon_sym_AMP_EQ] = ACTIONS(1361), - [anon_sym_PIPE_EQ] = ACTIONS(1361), - [anon_sym_LT_LT_EQ] = ACTIONS(1361), - [anon_sym_GT_GT_EQ] = ACTIONS(1361), - [anon_sym_EQ] = ACTIONS(1363), - [anon_sym_EQ_EQ] = ACTIONS(1361), - [anon_sym_BANG_EQ] = ACTIONS(1361), - [anon_sym_GT] = ACTIONS(1363), - [anon_sym_LT] = ACTIONS(1363), - [anon_sym_GT_EQ] = ACTIONS(1361), - [anon_sym_LT_EQ] = ACTIONS(1361), - [anon_sym_DOT] = ACTIONS(1363), - [anon_sym_DOT_DOT] = ACTIONS(1363), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1361), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1361), - [anon_sym_COLON_COLON] = ACTIONS(1361), - [anon_sym_POUND] = ACTIONS(1361), - [anon_sym_SQUOTE] = ACTIONS(1363), - [anon_sym_as] = ACTIONS(1363), - [anon_sym_async] = ACTIONS(1363), - [anon_sym_break] = ACTIONS(1363), - [anon_sym_const] = ACTIONS(1363), - [anon_sym_continue] = ACTIONS(1363), - [anon_sym_default] = ACTIONS(1363), - [anon_sym_enum] = ACTIONS(1363), - [anon_sym_fn] = ACTIONS(1363), - [anon_sym_for] = ACTIONS(1363), - [anon_sym_gen] = ACTIONS(1363), - [anon_sym_if] = ACTIONS(1363), - [anon_sym_impl] = ACTIONS(1363), - [anon_sym_let] = ACTIONS(1363), - [anon_sym_loop] = ACTIONS(1363), - [anon_sym_match] = ACTIONS(1363), - [anon_sym_mod] = ACTIONS(1363), - [anon_sym_pub] = ACTIONS(1363), - [anon_sym_return] = ACTIONS(1363), - [anon_sym_static] = ACTIONS(1363), - [anon_sym_struct] = ACTIONS(1363), - [anon_sym_trait] = ACTIONS(1363), - [anon_sym_type] = ACTIONS(1363), - [anon_sym_union] = ACTIONS(1363), - [anon_sym_unsafe] = ACTIONS(1363), - [anon_sym_use] = ACTIONS(1363), - [anon_sym_while] = ACTIONS(1363), - [anon_sym_extern] = ACTIONS(1363), - [anon_sym_yield] = ACTIONS(1363), - [anon_sym_move] = ACTIONS(1363), - [anon_sym_try] = ACTIONS(1363), - [sym_integer_literal] = ACTIONS(1361), - [aux_sym_string_literal_token1] = ACTIONS(1361), - [sym_char_literal] = ACTIONS(1361), - [anon_sym_true] = ACTIONS(1363), - [anon_sym_false] = ACTIONS(1363), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1363), - [sym_super] = ACTIONS(1363), - [sym_crate] = ACTIONS(1363), + [sym_self] = ACTIONS(1357), + [sym_super] = ACTIONS(1359), + [sym_crate] = ACTIONS(1359), [sym_metavariable] = ACTIONS(1361), - [sym__raw_string_literal_start] = ACTIONS(1361), - [sym_float_literal] = ACTIONS(1361), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), }, - [379] = { - [sym_line_comment] = STATE(379), - [sym_block_comment] = STATE(379), + [388] = { + [sym_line_comment] = STATE(388), + [sym_block_comment] = STATE(388), [ts_builtin_sym_end] = ACTIONS(1365), [sym_identifier] = ACTIONS(1367), [anon_sym_SEMI] = ACTIONS(1365), @@ -59852,229 +62221,449 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1365), [sym_float_literal] = ACTIONS(1365), }, - [380] = { - [sym_attribute_item] = STATE(420), - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_self_parameter] = STATE(2999), - [sym_variadic_parameter] = STATE(2999), - [sym_parameter] = STATE(2999), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2746), - [sym_bracketed_type] = STATE(3557), - [sym_lifetime] = STATE(2800), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(2446), - [sym_scoped_identifier] = STATE(2125), - [sym_scoped_type_identifier] = STATE(2118), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2431), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), - [sym_line_comment] = STATE(380), - [sym_block_comment] = STATE(380), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(1369), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_RPAREN] = ACTIONS(1373), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1375), - [anon_sym_i8] = ACTIONS(1375), - [anon_sym_u16] = ACTIONS(1375), - [anon_sym_i16] = ACTIONS(1375), - [anon_sym_u32] = ACTIONS(1375), - [anon_sym_i32] = ACTIONS(1375), - [anon_sym_u64] = ACTIONS(1375), - [anon_sym_i64] = ACTIONS(1375), - [anon_sym_u128] = ACTIONS(1375), - [anon_sym_i128] = ACTIONS(1375), - [anon_sym_isize] = ACTIONS(1375), - [anon_sym_usize] = ACTIONS(1375), - [anon_sym_f32] = ACTIONS(1375), - [anon_sym_f64] = ACTIONS(1375), - [anon_sym_bool] = ACTIONS(1375), - [anon_sym_str] = ACTIONS(1375), - [anon_sym_char] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1377), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1379), - [anon_sym_DOT_DOT] = ACTIONS(1305), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1307), - [anon_sym_COMMA] = ACTIONS(1381), - [anon_sym_COLON_COLON] = ACTIONS(1383), - [anon_sym_POUND] = ACTIONS(1313), - [anon_sym_SQUOTE] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1319), - [anon_sym_default] = ACTIONS(1385), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1387), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1387), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_ref] = ACTIONS(1333), - [anon_sym_dyn] = ACTIONS(1335), - [sym_mutable_specifier] = ACTIONS(1337), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1389), - [sym_super] = ACTIONS(1391), - [sym_crate] = ACTIONS(1391), - [sym_metavariable] = ACTIONS(1393), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), + [389] = { + [sym_line_comment] = STATE(389), + [sym_block_comment] = STATE(389), + [ts_builtin_sym_end] = ACTIONS(1047), + [sym_identifier] = ACTIONS(1045), + [anon_sym_SEMI] = ACTIONS(1047), + [anon_sym_macro_rules_BANG] = ACTIONS(1047), + [anon_sym_LPAREN] = ACTIONS(1047), + [anon_sym_LBRACK] = ACTIONS(1047), + [anon_sym_LBRACE] = ACTIONS(1047), + [anon_sym_RBRACE] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1045), + [anon_sym_STAR] = ACTIONS(1045), + [anon_sym_QMARK] = ACTIONS(1047), + [anon_sym_u8] = ACTIONS(1045), + [anon_sym_i8] = ACTIONS(1045), + [anon_sym_u16] = ACTIONS(1045), + [anon_sym_i16] = ACTIONS(1045), + [anon_sym_u32] = ACTIONS(1045), + [anon_sym_i32] = ACTIONS(1045), + [anon_sym_u64] = ACTIONS(1045), + [anon_sym_i64] = ACTIONS(1045), + [anon_sym_u128] = ACTIONS(1045), + [anon_sym_i128] = ACTIONS(1045), + [anon_sym_isize] = ACTIONS(1045), + [anon_sym_usize] = ACTIONS(1045), + [anon_sym_f32] = ACTIONS(1045), + [anon_sym_f64] = ACTIONS(1045), + [anon_sym_bool] = ACTIONS(1045), + [anon_sym_str] = ACTIONS(1045), + [anon_sym_char] = ACTIONS(1045), + [anon_sym_DASH] = ACTIONS(1045), + [anon_sym_SLASH] = ACTIONS(1045), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_CARET] = ACTIONS(1045), + [anon_sym_BANG] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1045), + [anon_sym_PIPE] = ACTIONS(1045), + [anon_sym_AMP_AMP] = ACTIONS(1047), + [anon_sym_PIPE_PIPE] = ACTIONS(1047), + [anon_sym_LT_LT] = ACTIONS(1045), + [anon_sym_GT_GT] = ACTIONS(1045), + [anon_sym_PLUS_EQ] = ACTIONS(1047), + [anon_sym_DASH_EQ] = ACTIONS(1047), + [anon_sym_STAR_EQ] = ACTIONS(1047), + [anon_sym_SLASH_EQ] = ACTIONS(1047), + [anon_sym_PERCENT_EQ] = ACTIONS(1047), + [anon_sym_CARET_EQ] = ACTIONS(1047), + [anon_sym_AMP_EQ] = ACTIONS(1047), + [anon_sym_PIPE_EQ] = ACTIONS(1047), + [anon_sym_LT_LT_EQ] = ACTIONS(1047), + [anon_sym_GT_GT_EQ] = ACTIONS(1047), + [anon_sym_EQ] = ACTIONS(1045), + [anon_sym_EQ_EQ] = ACTIONS(1047), + [anon_sym_BANG_EQ] = ACTIONS(1047), + [anon_sym_GT] = ACTIONS(1045), + [anon_sym_LT] = ACTIONS(1045), + [anon_sym_GT_EQ] = ACTIONS(1047), + [anon_sym_LT_EQ] = ACTIONS(1047), + [anon_sym_DOT] = ACTIONS(1045), + [anon_sym_DOT_DOT] = ACTIONS(1045), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1047), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1047), + [anon_sym_COLON_COLON] = ACTIONS(1047), + [anon_sym_POUND] = ACTIONS(1047), + [anon_sym_SQUOTE] = ACTIONS(1045), + [anon_sym_as] = ACTIONS(1045), + [anon_sym_async] = ACTIONS(1045), + [anon_sym_break] = ACTIONS(1045), + [anon_sym_const] = ACTIONS(1045), + [anon_sym_continue] = ACTIONS(1045), + [anon_sym_default] = ACTIONS(1045), + [anon_sym_enum] = ACTIONS(1045), + [anon_sym_fn] = ACTIONS(1045), + [anon_sym_for] = ACTIONS(1045), + [anon_sym_gen] = ACTIONS(1045), + [anon_sym_if] = ACTIONS(1045), + [anon_sym_impl] = ACTIONS(1045), + [anon_sym_let] = ACTIONS(1045), + [anon_sym_loop] = ACTIONS(1045), + [anon_sym_match] = ACTIONS(1045), + [anon_sym_mod] = ACTIONS(1045), + [anon_sym_pub] = ACTIONS(1045), + [anon_sym_return] = ACTIONS(1045), + [anon_sym_static] = ACTIONS(1045), + [anon_sym_struct] = ACTIONS(1045), + [anon_sym_trait] = ACTIONS(1045), + [anon_sym_type] = ACTIONS(1045), + [anon_sym_union] = ACTIONS(1045), + [anon_sym_unsafe] = ACTIONS(1045), + [anon_sym_use] = ACTIONS(1045), + [anon_sym_while] = ACTIONS(1045), + [anon_sym_extern] = ACTIONS(1045), + [anon_sym_yield] = ACTIONS(1045), + [anon_sym_move] = ACTIONS(1045), + [anon_sym_try] = ACTIONS(1045), + [sym_integer_literal] = ACTIONS(1047), + [aux_sym_string_literal_token1] = ACTIONS(1047), + [sym_char_literal] = ACTIONS(1047), + [anon_sym_true] = ACTIONS(1045), + [anon_sym_false] = ACTIONS(1045), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1045), + [sym_super] = ACTIONS(1045), + [sym_crate] = ACTIONS(1045), + [sym_metavariable] = ACTIONS(1047), + [sym__raw_string_literal_start] = ACTIONS(1047), + [sym_float_literal] = ACTIONS(1047), }, - [381] = { - [sym_line_comment] = STATE(381), - [sym_block_comment] = STATE(381), - [ts_builtin_sym_end] = ACTIONS(1395), - [sym_identifier] = ACTIONS(1397), - [anon_sym_SEMI] = ACTIONS(1395), - [anon_sym_macro_rules_BANG] = ACTIONS(1395), - [anon_sym_LPAREN] = ACTIONS(1395), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_LBRACE] = ACTIONS(1395), - [anon_sym_RBRACE] = ACTIONS(1395), - [anon_sym_PLUS] = ACTIONS(1397), - [anon_sym_STAR] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1395), - [anon_sym_u8] = ACTIONS(1397), - [anon_sym_i8] = ACTIONS(1397), - [anon_sym_u16] = ACTIONS(1397), - [anon_sym_i16] = ACTIONS(1397), - [anon_sym_u32] = ACTIONS(1397), - [anon_sym_i32] = ACTIONS(1397), - [anon_sym_u64] = ACTIONS(1397), - [anon_sym_i64] = ACTIONS(1397), - [anon_sym_u128] = ACTIONS(1397), - [anon_sym_i128] = ACTIONS(1397), - [anon_sym_isize] = ACTIONS(1397), - [anon_sym_usize] = ACTIONS(1397), - [anon_sym_f32] = ACTIONS(1397), - [anon_sym_f64] = ACTIONS(1397), - [anon_sym_bool] = ACTIONS(1397), - [anon_sym_str] = ACTIONS(1397), - [anon_sym_char] = ACTIONS(1397), - [anon_sym_DASH] = ACTIONS(1397), - [anon_sym_SLASH] = ACTIONS(1397), - [anon_sym_PERCENT] = ACTIONS(1397), - [anon_sym_CARET] = ACTIONS(1397), - [anon_sym_BANG] = ACTIONS(1397), - [anon_sym_AMP] = ACTIONS(1397), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_AMP_AMP] = ACTIONS(1395), - [anon_sym_PIPE_PIPE] = ACTIONS(1395), - [anon_sym_LT_LT] = ACTIONS(1397), - [anon_sym_GT_GT] = ACTIONS(1397), - [anon_sym_PLUS_EQ] = ACTIONS(1395), - [anon_sym_DASH_EQ] = ACTIONS(1395), - [anon_sym_STAR_EQ] = ACTIONS(1395), - [anon_sym_SLASH_EQ] = ACTIONS(1395), - [anon_sym_PERCENT_EQ] = ACTIONS(1395), - [anon_sym_CARET_EQ] = ACTIONS(1395), - [anon_sym_AMP_EQ] = ACTIONS(1395), - [anon_sym_PIPE_EQ] = ACTIONS(1395), - [anon_sym_LT_LT_EQ] = ACTIONS(1395), - [anon_sym_GT_GT_EQ] = ACTIONS(1395), - [anon_sym_EQ] = ACTIONS(1397), - [anon_sym_EQ_EQ] = ACTIONS(1395), - [anon_sym_BANG_EQ] = ACTIONS(1395), - [anon_sym_GT] = ACTIONS(1397), - [anon_sym_LT] = ACTIONS(1397), - [anon_sym_GT_EQ] = ACTIONS(1395), - [anon_sym_LT_EQ] = ACTIONS(1395), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_DOT_DOT] = ACTIONS(1397), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1395), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1395), - [anon_sym_COLON_COLON] = ACTIONS(1395), - [anon_sym_POUND] = ACTIONS(1395), - [anon_sym_SQUOTE] = ACTIONS(1397), - [anon_sym_as] = ACTIONS(1397), - [anon_sym_async] = ACTIONS(1397), - [anon_sym_break] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_continue] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_enum] = ACTIONS(1397), - [anon_sym_fn] = ACTIONS(1397), - [anon_sym_for] = ACTIONS(1397), - [anon_sym_gen] = ACTIONS(1397), - [anon_sym_if] = ACTIONS(1397), - [anon_sym_impl] = ACTIONS(1397), - [anon_sym_let] = ACTIONS(1397), - [anon_sym_loop] = ACTIONS(1397), - [anon_sym_match] = ACTIONS(1397), - [anon_sym_mod] = ACTIONS(1397), - [anon_sym_pub] = ACTIONS(1397), - [anon_sym_return] = ACTIONS(1397), - [anon_sym_static] = ACTIONS(1397), - [anon_sym_struct] = ACTIONS(1397), - [anon_sym_trait] = ACTIONS(1397), - [anon_sym_type] = ACTIONS(1397), - [anon_sym_union] = ACTIONS(1397), - [anon_sym_unsafe] = ACTIONS(1397), - [anon_sym_use] = ACTIONS(1397), - [anon_sym_while] = ACTIONS(1397), - [anon_sym_extern] = ACTIONS(1397), - [anon_sym_yield] = ACTIONS(1397), - [anon_sym_move] = ACTIONS(1397), - [anon_sym_try] = ACTIONS(1397), - [sym_integer_literal] = ACTIONS(1395), - [aux_sym_string_literal_token1] = ACTIONS(1395), - [sym_char_literal] = ACTIONS(1395), - [anon_sym_true] = ACTIONS(1397), - [anon_sym_false] = ACTIONS(1397), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1397), - [sym_super] = ACTIONS(1397), - [sym_crate] = ACTIONS(1397), - [sym_metavariable] = ACTIONS(1395), - [sym__raw_string_literal_start] = ACTIONS(1395), - [sym_float_literal] = ACTIONS(1395), + [390] = { + [sym_line_comment] = STATE(390), + [sym_block_comment] = STATE(390), + [ts_builtin_sym_end] = ACTIONS(1051), + [sym_identifier] = ACTIONS(1049), + [anon_sym_SEMI] = ACTIONS(1051), + [anon_sym_macro_rules_BANG] = ACTIONS(1051), + [anon_sym_LPAREN] = ACTIONS(1051), + [anon_sym_LBRACK] = ACTIONS(1051), + [anon_sym_LBRACE] = ACTIONS(1051), + [anon_sym_RBRACE] = ACTIONS(1051), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_STAR] = ACTIONS(1049), + [anon_sym_QMARK] = ACTIONS(1051), + [anon_sym_u8] = ACTIONS(1049), + [anon_sym_i8] = ACTIONS(1049), + [anon_sym_u16] = ACTIONS(1049), + [anon_sym_i16] = ACTIONS(1049), + [anon_sym_u32] = ACTIONS(1049), + [anon_sym_i32] = ACTIONS(1049), + [anon_sym_u64] = ACTIONS(1049), + [anon_sym_i64] = ACTIONS(1049), + [anon_sym_u128] = ACTIONS(1049), + [anon_sym_i128] = ACTIONS(1049), + [anon_sym_isize] = ACTIONS(1049), + [anon_sym_usize] = ACTIONS(1049), + [anon_sym_f32] = ACTIONS(1049), + [anon_sym_f64] = ACTIONS(1049), + [anon_sym_bool] = ACTIONS(1049), + [anon_sym_str] = ACTIONS(1049), + [anon_sym_char] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_SLASH] = ACTIONS(1049), + [anon_sym_PERCENT] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_AMP] = ACTIONS(1049), + [anon_sym_PIPE] = ACTIONS(1049), + [anon_sym_AMP_AMP] = ACTIONS(1051), + [anon_sym_PIPE_PIPE] = ACTIONS(1051), + [anon_sym_LT_LT] = ACTIONS(1049), + [anon_sym_GT_GT] = ACTIONS(1049), + [anon_sym_PLUS_EQ] = ACTIONS(1051), + [anon_sym_DASH_EQ] = ACTIONS(1051), + [anon_sym_STAR_EQ] = ACTIONS(1051), + [anon_sym_SLASH_EQ] = ACTIONS(1051), + [anon_sym_PERCENT_EQ] = ACTIONS(1051), + [anon_sym_CARET_EQ] = ACTIONS(1051), + [anon_sym_AMP_EQ] = ACTIONS(1051), + [anon_sym_PIPE_EQ] = ACTIONS(1051), + [anon_sym_LT_LT_EQ] = ACTIONS(1051), + [anon_sym_GT_GT_EQ] = ACTIONS(1051), + [anon_sym_EQ] = ACTIONS(1049), + [anon_sym_EQ_EQ] = ACTIONS(1051), + [anon_sym_BANG_EQ] = ACTIONS(1051), + [anon_sym_GT] = ACTIONS(1049), + [anon_sym_LT] = ACTIONS(1049), + [anon_sym_GT_EQ] = ACTIONS(1051), + [anon_sym_LT_EQ] = ACTIONS(1051), + [anon_sym_DOT] = ACTIONS(1049), + [anon_sym_DOT_DOT] = ACTIONS(1049), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1051), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1051), + [anon_sym_COLON_COLON] = ACTIONS(1051), + [anon_sym_POUND] = ACTIONS(1051), + [anon_sym_SQUOTE] = ACTIONS(1049), + [anon_sym_as] = ACTIONS(1049), + [anon_sym_async] = ACTIONS(1049), + [anon_sym_break] = ACTIONS(1049), + [anon_sym_const] = ACTIONS(1049), + [anon_sym_continue] = ACTIONS(1049), + [anon_sym_default] = ACTIONS(1049), + [anon_sym_enum] = ACTIONS(1049), + [anon_sym_fn] = ACTIONS(1049), + [anon_sym_for] = ACTIONS(1049), + [anon_sym_gen] = ACTIONS(1049), + [anon_sym_if] = ACTIONS(1049), + [anon_sym_impl] = ACTIONS(1049), + [anon_sym_let] = ACTIONS(1049), + [anon_sym_loop] = ACTIONS(1049), + [anon_sym_match] = ACTIONS(1049), + [anon_sym_mod] = ACTIONS(1049), + [anon_sym_pub] = ACTIONS(1049), + [anon_sym_return] = ACTIONS(1049), + [anon_sym_static] = ACTIONS(1049), + [anon_sym_struct] = ACTIONS(1049), + [anon_sym_trait] = ACTIONS(1049), + [anon_sym_type] = ACTIONS(1049), + [anon_sym_union] = ACTIONS(1049), + [anon_sym_unsafe] = ACTIONS(1049), + [anon_sym_use] = ACTIONS(1049), + [anon_sym_while] = ACTIONS(1049), + [anon_sym_extern] = ACTIONS(1049), + [anon_sym_yield] = ACTIONS(1049), + [anon_sym_move] = ACTIONS(1049), + [anon_sym_try] = ACTIONS(1049), + [sym_integer_literal] = ACTIONS(1051), + [aux_sym_string_literal_token1] = ACTIONS(1051), + [sym_char_literal] = ACTIONS(1051), + [anon_sym_true] = ACTIONS(1049), + [anon_sym_false] = ACTIONS(1049), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1049), + [sym_super] = ACTIONS(1049), + [sym_crate] = ACTIONS(1049), + [sym_metavariable] = ACTIONS(1051), + [sym__raw_string_literal_start] = ACTIONS(1051), + [sym_float_literal] = ACTIONS(1051), }, - [382] = { - [sym_line_comment] = STATE(382), - [sym_block_comment] = STATE(382), + [391] = { + [sym_line_comment] = STATE(391), + [sym_block_comment] = STATE(391), + [ts_builtin_sym_end] = ACTIONS(1369), + [sym_identifier] = ACTIONS(1371), + [anon_sym_SEMI] = ACTIONS(1369), + [anon_sym_macro_rules_BANG] = ACTIONS(1369), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_LBRACK] = ACTIONS(1369), + [anon_sym_LBRACE] = ACTIONS(1369), + [anon_sym_RBRACE] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1371), + [anon_sym_STAR] = ACTIONS(1371), + [anon_sym_QMARK] = ACTIONS(1369), + [anon_sym_u8] = ACTIONS(1371), + [anon_sym_i8] = ACTIONS(1371), + [anon_sym_u16] = ACTIONS(1371), + [anon_sym_i16] = ACTIONS(1371), + [anon_sym_u32] = ACTIONS(1371), + [anon_sym_i32] = ACTIONS(1371), + [anon_sym_u64] = ACTIONS(1371), + [anon_sym_i64] = ACTIONS(1371), + [anon_sym_u128] = ACTIONS(1371), + [anon_sym_i128] = ACTIONS(1371), + [anon_sym_isize] = ACTIONS(1371), + [anon_sym_usize] = ACTIONS(1371), + [anon_sym_f32] = ACTIONS(1371), + [anon_sym_f64] = ACTIONS(1371), + [anon_sym_bool] = ACTIONS(1371), + [anon_sym_str] = ACTIONS(1371), + [anon_sym_char] = ACTIONS(1371), + [anon_sym_DASH] = ACTIONS(1371), + [anon_sym_SLASH] = ACTIONS(1371), + [anon_sym_PERCENT] = ACTIONS(1371), + [anon_sym_CARET] = ACTIONS(1371), + [anon_sym_BANG] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1371), + [anon_sym_PIPE] = ACTIONS(1371), + [anon_sym_AMP_AMP] = ACTIONS(1369), + [anon_sym_PIPE_PIPE] = ACTIONS(1369), + [anon_sym_LT_LT] = ACTIONS(1371), + [anon_sym_GT_GT] = ACTIONS(1371), + [anon_sym_PLUS_EQ] = ACTIONS(1369), + [anon_sym_DASH_EQ] = ACTIONS(1369), + [anon_sym_STAR_EQ] = ACTIONS(1369), + [anon_sym_SLASH_EQ] = ACTIONS(1369), + [anon_sym_PERCENT_EQ] = ACTIONS(1369), + [anon_sym_CARET_EQ] = ACTIONS(1369), + [anon_sym_AMP_EQ] = ACTIONS(1369), + [anon_sym_PIPE_EQ] = ACTIONS(1369), + [anon_sym_LT_LT_EQ] = ACTIONS(1369), + [anon_sym_GT_GT_EQ] = ACTIONS(1369), + [anon_sym_EQ] = ACTIONS(1371), + [anon_sym_EQ_EQ] = ACTIONS(1369), + [anon_sym_BANG_EQ] = ACTIONS(1369), + [anon_sym_GT] = ACTIONS(1371), + [anon_sym_LT] = ACTIONS(1371), + [anon_sym_GT_EQ] = ACTIONS(1369), + [anon_sym_LT_EQ] = ACTIONS(1369), + [anon_sym_DOT] = ACTIONS(1371), + [anon_sym_DOT_DOT] = ACTIONS(1371), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1369), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1369), + [anon_sym_COLON_COLON] = ACTIONS(1369), + [anon_sym_POUND] = ACTIONS(1369), + [anon_sym_SQUOTE] = ACTIONS(1371), + [anon_sym_as] = ACTIONS(1371), + [anon_sym_async] = ACTIONS(1371), + [anon_sym_break] = ACTIONS(1371), + [anon_sym_const] = ACTIONS(1371), + [anon_sym_continue] = ACTIONS(1371), + [anon_sym_default] = ACTIONS(1371), + [anon_sym_enum] = ACTIONS(1371), + [anon_sym_fn] = ACTIONS(1371), + [anon_sym_for] = ACTIONS(1371), + [anon_sym_gen] = ACTIONS(1371), + [anon_sym_if] = ACTIONS(1371), + [anon_sym_impl] = ACTIONS(1371), + [anon_sym_let] = ACTIONS(1371), + [anon_sym_loop] = ACTIONS(1371), + [anon_sym_match] = ACTIONS(1371), + [anon_sym_mod] = ACTIONS(1371), + [anon_sym_pub] = ACTIONS(1371), + [anon_sym_return] = ACTIONS(1371), + [anon_sym_static] = ACTIONS(1371), + [anon_sym_struct] = ACTIONS(1371), + [anon_sym_trait] = ACTIONS(1371), + [anon_sym_type] = ACTIONS(1371), + [anon_sym_union] = ACTIONS(1371), + [anon_sym_unsafe] = ACTIONS(1371), + [anon_sym_use] = ACTIONS(1371), + [anon_sym_while] = ACTIONS(1371), + [anon_sym_extern] = ACTIONS(1371), + [anon_sym_yield] = ACTIONS(1371), + [anon_sym_move] = ACTIONS(1371), + [anon_sym_try] = ACTIONS(1371), + [sym_integer_literal] = ACTIONS(1369), + [aux_sym_string_literal_token1] = ACTIONS(1369), + [sym_char_literal] = ACTIONS(1369), + [anon_sym_true] = ACTIONS(1371), + [anon_sym_false] = ACTIONS(1371), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1371), + [sym_super] = ACTIONS(1371), + [sym_crate] = ACTIONS(1371), + [sym_metavariable] = ACTIONS(1369), + [sym__raw_string_literal_start] = ACTIONS(1369), + [sym_float_literal] = ACTIONS(1369), + }, + [392] = { + [sym_attribute_item] = STATE(429), + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_self_parameter] = STATE(3281), + [sym_variadic_parameter] = STATE(3281), + [sym_parameter] = STATE(3281), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2991), + [sym_bracketed_type] = STATE(4033), + [sym_lifetime] = STATE(3377), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3566), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2818), + [sym_scoped_identifier] = STATE(2397), + [sym_scoped_type_identifier] = STATE(2400), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(2804), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(392), + [sym_block_comment] = STATE(392), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(1375), + [anon_sym_RPAREN] = ACTIONS(1377), + [anon_sym_LBRACK] = ACTIONS(1299), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1379), + [anon_sym_i8] = ACTIONS(1379), + [anon_sym_u16] = ACTIONS(1379), + [anon_sym_i16] = ACTIONS(1379), + [anon_sym_u32] = ACTIONS(1379), + [anon_sym_i32] = ACTIONS(1379), + [anon_sym_u64] = ACTIONS(1379), + [anon_sym_i64] = ACTIONS(1379), + [anon_sym_u128] = ACTIONS(1379), + [anon_sym_i128] = ACTIONS(1379), + [anon_sym_isize] = ACTIONS(1379), + [anon_sym_usize] = ACTIONS(1379), + [anon_sym_f32] = ACTIONS(1379), + [anon_sym_f64] = ACTIONS(1379), + [anon_sym_bool] = ACTIONS(1379), + [anon_sym_str] = ACTIONS(1379), + [anon_sym_char] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1381), + [anon_sym_PIPE] = ACTIONS(1313), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1383), + [anon_sym_DOT_DOT] = ACTIONS(1317), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1319), + [anon_sym_COMMA] = ACTIONS(1385), + [anon_sym_COLON_COLON] = ACTIONS(1387), + [anon_sym_POUND] = ACTIONS(1325), + [anon_sym_SQUOTE] = ACTIONS(1327), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1331), + [anon_sym_default] = ACTIONS(1389), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1391), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1391), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_ref] = ACTIONS(1345), + [anon_sym_dyn] = ACTIONS(1347), + [sym_mutable_specifier] = ACTIONS(1349), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1393), + [sym_super] = ACTIONS(1395), + [sym_crate] = ACTIONS(1395), + [sym_metavariable] = ACTIONS(1397), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), + }, + [393] = { + [sym_line_comment] = STATE(393), + [sym_block_comment] = STATE(393), [ts_builtin_sym_end] = ACTIONS(1399), [sym_identifier] = ACTIONS(1401), [anon_sym_SEMI] = ACTIONS(1399), @@ -60182,9 +62771,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1399), [sym_float_literal] = ACTIONS(1399), }, - [383] = { - [sym_line_comment] = STATE(383), - [sym_block_comment] = STATE(383), + [394] = { + [sym_line_comment] = STATE(394), + [sym_block_comment] = STATE(394), [ts_builtin_sym_end] = ACTIONS(1403), [sym_identifier] = ACTIONS(1405), [anon_sym_SEMI] = ACTIONS(1403), @@ -60292,229 +62881,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1403), [sym_float_literal] = ACTIONS(1403), }, - [384] = { - [sym_line_comment] = STATE(384), - [sym_block_comment] = STATE(384), - [ts_builtin_sym_end] = ACTIONS(1051), - [sym_identifier] = ACTIONS(1049), - [anon_sym_SEMI] = ACTIONS(1051), - [anon_sym_macro_rules_BANG] = ACTIONS(1051), - [anon_sym_LPAREN] = ACTIONS(1051), - [anon_sym_LBRACK] = ACTIONS(1051), - [anon_sym_LBRACE] = ACTIONS(1051), - [anon_sym_RBRACE] = ACTIONS(1051), - [anon_sym_PLUS] = ACTIONS(1049), - [anon_sym_STAR] = ACTIONS(1049), - [anon_sym_QMARK] = ACTIONS(1051), - [anon_sym_u8] = ACTIONS(1049), - [anon_sym_i8] = ACTIONS(1049), - [anon_sym_u16] = ACTIONS(1049), - [anon_sym_i16] = ACTIONS(1049), - [anon_sym_u32] = ACTIONS(1049), - [anon_sym_i32] = ACTIONS(1049), - [anon_sym_u64] = ACTIONS(1049), - [anon_sym_i64] = ACTIONS(1049), - [anon_sym_u128] = ACTIONS(1049), - [anon_sym_i128] = ACTIONS(1049), - [anon_sym_isize] = ACTIONS(1049), - [anon_sym_usize] = ACTIONS(1049), - [anon_sym_f32] = ACTIONS(1049), - [anon_sym_f64] = ACTIONS(1049), - [anon_sym_bool] = ACTIONS(1049), - [anon_sym_str] = ACTIONS(1049), - [anon_sym_char] = ACTIONS(1049), - [anon_sym_DASH] = ACTIONS(1049), - [anon_sym_SLASH] = ACTIONS(1049), - [anon_sym_PERCENT] = ACTIONS(1049), - [anon_sym_CARET] = ACTIONS(1049), - [anon_sym_BANG] = ACTIONS(1049), - [anon_sym_AMP] = ACTIONS(1049), - [anon_sym_PIPE] = ACTIONS(1049), - [anon_sym_AMP_AMP] = ACTIONS(1051), - [anon_sym_PIPE_PIPE] = ACTIONS(1051), - [anon_sym_LT_LT] = ACTIONS(1049), - [anon_sym_GT_GT] = ACTIONS(1049), - [anon_sym_PLUS_EQ] = ACTIONS(1051), - [anon_sym_DASH_EQ] = ACTIONS(1051), - [anon_sym_STAR_EQ] = ACTIONS(1051), - [anon_sym_SLASH_EQ] = ACTIONS(1051), - [anon_sym_PERCENT_EQ] = ACTIONS(1051), - [anon_sym_CARET_EQ] = ACTIONS(1051), - [anon_sym_AMP_EQ] = ACTIONS(1051), - [anon_sym_PIPE_EQ] = ACTIONS(1051), - [anon_sym_LT_LT_EQ] = ACTIONS(1051), - [anon_sym_GT_GT_EQ] = ACTIONS(1051), - [anon_sym_EQ] = ACTIONS(1049), - [anon_sym_EQ_EQ] = ACTIONS(1051), - [anon_sym_BANG_EQ] = ACTIONS(1051), - [anon_sym_GT] = ACTIONS(1049), - [anon_sym_LT] = ACTIONS(1049), - [anon_sym_GT_EQ] = ACTIONS(1051), - [anon_sym_LT_EQ] = ACTIONS(1051), - [anon_sym_DOT] = ACTIONS(1049), - [anon_sym_DOT_DOT] = ACTIONS(1049), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1051), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1051), - [anon_sym_COLON_COLON] = ACTIONS(1051), - [anon_sym_POUND] = ACTIONS(1051), - [anon_sym_SQUOTE] = ACTIONS(1049), - [anon_sym_as] = ACTIONS(1049), - [anon_sym_async] = ACTIONS(1049), - [anon_sym_break] = ACTIONS(1049), - [anon_sym_const] = ACTIONS(1049), - [anon_sym_continue] = ACTIONS(1049), - [anon_sym_default] = ACTIONS(1049), - [anon_sym_enum] = ACTIONS(1049), - [anon_sym_fn] = ACTIONS(1049), - [anon_sym_for] = ACTIONS(1049), - [anon_sym_gen] = ACTIONS(1049), - [anon_sym_if] = ACTIONS(1049), - [anon_sym_impl] = ACTIONS(1049), - [anon_sym_let] = ACTIONS(1049), - [anon_sym_loop] = ACTIONS(1049), - [anon_sym_match] = ACTIONS(1049), - [anon_sym_mod] = ACTIONS(1049), - [anon_sym_pub] = ACTIONS(1049), - [anon_sym_return] = ACTIONS(1049), - [anon_sym_static] = ACTIONS(1049), - [anon_sym_struct] = ACTIONS(1049), - [anon_sym_trait] = ACTIONS(1049), - [anon_sym_type] = ACTIONS(1049), - [anon_sym_union] = ACTIONS(1049), - [anon_sym_unsafe] = ACTIONS(1049), - [anon_sym_use] = ACTIONS(1049), - [anon_sym_while] = ACTIONS(1049), - [anon_sym_extern] = ACTIONS(1049), - [anon_sym_yield] = ACTIONS(1049), - [anon_sym_move] = ACTIONS(1049), - [anon_sym_try] = ACTIONS(1049), - [sym_integer_literal] = ACTIONS(1051), - [aux_sym_string_literal_token1] = ACTIONS(1051), - [sym_char_literal] = ACTIONS(1051), - [anon_sym_true] = ACTIONS(1049), - [anon_sym_false] = ACTIONS(1049), + [395] = { + [sym_attribute_item] = STATE(429), + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_self_parameter] = STATE(3281), + [sym_variadic_parameter] = STATE(3281), + [sym_parameter] = STATE(3281), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2991), + [sym_bracketed_type] = STATE(4033), + [sym_lifetime] = STATE(3377), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3566), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2818), + [sym_scoped_identifier] = STATE(2397), + [sym_scoped_type_identifier] = STATE(2400), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(2804), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(395), + [sym_block_comment] = STATE(395), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(1375), + [anon_sym_RPAREN] = ACTIONS(1407), + [anon_sym_LBRACK] = ACTIONS(1299), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1379), + [anon_sym_i8] = ACTIONS(1379), + [anon_sym_u16] = ACTIONS(1379), + [anon_sym_i16] = ACTIONS(1379), + [anon_sym_u32] = ACTIONS(1379), + [anon_sym_i32] = ACTIONS(1379), + [anon_sym_u64] = ACTIONS(1379), + [anon_sym_i64] = ACTIONS(1379), + [anon_sym_u128] = ACTIONS(1379), + [anon_sym_i128] = ACTIONS(1379), + [anon_sym_isize] = ACTIONS(1379), + [anon_sym_usize] = ACTIONS(1379), + [anon_sym_f32] = ACTIONS(1379), + [anon_sym_f64] = ACTIONS(1379), + [anon_sym_bool] = ACTIONS(1379), + [anon_sym_str] = ACTIONS(1379), + [anon_sym_char] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1381), + [anon_sym_PIPE] = ACTIONS(1313), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1383), + [anon_sym_DOT_DOT] = ACTIONS(1317), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1319), + [anon_sym_COMMA] = ACTIONS(1409), + [anon_sym_COLON_COLON] = ACTIONS(1387), + [anon_sym_POUND] = ACTIONS(1325), + [anon_sym_SQUOTE] = ACTIONS(1327), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1331), + [anon_sym_default] = ACTIONS(1389), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1391), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1391), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_ref] = ACTIONS(1345), + [anon_sym_dyn] = ACTIONS(1347), + [sym_mutable_specifier] = ACTIONS(1349), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1049), - [sym_super] = ACTIONS(1049), - [sym_crate] = ACTIONS(1049), - [sym_metavariable] = ACTIONS(1051), - [sym__raw_string_literal_start] = ACTIONS(1051), - [sym_float_literal] = ACTIONS(1051), - }, - [385] = { - [sym_line_comment] = STATE(385), - [sym_block_comment] = STATE(385), - [ts_builtin_sym_end] = ACTIONS(1407), - [sym_identifier] = ACTIONS(1409), - [anon_sym_SEMI] = ACTIONS(1407), - [anon_sym_macro_rules_BANG] = ACTIONS(1407), - [anon_sym_LPAREN] = ACTIONS(1407), - [anon_sym_LBRACK] = ACTIONS(1407), - [anon_sym_LBRACE] = ACTIONS(1407), - [anon_sym_RBRACE] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_STAR] = ACTIONS(1409), - [anon_sym_QMARK] = ACTIONS(1407), - [anon_sym_u8] = ACTIONS(1409), - [anon_sym_i8] = ACTIONS(1409), - [anon_sym_u16] = ACTIONS(1409), - [anon_sym_i16] = ACTIONS(1409), - [anon_sym_u32] = ACTIONS(1409), - [anon_sym_i32] = ACTIONS(1409), - [anon_sym_u64] = ACTIONS(1409), - [anon_sym_i64] = ACTIONS(1409), - [anon_sym_u128] = ACTIONS(1409), - [anon_sym_i128] = ACTIONS(1409), - [anon_sym_isize] = ACTIONS(1409), - [anon_sym_usize] = ACTIONS(1409), - [anon_sym_f32] = ACTIONS(1409), - [anon_sym_f64] = ACTIONS(1409), - [anon_sym_bool] = ACTIONS(1409), - [anon_sym_str] = ACTIONS(1409), - [anon_sym_char] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(1409), - [anon_sym_PERCENT] = ACTIONS(1409), - [anon_sym_CARET] = ACTIONS(1409), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_AMP] = ACTIONS(1409), - [anon_sym_PIPE] = ACTIONS(1409), - [anon_sym_AMP_AMP] = ACTIONS(1407), - [anon_sym_PIPE_PIPE] = ACTIONS(1407), - [anon_sym_LT_LT] = ACTIONS(1409), - [anon_sym_GT_GT] = ACTIONS(1409), - [anon_sym_PLUS_EQ] = ACTIONS(1407), - [anon_sym_DASH_EQ] = ACTIONS(1407), - [anon_sym_STAR_EQ] = ACTIONS(1407), - [anon_sym_SLASH_EQ] = ACTIONS(1407), - [anon_sym_PERCENT_EQ] = ACTIONS(1407), - [anon_sym_CARET_EQ] = ACTIONS(1407), - [anon_sym_AMP_EQ] = ACTIONS(1407), - [anon_sym_PIPE_EQ] = ACTIONS(1407), - [anon_sym_LT_LT_EQ] = ACTIONS(1407), - [anon_sym_GT_GT_EQ] = ACTIONS(1407), - [anon_sym_EQ] = ACTIONS(1409), - [anon_sym_EQ_EQ] = ACTIONS(1407), - [anon_sym_BANG_EQ] = ACTIONS(1407), - [anon_sym_GT] = ACTIONS(1409), - [anon_sym_LT] = ACTIONS(1409), - [anon_sym_GT_EQ] = ACTIONS(1407), - [anon_sym_LT_EQ] = ACTIONS(1407), - [anon_sym_DOT] = ACTIONS(1409), - [anon_sym_DOT_DOT] = ACTIONS(1409), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1407), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1407), - [anon_sym_COLON_COLON] = ACTIONS(1407), - [anon_sym_POUND] = ACTIONS(1407), - [anon_sym_SQUOTE] = ACTIONS(1409), - [anon_sym_as] = ACTIONS(1409), - [anon_sym_async] = ACTIONS(1409), - [anon_sym_break] = ACTIONS(1409), - [anon_sym_const] = ACTIONS(1409), - [anon_sym_continue] = ACTIONS(1409), - [anon_sym_default] = ACTIONS(1409), - [anon_sym_enum] = ACTIONS(1409), - [anon_sym_fn] = ACTIONS(1409), - [anon_sym_for] = ACTIONS(1409), - [anon_sym_gen] = ACTIONS(1409), - [anon_sym_if] = ACTIONS(1409), - [anon_sym_impl] = ACTIONS(1409), - [anon_sym_let] = ACTIONS(1409), - [anon_sym_loop] = ACTIONS(1409), - [anon_sym_match] = ACTIONS(1409), - [anon_sym_mod] = ACTIONS(1409), - [anon_sym_pub] = ACTIONS(1409), - [anon_sym_return] = ACTIONS(1409), - [anon_sym_static] = ACTIONS(1409), - [anon_sym_struct] = ACTIONS(1409), - [anon_sym_trait] = ACTIONS(1409), - [anon_sym_type] = ACTIONS(1409), - [anon_sym_union] = ACTIONS(1409), - [anon_sym_unsafe] = ACTIONS(1409), - [anon_sym_use] = ACTIONS(1409), - [anon_sym_while] = ACTIONS(1409), - [anon_sym_extern] = ACTIONS(1409), - [anon_sym_yield] = ACTIONS(1409), - [anon_sym_move] = ACTIONS(1409), - [anon_sym_try] = ACTIONS(1409), - [sym_integer_literal] = ACTIONS(1407), - [aux_sym_string_literal_token1] = ACTIONS(1407), - [sym_char_literal] = ACTIONS(1407), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1409), - [sym_super] = ACTIONS(1409), - [sym_crate] = ACTIONS(1409), - [sym_metavariable] = ACTIONS(1407), - [sym__raw_string_literal_start] = ACTIONS(1407), - [sym_float_literal] = ACTIONS(1407), + [sym_self] = ACTIONS(1393), + [sym_super] = ACTIONS(1395), + [sym_crate] = ACTIONS(1395), + [sym_metavariable] = ACTIONS(1397), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), }, - [386] = { - [sym_line_comment] = STATE(386), - [sym_block_comment] = STATE(386), + [396] = { + [sym_line_comment] = STATE(396), + [sym_block_comment] = STATE(396), [ts_builtin_sym_end] = ACTIONS(1411), [sym_identifier] = ACTIONS(1413), [anon_sym_SEMI] = ACTIONS(1411), @@ -60622,9 +63101,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1411), [sym_float_literal] = ACTIONS(1411), }, - [387] = { - [sym_line_comment] = STATE(387), - [sym_block_comment] = STATE(387), + [397] = { + [sym_line_comment] = STATE(397), + [sym_block_comment] = STATE(397), [ts_builtin_sym_end] = ACTIONS(1415), [sym_identifier] = ACTIONS(1417), [anon_sym_SEMI] = ACTIONS(1415), @@ -60732,339 +63211,229 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1415), [sym_float_literal] = ACTIONS(1415), }, - [388] = { - [sym_line_comment] = STATE(388), - [sym_block_comment] = STATE(388), - [ts_builtin_sym_end] = ACTIONS(1047), - [sym_identifier] = ACTIONS(1045), - [anon_sym_SEMI] = ACTIONS(1047), - [anon_sym_macro_rules_BANG] = ACTIONS(1047), - [anon_sym_LPAREN] = ACTIONS(1047), - [anon_sym_LBRACK] = ACTIONS(1047), - [anon_sym_LBRACE] = ACTIONS(1047), - [anon_sym_RBRACE] = ACTIONS(1047), - [anon_sym_PLUS] = ACTIONS(1045), - [anon_sym_STAR] = ACTIONS(1045), - [anon_sym_QMARK] = ACTIONS(1047), - [anon_sym_u8] = ACTIONS(1045), - [anon_sym_i8] = ACTIONS(1045), - [anon_sym_u16] = ACTIONS(1045), - [anon_sym_i16] = ACTIONS(1045), - [anon_sym_u32] = ACTIONS(1045), - [anon_sym_i32] = ACTIONS(1045), - [anon_sym_u64] = ACTIONS(1045), - [anon_sym_i64] = ACTIONS(1045), - [anon_sym_u128] = ACTIONS(1045), - [anon_sym_i128] = ACTIONS(1045), - [anon_sym_isize] = ACTIONS(1045), - [anon_sym_usize] = ACTIONS(1045), - [anon_sym_f32] = ACTIONS(1045), - [anon_sym_f64] = ACTIONS(1045), - [anon_sym_bool] = ACTIONS(1045), - [anon_sym_str] = ACTIONS(1045), - [anon_sym_char] = ACTIONS(1045), - [anon_sym_DASH] = ACTIONS(1045), - [anon_sym_SLASH] = ACTIONS(1045), - [anon_sym_PERCENT] = ACTIONS(1045), - [anon_sym_CARET] = ACTIONS(1045), - [anon_sym_BANG] = ACTIONS(1045), - [anon_sym_AMP] = ACTIONS(1045), - [anon_sym_PIPE] = ACTIONS(1045), - [anon_sym_AMP_AMP] = ACTIONS(1047), - [anon_sym_PIPE_PIPE] = ACTIONS(1047), - [anon_sym_LT_LT] = ACTIONS(1045), - [anon_sym_GT_GT] = ACTIONS(1045), - [anon_sym_PLUS_EQ] = ACTIONS(1047), - [anon_sym_DASH_EQ] = ACTIONS(1047), - [anon_sym_STAR_EQ] = ACTIONS(1047), - [anon_sym_SLASH_EQ] = ACTIONS(1047), - [anon_sym_PERCENT_EQ] = ACTIONS(1047), - [anon_sym_CARET_EQ] = ACTIONS(1047), - [anon_sym_AMP_EQ] = ACTIONS(1047), - [anon_sym_PIPE_EQ] = ACTIONS(1047), - [anon_sym_LT_LT_EQ] = ACTIONS(1047), - [anon_sym_GT_GT_EQ] = ACTIONS(1047), - [anon_sym_EQ] = ACTIONS(1045), - [anon_sym_EQ_EQ] = ACTIONS(1047), - [anon_sym_BANG_EQ] = ACTIONS(1047), - [anon_sym_GT] = ACTIONS(1045), - [anon_sym_LT] = ACTIONS(1045), - [anon_sym_GT_EQ] = ACTIONS(1047), - [anon_sym_LT_EQ] = ACTIONS(1047), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_DOT_DOT] = ACTIONS(1045), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1047), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1047), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_SQUOTE] = ACTIONS(1045), - [anon_sym_as] = ACTIONS(1045), - [anon_sym_async] = ACTIONS(1045), - [anon_sym_break] = ACTIONS(1045), - [anon_sym_const] = ACTIONS(1045), - [anon_sym_continue] = ACTIONS(1045), - [anon_sym_default] = ACTIONS(1045), - [anon_sym_enum] = ACTIONS(1045), - [anon_sym_fn] = ACTIONS(1045), - [anon_sym_for] = ACTIONS(1045), - [anon_sym_gen] = ACTIONS(1045), - [anon_sym_if] = ACTIONS(1045), - [anon_sym_impl] = ACTIONS(1045), - [anon_sym_let] = ACTIONS(1045), - [anon_sym_loop] = ACTIONS(1045), - [anon_sym_match] = ACTIONS(1045), - [anon_sym_mod] = ACTIONS(1045), - [anon_sym_pub] = ACTIONS(1045), - [anon_sym_return] = ACTIONS(1045), - [anon_sym_static] = ACTIONS(1045), - [anon_sym_struct] = ACTIONS(1045), - [anon_sym_trait] = ACTIONS(1045), - [anon_sym_type] = ACTIONS(1045), - [anon_sym_union] = ACTIONS(1045), - [anon_sym_unsafe] = ACTIONS(1045), - [anon_sym_use] = ACTIONS(1045), - [anon_sym_while] = ACTIONS(1045), - [anon_sym_extern] = ACTIONS(1045), - [anon_sym_yield] = ACTIONS(1045), - [anon_sym_move] = ACTIONS(1045), - [anon_sym_try] = ACTIONS(1045), - [sym_integer_literal] = ACTIONS(1047), - [aux_sym_string_literal_token1] = ACTIONS(1047), - [sym_char_literal] = ACTIONS(1047), - [anon_sym_true] = ACTIONS(1045), - [anon_sym_false] = ACTIONS(1045), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1045), - [sym_super] = ACTIONS(1045), - [sym_crate] = ACTIONS(1045), - [sym_metavariable] = ACTIONS(1047), - [sym__raw_string_literal_start] = ACTIONS(1047), - [sym_float_literal] = ACTIONS(1047), - }, - [389] = { - [sym_attribute_item] = STATE(422), - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_self_parameter] = STATE(2922), - [sym_variadic_parameter] = STATE(2922), - [sym_parameter] = STATE(2922), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2584), - [sym_bracketed_type] = STATE(3550), - [sym_lifetime] = STATE(2800), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3221), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(2410), - [sym_scoped_identifier] = STATE(2242), - [sym_scoped_type_identifier] = STATE(2118), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(3256), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), - [sym_line_comment] = STATE(389), - [sym_block_comment] = STATE(389), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(1281), - [anon_sym_LPAREN] = ACTIONS(1283), + [398] = { + [sym_attribute_item] = STATE(428), + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_self_parameter] = STATE(3175), + [sym_variadic_parameter] = STATE(3175), + [sym_parameter] = STATE(3175), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(3105), + [sym_bracketed_type] = STATE(4026), + [sym_lifetime] = STATE(3377), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3775), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2751), + [sym_scoped_identifier] = STATE(2534), + [sym_scoped_type_identifier] = STATE(2400), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(3619), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(398), + [sym_block_comment] = STATE(398), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(1293), + [anon_sym_LPAREN] = ACTIONS(1295), [anon_sym_RPAREN] = ACTIONS(1419), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1293), - [anon_sym_i8] = ACTIONS(1293), - [anon_sym_u16] = ACTIONS(1293), - [anon_sym_i16] = ACTIONS(1293), - [anon_sym_u32] = ACTIONS(1293), - [anon_sym_i32] = ACTIONS(1293), - [anon_sym_u64] = ACTIONS(1293), - [anon_sym_i64] = ACTIONS(1293), - [anon_sym_u128] = ACTIONS(1293), - [anon_sym_i128] = ACTIONS(1293), - [anon_sym_isize] = ACTIONS(1293), - [anon_sym_usize] = ACTIONS(1293), - [anon_sym_f32] = ACTIONS(1293), - [anon_sym_f64] = ACTIONS(1293), - [anon_sym_bool] = ACTIONS(1293), - [anon_sym_str] = ACTIONS(1293), - [anon_sym_char] = ACTIONS(1293), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1299), - [anon_sym_PIPE] = ACTIONS(1301), + [anon_sym_LBRACK] = ACTIONS(1299), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1305), + [anon_sym_i8] = ACTIONS(1305), + [anon_sym_u16] = ACTIONS(1305), + [anon_sym_i16] = ACTIONS(1305), + [anon_sym_u32] = ACTIONS(1305), + [anon_sym_i32] = ACTIONS(1305), + [anon_sym_u64] = ACTIONS(1305), + [anon_sym_i64] = ACTIONS(1305), + [anon_sym_u128] = ACTIONS(1305), + [anon_sym_i128] = ACTIONS(1305), + [anon_sym_isize] = ACTIONS(1305), + [anon_sym_usize] = ACTIONS(1305), + [anon_sym_f32] = ACTIONS(1305), + [anon_sym_f64] = ACTIONS(1305), + [anon_sym_bool] = ACTIONS(1305), + [anon_sym_str] = ACTIONS(1305), + [anon_sym_char] = ACTIONS(1305), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1311), + [anon_sym_PIPE] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1421), - [anon_sym_DOT_DOT] = ACTIONS(1305), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1307), + [anon_sym_DOT_DOT] = ACTIONS(1317), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1319), [anon_sym_COMMA] = ACTIONS(1423), - [anon_sym_COLON_COLON] = ACTIONS(1311), - [anon_sym_POUND] = ACTIONS(1313), - [anon_sym_SQUOTE] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1319), - [anon_sym_default] = ACTIONS(1321), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1327), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1327), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_ref] = ACTIONS(1333), - [anon_sym_dyn] = ACTIONS(1335), - [sym_mutable_specifier] = ACTIONS(1337), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1345), - [sym_super] = ACTIONS(1347), - [sym_crate] = ACTIONS(1347), - [sym_metavariable] = ACTIONS(1349), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), + [anon_sym_COLON_COLON] = ACTIONS(1323), + [anon_sym_POUND] = ACTIONS(1325), + [anon_sym_SQUOTE] = ACTIONS(1327), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1331), + [anon_sym_default] = ACTIONS(1333), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1339), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1339), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_ref] = ACTIONS(1345), + [anon_sym_dyn] = ACTIONS(1347), + [sym_mutable_specifier] = ACTIONS(1349), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1357), + [sym_super] = ACTIONS(1359), + [sym_crate] = ACTIONS(1359), + [sym_metavariable] = ACTIONS(1361), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), }, - [390] = { - [sym_attribute_item] = STATE(420), - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_self_parameter] = STATE(2999), - [sym_variadic_parameter] = STATE(2999), - [sym_parameter] = STATE(2999), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2746), - [sym_bracketed_type] = STATE(3557), - [sym_lifetime] = STATE(2800), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(2446), - [sym_scoped_identifier] = STATE(2125), - [sym_scoped_type_identifier] = STATE(2118), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2431), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), - [sym_line_comment] = STATE(390), - [sym_block_comment] = STATE(390), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(1369), - [anon_sym_LPAREN] = ACTIONS(1371), + [399] = { + [sym_attribute_item] = STATE(429), + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_self_parameter] = STATE(3281), + [sym_variadic_parameter] = STATE(3281), + [sym_parameter] = STATE(3281), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2991), + [sym_bracketed_type] = STATE(4033), + [sym_lifetime] = STATE(3377), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3566), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2818), + [sym_scoped_identifier] = STATE(2397), + [sym_scoped_type_identifier] = STATE(2400), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(2804), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(399), + [sym_block_comment] = STATE(399), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(1375), [anon_sym_RPAREN] = ACTIONS(1425), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1375), - [anon_sym_i8] = ACTIONS(1375), - [anon_sym_u16] = ACTIONS(1375), - [anon_sym_i16] = ACTIONS(1375), - [anon_sym_u32] = ACTIONS(1375), - [anon_sym_i32] = ACTIONS(1375), - [anon_sym_u64] = ACTIONS(1375), - [anon_sym_i64] = ACTIONS(1375), - [anon_sym_u128] = ACTIONS(1375), - [anon_sym_i128] = ACTIONS(1375), - [anon_sym_isize] = ACTIONS(1375), - [anon_sym_usize] = ACTIONS(1375), - [anon_sym_f32] = ACTIONS(1375), - [anon_sym_f64] = ACTIONS(1375), - [anon_sym_bool] = ACTIONS(1375), - [anon_sym_str] = ACTIONS(1375), - [anon_sym_char] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1377), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1379), - [anon_sym_DOT_DOT] = ACTIONS(1305), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1307), + [anon_sym_LBRACK] = ACTIONS(1299), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1379), + [anon_sym_i8] = ACTIONS(1379), + [anon_sym_u16] = ACTIONS(1379), + [anon_sym_i16] = ACTIONS(1379), + [anon_sym_u32] = ACTIONS(1379), + [anon_sym_i32] = ACTIONS(1379), + [anon_sym_u64] = ACTIONS(1379), + [anon_sym_i64] = ACTIONS(1379), + [anon_sym_u128] = ACTIONS(1379), + [anon_sym_i128] = ACTIONS(1379), + [anon_sym_isize] = ACTIONS(1379), + [anon_sym_usize] = ACTIONS(1379), + [anon_sym_f32] = ACTIONS(1379), + [anon_sym_f64] = ACTIONS(1379), + [anon_sym_bool] = ACTIONS(1379), + [anon_sym_str] = ACTIONS(1379), + [anon_sym_char] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1381), + [anon_sym_PIPE] = ACTIONS(1313), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1383), + [anon_sym_DOT_DOT] = ACTIONS(1317), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1319), [anon_sym_COMMA] = ACTIONS(1427), - [anon_sym_COLON_COLON] = ACTIONS(1383), - [anon_sym_POUND] = ACTIONS(1313), - [anon_sym_SQUOTE] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1319), - [anon_sym_default] = ACTIONS(1385), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1387), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1387), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_ref] = ACTIONS(1333), - [anon_sym_dyn] = ACTIONS(1335), - [sym_mutable_specifier] = ACTIONS(1337), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1389), - [sym_super] = ACTIONS(1391), - [sym_crate] = ACTIONS(1391), - [sym_metavariable] = ACTIONS(1393), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), + [anon_sym_COLON_COLON] = ACTIONS(1387), + [anon_sym_POUND] = ACTIONS(1325), + [anon_sym_SQUOTE] = ACTIONS(1327), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1331), + [anon_sym_default] = ACTIONS(1389), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1391), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1391), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_ref] = ACTIONS(1345), + [anon_sym_dyn] = ACTIONS(1347), + [sym_mutable_specifier] = ACTIONS(1349), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1393), + [sym_super] = ACTIONS(1395), + [sym_crate] = ACTIONS(1395), + [sym_metavariable] = ACTIONS(1397), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), }, - [391] = { - [sym_line_comment] = STATE(391), - [sym_block_comment] = STATE(391), + [400] = { + [sym_line_comment] = STATE(400), + [sym_block_comment] = STATE(400), [ts_builtin_sym_end] = ACTIONS(1429), [sym_identifier] = ACTIONS(1431), [anon_sym_SEMI] = ACTIONS(1429), @@ -61172,9 +63541,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1429), [sym_float_literal] = ACTIONS(1429), }, - [392] = { - [sym_line_comment] = STATE(392), - [sym_block_comment] = STATE(392), + [401] = { + [sym_line_comment] = STATE(401), + [sym_block_comment] = STATE(401), [ts_builtin_sym_end] = ACTIONS(1433), [sym_identifier] = ACTIONS(1435), [anon_sym_SEMI] = ACTIONS(1433), @@ -61282,9 +63651,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1433), [sym_float_literal] = ACTIONS(1433), }, - [393] = { - [sym_line_comment] = STATE(393), - [sym_block_comment] = STATE(393), + [402] = { + [sym_line_comment] = STATE(402), + [sym_block_comment] = STATE(402), [ts_builtin_sym_end] = ACTIONS(1437), [sym_identifier] = ACTIONS(1439), [anon_sym_SEMI] = ACTIONS(1437), @@ -61392,1219 +63761,1109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1437), [sym_float_literal] = ACTIONS(1437), }, - [394] = { - [sym_attribute_item] = STATE(421), - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_self_parameter] = STATE(2782), - [sym_variadic_parameter] = STATE(2782), - [sym_parameter] = STATE(2782), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2754), - [sym_bracketed_type] = STATE(3550), - [sym_lifetime] = STATE(2800), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3221), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(2410), - [sym_scoped_identifier] = STATE(2242), - [sym_scoped_type_identifier] = STATE(2118), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(3256), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), - [sym_line_comment] = STATE(394), - [sym_block_comment] = STATE(394), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(1281), - [anon_sym_LPAREN] = ACTIONS(1283), - [anon_sym_RPAREN] = ACTIONS(1441), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1293), - [anon_sym_i8] = ACTIONS(1293), - [anon_sym_u16] = ACTIONS(1293), - [anon_sym_i16] = ACTIONS(1293), - [anon_sym_u32] = ACTIONS(1293), - [anon_sym_i32] = ACTIONS(1293), - [anon_sym_u64] = ACTIONS(1293), - [anon_sym_i64] = ACTIONS(1293), - [anon_sym_u128] = ACTIONS(1293), - [anon_sym_i128] = ACTIONS(1293), - [anon_sym_isize] = ACTIONS(1293), - [anon_sym_usize] = ACTIONS(1293), - [anon_sym_f32] = ACTIONS(1293), - [anon_sym_f64] = ACTIONS(1293), - [anon_sym_bool] = ACTIONS(1293), - [anon_sym_str] = ACTIONS(1293), - [anon_sym_char] = ACTIONS(1293), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1299), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1443), - [anon_sym_DOT_DOT] = ACTIONS(1305), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1307), - [anon_sym_COMMA] = ACTIONS(1445), - [anon_sym_COLON_COLON] = ACTIONS(1311), - [anon_sym_POUND] = ACTIONS(1313), - [anon_sym_SQUOTE] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1319), - [anon_sym_default] = ACTIONS(1321), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1327), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1327), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_ref] = ACTIONS(1333), - [anon_sym_dyn] = ACTIONS(1335), - [sym_mutable_specifier] = ACTIONS(1337), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1345), - [sym_super] = ACTIONS(1347), - [sym_crate] = ACTIONS(1347), - [sym_metavariable] = ACTIONS(1349), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [395] = { - [sym_line_comment] = STATE(395), - [sym_block_comment] = STATE(395), - [ts_builtin_sym_end] = ACTIONS(1447), - [sym_identifier] = ACTIONS(1449), - [anon_sym_SEMI] = ACTIONS(1447), - [anon_sym_macro_rules_BANG] = ACTIONS(1447), - [anon_sym_LPAREN] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1447), - [anon_sym_RBRACE] = ACTIONS(1447), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_STAR] = ACTIONS(1449), - [anon_sym_QMARK] = ACTIONS(1447), - [anon_sym_u8] = ACTIONS(1449), - [anon_sym_i8] = ACTIONS(1449), - [anon_sym_u16] = ACTIONS(1449), - [anon_sym_i16] = ACTIONS(1449), - [anon_sym_u32] = ACTIONS(1449), - [anon_sym_i32] = ACTIONS(1449), - [anon_sym_u64] = ACTIONS(1449), - [anon_sym_i64] = ACTIONS(1449), - [anon_sym_u128] = ACTIONS(1449), - [anon_sym_i128] = ACTIONS(1449), - [anon_sym_isize] = ACTIONS(1449), - [anon_sym_usize] = ACTIONS(1449), - [anon_sym_f32] = ACTIONS(1449), - [anon_sym_f64] = ACTIONS(1449), - [anon_sym_bool] = ACTIONS(1449), - [anon_sym_str] = ACTIONS(1449), - [anon_sym_char] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(1449), - [anon_sym_PERCENT] = ACTIONS(1449), - [anon_sym_CARET] = ACTIONS(1449), - [anon_sym_BANG] = ACTIONS(1449), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1449), - [anon_sym_AMP_AMP] = ACTIONS(1447), - [anon_sym_PIPE_PIPE] = ACTIONS(1447), - [anon_sym_LT_LT] = ACTIONS(1449), - [anon_sym_GT_GT] = ACTIONS(1449), - [anon_sym_PLUS_EQ] = ACTIONS(1447), - [anon_sym_DASH_EQ] = ACTIONS(1447), - [anon_sym_STAR_EQ] = ACTIONS(1447), - [anon_sym_SLASH_EQ] = ACTIONS(1447), - [anon_sym_PERCENT_EQ] = ACTIONS(1447), - [anon_sym_CARET_EQ] = ACTIONS(1447), - [anon_sym_AMP_EQ] = ACTIONS(1447), - [anon_sym_PIPE_EQ] = ACTIONS(1447), - [anon_sym_LT_LT_EQ] = ACTIONS(1447), - [anon_sym_GT_GT_EQ] = ACTIONS(1447), - [anon_sym_EQ] = ACTIONS(1449), - [anon_sym_EQ_EQ] = ACTIONS(1447), - [anon_sym_BANG_EQ] = ACTIONS(1447), - [anon_sym_GT] = ACTIONS(1449), - [anon_sym_LT] = ACTIONS(1449), - [anon_sym_GT_EQ] = ACTIONS(1447), - [anon_sym_LT_EQ] = ACTIONS(1447), - [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1449), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1447), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1447), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_POUND] = ACTIONS(1447), - [anon_sym_SQUOTE] = ACTIONS(1449), - [anon_sym_as] = ACTIONS(1449), - [anon_sym_async] = ACTIONS(1449), - [anon_sym_break] = ACTIONS(1449), - [anon_sym_const] = ACTIONS(1449), - [anon_sym_continue] = ACTIONS(1449), - [anon_sym_default] = ACTIONS(1449), - [anon_sym_enum] = ACTIONS(1449), - [anon_sym_fn] = ACTIONS(1449), - [anon_sym_for] = ACTIONS(1449), - [anon_sym_gen] = ACTIONS(1449), - [anon_sym_if] = ACTIONS(1449), - [anon_sym_impl] = ACTIONS(1449), - [anon_sym_let] = ACTIONS(1449), - [anon_sym_loop] = ACTIONS(1449), - [anon_sym_match] = ACTIONS(1449), - [anon_sym_mod] = ACTIONS(1449), - [anon_sym_pub] = ACTIONS(1449), - [anon_sym_return] = ACTIONS(1449), - [anon_sym_static] = ACTIONS(1449), - [anon_sym_struct] = ACTIONS(1449), - [anon_sym_trait] = ACTIONS(1449), - [anon_sym_type] = ACTIONS(1449), - [anon_sym_union] = ACTIONS(1449), - [anon_sym_unsafe] = ACTIONS(1449), - [anon_sym_use] = ACTIONS(1449), - [anon_sym_while] = ACTIONS(1449), - [anon_sym_extern] = ACTIONS(1449), - [anon_sym_yield] = ACTIONS(1449), - [anon_sym_move] = ACTIONS(1449), - [anon_sym_try] = ACTIONS(1449), - [sym_integer_literal] = ACTIONS(1447), - [aux_sym_string_literal_token1] = ACTIONS(1447), - [sym_char_literal] = ACTIONS(1447), - [anon_sym_true] = ACTIONS(1449), - [anon_sym_false] = ACTIONS(1449), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1449), - [sym_super] = ACTIONS(1449), - [sym_crate] = ACTIONS(1449), - [sym_metavariable] = ACTIONS(1447), - [sym__raw_string_literal_start] = ACTIONS(1447), - [sym_float_literal] = ACTIONS(1447), - }, - [396] = { - [sym_line_comment] = STATE(396), - [sym_block_comment] = STATE(396), - [ts_builtin_sym_end] = ACTIONS(1451), - [sym_identifier] = ACTIONS(1453), - [anon_sym_SEMI] = ACTIONS(1451), - [anon_sym_macro_rules_BANG] = ACTIONS(1451), - [anon_sym_LPAREN] = ACTIONS(1451), - [anon_sym_LBRACK] = ACTIONS(1451), - [anon_sym_LBRACE] = ACTIONS(1451), - [anon_sym_RBRACE] = ACTIONS(1451), - [anon_sym_PLUS] = ACTIONS(1453), - [anon_sym_STAR] = ACTIONS(1453), - [anon_sym_QMARK] = ACTIONS(1451), - [anon_sym_u8] = ACTIONS(1453), - [anon_sym_i8] = ACTIONS(1453), - [anon_sym_u16] = ACTIONS(1453), - [anon_sym_i16] = ACTIONS(1453), - [anon_sym_u32] = ACTIONS(1453), - [anon_sym_i32] = ACTIONS(1453), - [anon_sym_u64] = ACTIONS(1453), - [anon_sym_i64] = ACTIONS(1453), - [anon_sym_u128] = ACTIONS(1453), - [anon_sym_i128] = ACTIONS(1453), - [anon_sym_isize] = ACTIONS(1453), - [anon_sym_usize] = ACTIONS(1453), - [anon_sym_f32] = ACTIONS(1453), - [anon_sym_f64] = ACTIONS(1453), - [anon_sym_bool] = ACTIONS(1453), - [anon_sym_str] = ACTIONS(1453), - [anon_sym_char] = ACTIONS(1453), - [anon_sym_DASH] = ACTIONS(1453), - [anon_sym_SLASH] = ACTIONS(1453), - [anon_sym_PERCENT] = ACTIONS(1453), - [anon_sym_CARET] = ACTIONS(1453), - [anon_sym_BANG] = ACTIONS(1453), - [anon_sym_AMP] = ACTIONS(1453), - [anon_sym_PIPE] = ACTIONS(1453), - [anon_sym_AMP_AMP] = ACTIONS(1451), - [anon_sym_PIPE_PIPE] = ACTIONS(1451), - [anon_sym_LT_LT] = ACTIONS(1453), - [anon_sym_GT_GT] = ACTIONS(1453), - [anon_sym_PLUS_EQ] = ACTIONS(1451), - [anon_sym_DASH_EQ] = ACTIONS(1451), - [anon_sym_STAR_EQ] = ACTIONS(1451), - [anon_sym_SLASH_EQ] = ACTIONS(1451), - [anon_sym_PERCENT_EQ] = ACTIONS(1451), - [anon_sym_CARET_EQ] = ACTIONS(1451), - [anon_sym_AMP_EQ] = ACTIONS(1451), - [anon_sym_PIPE_EQ] = ACTIONS(1451), - [anon_sym_LT_LT_EQ] = ACTIONS(1451), - [anon_sym_GT_GT_EQ] = ACTIONS(1451), - [anon_sym_EQ] = ACTIONS(1453), - [anon_sym_EQ_EQ] = ACTIONS(1451), - [anon_sym_BANG_EQ] = ACTIONS(1451), - [anon_sym_GT] = ACTIONS(1453), - [anon_sym_LT] = ACTIONS(1453), - [anon_sym_GT_EQ] = ACTIONS(1451), - [anon_sym_LT_EQ] = ACTIONS(1451), - [anon_sym_DOT] = ACTIONS(1453), - [anon_sym_DOT_DOT] = ACTIONS(1453), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1451), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1451), - [anon_sym_COLON_COLON] = ACTIONS(1451), - [anon_sym_POUND] = ACTIONS(1451), - [anon_sym_SQUOTE] = ACTIONS(1453), - [anon_sym_as] = ACTIONS(1453), - [anon_sym_async] = ACTIONS(1453), - [anon_sym_break] = ACTIONS(1453), - [anon_sym_const] = ACTIONS(1453), - [anon_sym_continue] = ACTIONS(1453), - [anon_sym_default] = ACTIONS(1453), - [anon_sym_enum] = ACTIONS(1453), - [anon_sym_fn] = ACTIONS(1453), - [anon_sym_for] = ACTIONS(1453), - [anon_sym_gen] = ACTIONS(1453), - [anon_sym_if] = ACTIONS(1453), - [anon_sym_impl] = ACTIONS(1453), - [anon_sym_let] = ACTIONS(1453), - [anon_sym_loop] = ACTIONS(1453), - [anon_sym_match] = ACTIONS(1453), - [anon_sym_mod] = ACTIONS(1453), - [anon_sym_pub] = ACTIONS(1453), - [anon_sym_return] = ACTIONS(1453), - [anon_sym_static] = ACTIONS(1453), - [anon_sym_struct] = ACTIONS(1453), - [anon_sym_trait] = ACTIONS(1453), - [anon_sym_type] = ACTIONS(1453), - [anon_sym_union] = ACTIONS(1453), - [anon_sym_unsafe] = ACTIONS(1453), - [anon_sym_use] = ACTIONS(1453), - [anon_sym_while] = ACTIONS(1453), - [anon_sym_extern] = ACTIONS(1453), - [anon_sym_yield] = ACTIONS(1453), - [anon_sym_move] = ACTIONS(1453), - [anon_sym_try] = ACTIONS(1453), - [sym_integer_literal] = ACTIONS(1451), - [aux_sym_string_literal_token1] = ACTIONS(1451), - [sym_char_literal] = ACTIONS(1451), - [anon_sym_true] = ACTIONS(1453), - [anon_sym_false] = ACTIONS(1453), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1453), - [sym_super] = ACTIONS(1453), - [sym_crate] = ACTIONS(1453), - [sym_metavariable] = ACTIONS(1451), - [sym__raw_string_literal_start] = ACTIONS(1451), - [sym_float_literal] = ACTIONS(1451), - }, - [397] = { - [sym_line_comment] = STATE(397), - [sym_block_comment] = STATE(397), - [ts_builtin_sym_end] = ACTIONS(1455), - [sym_identifier] = ACTIONS(1457), - [anon_sym_SEMI] = ACTIONS(1455), - [anon_sym_macro_rules_BANG] = ACTIONS(1455), - [anon_sym_LPAREN] = ACTIONS(1455), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_LBRACE] = ACTIONS(1455), - [anon_sym_RBRACE] = ACTIONS(1455), - [anon_sym_PLUS] = ACTIONS(1457), - [anon_sym_STAR] = ACTIONS(1457), - [anon_sym_QMARK] = ACTIONS(1455), - [anon_sym_u8] = ACTIONS(1457), - [anon_sym_i8] = ACTIONS(1457), - [anon_sym_u16] = ACTIONS(1457), - [anon_sym_i16] = ACTIONS(1457), - [anon_sym_u32] = ACTIONS(1457), - [anon_sym_i32] = ACTIONS(1457), - [anon_sym_u64] = ACTIONS(1457), - [anon_sym_i64] = ACTIONS(1457), - [anon_sym_u128] = ACTIONS(1457), - [anon_sym_i128] = ACTIONS(1457), - [anon_sym_isize] = ACTIONS(1457), - [anon_sym_usize] = ACTIONS(1457), - [anon_sym_f32] = ACTIONS(1457), - [anon_sym_f64] = ACTIONS(1457), - [anon_sym_bool] = ACTIONS(1457), - [anon_sym_str] = ACTIONS(1457), - [anon_sym_char] = ACTIONS(1457), - [anon_sym_DASH] = ACTIONS(1457), - [anon_sym_SLASH] = ACTIONS(1457), - [anon_sym_PERCENT] = ACTIONS(1457), - [anon_sym_CARET] = ACTIONS(1457), - [anon_sym_BANG] = ACTIONS(1457), - [anon_sym_AMP] = ACTIONS(1457), - [anon_sym_PIPE] = ACTIONS(1457), - [anon_sym_AMP_AMP] = ACTIONS(1455), - [anon_sym_PIPE_PIPE] = ACTIONS(1455), - [anon_sym_LT_LT] = ACTIONS(1457), - [anon_sym_GT_GT] = ACTIONS(1457), - [anon_sym_PLUS_EQ] = ACTIONS(1455), - [anon_sym_DASH_EQ] = ACTIONS(1455), - [anon_sym_STAR_EQ] = ACTIONS(1455), - [anon_sym_SLASH_EQ] = ACTIONS(1455), - [anon_sym_PERCENT_EQ] = ACTIONS(1455), - [anon_sym_CARET_EQ] = ACTIONS(1455), - [anon_sym_AMP_EQ] = ACTIONS(1455), - [anon_sym_PIPE_EQ] = ACTIONS(1455), - [anon_sym_LT_LT_EQ] = ACTIONS(1455), - [anon_sym_GT_GT_EQ] = ACTIONS(1455), - [anon_sym_EQ] = ACTIONS(1457), - [anon_sym_EQ_EQ] = ACTIONS(1455), - [anon_sym_BANG_EQ] = ACTIONS(1455), - [anon_sym_GT] = ACTIONS(1457), - [anon_sym_LT] = ACTIONS(1457), - [anon_sym_GT_EQ] = ACTIONS(1455), - [anon_sym_LT_EQ] = ACTIONS(1455), - [anon_sym_DOT] = ACTIONS(1457), - [anon_sym_DOT_DOT] = ACTIONS(1457), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1455), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1455), - [anon_sym_COLON_COLON] = ACTIONS(1455), - [anon_sym_POUND] = ACTIONS(1455), - [anon_sym_SQUOTE] = ACTIONS(1457), - [anon_sym_as] = ACTIONS(1457), - [anon_sym_async] = ACTIONS(1457), - [anon_sym_break] = ACTIONS(1457), - [anon_sym_const] = ACTIONS(1457), - [anon_sym_continue] = ACTIONS(1457), - [anon_sym_default] = ACTIONS(1457), - [anon_sym_enum] = ACTIONS(1457), - [anon_sym_fn] = ACTIONS(1457), - [anon_sym_for] = ACTIONS(1457), - [anon_sym_gen] = ACTIONS(1457), - [anon_sym_if] = ACTIONS(1457), - [anon_sym_impl] = ACTIONS(1457), - [anon_sym_let] = ACTIONS(1457), - [anon_sym_loop] = ACTIONS(1457), - [anon_sym_match] = ACTIONS(1457), - [anon_sym_mod] = ACTIONS(1457), - [anon_sym_pub] = ACTIONS(1457), - [anon_sym_return] = ACTIONS(1457), - [anon_sym_static] = ACTIONS(1457), - [anon_sym_struct] = ACTIONS(1457), - [anon_sym_trait] = ACTIONS(1457), - [anon_sym_type] = ACTIONS(1457), - [anon_sym_union] = ACTIONS(1457), - [anon_sym_unsafe] = ACTIONS(1457), - [anon_sym_use] = ACTIONS(1457), - [anon_sym_while] = ACTIONS(1457), - [anon_sym_extern] = ACTIONS(1457), - [anon_sym_yield] = ACTIONS(1457), - [anon_sym_move] = ACTIONS(1457), - [anon_sym_try] = ACTIONS(1457), - [sym_integer_literal] = ACTIONS(1455), - [aux_sym_string_literal_token1] = ACTIONS(1455), - [sym_char_literal] = ACTIONS(1455), - [anon_sym_true] = ACTIONS(1457), - [anon_sym_false] = ACTIONS(1457), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1457), - [sym_super] = ACTIONS(1457), - [sym_crate] = ACTIONS(1457), - [sym_metavariable] = ACTIONS(1455), - [sym__raw_string_literal_start] = ACTIONS(1455), - [sym_float_literal] = ACTIONS(1455), - }, - [398] = { - [sym_line_comment] = STATE(398), - [sym_block_comment] = STATE(398), - [ts_builtin_sym_end] = ACTIONS(1459), - [sym_identifier] = ACTIONS(1461), - [anon_sym_SEMI] = ACTIONS(1459), - [anon_sym_macro_rules_BANG] = ACTIONS(1459), - [anon_sym_LPAREN] = ACTIONS(1459), - [anon_sym_LBRACK] = ACTIONS(1459), - [anon_sym_LBRACE] = ACTIONS(1459), - [anon_sym_RBRACE] = ACTIONS(1459), - [anon_sym_PLUS] = ACTIONS(1461), - [anon_sym_STAR] = ACTIONS(1461), - [anon_sym_QMARK] = ACTIONS(1459), - [anon_sym_u8] = ACTIONS(1461), - [anon_sym_i8] = ACTIONS(1461), - [anon_sym_u16] = ACTIONS(1461), - [anon_sym_i16] = ACTIONS(1461), - [anon_sym_u32] = ACTIONS(1461), - [anon_sym_i32] = ACTIONS(1461), - [anon_sym_u64] = ACTIONS(1461), - [anon_sym_i64] = ACTIONS(1461), - [anon_sym_u128] = ACTIONS(1461), - [anon_sym_i128] = ACTIONS(1461), - [anon_sym_isize] = ACTIONS(1461), - [anon_sym_usize] = ACTIONS(1461), - [anon_sym_f32] = ACTIONS(1461), - [anon_sym_f64] = ACTIONS(1461), - [anon_sym_bool] = ACTIONS(1461), - [anon_sym_str] = ACTIONS(1461), - [anon_sym_char] = ACTIONS(1461), - [anon_sym_DASH] = ACTIONS(1461), - [anon_sym_SLASH] = ACTIONS(1461), - [anon_sym_PERCENT] = ACTIONS(1461), - [anon_sym_CARET] = ACTIONS(1461), - [anon_sym_BANG] = ACTIONS(1461), - [anon_sym_AMP] = ACTIONS(1461), - [anon_sym_PIPE] = ACTIONS(1461), - [anon_sym_AMP_AMP] = ACTIONS(1459), - [anon_sym_PIPE_PIPE] = ACTIONS(1459), - [anon_sym_LT_LT] = ACTIONS(1461), - [anon_sym_GT_GT] = ACTIONS(1461), - [anon_sym_PLUS_EQ] = ACTIONS(1459), - [anon_sym_DASH_EQ] = ACTIONS(1459), - [anon_sym_STAR_EQ] = ACTIONS(1459), - [anon_sym_SLASH_EQ] = ACTIONS(1459), - [anon_sym_PERCENT_EQ] = ACTIONS(1459), - [anon_sym_CARET_EQ] = ACTIONS(1459), - [anon_sym_AMP_EQ] = ACTIONS(1459), - [anon_sym_PIPE_EQ] = ACTIONS(1459), - [anon_sym_LT_LT_EQ] = ACTIONS(1459), - [anon_sym_GT_GT_EQ] = ACTIONS(1459), - [anon_sym_EQ] = ACTIONS(1461), - [anon_sym_EQ_EQ] = ACTIONS(1459), - [anon_sym_BANG_EQ] = ACTIONS(1459), - [anon_sym_GT] = ACTIONS(1461), - [anon_sym_LT] = ACTIONS(1461), - [anon_sym_GT_EQ] = ACTIONS(1459), - [anon_sym_LT_EQ] = ACTIONS(1459), - [anon_sym_DOT] = ACTIONS(1461), - [anon_sym_DOT_DOT] = ACTIONS(1461), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1459), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1459), - [anon_sym_COLON_COLON] = ACTIONS(1459), - [anon_sym_POUND] = ACTIONS(1459), - [anon_sym_SQUOTE] = ACTIONS(1461), - [anon_sym_as] = ACTIONS(1461), - [anon_sym_async] = ACTIONS(1461), - [anon_sym_break] = ACTIONS(1461), - [anon_sym_const] = ACTIONS(1461), - [anon_sym_continue] = ACTIONS(1461), - [anon_sym_default] = ACTIONS(1461), - [anon_sym_enum] = ACTIONS(1461), - [anon_sym_fn] = ACTIONS(1461), - [anon_sym_for] = ACTIONS(1461), - [anon_sym_gen] = ACTIONS(1461), - [anon_sym_if] = ACTIONS(1461), - [anon_sym_impl] = ACTIONS(1461), - [anon_sym_let] = ACTIONS(1461), - [anon_sym_loop] = ACTIONS(1461), - [anon_sym_match] = ACTIONS(1461), - [anon_sym_mod] = ACTIONS(1461), - [anon_sym_pub] = ACTIONS(1461), - [anon_sym_return] = ACTIONS(1461), - [anon_sym_static] = ACTIONS(1461), - [anon_sym_struct] = ACTIONS(1461), - [anon_sym_trait] = ACTIONS(1461), - [anon_sym_type] = ACTIONS(1461), - [anon_sym_union] = ACTIONS(1461), - [anon_sym_unsafe] = ACTIONS(1461), - [anon_sym_use] = ACTIONS(1461), - [anon_sym_while] = ACTIONS(1461), - [anon_sym_extern] = ACTIONS(1461), - [anon_sym_yield] = ACTIONS(1461), - [anon_sym_move] = ACTIONS(1461), - [anon_sym_try] = ACTIONS(1461), - [sym_integer_literal] = ACTIONS(1459), - [aux_sym_string_literal_token1] = ACTIONS(1459), - [sym_char_literal] = ACTIONS(1459), - [anon_sym_true] = ACTIONS(1461), - [anon_sym_false] = ACTIONS(1461), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1461), - [sym_super] = ACTIONS(1461), - [sym_crate] = ACTIONS(1461), - [sym_metavariable] = ACTIONS(1459), - [sym__raw_string_literal_start] = ACTIONS(1459), - [sym_float_literal] = ACTIONS(1459), - }, - [399] = { - [sym_line_comment] = STATE(399), - [sym_block_comment] = STATE(399), - [ts_builtin_sym_end] = ACTIONS(1463), - [sym_identifier] = ACTIONS(1465), - [anon_sym_SEMI] = ACTIONS(1359), - [anon_sym_macro_rules_BANG] = ACTIONS(1463), - [anon_sym_LPAREN] = ACTIONS(1359), - [anon_sym_LBRACK] = ACTIONS(1359), - [anon_sym_LBRACE] = ACTIONS(1463), - [anon_sym_RBRACE] = ACTIONS(1359), - [anon_sym_PLUS] = ACTIONS(1357), - [anon_sym_STAR] = ACTIONS(1357), - [anon_sym_QMARK] = ACTIONS(1359), - [anon_sym_u8] = ACTIONS(1465), - [anon_sym_i8] = ACTIONS(1465), - [anon_sym_u16] = ACTIONS(1465), - [anon_sym_i16] = ACTIONS(1465), - [anon_sym_u32] = ACTIONS(1465), - [anon_sym_i32] = ACTIONS(1465), - [anon_sym_u64] = ACTIONS(1465), - [anon_sym_i64] = ACTIONS(1465), - [anon_sym_u128] = ACTIONS(1465), - [anon_sym_i128] = ACTIONS(1465), - [anon_sym_isize] = ACTIONS(1465), - [anon_sym_usize] = ACTIONS(1465), - [anon_sym_f32] = ACTIONS(1465), - [anon_sym_f64] = ACTIONS(1465), - [anon_sym_bool] = ACTIONS(1465), - [anon_sym_str] = ACTIONS(1465), - [anon_sym_char] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1357), - [anon_sym_SLASH] = ACTIONS(1357), - [anon_sym_PERCENT] = ACTIONS(1357), - [anon_sym_CARET] = ACTIONS(1357), - [anon_sym_BANG] = ACTIONS(1465), - [anon_sym_AMP] = ACTIONS(1357), - [anon_sym_PIPE] = ACTIONS(1357), - [anon_sym_AMP_AMP] = ACTIONS(1359), - [anon_sym_PIPE_PIPE] = ACTIONS(1359), - [anon_sym_LT_LT] = ACTIONS(1357), - [anon_sym_GT_GT] = ACTIONS(1357), - [anon_sym_PLUS_EQ] = ACTIONS(1359), - [anon_sym_DASH_EQ] = ACTIONS(1359), - [anon_sym_STAR_EQ] = ACTIONS(1359), - [anon_sym_SLASH_EQ] = ACTIONS(1359), - [anon_sym_PERCENT_EQ] = ACTIONS(1359), - [anon_sym_CARET_EQ] = ACTIONS(1359), - [anon_sym_AMP_EQ] = ACTIONS(1359), - [anon_sym_PIPE_EQ] = ACTIONS(1359), - [anon_sym_LT_LT_EQ] = ACTIONS(1359), - [anon_sym_GT_GT_EQ] = ACTIONS(1359), - [anon_sym_EQ] = ACTIONS(1357), - [anon_sym_EQ_EQ] = ACTIONS(1359), - [anon_sym_BANG_EQ] = ACTIONS(1359), - [anon_sym_GT] = ACTIONS(1357), - [anon_sym_LT] = ACTIONS(1357), - [anon_sym_GT_EQ] = ACTIONS(1359), - [anon_sym_LT_EQ] = ACTIONS(1359), - [anon_sym_DOT] = ACTIONS(1357), - [anon_sym_DOT_DOT] = ACTIONS(1357), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1359), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1359), - [anon_sym_COLON_COLON] = ACTIONS(1463), - [anon_sym_POUND] = ACTIONS(1463), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_as] = ACTIONS(1357), - [anon_sym_async] = ACTIONS(1465), - [anon_sym_break] = ACTIONS(1465), - [anon_sym_const] = ACTIONS(1465), - [anon_sym_continue] = ACTIONS(1465), - [anon_sym_default] = ACTIONS(1465), - [anon_sym_enum] = ACTIONS(1465), - [anon_sym_fn] = ACTIONS(1465), - [anon_sym_for] = ACTIONS(1465), - [anon_sym_gen] = ACTIONS(1465), - [anon_sym_if] = ACTIONS(1465), - [anon_sym_impl] = ACTIONS(1465), - [anon_sym_let] = ACTIONS(1465), - [anon_sym_loop] = ACTIONS(1465), - [anon_sym_match] = ACTIONS(1465), - [anon_sym_mod] = ACTIONS(1465), - [anon_sym_pub] = ACTIONS(1465), - [anon_sym_return] = ACTIONS(1465), - [anon_sym_static] = ACTIONS(1465), - [anon_sym_struct] = ACTIONS(1465), - [anon_sym_trait] = ACTIONS(1465), - [anon_sym_type] = ACTIONS(1465), - [anon_sym_union] = ACTIONS(1465), - [anon_sym_unsafe] = ACTIONS(1465), - [anon_sym_use] = ACTIONS(1465), - [anon_sym_while] = ACTIONS(1465), - [anon_sym_extern] = ACTIONS(1465), - [anon_sym_yield] = ACTIONS(1465), - [anon_sym_move] = ACTIONS(1465), - [anon_sym_try] = ACTIONS(1465), - [sym_integer_literal] = ACTIONS(1463), - [aux_sym_string_literal_token1] = ACTIONS(1463), - [sym_char_literal] = ACTIONS(1463), - [anon_sym_true] = ACTIONS(1465), - [anon_sym_false] = ACTIONS(1465), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1465), - [sym_super] = ACTIONS(1465), - [sym_crate] = ACTIONS(1465), - [sym_metavariable] = ACTIONS(1463), - [sym__raw_string_literal_start] = ACTIONS(1463), - [sym_float_literal] = ACTIONS(1463), - }, - [400] = { - [sym_line_comment] = STATE(400), - [sym_block_comment] = STATE(400), - [ts_builtin_sym_end] = ACTIONS(1467), - [sym_identifier] = ACTIONS(1469), - [anon_sym_SEMI] = ACTIONS(1467), - [anon_sym_macro_rules_BANG] = ACTIONS(1467), - [anon_sym_LPAREN] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(1467), - [anon_sym_LBRACE] = ACTIONS(1467), - [anon_sym_RBRACE] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1469), - [anon_sym_STAR] = ACTIONS(1469), - [anon_sym_QMARK] = ACTIONS(1467), - [anon_sym_u8] = ACTIONS(1469), - [anon_sym_i8] = ACTIONS(1469), - [anon_sym_u16] = ACTIONS(1469), - [anon_sym_i16] = ACTIONS(1469), - [anon_sym_u32] = ACTIONS(1469), - [anon_sym_i32] = ACTIONS(1469), - [anon_sym_u64] = ACTIONS(1469), - [anon_sym_i64] = ACTIONS(1469), - [anon_sym_u128] = ACTIONS(1469), - [anon_sym_i128] = ACTIONS(1469), - [anon_sym_isize] = ACTIONS(1469), - [anon_sym_usize] = ACTIONS(1469), - [anon_sym_f32] = ACTIONS(1469), - [anon_sym_f64] = ACTIONS(1469), - [anon_sym_bool] = ACTIONS(1469), - [anon_sym_str] = ACTIONS(1469), - [anon_sym_char] = ACTIONS(1469), - [anon_sym_DASH] = ACTIONS(1469), - [anon_sym_SLASH] = ACTIONS(1469), - [anon_sym_PERCENT] = ACTIONS(1469), - [anon_sym_CARET] = ACTIONS(1469), - [anon_sym_BANG] = ACTIONS(1469), - [anon_sym_AMP] = ACTIONS(1469), - [anon_sym_PIPE] = ACTIONS(1469), - [anon_sym_AMP_AMP] = ACTIONS(1467), - [anon_sym_PIPE_PIPE] = ACTIONS(1467), - [anon_sym_LT_LT] = ACTIONS(1469), - [anon_sym_GT_GT] = ACTIONS(1469), - [anon_sym_PLUS_EQ] = ACTIONS(1467), - [anon_sym_DASH_EQ] = ACTIONS(1467), - [anon_sym_STAR_EQ] = ACTIONS(1467), - [anon_sym_SLASH_EQ] = ACTIONS(1467), - [anon_sym_PERCENT_EQ] = ACTIONS(1467), - [anon_sym_CARET_EQ] = ACTIONS(1467), - [anon_sym_AMP_EQ] = ACTIONS(1467), - [anon_sym_PIPE_EQ] = ACTIONS(1467), - [anon_sym_LT_LT_EQ] = ACTIONS(1467), - [anon_sym_GT_GT_EQ] = ACTIONS(1467), - [anon_sym_EQ] = ACTIONS(1469), - [anon_sym_EQ_EQ] = ACTIONS(1467), - [anon_sym_BANG_EQ] = ACTIONS(1467), - [anon_sym_GT] = ACTIONS(1469), - [anon_sym_LT] = ACTIONS(1469), - [anon_sym_GT_EQ] = ACTIONS(1467), - [anon_sym_LT_EQ] = ACTIONS(1467), - [anon_sym_DOT] = ACTIONS(1469), - [anon_sym_DOT_DOT] = ACTIONS(1469), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1467), - [anon_sym_COLON_COLON] = ACTIONS(1467), - [anon_sym_POUND] = ACTIONS(1467), - [anon_sym_SQUOTE] = ACTIONS(1469), - [anon_sym_as] = ACTIONS(1469), - [anon_sym_async] = ACTIONS(1469), - [anon_sym_break] = ACTIONS(1469), - [anon_sym_const] = ACTIONS(1469), - [anon_sym_continue] = ACTIONS(1469), - [anon_sym_default] = ACTIONS(1469), - [anon_sym_enum] = ACTIONS(1469), - [anon_sym_fn] = ACTIONS(1469), - [anon_sym_for] = ACTIONS(1469), - [anon_sym_gen] = ACTIONS(1469), - [anon_sym_if] = ACTIONS(1469), - [anon_sym_impl] = ACTIONS(1469), - [anon_sym_let] = ACTIONS(1469), - [anon_sym_loop] = ACTIONS(1469), - [anon_sym_match] = ACTIONS(1469), - [anon_sym_mod] = ACTIONS(1469), - [anon_sym_pub] = ACTIONS(1469), - [anon_sym_return] = ACTIONS(1469), - [anon_sym_static] = ACTIONS(1469), - [anon_sym_struct] = ACTIONS(1469), - [anon_sym_trait] = ACTIONS(1469), - [anon_sym_type] = ACTIONS(1469), - [anon_sym_union] = ACTIONS(1469), - [anon_sym_unsafe] = ACTIONS(1469), - [anon_sym_use] = ACTIONS(1469), - [anon_sym_while] = ACTIONS(1469), - [anon_sym_extern] = ACTIONS(1469), - [anon_sym_yield] = ACTIONS(1469), - [anon_sym_move] = ACTIONS(1469), - [anon_sym_try] = ACTIONS(1469), - [sym_integer_literal] = ACTIONS(1467), - [aux_sym_string_literal_token1] = ACTIONS(1467), - [sym_char_literal] = ACTIONS(1467), - [anon_sym_true] = ACTIONS(1469), - [anon_sym_false] = ACTIONS(1469), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1469), - [sym_super] = ACTIONS(1469), - [sym_crate] = ACTIONS(1469), - [sym_metavariable] = ACTIONS(1467), - [sym__raw_string_literal_start] = ACTIONS(1467), - [sym_float_literal] = ACTIONS(1467), - }, - [401] = { - [sym_attribute_item] = STATE(420), - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_self_parameter] = STATE(2999), - [sym_variadic_parameter] = STATE(2999), - [sym_parameter] = STATE(2999), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2746), - [sym_bracketed_type] = STATE(3557), - [sym_lifetime] = STATE(2800), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(2446), - [sym_scoped_identifier] = STATE(2125), - [sym_scoped_type_identifier] = STATE(2118), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2431), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), - [sym_line_comment] = STATE(401), - [sym_block_comment] = STATE(401), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(1369), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_RPAREN] = ACTIONS(1471), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1375), - [anon_sym_i8] = ACTIONS(1375), - [anon_sym_u16] = ACTIONS(1375), - [anon_sym_i16] = ACTIONS(1375), - [anon_sym_u32] = ACTIONS(1375), - [anon_sym_i32] = ACTIONS(1375), - [anon_sym_u64] = ACTIONS(1375), - [anon_sym_i64] = ACTIONS(1375), - [anon_sym_u128] = ACTIONS(1375), - [anon_sym_i128] = ACTIONS(1375), - [anon_sym_isize] = ACTIONS(1375), - [anon_sym_usize] = ACTIONS(1375), - [anon_sym_f32] = ACTIONS(1375), - [anon_sym_f64] = ACTIONS(1375), - [anon_sym_bool] = ACTIONS(1375), - [anon_sym_str] = ACTIONS(1375), - [anon_sym_char] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1377), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1379), - [anon_sym_DOT_DOT] = ACTIONS(1305), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1307), - [anon_sym_COMMA] = ACTIONS(1473), - [anon_sym_COLON_COLON] = ACTIONS(1383), - [anon_sym_POUND] = ACTIONS(1313), - [anon_sym_SQUOTE] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1319), - [anon_sym_default] = ACTIONS(1385), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1387), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1387), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_ref] = ACTIONS(1333), - [anon_sym_dyn] = ACTIONS(1335), - [sym_mutable_specifier] = ACTIONS(1337), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1389), - [sym_super] = ACTIONS(1391), - [sym_crate] = ACTIONS(1391), - [sym_metavariable] = ACTIONS(1393), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [402] = { - [sym_line_comment] = STATE(402), - [sym_block_comment] = STATE(402), - [ts_builtin_sym_end] = ACTIONS(1475), - [sym_identifier] = ACTIONS(1477), - [anon_sym_SEMI] = ACTIONS(1475), - [anon_sym_macro_rules_BANG] = ACTIONS(1475), - [anon_sym_LPAREN] = ACTIONS(1475), - [anon_sym_LBRACK] = ACTIONS(1475), - [anon_sym_LBRACE] = ACTIONS(1475), - [anon_sym_RBRACE] = ACTIONS(1475), - [anon_sym_PLUS] = ACTIONS(1477), - [anon_sym_STAR] = ACTIONS(1477), - [anon_sym_QMARK] = ACTIONS(1475), - [anon_sym_u8] = ACTIONS(1477), - [anon_sym_i8] = ACTIONS(1477), - [anon_sym_u16] = ACTIONS(1477), - [anon_sym_i16] = ACTIONS(1477), - [anon_sym_u32] = ACTIONS(1477), - [anon_sym_i32] = ACTIONS(1477), - [anon_sym_u64] = ACTIONS(1477), - [anon_sym_i64] = ACTIONS(1477), - [anon_sym_u128] = ACTIONS(1477), - [anon_sym_i128] = ACTIONS(1477), - [anon_sym_isize] = ACTIONS(1477), - [anon_sym_usize] = ACTIONS(1477), - [anon_sym_f32] = ACTIONS(1477), - [anon_sym_f64] = ACTIONS(1477), - [anon_sym_bool] = ACTIONS(1477), - [anon_sym_str] = ACTIONS(1477), - [anon_sym_char] = ACTIONS(1477), - [anon_sym_DASH] = ACTIONS(1477), - [anon_sym_SLASH] = ACTIONS(1477), - [anon_sym_PERCENT] = ACTIONS(1477), - [anon_sym_CARET] = ACTIONS(1477), - [anon_sym_BANG] = ACTIONS(1477), - [anon_sym_AMP] = ACTIONS(1477), - [anon_sym_PIPE] = ACTIONS(1477), - [anon_sym_AMP_AMP] = ACTIONS(1475), - [anon_sym_PIPE_PIPE] = ACTIONS(1475), - [anon_sym_LT_LT] = ACTIONS(1477), - [anon_sym_GT_GT] = ACTIONS(1477), - [anon_sym_PLUS_EQ] = ACTIONS(1475), - [anon_sym_DASH_EQ] = ACTIONS(1475), - [anon_sym_STAR_EQ] = ACTIONS(1475), - [anon_sym_SLASH_EQ] = ACTIONS(1475), - [anon_sym_PERCENT_EQ] = ACTIONS(1475), - [anon_sym_CARET_EQ] = ACTIONS(1475), - [anon_sym_AMP_EQ] = ACTIONS(1475), - [anon_sym_PIPE_EQ] = ACTIONS(1475), - [anon_sym_LT_LT_EQ] = ACTIONS(1475), - [anon_sym_GT_GT_EQ] = ACTIONS(1475), - [anon_sym_EQ] = ACTIONS(1477), - [anon_sym_EQ_EQ] = ACTIONS(1475), - [anon_sym_BANG_EQ] = ACTIONS(1475), - [anon_sym_GT] = ACTIONS(1477), - [anon_sym_LT] = ACTIONS(1477), - [anon_sym_GT_EQ] = ACTIONS(1475), - [anon_sym_LT_EQ] = ACTIONS(1475), - [anon_sym_DOT] = ACTIONS(1477), - [anon_sym_DOT_DOT] = ACTIONS(1477), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1475), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1475), - [anon_sym_COLON_COLON] = ACTIONS(1475), - [anon_sym_POUND] = ACTIONS(1475), - [anon_sym_SQUOTE] = ACTIONS(1477), - [anon_sym_as] = ACTIONS(1477), - [anon_sym_async] = ACTIONS(1477), - [anon_sym_break] = ACTIONS(1477), - [anon_sym_const] = ACTIONS(1477), - [anon_sym_continue] = ACTIONS(1477), - [anon_sym_default] = ACTIONS(1477), - [anon_sym_enum] = ACTIONS(1477), - [anon_sym_fn] = ACTIONS(1477), - [anon_sym_for] = ACTIONS(1477), - [anon_sym_gen] = ACTIONS(1477), - [anon_sym_if] = ACTIONS(1477), - [anon_sym_impl] = ACTIONS(1477), - [anon_sym_let] = ACTIONS(1477), - [anon_sym_loop] = ACTIONS(1477), - [anon_sym_match] = ACTIONS(1477), - [anon_sym_mod] = ACTIONS(1477), - [anon_sym_pub] = ACTIONS(1477), - [anon_sym_return] = ACTIONS(1477), - [anon_sym_static] = ACTIONS(1477), - [anon_sym_struct] = ACTIONS(1477), - [anon_sym_trait] = ACTIONS(1477), - [anon_sym_type] = ACTIONS(1477), - [anon_sym_union] = ACTIONS(1477), - [anon_sym_unsafe] = ACTIONS(1477), - [anon_sym_use] = ACTIONS(1477), - [anon_sym_while] = ACTIONS(1477), - [anon_sym_extern] = ACTIONS(1477), - [anon_sym_yield] = ACTIONS(1477), - [anon_sym_move] = ACTIONS(1477), - [anon_sym_try] = ACTIONS(1477), - [sym_integer_literal] = ACTIONS(1475), - [aux_sym_string_literal_token1] = ACTIONS(1475), - [sym_char_literal] = ACTIONS(1475), - [anon_sym_true] = ACTIONS(1477), - [anon_sym_false] = ACTIONS(1477), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1477), - [sym_super] = ACTIONS(1477), - [sym_crate] = ACTIONS(1477), - [sym_metavariable] = ACTIONS(1475), - [sym__raw_string_literal_start] = ACTIONS(1475), - [sym_float_literal] = ACTIONS(1475), - }, [403] = { [sym_line_comment] = STATE(403), [sym_block_comment] = STATE(403), - [ts_builtin_sym_end] = ACTIONS(1479), - [sym_identifier] = ACTIONS(1481), - [anon_sym_SEMI] = ACTIONS(1479), - [anon_sym_macro_rules_BANG] = ACTIONS(1479), - [anon_sym_LPAREN] = ACTIONS(1479), - [anon_sym_LBRACK] = ACTIONS(1479), - [anon_sym_LBRACE] = ACTIONS(1479), - [anon_sym_RBRACE] = ACTIONS(1479), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(1481), - [anon_sym_QMARK] = ACTIONS(1479), - [anon_sym_u8] = ACTIONS(1481), - [anon_sym_i8] = ACTIONS(1481), - [anon_sym_u16] = ACTIONS(1481), - [anon_sym_i16] = ACTIONS(1481), - [anon_sym_u32] = ACTIONS(1481), - [anon_sym_i32] = ACTIONS(1481), - [anon_sym_u64] = ACTIONS(1481), - [anon_sym_i64] = ACTIONS(1481), - [anon_sym_u128] = ACTIONS(1481), - [anon_sym_i128] = ACTIONS(1481), - [anon_sym_isize] = ACTIONS(1481), - [anon_sym_usize] = ACTIONS(1481), - [anon_sym_f32] = ACTIONS(1481), - [anon_sym_f64] = ACTIONS(1481), - [anon_sym_bool] = ACTIONS(1481), - [anon_sym_str] = ACTIONS(1481), - [anon_sym_char] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_SLASH] = ACTIONS(1481), - [anon_sym_PERCENT] = ACTIONS(1481), - [anon_sym_CARET] = ACTIONS(1481), - [anon_sym_BANG] = ACTIONS(1481), - [anon_sym_AMP] = ACTIONS(1481), - [anon_sym_PIPE] = ACTIONS(1481), - [anon_sym_AMP_AMP] = ACTIONS(1479), - [anon_sym_PIPE_PIPE] = ACTIONS(1479), - [anon_sym_LT_LT] = ACTIONS(1481), - [anon_sym_GT_GT] = ACTIONS(1481), - [anon_sym_PLUS_EQ] = ACTIONS(1479), - [anon_sym_DASH_EQ] = ACTIONS(1479), - [anon_sym_STAR_EQ] = ACTIONS(1479), - [anon_sym_SLASH_EQ] = ACTIONS(1479), - [anon_sym_PERCENT_EQ] = ACTIONS(1479), - [anon_sym_CARET_EQ] = ACTIONS(1479), - [anon_sym_AMP_EQ] = ACTIONS(1479), - [anon_sym_PIPE_EQ] = ACTIONS(1479), - [anon_sym_LT_LT_EQ] = ACTIONS(1479), - [anon_sym_GT_GT_EQ] = ACTIONS(1479), - [anon_sym_EQ] = ACTIONS(1481), - [anon_sym_EQ_EQ] = ACTIONS(1479), - [anon_sym_BANG_EQ] = ACTIONS(1479), - [anon_sym_GT] = ACTIONS(1481), - [anon_sym_LT] = ACTIONS(1481), - [anon_sym_GT_EQ] = ACTIONS(1479), - [anon_sym_LT_EQ] = ACTIONS(1479), - [anon_sym_DOT] = ACTIONS(1481), - [anon_sym_DOT_DOT] = ACTIONS(1481), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1479), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1479), - [anon_sym_COLON_COLON] = ACTIONS(1479), - [anon_sym_POUND] = ACTIONS(1479), - [anon_sym_SQUOTE] = ACTIONS(1481), - [anon_sym_as] = ACTIONS(1481), - [anon_sym_async] = ACTIONS(1481), - [anon_sym_break] = ACTIONS(1481), - [anon_sym_const] = ACTIONS(1481), - [anon_sym_continue] = ACTIONS(1481), - [anon_sym_default] = ACTIONS(1481), - [anon_sym_enum] = ACTIONS(1481), - [anon_sym_fn] = ACTIONS(1481), - [anon_sym_for] = ACTIONS(1481), - [anon_sym_gen] = ACTIONS(1481), - [anon_sym_if] = ACTIONS(1481), - [anon_sym_impl] = ACTIONS(1481), - [anon_sym_let] = ACTIONS(1481), - [anon_sym_loop] = ACTIONS(1481), - [anon_sym_match] = ACTIONS(1481), - [anon_sym_mod] = ACTIONS(1481), - [anon_sym_pub] = ACTIONS(1481), - [anon_sym_return] = ACTIONS(1481), - [anon_sym_static] = ACTIONS(1481), - [anon_sym_struct] = ACTIONS(1481), - [anon_sym_trait] = ACTIONS(1481), - [anon_sym_type] = ACTIONS(1481), - [anon_sym_union] = ACTIONS(1481), - [anon_sym_unsafe] = ACTIONS(1481), - [anon_sym_use] = ACTIONS(1481), - [anon_sym_while] = ACTIONS(1481), - [anon_sym_extern] = ACTIONS(1481), - [anon_sym_yield] = ACTIONS(1481), - [anon_sym_move] = ACTIONS(1481), - [anon_sym_try] = ACTIONS(1481), - [sym_integer_literal] = ACTIONS(1479), - [aux_sym_string_literal_token1] = ACTIONS(1479), - [sym_char_literal] = ACTIONS(1479), - [anon_sym_true] = ACTIONS(1481), - [anon_sym_false] = ACTIONS(1481), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1481), - [sym_super] = ACTIONS(1481), - [sym_crate] = ACTIONS(1481), - [sym_metavariable] = ACTIONS(1479), - [sym__raw_string_literal_start] = ACTIONS(1479), - [sym_float_literal] = ACTIONS(1479), + [ts_builtin_sym_end] = ACTIONS(1441), + [sym_identifier] = ACTIONS(1443), + [anon_sym_SEMI] = ACTIONS(1441), + [anon_sym_macro_rules_BANG] = ACTIONS(1441), + [anon_sym_LPAREN] = ACTIONS(1441), + [anon_sym_LBRACK] = ACTIONS(1441), + [anon_sym_LBRACE] = ACTIONS(1441), + [anon_sym_RBRACE] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1443), + [anon_sym_STAR] = ACTIONS(1443), + [anon_sym_QMARK] = ACTIONS(1441), + [anon_sym_u8] = ACTIONS(1443), + [anon_sym_i8] = ACTIONS(1443), + [anon_sym_u16] = ACTIONS(1443), + [anon_sym_i16] = ACTIONS(1443), + [anon_sym_u32] = ACTIONS(1443), + [anon_sym_i32] = ACTIONS(1443), + [anon_sym_u64] = ACTIONS(1443), + [anon_sym_i64] = ACTIONS(1443), + [anon_sym_u128] = ACTIONS(1443), + [anon_sym_i128] = ACTIONS(1443), + [anon_sym_isize] = ACTIONS(1443), + [anon_sym_usize] = ACTIONS(1443), + [anon_sym_f32] = ACTIONS(1443), + [anon_sym_f64] = ACTIONS(1443), + [anon_sym_bool] = ACTIONS(1443), + [anon_sym_str] = ACTIONS(1443), + [anon_sym_char] = ACTIONS(1443), + [anon_sym_DASH] = ACTIONS(1443), + [anon_sym_SLASH] = ACTIONS(1443), + [anon_sym_PERCENT] = ACTIONS(1443), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_BANG] = ACTIONS(1443), + [anon_sym_AMP] = ACTIONS(1443), + [anon_sym_PIPE] = ACTIONS(1443), + [anon_sym_AMP_AMP] = ACTIONS(1441), + [anon_sym_PIPE_PIPE] = ACTIONS(1441), + [anon_sym_LT_LT] = ACTIONS(1443), + [anon_sym_GT_GT] = ACTIONS(1443), + [anon_sym_PLUS_EQ] = ACTIONS(1441), + [anon_sym_DASH_EQ] = ACTIONS(1441), + [anon_sym_STAR_EQ] = ACTIONS(1441), + [anon_sym_SLASH_EQ] = ACTIONS(1441), + [anon_sym_PERCENT_EQ] = ACTIONS(1441), + [anon_sym_CARET_EQ] = ACTIONS(1441), + [anon_sym_AMP_EQ] = ACTIONS(1441), + [anon_sym_PIPE_EQ] = ACTIONS(1441), + [anon_sym_LT_LT_EQ] = ACTIONS(1441), + [anon_sym_GT_GT_EQ] = ACTIONS(1441), + [anon_sym_EQ] = ACTIONS(1443), + [anon_sym_EQ_EQ] = ACTIONS(1441), + [anon_sym_BANG_EQ] = ACTIONS(1441), + [anon_sym_GT] = ACTIONS(1443), + [anon_sym_LT] = ACTIONS(1443), + [anon_sym_GT_EQ] = ACTIONS(1441), + [anon_sym_LT_EQ] = ACTIONS(1441), + [anon_sym_DOT] = ACTIONS(1443), + [anon_sym_DOT_DOT] = ACTIONS(1443), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1441), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1441), + [anon_sym_COLON_COLON] = ACTIONS(1441), + [anon_sym_POUND] = ACTIONS(1441), + [anon_sym_SQUOTE] = ACTIONS(1443), + [anon_sym_as] = ACTIONS(1443), + [anon_sym_async] = ACTIONS(1443), + [anon_sym_break] = ACTIONS(1443), + [anon_sym_const] = ACTIONS(1443), + [anon_sym_continue] = ACTIONS(1443), + [anon_sym_default] = ACTIONS(1443), + [anon_sym_enum] = ACTIONS(1443), + [anon_sym_fn] = ACTIONS(1443), + [anon_sym_for] = ACTIONS(1443), + [anon_sym_gen] = ACTIONS(1443), + [anon_sym_if] = ACTIONS(1443), + [anon_sym_impl] = ACTIONS(1443), + [anon_sym_let] = ACTIONS(1443), + [anon_sym_loop] = ACTIONS(1443), + [anon_sym_match] = ACTIONS(1443), + [anon_sym_mod] = ACTIONS(1443), + [anon_sym_pub] = ACTIONS(1443), + [anon_sym_return] = ACTIONS(1443), + [anon_sym_static] = ACTIONS(1443), + [anon_sym_struct] = ACTIONS(1443), + [anon_sym_trait] = ACTIONS(1443), + [anon_sym_type] = ACTIONS(1443), + [anon_sym_union] = ACTIONS(1443), + [anon_sym_unsafe] = ACTIONS(1443), + [anon_sym_use] = ACTIONS(1443), + [anon_sym_while] = ACTIONS(1443), + [anon_sym_extern] = ACTIONS(1443), + [anon_sym_yield] = ACTIONS(1443), + [anon_sym_move] = ACTIONS(1443), + [anon_sym_try] = ACTIONS(1443), + [sym_integer_literal] = ACTIONS(1441), + [aux_sym_string_literal_token1] = ACTIONS(1441), + [sym_char_literal] = ACTIONS(1441), + [anon_sym_true] = ACTIONS(1443), + [anon_sym_false] = ACTIONS(1443), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1443), + [sym_super] = ACTIONS(1443), + [sym_crate] = ACTIONS(1443), + [sym_metavariable] = ACTIONS(1441), + [sym__raw_string_literal_start] = ACTIONS(1441), + [sym_float_literal] = ACTIONS(1441), }, [404] = { [sym_line_comment] = STATE(404), [sym_block_comment] = STATE(404), - [ts_builtin_sym_end] = ACTIONS(1483), - [sym_identifier] = ACTIONS(1485), - [anon_sym_SEMI] = ACTIONS(1483), - [anon_sym_macro_rules_BANG] = ACTIONS(1483), - [anon_sym_LPAREN] = ACTIONS(1483), - [anon_sym_LBRACK] = ACTIONS(1483), - [anon_sym_LBRACE] = ACTIONS(1483), - [anon_sym_RBRACE] = ACTIONS(1483), - [anon_sym_PLUS] = ACTIONS(1485), - [anon_sym_STAR] = ACTIONS(1485), - [anon_sym_QMARK] = ACTIONS(1483), - [anon_sym_u8] = ACTIONS(1485), - [anon_sym_i8] = ACTIONS(1485), - [anon_sym_u16] = ACTIONS(1485), - [anon_sym_i16] = ACTIONS(1485), - [anon_sym_u32] = ACTIONS(1485), - [anon_sym_i32] = ACTIONS(1485), - [anon_sym_u64] = ACTIONS(1485), - [anon_sym_i64] = ACTIONS(1485), - [anon_sym_u128] = ACTIONS(1485), - [anon_sym_i128] = ACTIONS(1485), - [anon_sym_isize] = ACTIONS(1485), - [anon_sym_usize] = ACTIONS(1485), - [anon_sym_f32] = ACTIONS(1485), - [anon_sym_f64] = ACTIONS(1485), - [anon_sym_bool] = ACTIONS(1485), - [anon_sym_str] = ACTIONS(1485), - [anon_sym_char] = ACTIONS(1485), - [anon_sym_DASH] = ACTIONS(1485), - [anon_sym_SLASH] = ACTIONS(1485), - [anon_sym_PERCENT] = ACTIONS(1485), - [anon_sym_CARET] = ACTIONS(1485), - [anon_sym_BANG] = ACTIONS(1485), - [anon_sym_AMP] = ACTIONS(1485), - [anon_sym_PIPE] = ACTIONS(1485), - [anon_sym_AMP_AMP] = ACTIONS(1483), - [anon_sym_PIPE_PIPE] = ACTIONS(1483), - [anon_sym_LT_LT] = ACTIONS(1485), - [anon_sym_GT_GT] = ACTIONS(1485), - [anon_sym_PLUS_EQ] = ACTIONS(1483), - [anon_sym_DASH_EQ] = ACTIONS(1483), - [anon_sym_STAR_EQ] = ACTIONS(1483), - [anon_sym_SLASH_EQ] = ACTIONS(1483), - [anon_sym_PERCENT_EQ] = ACTIONS(1483), - [anon_sym_CARET_EQ] = ACTIONS(1483), - [anon_sym_AMP_EQ] = ACTIONS(1483), - [anon_sym_PIPE_EQ] = ACTIONS(1483), - [anon_sym_LT_LT_EQ] = ACTIONS(1483), - [anon_sym_GT_GT_EQ] = ACTIONS(1483), - [anon_sym_EQ] = ACTIONS(1485), - [anon_sym_EQ_EQ] = ACTIONS(1483), - [anon_sym_BANG_EQ] = ACTIONS(1483), - [anon_sym_GT] = ACTIONS(1485), - [anon_sym_LT] = ACTIONS(1485), - [anon_sym_GT_EQ] = ACTIONS(1483), - [anon_sym_LT_EQ] = ACTIONS(1483), - [anon_sym_DOT] = ACTIONS(1485), - [anon_sym_DOT_DOT] = ACTIONS(1485), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1483), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1483), - [anon_sym_COLON_COLON] = ACTIONS(1483), - [anon_sym_POUND] = ACTIONS(1483), - [anon_sym_SQUOTE] = ACTIONS(1485), - [anon_sym_as] = ACTIONS(1485), - [anon_sym_async] = ACTIONS(1485), - [anon_sym_break] = ACTIONS(1485), - [anon_sym_const] = ACTIONS(1485), - [anon_sym_continue] = ACTIONS(1485), - [anon_sym_default] = ACTIONS(1485), - [anon_sym_enum] = ACTIONS(1485), - [anon_sym_fn] = ACTIONS(1485), - [anon_sym_for] = ACTIONS(1485), - [anon_sym_gen] = ACTIONS(1485), - [anon_sym_if] = ACTIONS(1485), - [anon_sym_impl] = ACTIONS(1485), - [anon_sym_let] = ACTIONS(1485), - [anon_sym_loop] = ACTIONS(1485), - [anon_sym_match] = ACTIONS(1485), - [anon_sym_mod] = ACTIONS(1485), - [anon_sym_pub] = ACTIONS(1485), - [anon_sym_return] = ACTIONS(1485), - [anon_sym_static] = ACTIONS(1485), - [anon_sym_struct] = ACTIONS(1485), - [anon_sym_trait] = ACTIONS(1485), - [anon_sym_type] = ACTIONS(1485), - [anon_sym_union] = ACTIONS(1485), - [anon_sym_unsafe] = ACTIONS(1485), - [anon_sym_use] = ACTIONS(1485), - [anon_sym_while] = ACTIONS(1485), - [anon_sym_extern] = ACTIONS(1485), - [anon_sym_yield] = ACTIONS(1485), - [anon_sym_move] = ACTIONS(1485), - [anon_sym_try] = ACTIONS(1485), - [sym_integer_literal] = ACTIONS(1483), - [aux_sym_string_literal_token1] = ACTIONS(1483), - [sym_char_literal] = ACTIONS(1483), - [anon_sym_true] = ACTIONS(1485), - [anon_sym_false] = ACTIONS(1485), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1485), - [sym_super] = ACTIONS(1485), - [sym_crate] = ACTIONS(1485), - [sym_metavariable] = ACTIONS(1483), - [sym__raw_string_literal_start] = ACTIONS(1483), - [sym_float_literal] = ACTIONS(1483), + [ts_builtin_sym_end] = ACTIONS(1445), + [sym_identifier] = ACTIONS(1447), + [anon_sym_SEMI] = ACTIONS(1449), + [anon_sym_macro_rules_BANG] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1449), + [anon_sym_LBRACK] = ACTIONS(1449), + [anon_sym_LBRACE] = ACTIONS(1445), + [anon_sym_RBRACE] = ACTIONS(1449), + [anon_sym_PLUS] = ACTIONS(1451), + [anon_sym_STAR] = ACTIONS(1451), + [anon_sym_QMARK] = ACTIONS(1449), + [anon_sym_u8] = ACTIONS(1447), + [anon_sym_i8] = ACTIONS(1447), + [anon_sym_u16] = ACTIONS(1447), + [anon_sym_i16] = ACTIONS(1447), + [anon_sym_u32] = ACTIONS(1447), + [anon_sym_i32] = ACTIONS(1447), + [anon_sym_u64] = ACTIONS(1447), + [anon_sym_i64] = ACTIONS(1447), + [anon_sym_u128] = ACTIONS(1447), + [anon_sym_i128] = ACTIONS(1447), + [anon_sym_isize] = ACTIONS(1447), + [anon_sym_usize] = ACTIONS(1447), + [anon_sym_f32] = ACTIONS(1447), + [anon_sym_f64] = ACTIONS(1447), + [anon_sym_bool] = ACTIONS(1447), + [anon_sym_str] = ACTIONS(1447), + [anon_sym_char] = ACTIONS(1447), + [anon_sym_DASH] = ACTIONS(1451), + [anon_sym_SLASH] = ACTIONS(1451), + [anon_sym_PERCENT] = ACTIONS(1451), + [anon_sym_CARET] = ACTIONS(1451), + [anon_sym_BANG] = ACTIONS(1447), + [anon_sym_AMP] = ACTIONS(1451), + [anon_sym_PIPE] = ACTIONS(1451), + [anon_sym_AMP_AMP] = ACTIONS(1449), + [anon_sym_PIPE_PIPE] = ACTIONS(1449), + [anon_sym_LT_LT] = ACTIONS(1451), + [anon_sym_GT_GT] = ACTIONS(1451), + [anon_sym_PLUS_EQ] = ACTIONS(1449), + [anon_sym_DASH_EQ] = ACTIONS(1449), + [anon_sym_STAR_EQ] = ACTIONS(1449), + [anon_sym_SLASH_EQ] = ACTIONS(1449), + [anon_sym_PERCENT_EQ] = ACTIONS(1449), + [anon_sym_CARET_EQ] = ACTIONS(1449), + [anon_sym_AMP_EQ] = ACTIONS(1449), + [anon_sym_PIPE_EQ] = ACTIONS(1449), + [anon_sym_LT_LT_EQ] = ACTIONS(1449), + [anon_sym_GT_GT_EQ] = ACTIONS(1449), + [anon_sym_EQ] = ACTIONS(1451), + [anon_sym_EQ_EQ] = ACTIONS(1449), + [anon_sym_BANG_EQ] = ACTIONS(1449), + [anon_sym_GT] = ACTIONS(1451), + [anon_sym_LT] = ACTIONS(1451), + [anon_sym_GT_EQ] = ACTIONS(1449), + [anon_sym_LT_EQ] = ACTIONS(1449), + [anon_sym_DOT] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1449), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1449), + [anon_sym_COLON_COLON] = ACTIONS(1445), + [anon_sym_POUND] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1447), + [anon_sym_as] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1447), + [anon_sym_break] = ACTIONS(1447), + [anon_sym_const] = ACTIONS(1447), + [anon_sym_continue] = ACTIONS(1447), + [anon_sym_default] = ACTIONS(1447), + [anon_sym_enum] = ACTIONS(1447), + [anon_sym_fn] = ACTIONS(1447), + [anon_sym_for] = ACTIONS(1447), + [anon_sym_gen] = ACTIONS(1447), + [anon_sym_if] = ACTIONS(1447), + [anon_sym_impl] = ACTIONS(1447), + [anon_sym_let] = ACTIONS(1447), + [anon_sym_loop] = ACTIONS(1447), + [anon_sym_match] = ACTIONS(1447), + [anon_sym_mod] = ACTIONS(1447), + [anon_sym_pub] = ACTIONS(1447), + [anon_sym_return] = ACTIONS(1447), + [anon_sym_static] = ACTIONS(1447), + [anon_sym_struct] = ACTIONS(1447), + [anon_sym_trait] = ACTIONS(1447), + [anon_sym_type] = ACTIONS(1447), + [anon_sym_union] = ACTIONS(1447), + [anon_sym_unsafe] = ACTIONS(1447), + [anon_sym_use] = ACTIONS(1447), + [anon_sym_while] = ACTIONS(1447), + [anon_sym_extern] = ACTIONS(1447), + [anon_sym_yield] = ACTIONS(1447), + [anon_sym_move] = ACTIONS(1447), + [anon_sym_try] = ACTIONS(1447), + [sym_integer_literal] = ACTIONS(1445), + [aux_sym_string_literal_token1] = ACTIONS(1445), + [sym_char_literal] = ACTIONS(1445), + [anon_sym_true] = ACTIONS(1447), + [anon_sym_false] = ACTIONS(1447), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1447), + [sym_super] = ACTIONS(1447), + [sym_crate] = ACTIONS(1447), + [sym_metavariable] = ACTIONS(1445), + [sym__raw_string_literal_start] = ACTIONS(1445), + [sym_float_literal] = ACTIONS(1445), }, [405] = { [sym_line_comment] = STATE(405), [sym_block_comment] = STATE(405), + [ts_builtin_sym_end] = ACTIONS(1453), + [sym_identifier] = ACTIONS(1455), + [anon_sym_SEMI] = ACTIONS(1453), + [anon_sym_macro_rules_BANG] = ACTIONS(1453), + [anon_sym_LPAREN] = ACTIONS(1453), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_LBRACE] = ACTIONS(1453), + [anon_sym_RBRACE] = ACTIONS(1453), + [anon_sym_PLUS] = ACTIONS(1455), + [anon_sym_STAR] = ACTIONS(1455), + [anon_sym_QMARK] = ACTIONS(1453), + [anon_sym_u8] = ACTIONS(1455), + [anon_sym_i8] = ACTIONS(1455), + [anon_sym_u16] = ACTIONS(1455), + [anon_sym_i16] = ACTIONS(1455), + [anon_sym_u32] = ACTIONS(1455), + [anon_sym_i32] = ACTIONS(1455), + [anon_sym_u64] = ACTIONS(1455), + [anon_sym_i64] = ACTIONS(1455), + [anon_sym_u128] = ACTIONS(1455), + [anon_sym_i128] = ACTIONS(1455), + [anon_sym_isize] = ACTIONS(1455), + [anon_sym_usize] = ACTIONS(1455), + [anon_sym_f32] = ACTIONS(1455), + [anon_sym_f64] = ACTIONS(1455), + [anon_sym_bool] = ACTIONS(1455), + [anon_sym_str] = ACTIONS(1455), + [anon_sym_char] = ACTIONS(1455), + [anon_sym_DASH] = ACTIONS(1455), + [anon_sym_SLASH] = ACTIONS(1455), + [anon_sym_PERCENT] = ACTIONS(1455), + [anon_sym_CARET] = ACTIONS(1455), + [anon_sym_BANG] = ACTIONS(1455), + [anon_sym_AMP] = ACTIONS(1455), + [anon_sym_PIPE] = ACTIONS(1455), + [anon_sym_AMP_AMP] = ACTIONS(1453), + [anon_sym_PIPE_PIPE] = ACTIONS(1453), + [anon_sym_LT_LT] = ACTIONS(1455), + [anon_sym_GT_GT] = ACTIONS(1455), + [anon_sym_PLUS_EQ] = ACTIONS(1453), + [anon_sym_DASH_EQ] = ACTIONS(1453), + [anon_sym_STAR_EQ] = ACTIONS(1453), + [anon_sym_SLASH_EQ] = ACTIONS(1453), + [anon_sym_PERCENT_EQ] = ACTIONS(1453), + [anon_sym_CARET_EQ] = ACTIONS(1453), + [anon_sym_AMP_EQ] = ACTIONS(1453), + [anon_sym_PIPE_EQ] = ACTIONS(1453), + [anon_sym_LT_LT_EQ] = ACTIONS(1453), + [anon_sym_GT_GT_EQ] = ACTIONS(1453), + [anon_sym_EQ] = ACTIONS(1455), + [anon_sym_EQ_EQ] = ACTIONS(1453), + [anon_sym_BANG_EQ] = ACTIONS(1453), + [anon_sym_GT] = ACTIONS(1455), + [anon_sym_LT] = ACTIONS(1455), + [anon_sym_GT_EQ] = ACTIONS(1453), + [anon_sym_LT_EQ] = ACTIONS(1453), + [anon_sym_DOT] = ACTIONS(1455), + [anon_sym_DOT_DOT] = ACTIONS(1455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1453), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1453), + [anon_sym_COLON_COLON] = ACTIONS(1453), + [anon_sym_POUND] = ACTIONS(1453), + [anon_sym_SQUOTE] = ACTIONS(1455), + [anon_sym_as] = ACTIONS(1455), + [anon_sym_async] = ACTIONS(1455), + [anon_sym_break] = ACTIONS(1455), + [anon_sym_const] = ACTIONS(1455), + [anon_sym_continue] = ACTIONS(1455), + [anon_sym_default] = ACTIONS(1455), + [anon_sym_enum] = ACTIONS(1455), + [anon_sym_fn] = ACTIONS(1455), + [anon_sym_for] = ACTIONS(1455), + [anon_sym_gen] = ACTIONS(1455), + [anon_sym_if] = ACTIONS(1455), + [anon_sym_impl] = ACTIONS(1455), + [anon_sym_let] = ACTIONS(1455), + [anon_sym_loop] = ACTIONS(1455), + [anon_sym_match] = ACTIONS(1455), + [anon_sym_mod] = ACTIONS(1455), + [anon_sym_pub] = ACTIONS(1455), + [anon_sym_return] = ACTIONS(1455), + [anon_sym_static] = ACTIONS(1455), + [anon_sym_struct] = ACTIONS(1455), + [anon_sym_trait] = ACTIONS(1455), + [anon_sym_type] = ACTIONS(1455), + [anon_sym_union] = ACTIONS(1455), + [anon_sym_unsafe] = ACTIONS(1455), + [anon_sym_use] = ACTIONS(1455), + [anon_sym_while] = ACTIONS(1455), + [anon_sym_extern] = ACTIONS(1455), + [anon_sym_yield] = ACTIONS(1455), + [anon_sym_move] = ACTIONS(1455), + [anon_sym_try] = ACTIONS(1455), + [sym_integer_literal] = ACTIONS(1453), + [aux_sym_string_literal_token1] = ACTIONS(1453), + [sym_char_literal] = ACTIONS(1453), + [anon_sym_true] = ACTIONS(1455), + [anon_sym_false] = ACTIONS(1455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1455), + [sym_super] = ACTIONS(1455), + [sym_crate] = ACTIONS(1455), + [sym_metavariable] = ACTIONS(1453), + [sym__raw_string_literal_start] = ACTIONS(1453), + [sym_float_literal] = ACTIONS(1453), + }, + [406] = { + [sym_line_comment] = STATE(406), + [sym_block_comment] = STATE(406), + [ts_builtin_sym_end] = ACTIONS(1457), + [sym_identifier] = ACTIONS(1459), + [anon_sym_SEMI] = ACTIONS(1457), + [anon_sym_macro_rules_BANG] = ACTIONS(1457), + [anon_sym_LPAREN] = ACTIONS(1457), + [anon_sym_LBRACK] = ACTIONS(1457), + [anon_sym_LBRACE] = ACTIONS(1457), + [anon_sym_RBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1459), + [anon_sym_STAR] = ACTIONS(1459), + [anon_sym_QMARK] = ACTIONS(1457), + [anon_sym_u8] = ACTIONS(1459), + [anon_sym_i8] = ACTIONS(1459), + [anon_sym_u16] = ACTIONS(1459), + [anon_sym_i16] = ACTIONS(1459), + [anon_sym_u32] = ACTIONS(1459), + [anon_sym_i32] = ACTIONS(1459), + [anon_sym_u64] = ACTIONS(1459), + [anon_sym_i64] = ACTIONS(1459), + [anon_sym_u128] = ACTIONS(1459), + [anon_sym_i128] = ACTIONS(1459), + [anon_sym_isize] = ACTIONS(1459), + [anon_sym_usize] = ACTIONS(1459), + [anon_sym_f32] = ACTIONS(1459), + [anon_sym_f64] = ACTIONS(1459), + [anon_sym_bool] = ACTIONS(1459), + [anon_sym_str] = ACTIONS(1459), + [anon_sym_char] = ACTIONS(1459), + [anon_sym_DASH] = ACTIONS(1459), + [anon_sym_SLASH] = ACTIONS(1459), + [anon_sym_PERCENT] = ACTIONS(1459), + [anon_sym_CARET] = ACTIONS(1459), + [anon_sym_BANG] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1459), + [anon_sym_PIPE] = ACTIONS(1459), + [anon_sym_AMP_AMP] = ACTIONS(1457), + [anon_sym_PIPE_PIPE] = ACTIONS(1457), + [anon_sym_LT_LT] = ACTIONS(1459), + [anon_sym_GT_GT] = ACTIONS(1459), + [anon_sym_PLUS_EQ] = ACTIONS(1457), + [anon_sym_DASH_EQ] = ACTIONS(1457), + [anon_sym_STAR_EQ] = ACTIONS(1457), + [anon_sym_SLASH_EQ] = ACTIONS(1457), + [anon_sym_PERCENT_EQ] = ACTIONS(1457), + [anon_sym_CARET_EQ] = ACTIONS(1457), + [anon_sym_AMP_EQ] = ACTIONS(1457), + [anon_sym_PIPE_EQ] = ACTIONS(1457), + [anon_sym_LT_LT_EQ] = ACTIONS(1457), + [anon_sym_GT_GT_EQ] = ACTIONS(1457), + [anon_sym_EQ] = ACTIONS(1459), + [anon_sym_EQ_EQ] = ACTIONS(1457), + [anon_sym_BANG_EQ] = ACTIONS(1457), + [anon_sym_GT] = ACTIONS(1459), + [anon_sym_LT] = ACTIONS(1459), + [anon_sym_GT_EQ] = ACTIONS(1457), + [anon_sym_LT_EQ] = ACTIONS(1457), + [anon_sym_DOT] = ACTIONS(1459), + [anon_sym_DOT_DOT] = ACTIONS(1459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1457), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1457), + [anon_sym_COLON_COLON] = ACTIONS(1457), + [anon_sym_POUND] = ACTIONS(1457), + [anon_sym_SQUOTE] = ACTIONS(1459), + [anon_sym_as] = ACTIONS(1459), + [anon_sym_async] = ACTIONS(1459), + [anon_sym_break] = ACTIONS(1459), + [anon_sym_const] = ACTIONS(1459), + [anon_sym_continue] = ACTIONS(1459), + [anon_sym_default] = ACTIONS(1459), + [anon_sym_enum] = ACTIONS(1459), + [anon_sym_fn] = ACTIONS(1459), + [anon_sym_for] = ACTIONS(1459), + [anon_sym_gen] = ACTIONS(1459), + [anon_sym_if] = ACTIONS(1459), + [anon_sym_impl] = ACTIONS(1459), + [anon_sym_let] = ACTIONS(1459), + [anon_sym_loop] = ACTIONS(1459), + [anon_sym_match] = ACTIONS(1459), + [anon_sym_mod] = ACTIONS(1459), + [anon_sym_pub] = ACTIONS(1459), + [anon_sym_return] = ACTIONS(1459), + [anon_sym_static] = ACTIONS(1459), + [anon_sym_struct] = ACTIONS(1459), + [anon_sym_trait] = ACTIONS(1459), + [anon_sym_type] = ACTIONS(1459), + [anon_sym_union] = ACTIONS(1459), + [anon_sym_unsafe] = ACTIONS(1459), + [anon_sym_use] = ACTIONS(1459), + [anon_sym_while] = ACTIONS(1459), + [anon_sym_extern] = ACTIONS(1459), + [anon_sym_yield] = ACTIONS(1459), + [anon_sym_move] = ACTIONS(1459), + [anon_sym_try] = ACTIONS(1459), + [sym_integer_literal] = ACTIONS(1457), + [aux_sym_string_literal_token1] = ACTIONS(1457), + [sym_char_literal] = ACTIONS(1457), + [anon_sym_true] = ACTIONS(1459), + [anon_sym_false] = ACTIONS(1459), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1459), + [sym_super] = ACTIONS(1459), + [sym_crate] = ACTIONS(1459), + [sym_metavariable] = ACTIONS(1457), + [sym__raw_string_literal_start] = ACTIONS(1457), + [sym_float_literal] = ACTIONS(1457), + }, + [407] = { + [sym_line_comment] = STATE(407), + [sym_block_comment] = STATE(407), + [ts_builtin_sym_end] = ACTIONS(1461), + [sym_identifier] = ACTIONS(1463), + [anon_sym_SEMI] = ACTIONS(1461), + [anon_sym_macro_rules_BANG] = ACTIONS(1461), + [anon_sym_LPAREN] = ACTIONS(1461), + [anon_sym_LBRACK] = ACTIONS(1461), + [anon_sym_LBRACE] = ACTIONS(1461), + [anon_sym_RBRACE] = ACTIONS(1461), + [anon_sym_PLUS] = ACTIONS(1451), + [anon_sym_STAR] = ACTIONS(1463), + [anon_sym_QMARK] = ACTIONS(1449), + [anon_sym_u8] = ACTIONS(1463), + [anon_sym_i8] = ACTIONS(1463), + [anon_sym_u16] = ACTIONS(1463), + [anon_sym_i16] = ACTIONS(1463), + [anon_sym_u32] = ACTIONS(1463), + [anon_sym_i32] = ACTIONS(1463), + [anon_sym_u64] = ACTIONS(1463), + [anon_sym_i64] = ACTIONS(1463), + [anon_sym_u128] = ACTIONS(1463), + [anon_sym_i128] = ACTIONS(1463), + [anon_sym_isize] = ACTIONS(1463), + [anon_sym_usize] = ACTIONS(1463), + [anon_sym_f32] = ACTIONS(1463), + [anon_sym_f64] = ACTIONS(1463), + [anon_sym_bool] = ACTIONS(1463), + [anon_sym_str] = ACTIONS(1463), + [anon_sym_char] = ACTIONS(1463), + [anon_sym_DASH] = ACTIONS(1463), + [anon_sym_SLASH] = ACTIONS(1451), + [anon_sym_PERCENT] = ACTIONS(1451), + [anon_sym_CARET] = ACTIONS(1451), + [anon_sym_BANG] = ACTIONS(1463), + [anon_sym_AMP] = ACTIONS(1463), + [anon_sym_PIPE] = ACTIONS(1463), + [anon_sym_AMP_AMP] = ACTIONS(1449), + [anon_sym_PIPE_PIPE] = ACTIONS(1449), + [anon_sym_LT_LT] = ACTIONS(1451), + [anon_sym_GT_GT] = ACTIONS(1451), + [anon_sym_PLUS_EQ] = ACTIONS(1449), + [anon_sym_DASH_EQ] = ACTIONS(1449), + [anon_sym_STAR_EQ] = ACTIONS(1449), + [anon_sym_SLASH_EQ] = ACTIONS(1449), + [anon_sym_PERCENT_EQ] = ACTIONS(1449), + [anon_sym_CARET_EQ] = ACTIONS(1449), + [anon_sym_AMP_EQ] = ACTIONS(1449), + [anon_sym_PIPE_EQ] = ACTIONS(1449), + [anon_sym_LT_LT_EQ] = ACTIONS(1449), + [anon_sym_GT_GT_EQ] = ACTIONS(1449), + [anon_sym_EQ] = ACTIONS(1451), + [anon_sym_EQ_EQ] = ACTIONS(1449), + [anon_sym_BANG_EQ] = ACTIONS(1449), + [anon_sym_GT] = ACTIONS(1451), + [anon_sym_LT] = ACTIONS(1463), + [anon_sym_GT_EQ] = ACTIONS(1449), + [anon_sym_LT_EQ] = ACTIONS(1449), + [anon_sym_DOT] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1463), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1449), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1449), + [anon_sym_COLON_COLON] = ACTIONS(1461), + [anon_sym_POUND] = ACTIONS(1461), + [anon_sym_SQUOTE] = ACTIONS(1463), + [anon_sym_as] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1463), + [anon_sym_break] = ACTIONS(1463), + [anon_sym_const] = ACTIONS(1463), + [anon_sym_continue] = ACTIONS(1463), + [anon_sym_default] = ACTIONS(1463), + [anon_sym_enum] = ACTIONS(1463), + [anon_sym_fn] = ACTIONS(1463), + [anon_sym_for] = ACTIONS(1463), + [anon_sym_gen] = ACTIONS(1463), + [anon_sym_if] = ACTIONS(1463), + [anon_sym_impl] = ACTIONS(1463), + [anon_sym_let] = ACTIONS(1463), + [anon_sym_loop] = ACTIONS(1463), + [anon_sym_match] = ACTIONS(1463), + [anon_sym_mod] = ACTIONS(1463), + [anon_sym_pub] = ACTIONS(1463), + [anon_sym_return] = ACTIONS(1463), + [anon_sym_static] = ACTIONS(1463), + [anon_sym_struct] = ACTIONS(1463), + [anon_sym_trait] = ACTIONS(1463), + [anon_sym_type] = ACTIONS(1463), + [anon_sym_union] = ACTIONS(1463), + [anon_sym_unsafe] = ACTIONS(1463), + [anon_sym_use] = ACTIONS(1463), + [anon_sym_while] = ACTIONS(1463), + [anon_sym_extern] = ACTIONS(1463), + [anon_sym_yield] = ACTIONS(1463), + [anon_sym_move] = ACTIONS(1463), + [anon_sym_try] = ACTIONS(1463), + [sym_integer_literal] = ACTIONS(1461), + [aux_sym_string_literal_token1] = ACTIONS(1461), + [sym_char_literal] = ACTIONS(1461), + [anon_sym_true] = ACTIONS(1463), + [anon_sym_false] = ACTIONS(1463), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1463), + [sym_super] = ACTIONS(1463), + [sym_crate] = ACTIONS(1463), + [sym_metavariable] = ACTIONS(1461), + [sym__raw_string_literal_start] = ACTIONS(1461), + [sym_float_literal] = ACTIONS(1461), + }, + [408] = { + [sym_line_comment] = STATE(408), + [sym_block_comment] = STATE(408), + [ts_builtin_sym_end] = ACTIONS(1465), + [sym_identifier] = ACTIONS(1467), + [anon_sym_SEMI] = ACTIONS(1465), + [anon_sym_macro_rules_BANG] = ACTIONS(1465), + [anon_sym_LPAREN] = ACTIONS(1465), + [anon_sym_LBRACK] = ACTIONS(1465), + [anon_sym_LBRACE] = ACTIONS(1465), + [anon_sym_RBRACE] = ACTIONS(1465), + [anon_sym_PLUS] = ACTIONS(1467), + [anon_sym_STAR] = ACTIONS(1467), + [anon_sym_QMARK] = ACTIONS(1465), + [anon_sym_u8] = ACTIONS(1467), + [anon_sym_i8] = ACTIONS(1467), + [anon_sym_u16] = ACTIONS(1467), + [anon_sym_i16] = ACTIONS(1467), + [anon_sym_u32] = ACTIONS(1467), + [anon_sym_i32] = ACTIONS(1467), + [anon_sym_u64] = ACTIONS(1467), + [anon_sym_i64] = ACTIONS(1467), + [anon_sym_u128] = ACTIONS(1467), + [anon_sym_i128] = ACTIONS(1467), + [anon_sym_isize] = ACTIONS(1467), + [anon_sym_usize] = ACTIONS(1467), + [anon_sym_f32] = ACTIONS(1467), + [anon_sym_f64] = ACTIONS(1467), + [anon_sym_bool] = ACTIONS(1467), + [anon_sym_str] = ACTIONS(1467), + [anon_sym_char] = ACTIONS(1467), + [anon_sym_DASH] = ACTIONS(1467), + [anon_sym_SLASH] = ACTIONS(1467), + [anon_sym_PERCENT] = ACTIONS(1467), + [anon_sym_CARET] = ACTIONS(1467), + [anon_sym_BANG] = ACTIONS(1467), + [anon_sym_AMP] = ACTIONS(1467), + [anon_sym_PIPE] = ACTIONS(1467), + [anon_sym_AMP_AMP] = ACTIONS(1465), + [anon_sym_PIPE_PIPE] = ACTIONS(1465), + [anon_sym_LT_LT] = ACTIONS(1467), + [anon_sym_GT_GT] = ACTIONS(1467), + [anon_sym_PLUS_EQ] = ACTIONS(1465), + [anon_sym_DASH_EQ] = ACTIONS(1465), + [anon_sym_STAR_EQ] = ACTIONS(1465), + [anon_sym_SLASH_EQ] = ACTIONS(1465), + [anon_sym_PERCENT_EQ] = ACTIONS(1465), + [anon_sym_CARET_EQ] = ACTIONS(1465), + [anon_sym_AMP_EQ] = ACTIONS(1465), + [anon_sym_PIPE_EQ] = ACTIONS(1465), + [anon_sym_LT_LT_EQ] = ACTIONS(1465), + [anon_sym_GT_GT_EQ] = ACTIONS(1465), + [anon_sym_EQ] = ACTIONS(1467), + [anon_sym_EQ_EQ] = ACTIONS(1465), + [anon_sym_BANG_EQ] = ACTIONS(1465), + [anon_sym_GT] = ACTIONS(1467), + [anon_sym_LT] = ACTIONS(1467), + [anon_sym_GT_EQ] = ACTIONS(1465), + [anon_sym_LT_EQ] = ACTIONS(1465), + [anon_sym_DOT] = ACTIONS(1467), + [anon_sym_DOT_DOT] = ACTIONS(1467), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1465), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1465), + [anon_sym_COLON_COLON] = ACTIONS(1465), + [anon_sym_POUND] = ACTIONS(1465), + [anon_sym_SQUOTE] = ACTIONS(1467), + [anon_sym_as] = ACTIONS(1467), + [anon_sym_async] = ACTIONS(1467), + [anon_sym_break] = ACTIONS(1467), + [anon_sym_const] = ACTIONS(1467), + [anon_sym_continue] = ACTIONS(1467), + [anon_sym_default] = ACTIONS(1467), + [anon_sym_enum] = ACTIONS(1467), + [anon_sym_fn] = ACTIONS(1467), + [anon_sym_for] = ACTIONS(1467), + [anon_sym_gen] = ACTIONS(1467), + [anon_sym_if] = ACTIONS(1467), + [anon_sym_impl] = ACTIONS(1467), + [anon_sym_let] = ACTIONS(1467), + [anon_sym_loop] = ACTIONS(1467), + [anon_sym_match] = ACTIONS(1467), + [anon_sym_mod] = ACTIONS(1467), + [anon_sym_pub] = ACTIONS(1467), + [anon_sym_return] = ACTIONS(1467), + [anon_sym_static] = ACTIONS(1467), + [anon_sym_struct] = ACTIONS(1467), + [anon_sym_trait] = ACTIONS(1467), + [anon_sym_type] = ACTIONS(1467), + [anon_sym_union] = ACTIONS(1467), + [anon_sym_unsafe] = ACTIONS(1467), + [anon_sym_use] = ACTIONS(1467), + [anon_sym_while] = ACTIONS(1467), + [anon_sym_extern] = ACTIONS(1467), + [anon_sym_yield] = ACTIONS(1467), + [anon_sym_move] = ACTIONS(1467), + [anon_sym_try] = ACTIONS(1467), + [sym_integer_literal] = ACTIONS(1465), + [aux_sym_string_literal_token1] = ACTIONS(1465), + [sym_char_literal] = ACTIONS(1465), + [anon_sym_true] = ACTIONS(1467), + [anon_sym_false] = ACTIONS(1467), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1467), + [sym_super] = ACTIONS(1467), + [sym_crate] = ACTIONS(1467), + [sym_metavariable] = ACTIONS(1465), + [sym__raw_string_literal_start] = ACTIONS(1465), + [sym_float_literal] = ACTIONS(1465), + }, + [409] = { + [sym_line_comment] = STATE(409), + [sym_block_comment] = STATE(409), + [ts_builtin_sym_end] = ACTIONS(1469), + [sym_identifier] = ACTIONS(1471), + [anon_sym_SEMI] = ACTIONS(1469), + [anon_sym_macro_rules_BANG] = ACTIONS(1469), + [anon_sym_LPAREN] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1469), + [anon_sym_LBRACE] = ACTIONS(1469), + [anon_sym_RBRACE] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_STAR] = ACTIONS(1471), + [anon_sym_QMARK] = ACTIONS(1469), + [anon_sym_u8] = ACTIONS(1471), + [anon_sym_i8] = ACTIONS(1471), + [anon_sym_u16] = ACTIONS(1471), + [anon_sym_i16] = ACTIONS(1471), + [anon_sym_u32] = ACTIONS(1471), + [anon_sym_i32] = ACTIONS(1471), + [anon_sym_u64] = ACTIONS(1471), + [anon_sym_i64] = ACTIONS(1471), + [anon_sym_u128] = ACTIONS(1471), + [anon_sym_i128] = ACTIONS(1471), + [anon_sym_isize] = ACTIONS(1471), + [anon_sym_usize] = ACTIONS(1471), + [anon_sym_f32] = ACTIONS(1471), + [anon_sym_f64] = ACTIONS(1471), + [anon_sym_bool] = ACTIONS(1471), + [anon_sym_str] = ACTIONS(1471), + [anon_sym_char] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_SLASH] = ACTIONS(1471), + [anon_sym_PERCENT] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1471), + [anon_sym_AMP] = ACTIONS(1471), + [anon_sym_PIPE] = ACTIONS(1471), + [anon_sym_AMP_AMP] = ACTIONS(1469), + [anon_sym_PIPE_PIPE] = ACTIONS(1469), + [anon_sym_LT_LT] = ACTIONS(1471), + [anon_sym_GT_GT] = ACTIONS(1471), + [anon_sym_PLUS_EQ] = ACTIONS(1469), + [anon_sym_DASH_EQ] = ACTIONS(1469), + [anon_sym_STAR_EQ] = ACTIONS(1469), + [anon_sym_SLASH_EQ] = ACTIONS(1469), + [anon_sym_PERCENT_EQ] = ACTIONS(1469), + [anon_sym_CARET_EQ] = ACTIONS(1469), + [anon_sym_AMP_EQ] = ACTIONS(1469), + [anon_sym_PIPE_EQ] = ACTIONS(1469), + [anon_sym_LT_LT_EQ] = ACTIONS(1469), + [anon_sym_GT_GT_EQ] = ACTIONS(1469), + [anon_sym_EQ] = ACTIONS(1471), + [anon_sym_EQ_EQ] = ACTIONS(1469), + [anon_sym_BANG_EQ] = ACTIONS(1469), + [anon_sym_GT] = ACTIONS(1471), + [anon_sym_LT] = ACTIONS(1471), + [anon_sym_GT_EQ] = ACTIONS(1469), + [anon_sym_LT_EQ] = ACTIONS(1469), + [anon_sym_DOT] = ACTIONS(1471), + [anon_sym_DOT_DOT] = ACTIONS(1471), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1469), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1469), + [anon_sym_COLON_COLON] = ACTIONS(1469), + [anon_sym_POUND] = ACTIONS(1469), + [anon_sym_SQUOTE] = ACTIONS(1471), + [anon_sym_as] = ACTIONS(1471), + [anon_sym_async] = ACTIONS(1471), + [anon_sym_break] = ACTIONS(1471), + [anon_sym_const] = ACTIONS(1471), + [anon_sym_continue] = ACTIONS(1471), + [anon_sym_default] = ACTIONS(1471), + [anon_sym_enum] = ACTIONS(1471), + [anon_sym_fn] = ACTIONS(1471), + [anon_sym_for] = ACTIONS(1471), + [anon_sym_gen] = ACTIONS(1471), + [anon_sym_if] = ACTIONS(1471), + [anon_sym_impl] = ACTIONS(1471), + [anon_sym_let] = ACTIONS(1471), + [anon_sym_loop] = ACTIONS(1471), + [anon_sym_match] = ACTIONS(1471), + [anon_sym_mod] = ACTIONS(1471), + [anon_sym_pub] = ACTIONS(1471), + [anon_sym_return] = ACTIONS(1471), + [anon_sym_static] = ACTIONS(1471), + [anon_sym_struct] = ACTIONS(1471), + [anon_sym_trait] = ACTIONS(1471), + [anon_sym_type] = ACTIONS(1471), + [anon_sym_union] = ACTIONS(1471), + [anon_sym_unsafe] = ACTIONS(1471), + [anon_sym_use] = ACTIONS(1471), + [anon_sym_while] = ACTIONS(1471), + [anon_sym_extern] = ACTIONS(1471), + [anon_sym_yield] = ACTIONS(1471), + [anon_sym_move] = ACTIONS(1471), + [anon_sym_try] = ACTIONS(1471), + [sym_integer_literal] = ACTIONS(1469), + [aux_sym_string_literal_token1] = ACTIONS(1469), + [sym_char_literal] = ACTIONS(1469), + [anon_sym_true] = ACTIONS(1471), + [anon_sym_false] = ACTIONS(1471), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1471), + [sym_super] = ACTIONS(1471), + [sym_crate] = ACTIONS(1471), + [sym_metavariable] = ACTIONS(1469), + [sym__raw_string_literal_start] = ACTIONS(1469), + [sym_float_literal] = ACTIONS(1469), + }, + [410] = { + [sym_line_comment] = STATE(410), + [sym_block_comment] = STATE(410), + [ts_builtin_sym_end] = ACTIONS(1473), + [sym_identifier] = ACTIONS(1475), + [anon_sym_SEMI] = ACTIONS(1473), + [anon_sym_macro_rules_BANG] = ACTIONS(1473), + [anon_sym_LPAREN] = ACTIONS(1473), + [anon_sym_LBRACK] = ACTIONS(1473), + [anon_sym_LBRACE] = ACTIONS(1473), + [anon_sym_RBRACE] = ACTIONS(1473), + [anon_sym_PLUS] = ACTIONS(1475), + [anon_sym_STAR] = ACTIONS(1475), + [anon_sym_QMARK] = ACTIONS(1473), + [anon_sym_u8] = ACTIONS(1475), + [anon_sym_i8] = ACTIONS(1475), + [anon_sym_u16] = ACTIONS(1475), + [anon_sym_i16] = ACTIONS(1475), + [anon_sym_u32] = ACTIONS(1475), + [anon_sym_i32] = ACTIONS(1475), + [anon_sym_u64] = ACTIONS(1475), + [anon_sym_i64] = ACTIONS(1475), + [anon_sym_u128] = ACTIONS(1475), + [anon_sym_i128] = ACTIONS(1475), + [anon_sym_isize] = ACTIONS(1475), + [anon_sym_usize] = ACTIONS(1475), + [anon_sym_f32] = ACTIONS(1475), + [anon_sym_f64] = ACTIONS(1475), + [anon_sym_bool] = ACTIONS(1475), + [anon_sym_str] = ACTIONS(1475), + [anon_sym_char] = ACTIONS(1475), + [anon_sym_DASH] = ACTIONS(1475), + [anon_sym_SLASH] = ACTIONS(1475), + [anon_sym_PERCENT] = ACTIONS(1475), + [anon_sym_CARET] = ACTIONS(1475), + [anon_sym_BANG] = ACTIONS(1475), + [anon_sym_AMP] = ACTIONS(1475), + [anon_sym_PIPE] = ACTIONS(1475), + [anon_sym_AMP_AMP] = ACTIONS(1473), + [anon_sym_PIPE_PIPE] = ACTIONS(1473), + [anon_sym_LT_LT] = ACTIONS(1475), + [anon_sym_GT_GT] = ACTIONS(1475), + [anon_sym_PLUS_EQ] = ACTIONS(1473), + [anon_sym_DASH_EQ] = ACTIONS(1473), + [anon_sym_STAR_EQ] = ACTIONS(1473), + [anon_sym_SLASH_EQ] = ACTIONS(1473), + [anon_sym_PERCENT_EQ] = ACTIONS(1473), + [anon_sym_CARET_EQ] = ACTIONS(1473), + [anon_sym_AMP_EQ] = ACTIONS(1473), + [anon_sym_PIPE_EQ] = ACTIONS(1473), + [anon_sym_LT_LT_EQ] = ACTIONS(1473), + [anon_sym_GT_GT_EQ] = ACTIONS(1473), + [anon_sym_EQ] = ACTIONS(1475), + [anon_sym_EQ_EQ] = ACTIONS(1473), + [anon_sym_BANG_EQ] = ACTIONS(1473), + [anon_sym_GT] = ACTIONS(1475), + [anon_sym_LT] = ACTIONS(1475), + [anon_sym_GT_EQ] = ACTIONS(1473), + [anon_sym_LT_EQ] = ACTIONS(1473), + [anon_sym_DOT] = ACTIONS(1475), + [anon_sym_DOT_DOT] = ACTIONS(1475), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1473), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1473), + [anon_sym_COLON_COLON] = ACTIONS(1473), + [anon_sym_POUND] = ACTIONS(1473), + [anon_sym_SQUOTE] = ACTIONS(1475), + [anon_sym_as] = ACTIONS(1475), + [anon_sym_async] = ACTIONS(1475), + [anon_sym_break] = ACTIONS(1475), + [anon_sym_const] = ACTIONS(1475), + [anon_sym_continue] = ACTIONS(1475), + [anon_sym_default] = ACTIONS(1475), + [anon_sym_enum] = ACTIONS(1475), + [anon_sym_fn] = ACTIONS(1475), + [anon_sym_for] = ACTIONS(1475), + [anon_sym_gen] = ACTIONS(1475), + [anon_sym_if] = ACTIONS(1475), + [anon_sym_impl] = ACTIONS(1475), + [anon_sym_let] = ACTIONS(1475), + [anon_sym_loop] = ACTIONS(1475), + [anon_sym_match] = ACTIONS(1475), + [anon_sym_mod] = ACTIONS(1475), + [anon_sym_pub] = ACTIONS(1475), + [anon_sym_return] = ACTIONS(1475), + [anon_sym_static] = ACTIONS(1475), + [anon_sym_struct] = ACTIONS(1475), + [anon_sym_trait] = ACTIONS(1475), + [anon_sym_type] = ACTIONS(1475), + [anon_sym_union] = ACTIONS(1475), + [anon_sym_unsafe] = ACTIONS(1475), + [anon_sym_use] = ACTIONS(1475), + [anon_sym_while] = ACTIONS(1475), + [anon_sym_extern] = ACTIONS(1475), + [anon_sym_yield] = ACTIONS(1475), + [anon_sym_move] = ACTIONS(1475), + [anon_sym_try] = ACTIONS(1475), + [sym_integer_literal] = ACTIONS(1473), + [aux_sym_string_literal_token1] = ACTIONS(1473), + [sym_char_literal] = ACTIONS(1473), + [anon_sym_true] = ACTIONS(1475), + [anon_sym_false] = ACTIONS(1475), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1475), + [sym_super] = ACTIONS(1475), + [sym_crate] = ACTIONS(1475), + [sym_metavariable] = ACTIONS(1473), + [sym__raw_string_literal_start] = ACTIONS(1473), + [sym_float_literal] = ACTIONS(1473), + }, + [411] = { + [sym_line_comment] = STATE(411), + [sym_block_comment] = STATE(411), + [ts_builtin_sym_end] = ACTIONS(1477), + [sym_identifier] = ACTIONS(1479), + [anon_sym_SEMI] = ACTIONS(1477), + [anon_sym_macro_rules_BANG] = ACTIONS(1477), + [anon_sym_LPAREN] = ACTIONS(1477), + [anon_sym_LBRACK] = ACTIONS(1477), + [anon_sym_LBRACE] = ACTIONS(1477), + [anon_sym_RBRACE] = ACTIONS(1477), + [anon_sym_PLUS] = ACTIONS(1479), + [anon_sym_STAR] = ACTIONS(1479), + [anon_sym_QMARK] = ACTIONS(1477), + [anon_sym_u8] = ACTIONS(1479), + [anon_sym_i8] = ACTIONS(1479), + [anon_sym_u16] = ACTIONS(1479), + [anon_sym_i16] = ACTIONS(1479), + [anon_sym_u32] = ACTIONS(1479), + [anon_sym_i32] = ACTIONS(1479), + [anon_sym_u64] = ACTIONS(1479), + [anon_sym_i64] = ACTIONS(1479), + [anon_sym_u128] = ACTIONS(1479), + [anon_sym_i128] = ACTIONS(1479), + [anon_sym_isize] = ACTIONS(1479), + [anon_sym_usize] = ACTIONS(1479), + [anon_sym_f32] = ACTIONS(1479), + [anon_sym_f64] = ACTIONS(1479), + [anon_sym_bool] = ACTIONS(1479), + [anon_sym_str] = ACTIONS(1479), + [anon_sym_char] = ACTIONS(1479), + [anon_sym_DASH] = ACTIONS(1479), + [anon_sym_SLASH] = ACTIONS(1479), + [anon_sym_PERCENT] = ACTIONS(1479), + [anon_sym_CARET] = ACTIONS(1479), + [anon_sym_BANG] = ACTIONS(1479), + [anon_sym_AMP] = ACTIONS(1479), + [anon_sym_PIPE] = ACTIONS(1479), + [anon_sym_AMP_AMP] = ACTIONS(1477), + [anon_sym_PIPE_PIPE] = ACTIONS(1477), + [anon_sym_LT_LT] = ACTIONS(1479), + [anon_sym_GT_GT] = ACTIONS(1479), + [anon_sym_PLUS_EQ] = ACTIONS(1477), + [anon_sym_DASH_EQ] = ACTIONS(1477), + [anon_sym_STAR_EQ] = ACTIONS(1477), + [anon_sym_SLASH_EQ] = ACTIONS(1477), + [anon_sym_PERCENT_EQ] = ACTIONS(1477), + [anon_sym_CARET_EQ] = ACTIONS(1477), + [anon_sym_AMP_EQ] = ACTIONS(1477), + [anon_sym_PIPE_EQ] = ACTIONS(1477), + [anon_sym_LT_LT_EQ] = ACTIONS(1477), + [anon_sym_GT_GT_EQ] = ACTIONS(1477), + [anon_sym_EQ] = ACTIONS(1479), + [anon_sym_EQ_EQ] = ACTIONS(1477), + [anon_sym_BANG_EQ] = ACTIONS(1477), + [anon_sym_GT] = ACTIONS(1479), + [anon_sym_LT] = ACTIONS(1479), + [anon_sym_GT_EQ] = ACTIONS(1477), + [anon_sym_LT_EQ] = ACTIONS(1477), + [anon_sym_DOT] = ACTIONS(1479), + [anon_sym_DOT_DOT] = ACTIONS(1479), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1477), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1477), + [anon_sym_COLON_COLON] = ACTIONS(1477), + [anon_sym_POUND] = ACTIONS(1477), + [anon_sym_SQUOTE] = ACTIONS(1479), + [anon_sym_as] = ACTIONS(1479), + [anon_sym_async] = ACTIONS(1479), + [anon_sym_break] = ACTIONS(1479), + [anon_sym_const] = ACTIONS(1479), + [anon_sym_continue] = ACTIONS(1479), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_enum] = ACTIONS(1479), + [anon_sym_fn] = ACTIONS(1479), + [anon_sym_for] = ACTIONS(1479), + [anon_sym_gen] = ACTIONS(1479), + [anon_sym_if] = ACTIONS(1479), + [anon_sym_impl] = ACTIONS(1479), + [anon_sym_let] = ACTIONS(1479), + [anon_sym_loop] = ACTIONS(1479), + [anon_sym_match] = ACTIONS(1479), + [anon_sym_mod] = ACTIONS(1479), + [anon_sym_pub] = ACTIONS(1479), + [anon_sym_return] = ACTIONS(1479), + [anon_sym_static] = ACTIONS(1479), + [anon_sym_struct] = ACTIONS(1479), + [anon_sym_trait] = ACTIONS(1479), + [anon_sym_type] = ACTIONS(1479), + [anon_sym_union] = ACTIONS(1479), + [anon_sym_unsafe] = ACTIONS(1479), + [anon_sym_use] = ACTIONS(1479), + [anon_sym_while] = ACTIONS(1479), + [anon_sym_extern] = ACTIONS(1479), + [anon_sym_yield] = ACTIONS(1479), + [anon_sym_move] = ACTIONS(1479), + [anon_sym_try] = ACTIONS(1479), + [sym_integer_literal] = ACTIONS(1477), + [aux_sym_string_literal_token1] = ACTIONS(1477), + [sym_char_literal] = ACTIONS(1477), + [anon_sym_true] = ACTIONS(1479), + [anon_sym_false] = ACTIONS(1479), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1479), + [sym_super] = ACTIONS(1479), + [sym_crate] = ACTIONS(1479), + [sym_metavariable] = ACTIONS(1477), + [sym__raw_string_literal_start] = ACTIONS(1477), + [sym_float_literal] = ACTIONS(1477), + }, + [412] = { + [sym_attribute_item] = STATE(431), + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_self_parameter] = STATE(3394), + [sym_variadic_parameter] = STATE(3394), + [sym_parameter] = STATE(3394), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2870), + [sym_bracketed_type] = STATE(4026), + [sym_lifetime] = STATE(3377), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3775), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2751), + [sym_scoped_identifier] = STATE(2534), + [sym_scoped_type_identifier] = STATE(2400), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(3619), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(412), + [sym_block_comment] = STATE(412), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(1293), + [anon_sym_LPAREN] = ACTIONS(1295), + [anon_sym_RPAREN] = ACTIONS(1481), + [anon_sym_LBRACK] = ACTIONS(1299), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1305), + [anon_sym_i8] = ACTIONS(1305), + [anon_sym_u16] = ACTIONS(1305), + [anon_sym_i16] = ACTIONS(1305), + [anon_sym_u32] = ACTIONS(1305), + [anon_sym_i32] = ACTIONS(1305), + [anon_sym_u64] = ACTIONS(1305), + [anon_sym_i64] = ACTIONS(1305), + [anon_sym_u128] = ACTIONS(1305), + [anon_sym_i128] = ACTIONS(1305), + [anon_sym_isize] = ACTIONS(1305), + [anon_sym_usize] = ACTIONS(1305), + [anon_sym_f32] = ACTIONS(1305), + [anon_sym_f64] = ACTIONS(1305), + [anon_sym_bool] = ACTIONS(1305), + [anon_sym_str] = ACTIONS(1305), + [anon_sym_char] = ACTIONS(1305), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1311), + [anon_sym_PIPE] = ACTIONS(1313), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1483), + [anon_sym_DOT_DOT] = ACTIONS(1317), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1319), + [anon_sym_COMMA] = ACTIONS(1485), + [anon_sym_COLON_COLON] = ACTIONS(1323), + [anon_sym_POUND] = ACTIONS(1325), + [anon_sym_SQUOTE] = ACTIONS(1327), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1331), + [anon_sym_default] = ACTIONS(1333), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1339), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1339), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_ref] = ACTIONS(1345), + [anon_sym_dyn] = ACTIONS(1347), + [sym_mutable_specifier] = ACTIONS(1349), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1357), + [sym_super] = ACTIONS(1359), + [sym_crate] = ACTIONS(1359), + [sym_metavariable] = ACTIONS(1361), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), + }, + [413] = { + [sym_line_comment] = STATE(413), + [sym_block_comment] = STATE(413), [ts_builtin_sym_end] = ACTIONS(1487), [sym_identifier] = ACTIONS(1489), [anon_sym_SEMI] = ACTIONS(1487), @@ -62712,2002 +64971,2002 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1487), [sym_float_literal] = ACTIONS(1487), }, - [406] = { - [sym_attribute_item] = STATE(423), - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_self_parameter] = STATE(3137), - [sym_variadic_parameter] = STATE(3137), - [sym_parameter] = STATE(3137), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2807), - [sym_bracketed_type] = STATE(3550), - [sym_lifetime] = STATE(2800), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3221), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(2410), - [sym_scoped_identifier] = STATE(2242), - [sym_scoped_type_identifier] = STATE(2118), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(3256), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), - [sym_line_comment] = STATE(406), - [sym_block_comment] = STATE(406), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(1281), - [anon_sym_LPAREN] = ACTIONS(1283), + [414] = { + [sym_attribute_item] = STATE(430), + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_self_parameter] = STATE(3671), + [sym_variadic_parameter] = STATE(3671), + [sym_parameter] = STATE(3671), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(3350), + [sym_bracketed_type] = STATE(4026), + [sym_lifetime] = STATE(3377), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3775), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2751), + [sym_scoped_identifier] = STATE(2534), + [sym_scoped_type_identifier] = STATE(2400), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(3619), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(414), + [sym_block_comment] = STATE(414), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(1293), + [anon_sym_LPAREN] = ACTIONS(1295), [anon_sym_RPAREN] = ACTIONS(1491), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1293), - [anon_sym_i8] = ACTIONS(1293), - [anon_sym_u16] = ACTIONS(1293), - [anon_sym_i16] = ACTIONS(1293), - [anon_sym_u32] = ACTIONS(1293), - [anon_sym_i32] = ACTIONS(1293), - [anon_sym_u64] = ACTIONS(1293), - [anon_sym_i64] = ACTIONS(1293), - [anon_sym_u128] = ACTIONS(1293), - [anon_sym_i128] = ACTIONS(1293), - [anon_sym_isize] = ACTIONS(1293), - [anon_sym_usize] = ACTIONS(1293), - [anon_sym_f32] = ACTIONS(1293), - [anon_sym_f64] = ACTIONS(1293), - [anon_sym_bool] = ACTIONS(1293), - [anon_sym_str] = ACTIONS(1293), - [anon_sym_char] = ACTIONS(1293), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1299), - [anon_sym_PIPE] = ACTIONS(1301), + [anon_sym_LBRACK] = ACTIONS(1299), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1305), + [anon_sym_i8] = ACTIONS(1305), + [anon_sym_u16] = ACTIONS(1305), + [anon_sym_i16] = ACTIONS(1305), + [anon_sym_u32] = ACTIONS(1305), + [anon_sym_i32] = ACTIONS(1305), + [anon_sym_u64] = ACTIONS(1305), + [anon_sym_i64] = ACTIONS(1305), + [anon_sym_u128] = ACTIONS(1305), + [anon_sym_i128] = ACTIONS(1305), + [anon_sym_isize] = ACTIONS(1305), + [anon_sym_usize] = ACTIONS(1305), + [anon_sym_f32] = ACTIONS(1305), + [anon_sym_f64] = ACTIONS(1305), + [anon_sym_bool] = ACTIONS(1305), + [anon_sym_str] = ACTIONS(1305), + [anon_sym_char] = ACTIONS(1305), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1311), + [anon_sym_PIPE] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1305), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1307), - [anon_sym_COLON_COLON] = ACTIONS(1311), - [anon_sym_POUND] = ACTIONS(1313), - [anon_sym_SQUOTE] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1319), - [anon_sym_default] = ACTIONS(1321), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1327), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1327), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_ref] = ACTIONS(1333), - [anon_sym_dyn] = ACTIONS(1335), - [sym_mutable_specifier] = ACTIONS(1337), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1345), - [sym_super] = ACTIONS(1347), - [sym_crate] = ACTIONS(1347), - [sym_metavariable] = ACTIONS(1349), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), + [anon_sym_DOT_DOT] = ACTIONS(1317), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(1323), + [anon_sym_POUND] = ACTIONS(1325), + [anon_sym_SQUOTE] = ACTIONS(1327), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1331), + [anon_sym_default] = ACTIONS(1333), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1339), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1339), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_ref] = ACTIONS(1345), + [anon_sym_dyn] = ACTIONS(1347), + [sym_mutable_specifier] = ACTIONS(1349), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1357), + [sym_super] = ACTIONS(1359), + [sym_crate] = ACTIONS(1359), + [sym_metavariable] = ACTIONS(1361), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), }, - [407] = { - [sym_attribute_item] = STATE(423), - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_self_parameter] = STATE(3137), - [sym_variadic_parameter] = STATE(3137), - [sym_parameter] = STATE(3137), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2807), - [sym_bracketed_type] = STATE(3550), - [sym_lifetime] = STATE(2800), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3221), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(2410), - [sym_scoped_identifier] = STATE(2242), - [sym_scoped_type_identifier] = STATE(2118), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(3256), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), - [sym_line_comment] = STATE(407), - [sym_block_comment] = STATE(407), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(1281), - [anon_sym_LPAREN] = ACTIONS(1283), + [415] = { + [sym_line_comment] = STATE(415), + [sym_block_comment] = STATE(415), + [sym_identifier] = ACTIONS(1447), + [anon_sym_SEMI] = ACTIONS(1449), + [anon_sym_macro_rules_BANG] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1449), + [anon_sym_LBRACK] = ACTIONS(1449), + [anon_sym_LBRACE] = ACTIONS(1445), + [anon_sym_RBRACE] = ACTIONS(1445), + [anon_sym_PLUS] = ACTIONS(1451), + [anon_sym_STAR] = ACTIONS(1451), + [anon_sym_QMARK] = ACTIONS(1449), + [anon_sym_u8] = ACTIONS(1447), + [anon_sym_i8] = ACTIONS(1447), + [anon_sym_u16] = ACTIONS(1447), + [anon_sym_i16] = ACTIONS(1447), + [anon_sym_u32] = ACTIONS(1447), + [anon_sym_i32] = ACTIONS(1447), + [anon_sym_u64] = ACTIONS(1447), + [anon_sym_i64] = ACTIONS(1447), + [anon_sym_u128] = ACTIONS(1447), + [anon_sym_i128] = ACTIONS(1447), + [anon_sym_isize] = ACTIONS(1447), + [anon_sym_usize] = ACTIONS(1447), + [anon_sym_f32] = ACTIONS(1447), + [anon_sym_f64] = ACTIONS(1447), + [anon_sym_bool] = ACTIONS(1447), + [anon_sym_str] = ACTIONS(1447), + [anon_sym_char] = ACTIONS(1447), + [anon_sym_DASH] = ACTIONS(1451), + [anon_sym_SLASH] = ACTIONS(1451), + [anon_sym_PERCENT] = ACTIONS(1451), + [anon_sym_CARET] = ACTIONS(1451), + [anon_sym_BANG] = ACTIONS(1447), + [anon_sym_AMP] = ACTIONS(1451), + [anon_sym_PIPE] = ACTIONS(1451), + [anon_sym_AMP_AMP] = ACTIONS(1449), + [anon_sym_PIPE_PIPE] = ACTIONS(1449), + [anon_sym_LT_LT] = ACTIONS(1451), + [anon_sym_GT_GT] = ACTIONS(1451), + [anon_sym_PLUS_EQ] = ACTIONS(1449), + [anon_sym_DASH_EQ] = ACTIONS(1449), + [anon_sym_STAR_EQ] = ACTIONS(1449), + [anon_sym_SLASH_EQ] = ACTIONS(1449), + [anon_sym_PERCENT_EQ] = ACTIONS(1449), + [anon_sym_CARET_EQ] = ACTIONS(1449), + [anon_sym_AMP_EQ] = ACTIONS(1449), + [anon_sym_PIPE_EQ] = ACTIONS(1449), + [anon_sym_LT_LT_EQ] = ACTIONS(1449), + [anon_sym_GT_GT_EQ] = ACTIONS(1449), + [anon_sym_EQ] = ACTIONS(1451), + [anon_sym_EQ_EQ] = ACTIONS(1449), + [anon_sym_BANG_EQ] = ACTIONS(1449), + [anon_sym_GT] = ACTIONS(1451), + [anon_sym_LT] = ACTIONS(1451), + [anon_sym_GT_EQ] = ACTIONS(1449), + [anon_sym_LT_EQ] = ACTIONS(1449), + [anon_sym_DOT] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1451), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1449), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1449), + [anon_sym_COLON_COLON] = ACTIONS(1445), + [anon_sym_POUND] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1447), + [anon_sym_as] = ACTIONS(1451), + [anon_sym_async] = ACTIONS(1447), + [anon_sym_break] = ACTIONS(1447), + [anon_sym_const] = ACTIONS(1447), + [anon_sym_continue] = ACTIONS(1447), + [anon_sym_default] = ACTIONS(1447), + [anon_sym_enum] = ACTIONS(1447), + [anon_sym_fn] = ACTIONS(1447), + [anon_sym_for] = ACTIONS(1447), + [anon_sym_gen] = ACTIONS(1447), + [anon_sym_if] = ACTIONS(1447), + [anon_sym_impl] = ACTIONS(1447), + [anon_sym_let] = ACTIONS(1447), + [anon_sym_loop] = ACTIONS(1447), + [anon_sym_match] = ACTIONS(1447), + [anon_sym_mod] = ACTIONS(1447), + [anon_sym_pub] = ACTIONS(1447), + [anon_sym_return] = ACTIONS(1447), + [anon_sym_static] = ACTIONS(1447), + [anon_sym_struct] = ACTIONS(1447), + [anon_sym_trait] = ACTIONS(1447), + [anon_sym_type] = ACTIONS(1447), + [anon_sym_union] = ACTIONS(1447), + [anon_sym_unsafe] = ACTIONS(1447), + [anon_sym_use] = ACTIONS(1447), + [anon_sym_while] = ACTIONS(1447), + [anon_sym_extern] = ACTIONS(1447), + [anon_sym_yield] = ACTIONS(1447), + [anon_sym_move] = ACTIONS(1447), + [anon_sym_try] = ACTIONS(1447), + [sym_integer_literal] = ACTIONS(1445), + [aux_sym_string_literal_token1] = ACTIONS(1445), + [sym_char_literal] = ACTIONS(1445), + [anon_sym_true] = ACTIONS(1447), + [anon_sym_false] = ACTIONS(1447), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1447), + [sym_super] = ACTIONS(1447), + [sym_crate] = ACTIONS(1447), + [sym_metavariable] = ACTIONS(1445), + [sym__raw_string_literal_start] = ACTIONS(1445), + [sym_float_literal] = ACTIONS(1445), + }, + [416] = { + [sym_attribute_item] = STATE(430), + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_self_parameter] = STATE(3671), + [sym_variadic_parameter] = STATE(3671), + [sym_parameter] = STATE(3671), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(3350), + [sym_bracketed_type] = STATE(4026), + [sym_lifetime] = STATE(3377), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3775), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2751), + [sym_scoped_identifier] = STATE(2534), + [sym_scoped_type_identifier] = STATE(2400), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(3619), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(416), + [sym_block_comment] = STATE(416), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(1293), + [anon_sym_LPAREN] = ACTIONS(1295), [anon_sym_RPAREN] = ACTIONS(1495), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1293), - [anon_sym_i8] = ACTIONS(1293), - [anon_sym_u16] = ACTIONS(1293), - [anon_sym_i16] = ACTIONS(1293), - [anon_sym_u32] = ACTIONS(1293), - [anon_sym_i32] = ACTIONS(1293), - [anon_sym_u64] = ACTIONS(1293), - [anon_sym_i64] = ACTIONS(1293), - [anon_sym_u128] = ACTIONS(1293), - [anon_sym_i128] = ACTIONS(1293), - [anon_sym_isize] = ACTIONS(1293), - [anon_sym_usize] = ACTIONS(1293), - [anon_sym_f32] = ACTIONS(1293), - [anon_sym_f64] = ACTIONS(1293), - [anon_sym_bool] = ACTIONS(1293), - [anon_sym_str] = ACTIONS(1293), - [anon_sym_char] = ACTIONS(1293), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1299), - [anon_sym_PIPE] = ACTIONS(1301), + [anon_sym_LBRACK] = ACTIONS(1299), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1305), + [anon_sym_i8] = ACTIONS(1305), + [anon_sym_u16] = ACTIONS(1305), + [anon_sym_i16] = ACTIONS(1305), + [anon_sym_u32] = ACTIONS(1305), + [anon_sym_i32] = ACTIONS(1305), + [anon_sym_u64] = ACTIONS(1305), + [anon_sym_i64] = ACTIONS(1305), + [anon_sym_u128] = ACTIONS(1305), + [anon_sym_i128] = ACTIONS(1305), + [anon_sym_isize] = ACTIONS(1305), + [anon_sym_usize] = ACTIONS(1305), + [anon_sym_f32] = ACTIONS(1305), + [anon_sym_f64] = ACTIONS(1305), + [anon_sym_bool] = ACTIONS(1305), + [anon_sym_str] = ACTIONS(1305), + [anon_sym_char] = ACTIONS(1305), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1311), + [anon_sym_PIPE] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1305), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1307), - [anon_sym_COLON_COLON] = ACTIONS(1311), - [anon_sym_POUND] = ACTIONS(1313), - [anon_sym_SQUOTE] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1319), - [anon_sym_default] = ACTIONS(1321), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1327), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1327), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_ref] = ACTIONS(1333), - [anon_sym_dyn] = ACTIONS(1335), - [sym_mutable_specifier] = ACTIONS(1337), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1345), - [sym_super] = ACTIONS(1347), - [sym_crate] = ACTIONS(1347), - [sym_metavariable] = ACTIONS(1349), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), + [anon_sym_DOT_DOT] = ACTIONS(1317), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(1323), + [anon_sym_POUND] = ACTIONS(1325), + [anon_sym_SQUOTE] = ACTIONS(1327), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1331), + [anon_sym_default] = ACTIONS(1333), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1339), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1339), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_ref] = ACTIONS(1345), + [anon_sym_dyn] = ACTIONS(1347), + [sym_mutable_specifier] = ACTIONS(1349), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1357), + [sym_super] = ACTIONS(1359), + [sym_crate] = ACTIONS(1359), + [sym_metavariable] = ACTIONS(1361), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), }, - [408] = { - [sym_attribute_item] = STATE(423), - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_self_parameter] = STATE(3137), - [sym_variadic_parameter] = STATE(3137), - [sym_parameter] = STATE(3137), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2807), - [sym_bracketed_type] = STATE(3550), - [sym_lifetime] = STATE(2800), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3221), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(2410), - [sym_scoped_identifier] = STATE(2242), - [sym_scoped_type_identifier] = STATE(2118), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(3256), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), - [sym_line_comment] = STATE(408), - [sym_block_comment] = STATE(408), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(1281), - [anon_sym_LPAREN] = ACTIONS(1283), + [417] = { + [sym_attribute_item] = STATE(430), + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_self_parameter] = STATE(3671), + [sym_variadic_parameter] = STATE(3671), + [sym_parameter] = STATE(3671), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(3350), + [sym_bracketed_type] = STATE(4026), + [sym_lifetime] = STATE(3377), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3775), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2751), + [sym_scoped_identifier] = STATE(2534), + [sym_scoped_type_identifier] = STATE(2400), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(3619), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(417), + [sym_block_comment] = STATE(417), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(1293), + [anon_sym_LPAREN] = ACTIONS(1295), [anon_sym_RPAREN] = ACTIONS(1497), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1293), - [anon_sym_i8] = ACTIONS(1293), - [anon_sym_u16] = ACTIONS(1293), - [anon_sym_i16] = ACTIONS(1293), - [anon_sym_u32] = ACTIONS(1293), - [anon_sym_i32] = ACTIONS(1293), - [anon_sym_u64] = ACTIONS(1293), - [anon_sym_i64] = ACTIONS(1293), - [anon_sym_u128] = ACTIONS(1293), - [anon_sym_i128] = ACTIONS(1293), - [anon_sym_isize] = ACTIONS(1293), - [anon_sym_usize] = ACTIONS(1293), - [anon_sym_f32] = ACTIONS(1293), - [anon_sym_f64] = ACTIONS(1293), - [anon_sym_bool] = ACTIONS(1293), - [anon_sym_str] = ACTIONS(1293), - [anon_sym_char] = ACTIONS(1293), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1299), - [anon_sym_PIPE] = ACTIONS(1301), + [anon_sym_LBRACK] = ACTIONS(1299), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1305), + [anon_sym_i8] = ACTIONS(1305), + [anon_sym_u16] = ACTIONS(1305), + [anon_sym_i16] = ACTIONS(1305), + [anon_sym_u32] = ACTIONS(1305), + [anon_sym_i32] = ACTIONS(1305), + [anon_sym_u64] = ACTIONS(1305), + [anon_sym_i64] = ACTIONS(1305), + [anon_sym_u128] = ACTIONS(1305), + [anon_sym_i128] = ACTIONS(1305), + [anon_sym_isize] = ACTIONS(1305), + [anon_sym_usize] = ACTIONS(1305), + [anon_sym_f32] = ACTIONS(1305), + [anon_sym_f64] = ACTIONS(1305), + [anon_sym_bool] = ACTIONS(1305), + [anon_sym_str] = ACTIONS(1305), + [anon_sym_char] = ACTIONS(1305), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1311), + [anon_sym_PIPE] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1305), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1307), - [anon_sym_COLON_COLON] = ACTIONS(1311), - [anon_sym_POUND] = ACTIONS(1313), - [anon_sym_SQUOTE] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1319), - [anon_sym_default] = ACTIONS(1321), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1327), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1327), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_ref] = ACTIONS(1333), - [anon_sym_dyn] = ACTIONS(1335), - [sym_mutable_specifier] = ACTIONS(1337), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1345), - [sym_super] = ACTIONS(1347), - [sym_crate] = ACTIONS(1347), - [sym_metavariable] = ACTIONS(1349), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [409] = { - [sym_line_comment] = STATE(409), - [sym_block_comment] = STATE(409), - [sym_identifier] = ACTIONS(1465), - [anon_sym_SEMI] = ACTIONS(1359), - [anon_sym_macro_rules_BANG] = ACTIONS(1463), - [anon_sym_LPAREN] = ACTIONS(1359), - [anon_sym_LBRACK] = ACTIONS(1359), - [anon_sym_LBRACE] = ACTIONS(1463), - [anon_sym_RBRACE] = ACTIONS(1463), - [anon_sym_PLUS] = ACTIONS(1357), - [anon_sym_STAR] = ACTIONS(1357), - [anon_sym_QMARK] = ACTIONS(1359), - [anon_sym_u8] = ACTIONS(1465), - [anon_sym_i8] = ACTIONS(1465), - [anon_sym_u16] = ACTIONS(1465), - [anon_sym_i16] = ACTIONS(1465), - [anon_sym_u32] = ACTIONS(1465), - [anon_sym_i32] = ACTIONS(1465), - [anon_sym_u64] = ACTIONS(1465), - [anon_sym_i64] = ACTIONS(1465), - [anon_sym_u128] = ACTIONS(1465), - [anon_sym_i128] = ACTIONS(1465), - [anon_sym_isize] = ACTIONS(1465), - [anon_sym_usize] = ACTIONS(1465), - [anon_sym_f32] = ACTIONS(1465), - [anon_sym_f64] = ACTIONS(1465), - [anon_sym_bool] = ACTIONS(1465), - [anon_sym_str] = ACTIONS(1465), - [anon_sym_char] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1357), - [anon_sym_SLASH] = ACTIONS(1357), - [anon_sym_PERCENT] = ACTIONS(1357), - [anon_sym_CARET] = ACTIONS(1357), - [anon_sym_BANG] = ACTIONS(1465), - [anon_sym_AMP] = ACTIONS(1357), - [anon_sym_PIPE] = ACTIONS(1357), - [anon_sym_AMP_AMP] = ACTIONS(1359), - [anon_sym_PIPE_PIPE] = ACTIONS(1359), - [anon_sym_LT_LT] = ACTIONS(1357), - [anon_sym_GT_GT] = ACTIONS(1357), - [anon_sym_PLUS_EQ] = ACTIONS(1359), - [anon_sym_DASH_EQ] = ACTIONS(1359), - [anon_sym_STAR_EQ] = ACTIONS(1359), - [anon_sym_SLASH_EQ] = ACTIONS(1359), - [anon_sym_PERCENT_EQ] = ACTIONS(1359), - [anon_sym_CARET_EQ] = ACTIONS(1359), - [anon_sym_AMP_EQ] = ACTIONS(1359), - [anon_sym_PIPE_EQ] = ACTIONS(1359), - [anon_sym_LT_LT_EQ] = ACTIONS(1359), - [anon_sym_GT_GT_EQ] = ACTIONS(1359), - [anon_sym_EQ] = ACTIONS(1357), - [anon_sym_EQ_EQ] = ACTIONS(1359), - [anon_sym_BANG_EQ] = ACTIONS(1359), - [anon_sym_GT] = ACTIONS(1357), - [anon_sym_LT] = ACTIONS(1357), - [anon_sym_GT_EQ] = ACTIONS(1359), - [anon_sym_LT_EQ] = ACTIONS(1359), - [anon_sym_DOT] = ACTIONS(1357), - [anon_sym_DOT_DOT] = ACTIONS(1357), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1359), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1359), - [anon_sym_COLON_COLON] = ACTIONS(1463), - [anon_sym_POUND] = ACTIONS(1463), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_as] = ACTIONS(1357), - [anon_sym_async] = ACTIONS(1465), - [anon_sym_break] = ACTIONS(1465), - [anon_sym_const] = ACTIONS(1465), - [anon_sym_continue] = ACTIONS(1465), - [anon_sym_default] = ACTIONS(1465), - [anon_sym_enum] = ACTIONS(1465), - [anon_sym_fn] = ACTIONS(1465), - [anon_sym_for] = ACTIONS(1465), - [anon_sym_gen] = ACTIONS(1465), - [anon_sym_if] = ACTIONS(1465), - [anon_sym_impl] = ACTIONS(1465), - [anon_sym_let] = ACTIONS(1465), - [anon_sym_loop] = ACTIONS(1465), - [anon_sym_match] = ACTIONS(1465), - [anon_sym_mod] = ACTIONS(1465), - [anon_sym_pub] = ACTIONS(1465), - [anon_sym_return] = ACTIONS(1465), - [anon_sym_static] = ACTIONS(1465), - [anon_sym_struct] = ACTIONS(1465), - [anon_sym_trait] = ACTIONS(1465), - [anon_sym_type] = ACTIONS(1465), - [anon_sym_union] = ACTIONS(1465), - [anon_sym_unsafe] = ACTIONS(1465), - [anon_sym_use] = ACTIONS(1465), - [anon_sym_while] = ACTIONS(1465), - [anon_sym_extern] = ACTIONS(1465), - [anon_sym_yield] = ACTIONS(1465), - [anon_sym_move] = ACTIONS(1465), - [anon_sym_try] = ACTIONS(1465), - [sym_integer_literal] = ACTIONS(1463), - [aux_sym_string_literal_token1] = ACTIONS(1463), - [sym_char_literal] = ACTIONS(1463), - [anon_sym_true] = ACTIONS(1465), - [anon_sym_false] = ACTIONS(1465), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1465), - [sym_super] = ACTIONS(1465), - [sym_crate] = ACTIONS(1465), - [sym_metavariable] = ACTIONS(1463), - [sym__raw_string_literal_start] = ACTIONS(1463), - [sym_float_literal] = ACTIONS(1463), + [anon_sym_DOT_DOT] = ACTIONS(1317), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(1323), + [anon_sym_POUND] = ACTIONS(1325), + [anon_sym_SQUOTE] = ACTIONS(1327), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1331), + [anon_sym_default] = ACTIONS(1333), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1339), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1339), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_ref] = ACTIONS(1345), + [anon_sym_dyn] = ACTIONS(1347), + [sym_mutable_specifier] = ACTIONS(1349), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1357), + [sym_super] = ACTIONS(1359), + [sym_crate] = ACTIONS(1359), + [sym_metavariable] = ACTIONS(1361), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), }, - [410] = { - [sym_attribute_item] = STATE(423), - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_self_parameter] = STATE(3137), - [sym_variadic_parameter] = STATE(3137), - [sym_parameter] = STATE(3137), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2807), - [sym_bracketed_type] = STATE(3550), - [sym_lifetime] = STATE(2800), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3221), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(2410), - [sym_scoped_identifier] = STATE(2242), - [sym_scoped_type_identifier] = STATE(2118), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(3256), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), - [sym_line_comment] = STATE(410), - [sym_block_comment] = STATE(410), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(1281), - [anon_sym_LPAREN] = ACTIONS(1283), + [418] = { + [sym_attribute_item] = STATE(430), + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_self_parameter] = STATE(3671), + [sym_variadic_parameter] = STATE(3671), + [sym_parameter] = STATE(3671), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(3350), + [sym_bracketed_type] = STATE(4026), + [sym_lifetime] = STATE(3377), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3775), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2751), + [sym_scoped_identifier] = STATE(2534), + [sym_scoped_type_identifier] = STATE(2400), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(3619), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(418), + [sym_block_comment] = STATE(418), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(1293), + [anon_sym_LPAREN] = ACTIONS(1295), [anon_sym_RPAREN] = ACTIONS(1499), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1293), - [anon_sym_i8] = ACTIONS(1293), - [anon_sym_u16] = ACTIONS(1293), - [anon_sym_i16] = ACTIONS(1293), - [anon_sym_u32] = ACTIONS(1293), - [anon_sym_i32] = ACTIONS(1293), - [anon_sym_u64] = ACTIONS(1293), - [anon_sym_i64] = ACTIONS(1293), - [anon_sym_u128] = ACTIONS(1293), - [anon_sym_i128] = ACTIONS(1293), - [anon_sym_isize] = ACTIONS(1293), - [anon_sym_usize] = ACTIONS(1293), - [anon_sym_f32] = ACTIONS(1293), - [anon_sym_f64] = ACTIONS(1293), - [anon_sym_bool] = ACTIONS(1293), - [anon_sym_str] = ACTIONS(1293), - [anon_sym_char] = ACTIONS(1293), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1299), - [anon_sym_PIPE] = ACTIONS(1301), + [anon_sym_LBRACK] = ACTIONS(1299), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1305), + [anon_sym_i8] = ACTIONS(1305), + [anon_sym_u16] = ACTIONS(1305), + [anon_sym_i16] = ACTIONS(1305), + [anon_sym_u32] = ACTIONS(1305), + [anon_sym_i32] = ACTIONS(1305), + [anon_sym_u64] = ACTIONS(1305), + [anon_sym_i64] = ACTIONS(1305), + [anon_sym_u128] = ACTIONS(1305), + [anon_sym_i128] = ACTIONS(1305), + [anon_sym_isize] = ACTIONS(1305), + [anon_sym_usize] = ACTIONS(1305), + [anon_sym_f32] = ACTIONS(1305), + [anon_sym_f64] = ACTIONS(1305), + [anon_sym_bool] = ACTIONS(1305), + [anon_sym_str] = ACTIONS(1305), + [anon_sym_char] = ACTIONS(1305), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1311), + [anon_sym_PIPE] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1305), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1307), - [anon_sym_COLON_COLON] = ACTIONS(1311), - [anon_sym_POUND] = ACTIONS(1313), - [anon_sym_SQUOTE] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1319), - [anon_sym_default] = ACTIONS(1321), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1327), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1327), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_ref] = ACTIONS(1333), - [anon_sym_dyn] = ACTIONS(1335), - [sym_mutable_specifier] = ACTIONS(1337), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1345), - [sym_super] = ACTIONS(1347), - [sym_crate] = ACTIONS(1347), - [sym_metavariable] = ACTIONS(1349), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), + [anon_sym_DOT_DOT] = ACTIONS(1317), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(1323), + [anon_sym_POUND] = ACTIONS(1325), + [anon_sym_SQUOTE] = ACTIONS(1327), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1331), + [anon_sym_default] = ACTIONS(1333), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1339), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1339), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_ref] = ACTIONS(1345), + [anon_sym_dyn] = ACTIONS(1347), + [sym_mutable_specifier] = ACTIONS(1349), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1357), + [sym_super] = ACTIONS(1359), + [sym_crate] = ACTIONS(1359), + [sym_metavariable] = ACTIONS(1361), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), }, - [411] = { - [sym_attribute_item] = STATE(423), - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_self_parameter] = STATE(3137), - [sym_variadic_parameter] = STATE(3137), - [sym_parameter] = STATE(3137), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2807), - [sym_bracketed_type] = STATE(3550), - [sym_lifetime] = STATE(2800), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3221), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(2410), - [sym_scoped_identifier] = STATE(2242), - [sym_scoped_type_identifier] = STATE(2118), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(3256), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), - [sym_line_comment] = STATE(411), - [sym_block_comment] = STATE(411), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(1281), - [anon_sym_LPAREN] = ACTIONS(1283), + [419] = { + [sym_attribute_item] = STATE(430), + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_self_parameter] = STATE(3671), + [sym_variadic_parameter] = STATE(3671), + [sym_parameter] = STATE(3671), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(3350), + [sym_bracketed_type] = STATE(4026), + [sym_lifetime] = STATE(3377), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3775), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2751), + [sym_scoped_identifier] = STATE(2534), + [sym_scoped_type_identifier] = STATE(2400), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(3619), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(419), + [sym_block_comment] = STATE(419), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(1293), + [anon_sym_LPAREN] = ACTIONS(1295), [anon_sym_RPAREN] = ACTIONS(1501), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1293), - [anon_sym_i8] = ACTIONS(1293), - [anon_sym_u16] = ACTIONS(1293), - [anon_sym_i16] = ACTIONS(1293), - [anon_sym_u32] = ACTIONS(1293), - [anon_sym_i32] = ACTIONS(1293), - [anon_sym_u64] = ACTIONS(1293), - [anon_sym_i64] = ACTIONS(1293), - [anon_sym_u128] = ACTIONS(1293), - [anon_sym_i128] = ACTIONS(1293), - [anon_sym_isize] = ACTIONS(1293), - [anon_sym_usize] = ACTIONS(1293), - [anon_sym_f32] = ACTIONS(1293), - [anon_sym_f64] = ACTIONS(1293), - [anon_sym_bool] = ACTIONS(1293), - [anon_sym_str] = ACTIONS(1293), - [anon_sym_char] = ACTIONS(1293), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1299), - [anon_sym_PIPE] = ACTIONS(1301), + [anon_sym_LBRACK] = ACTIONS(1299), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1305), + [anon_sym_i8] = ACTIONS(1305), + [anon_sym_u16] = ACTIONS(1305), + [anon_sym_i16] = ACTIONS(1305), + [anon_sym_u32] = ACTIONS(1305), + [anon_sym_i32] = ACTIONS(1305), + [anon_sym_u64] = ACTIONS(1305), + [anon_sym_i64] = ACTIONS(1305), + [anon_sym_u128] = ACTIONS(1305), + [anon_sym_i128] = ACTIONS(1305), + [anon_sym_isize] = ACTIONS(1305), + [anon_sym_usize] = ACTIONS(1305), + [anon_sym_f32] = ACTIONS(1305), + [anon_sym_f64] = ACTIONS(1305), + [anon_sym_bool] = ACTIONS(1305), + [anon_sym_str] = ACTIONS(1305), + [anon_sym_char] = ACTIONS(1305), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1311), + [anon_sym_PIPE] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1305), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1307), - [anon_sym_COLON_COLON] = ACTIONS(1311), - [anon_sym_POUND] = ACTIONS(1313), - [anon_sym_SQUOTE] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1319), - [anon_sym_default] = ACTIONS(1321), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1327), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1327), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_ref] = ACTIONS(1333), - [anon_sym_dyn] = ACTIONS(1335), - [sym_mutable_specifier] = ACTIONS(1337), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1345), - [sym_super] = ACTIONS(1347), - [sym_crate] = ACTIONS(1347), - [sym_metavariable] = ACTIONS(1349), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), + [anon_sym_DOT_DOT] = ACTIONS(1317), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(1323), + [anon_sym_POUND] = ACTIONS(1325), + [anon_sym_SQUOTE] = ACTIONS(1327), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1331), + [anon_sym_default] = ACTIONS(1333), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1339), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1339), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_ref] = ACTIONS(1345), + [anon_sym_dyn] = ACTIONS(1347), + [sym_mutable_specifier] = ACTIONS(1349), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1357), + [sym_super] = ACTIONS(1359), + [sym_crate] = ACTIONS(1359), + [sym_metavariable] = ACTIONS(1361), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), }, - [412] = { - [sym_attribute_item] = STATE(423), - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_self_parameter] = STATE(3137), - [sym_variadic_parameter] = STATE(3137), - [sym_parameter] = STATE(3137), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2807), - [sym_bracketed_type] = STATE(3550), - [sym_lifetime] = STATE(2800), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3221), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(2410), - [sym_scoped_identifier] = STATE(2242), - [sym_scoped_type_identifier] = STATE(2118), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(3256), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), - [sym_line_comment] = STATE(412), - [sym_block_comment] = STATE(412), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(1281), - [anon_sym_LPAREN] = ACTIONS(1283), + [420] = { + [sym_attribute_item] = STATE(430), + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_self_parameter] = STATE(3671), + [sym_variadic_parameter] = STATE(3671), + [sym_parameter] = STATE(3671), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(3350), + [sym_bracketed_type] = STATE(4026), + [sym_lifetime] = STATE(3377), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3775), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2751), + [sym_scoped_identifier] = STATE(2534), + [sym_scoped_type_identifier] = STATE(2400), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(3619), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(420), + [sym_block_comment] = STATE(420), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(1293), + [anon_sym_LPAREN] = ACTIONS(1295), [anon_sym_RPAREN] = ACTIONS(1503), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1293), - [anon_sym_i8] = ACTIONS(1293), - [anon_sym_u16] = ACTIONS(1293), - [anon_sym_i16] = ACTIONS(1293), - [anon_sym_u32] = ACTIONS(1293), - [anon_sym_i32] = ACTIONS(1293), - [anon_sym_u64] = ACTIONS(1293), - [anon_sym_i64] = ACTIONS(1293), - [anon_sym_u128] = ACTIONS(1293), - [anon_sym_i128] = ACTIONS(1293), - [anon_sym_isize] = ACTIONS(1293), - [anon_sym_usize] = ACTIONS(1293), - [anon_sym_f32] = ACTIONS(1293), - [anon_sym_f64] = ACTIONS(1293), - [anon_sym_bool] = ACTIONS(1293), - [anon_sym_str] = ACTIONS(1293), - [anon_sym_char] = ACTIONS(1293), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1299), - [anon_sym_PIPE] = ACTIONS(1301), + [anon_sym_LBRACK] = ACTIONS(1299), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1305), + [anon_sym_i8] = ACTIONS(1305), + [anon_sym_u16] = ACTIONS(1305), + [anon_sym_i16] = ACTIONS(1305), + [anon_sym_u32] = ACTIONS(1305), + [anon_sym_i32] = ACTIONS(1305), + [anon_sym_u64] = ACTIONS(1305), + [anon_sym_i64] = ACTIONS(1305), + [anon_sym_u128] = ACTIONS(1305), + [anon_sym_i128] = ACTIONS(1305), + [anon_sym_isize] = ACTIONS(1305), + [anon_sym_usize] = ACTIONS(1305), + [anon_sym_f32] = ACTIONS(1305), + [anon_sym_f64] = ACTIONS(1305), + [anon_sym_bool] = ACTIONS(1305), + [anon_sym_str] = ACTIONS(1305), + [anon_sym_char] = ACTIONS(1305), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1311), + [anon_sym_PIPE] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1305), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1307), - [anon_sym_COLON_COLON] = ACTIONS(1311), - [anon_sym_POUND] = ACTIONS(1313), - [anon_sym_SQUOTE] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1319), - [anon_sym_default] = ACTIONS(1321), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1327), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1327), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_ref] = ACTIONS(1333), - [anon_sym_dyn] = ACTIONS(1335), - [sym_mutable_specifier] = ACTIONS(1337), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1345), - [sym_super] = ACTIONS(1347), - [sym_crate] = ACTIONS(1347), - [sym_metavariable] = ACTIONS(1349), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), + [anon_sym_DOT_DOT] = ACTIONS(1317), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(1323), + [anon_sym_POUND] = ACTIONS(1325), + [anon_sym_SQUOTE] = ACTIONS(1327), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1331), + [anon_sym_default] = ACTIONS(1333), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1339), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1339), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_ref] = ACTIONS(1345), + [anon_sym_dyn] = ACTIONS(1347), + [sym_mutable_specifier] = ACTIONS(1349), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1357), + [sym_super] = ACTIONS(1359), + [sym_crate] = ACTIONS(1359), + [sym_metavariable] = ACTIONS(1361), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), }, - [413] = { - [sym_attribute_item] = STATE(423), - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_self_parameter] = STATE(3137), - [sym_variadic_parameter] = STATE(3137), - [sym_parameter] = STATE(3137), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2807), - [sym_bracketed_type] = STATE(3550), - [sym_lifetime] = STATE(2800), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3221), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(2410), - [sym_scoped_identifier] = STATE(2242), - [sym_scoped_type_identifier] = STATE(2118), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(3256), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), - [sym_line_comment] = STATE(413), - [sym_block_comment] = STATE(413), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(1281), - [anon_sym_LPAREN] = ACTIONS(1283), + [421] = { + [sym_attribute_item] = STATE(430), + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_self_parameter] = STATE(3671), + [sym_variadic_parameter] = STATE(3671), + [sym_parameter] = STATE(3671), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(3350), + [sym_bracketed_type] = STATE(4026), + [sym_lifetime] = STATE(3377), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3775), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2751), + [sym_scoped_identifier] = STATE(2534), + [sym_scoped_type_identifier] = STATE(2400), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(3619), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(421), + [sym_block_comment] = STATE(421), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(1293), + [anon_sym_LPAREN] = ACTIONS(1295), [anon_sym_RPAREN] = ACTIONS(1505), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1293), - [anon_sym_i8] = ACTIONS(1293), - [anon_sym_u16] = ACTIONS(1293), - [anon_sym_i16] = ACTIONS(1293), - [anon_sym_u32] = ACTIONS(1293), - [anon_sym_i32] = ACTIONS(1293), - [anon_sym_u64] = ACTIONS(1293), - [anon_sym_i64] = ACTIONS(1293), - [anon_sym_u128] = ACTIONS(1293), - [anon_sym_i128] = ACTIONS(1293), - [anon_sym_isize] = ACTIONS(1293), - [anon_sym_usize] = ACTIONS(1293), - [anon_sym_f32] = ACTIONS(1293), - [anon_sym_f64] = ACTIONS(1293), - [anon_sym_bool] = ACTIONS(1293), - [anon_sym_str] = ACTIONS(1293), - [anon_sym_char] = ACTIONS(1293), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1299), - [anon_sym_PIPE] = ACTIONS(1301), + [anon_sym_LBRACK] = ACTIONS(1299), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1305), + [anon_sym_i8] = ACTIONS(1305), + [anon_sym_u16] = ACTIONS(1305), + [anon_sym_i16] = ACTIONS(1305), + [anon_sym_u32] = ACTIONS(1305), + [anon_sym_i32] = ACTIONS(1305), + [anon_sym_u64] = ACTIONS(1305), + [anon_sym_i64] = ACTIONS(1305), + [anon_sym_u128] = ACTIONS(1305), + [anon_sym_i128] = ACTIONS(1305), + [anon_sym_isize] = ACTIONS(1305), + [anon_sym_usize] = ACTIONS(1305), + [anon_sym_f32] = ACTIONS(1305), + [anon_sym_f64] = ACTIONS(1305), + [anon_sym_bool] = ACTIONS(1305), + [anon_sym_str] = ACTIONS(1305), + [anon_sym_char] = ACTIONS(1305), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1311), + [anon_sym_PIPE] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1305), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1307), - [anon_sym_COLON_COLON] = ACTIONS(1311), - [anon_sym_POUND] = ACTIONS(1313), - [anon_sym_SQUOTE] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1319), - [anon_sym_default] = ACTIONS(1321), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1327), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1327), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_ref] = ACTIONS(1333), - [anon_sym_dyn] = ACTIONS(1335), - [sym_mutable_specifier] = ACTIONS(1337), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1345), - [sym_super] = ACTIONS(1347), - [sym_crate] = ACTIONS(1347), - [sym_metavariable] = ACTIONS(1349), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), + [anon_sym_DOT_DOT] = ACTIONS(1317), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(1323), + [anon_sym_POUND] = ACTIONS(1325), + [anon_sym_SQUOTE] = ACTIONS(1327), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1331), + [anon_sym_default] = ACTIONS(1333), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1339), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1339), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_ref] = ACTIONS(1345), + [anon_sym_dyn] = ACTIONS(1347), + [sym_mutable_specifier] = ACTIONS(1349), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1357), + [sym_super] = ACTIONS(1359), + [sym_crate] = ACTIONS(1359), + [sym_metavariable] = ACTIONS(1361), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), }, - [414] = { - [sym_attribute_item] = STATE(423), - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_self_parameter] = STATE(3137), - [sym_variadic_parameter] = STATE(3137), - [sym_parameter] = STATE(3137), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2807), - [sym_bracketed_type] = STATE(3550), - [sym_lifetime] = STATE(2800), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3221), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(2410), - [sym_scoped_identifier] = STATE(2242), - [sym_scoped_type_identifier] = STATE(2118), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(3256), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), - [sym_line_comment] = STATE(414), - [sym_block_comment] = STATE(414), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(1281), - [anon_sym_LPAREN] = ACTIONS(1283), + [422] = { + [sym_attribute_item] = STATE(430), + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_self_parameter] = STATE(3671), + [sym_variadic_parameter] = STATE(3671), + [sym_parameter] = STATE(3671), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(3350), + [sym_bracketed_type] = STATE(4026), + [sym_lifetime] = STATE(3377), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3775), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2751), + [sym_scoped_identifier] = STATE(2534), + [sym_scoped_type_identifier] = STATE(2400), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(3619), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(422), + [sym_block_comment] = STATE(422), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(1293), + [anon_sym_LPAREN] = ACTIONS(1295), [anon_sym_RPAREN] = ACTIONS(1507), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1293), - [anon_sym_i8] = ACTIONS(1293), - [anon_sym_u16] = ACTIONS(1293), - [anon_sym_i16] = ACTIONS(1293), - [anon_sym_u32] = ACTIONS(1293), - [anon_sym_i32] = ACTIONS(1293), - [anon_sym_u64] = ACTIONS(1293), - [anon_sym_i64] = ACTIONS(1293), - [anon_sym_u128] = ACTIONS(1293), - [anon_sym_i128] = ACTIONS(1293), - [anon_sym_isize] = ACTIONS(1293), - [anon_sym_usize] = ACTIONS(1293), - [anon_sym_f32] = ACTIONS(1293), - [anon_sym_f64] = ACTIONS(1293), - [anon_sym_bool] = ACTIONS(1293), - [anon_sym_str] = ACTIONS(1293), - [anon_sym_char] = ACTIONS(1293), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1299), - [anon_sym_PIPE] = ACTIONS(1301), + [anon_sym_LBRACK] = ACTIONS(1299), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1305), + [anon_sym_i8] = ACTIONS(1305), + [anon_sym_u16] = ACTIONS(1305), + [anon_sym_i16] = ACTIONS(1305), + [anon_sym_u32] = ACTIONS(1305), + [anon_sym_i32] = ACTIONS(1305), + [anon_sym_u64] = ACTIONS(1305), + [anon_sym_i64] = ACTIONS(1305), + [anon_sym_u128] = ACTIONS(1305), + [anon_sym_i128] = ACTIONS(1305), + [anon_sym_isize] = ACTIONS(1305), + [anon_sym_usize] = ACTIONS(1305), + [anon_sym_f32] = ACTIONS(1305), + [anon_sym_f64] = ACTIONS(1305), + [anon_sym_bool] = ACTIONS(1305), + [anon_sym_str] = ACTIONS(1305), + [anon_sym_char] = ACTIONS(1305), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1311), + [anon_sym_PIPE] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1305), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1307), - [anon_sym_COLON_COLON] = ACTIONS(1311), - [anon_sym_POUND] = ACTIONS(1313), - [anon_sym_SQUOTE] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1319), - [anon_sym_default] = ACTIONS(1321), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1327), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1327), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_ref] = ACTIONS(1333), - [anon_sym_dyn] = ACTIONS(1335), - [sym_mutable_specifier] = ACTIONS(1337), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1345), - [sym_super] = ACTIONS(1347), - [sym_crate] = ACTIONS(1347), - [sym_metavariable] = ACTIONS(1349), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), + [anon_sym_DOT_DOT] = ACTIONS(1317), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(1323), + [anon_sym_POUND] = ACTIONS(1325), + [anon_sym_SQUOTE] = ACTIONS(1327), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1331), + [anon_sym_default] = ACTIONS(1333), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1339), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1339), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_ref] = ACTIONS(1345), + [anon_sym_dyn] = ACTIONS(1347), + [sym_mutable_specifier] = ACTIONS(1349), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1357), + [sym_super] = ACTIONS(1359), + [sym_crate] = ACTIONS(1359), + [sym_metavariable] = ACTIONS(1361), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), }, - [415] = { - [sym_attribute_item] = STATE(423), - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_self_parameter] = STATE(3137), - [sym_variadic_parameter] = STATE(3137), - [sym_parameter] = STATE(3137), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2807), - [sym_bracketed_type] = STATE(3550), - [sym_lifetime] = STATE(2800), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3221), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(2410), - [sym_scoped_identifier] = STATE(2242), - [sym_scoped_type_identifier] = STATE(2118), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(3256), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), - [sym_line_comment] = STATE(415), - [sym_block_comment] = STATE(415), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(1281), - [anon_sym_LPAREN] = ACTIONS(1283), + [423] = { + [sym_attribute_item] = STATE(430), + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_self_parameter] = STATE(3671), + [sym_variadic_parameter] = STATE(3671), + [sym_parameter] = STATE(3671), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(3350), + [sym_bracketed_type] = STATE(4026), + [sym_lifetime] = STATE(3377), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3775), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2751), + [sym_scoped_identifier] = STATE(2534), + [sym_scoped_type_identifier] = STATE(2400), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(3619), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(423), + [sym_block_comment] = STATE(423), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(1293), + [anon_sym_LPAREN] = ACTIONS(1295), [anon_sym_RPAREN] = ACTIONS(1509), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1293), - [anon_sym_i8] = ACTIONS(1293), - [anon_sym_u16] = ACTIONS(1293), - [anon_sym_i16] = ACTIONS(1293), - [anon_sym_u32] = ACTIONS(1293), - [anon_sym_i32] = ACTIONS(1293), - [anon_sym_u64] = ACTIONS(1293), - [anon_sym_i64] = ACTIONS(1293), - [anon_sym_u128] = ACTIONS(1293), - [anon_sym_i128] = ACTIONS(1293), - [anon_sym_isize] = ACTIONS(1293), - [anon_sym_usize] = ACTIONS(1293), - [anon_sym_f32] = ACTIONS(1293), - [anon_sym_f64] = ACTIONS(1293), - [anon_sym_bool] = ACTIONS(1293), - [anon_sym_str] = ACTIONS(1293), - [anon_sym_char] = ACTIONS(1293), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1299), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1305), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1307), - [anon_sym_COLON_COLON] = ACTIONS(1311), - [anon_sym_POUND] = ACTIONS(1313), - [anon_sym_SQUOTE] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1319), - [anon_sym_default] = ACTIONS(1321), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1327), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1327), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_ref] = ACTIONS(1333), - [anon_sym_dyn] = ACTIONS(1335), - [sym_mutable_specifier] = ACTIONS(1337), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1345), - [sym_super] = ACTIONS(1347), - [sym_crate] = ACTIONS(1347), - [sym_metavariable] = ACTIONS(1349), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [416] = { - [sym_attribute_item] = STATE(423), - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_self_parameter] = STATE(3137), - [sym_variadic_parameter] = STATE(3137), - [sym_parameter] = STATE(3137), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2807), - [sym_bracketed_type] = STATE(3550), - [sym_lifetime] = STATE(2800), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3221), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(2410), - [sym_scoped_identifier] = STATE(2242), - [sym_scoped_type_identifier] = STATE(2118), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(3256), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), - [sym_line_comment] = STATE(416), - [sym_block_comment] = STATE(416), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(1281), - [anon_sym_LPAREN] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1293), - [anon_sym_i8] = ACTIONS(1293), - [anon_sym_u16] = ACTIONS(1293), - [anon_sym_i16] = ACTIONS(1293), - [anon_sym_u32] = ACTIONS(1293), - [anon_sym_i32] = ACTIONS(1293), - [anon_sym_u64] = ACTIONS(1293), - [anon_sym_i64] = ACTIONS(1293), - [anon_sym_u128] = ACTIONS(1293), - [anon_sym_i128] = ACTIONS(1293), - [anon_sym_isize] = ACTIONS(1293), - [anon_sym_usize] = ACTIONS(1293), - [anon_sym_f32] = ACTIONS(1293), - [anon_sym_f64] = ACTIONS(1293), - [anon_sym_bool] = ACTIONS(1293), - [anon_sym_str] = ACTIONS(1293), - [anon_sym_char] = ACTIONS(1293), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1299), - [anon_sym_PIPE] = ACTIONS(1301), + [anon_sym_LBRACK] = ACTIONS(1299), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1305), + [anon_sym_i8] = ACTIONS(1305), + [anon_sym_u16] = ACTIONS(1305), + [anon_sym_i16] = ACTIONS(1305), + [anon_sym_u32] = ACTIONS(1305), + [anon_sym_i32] = ACTIONS(1305), + [anon_sym_u64] = ACTIONS(1305), + [anon_sym_i64] = ACTIONS(1305), + [anon_sym_u128] = ACTIONS(1305), + [anon_sym_i128] = ACTIONS(1305), + [anon_sym_isize] = ACTIONS(1305), + [anon_sym_usize] = ACTIONS(1305), + [anon_sym_f32] = ACTIONS(1305), + [anon_sym_f64] = ACTIONS(1305), + [anon_sym_bool] = ACTIONS(1305), + [anon_sym_str] = ACTIONS(1305), + [anon_sym_char] = ACTIONS(1305), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1311), + [anon_sym_PIPE] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1493), - [anon_sym_DOT_DOT] = ACTIONS(1305), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1307), - [anon_sym_COLON_COLON] = ACTIONS(1311), - [anon_sym_POUND] = ACTIONS(1313), - [anon_sym_SQUOTE] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1319), - [anon_sym_default] = ACTIONS(1321), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1327), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1327), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_ref] = ACTIONS(1333), - [anon_sym_dyn] = ACTIONS(1335), - [sym_mutable_specifier] = ACTIONS(1337), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1345), - [sym_super] = ACTIONS(1347), - [sym_crate] = ACTIONS(1347), - [sym_metavariable] = ACTIONS(1349), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), + [anon_sym_DOT_DOT] = ACTIONS(1317), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(1323), + [anon_sym_POUND] = ACTIONS(1325), + [anon_sym_SQUOTE] = ACTIONS(1327), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1331), + [anon_sym_default] = ACTIONS(1333), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1339), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1339), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_ref] = ACTIONS(1345), + [anon_sym_dyn] = ACTIONS(1347), + [sym_mutable_specifier] = ACTIONS(1349), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1357), + [sym_super] = ACTIONS(1359), + [sym_crate] = ACTIONS(1359), + [sym_metavariable] = ACTIONS(1361), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), }, - [417] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2728), - [sym_bracketed_type] = STATE(3557), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(2446), - [sym_scoped_identifier] = STATE(2125), - [sym_scoped_type_identifier] = STATE(2118), - [sym_const_block] = STATE(2136), - [sym_closure_expression] = STATE(2866), - [sym_closure_parameters] = STATE(220), - [sym__pattern] = STATE(2724), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), - [sym_line_comment] = STATE(417), - [sym_block_comment] = STATE(417), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(1369), - [anon_sym_LPAREN] = ACTIONS(1371), + [424] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(3004), + [sym_bracketed_type] = STATE(4033), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3566), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2818), + [sym_scoped_identifier] = STATE(2397), + [sym_scoped_type_identifier] = STATE(2400), + [sym_const_block] = STATE(2409), + [sym_closure_expression] = STATE(3270), + [sym_closure_parameters] = STATE(229), + [sym__pattern] = STATE(3032), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(424), + [sym_block_comment] = STATE(424), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(1375), [anon_sym_RPAREN] = ACTIONS(1511), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1375), - [anon_sym_i8] = ACTIONS(1375), - [anon_sym_u16] = ACTIONS(1375), - [anon_sym_i16] = ACTIONS(1375), - [anon_sym_u32] = ACTIONS(1375), - [anon_sym_i32] = ACTIONS(1375), - [anon_sym_u64] = ACTIONS(1375), - [anon_sym_i64] = ACTIONS(1375), - [anon_sym_u128] = ACTIONS(1375), - [anon_sym_i128] = ACTIONS(1375), - [anon_sym_isize] = ACTIONS(1375), - [anon_sym_usize] = ACTIONS(1375), - [anon_sym_f32] = ACTIONS(1375), - [anon_sym_f64] = ACTIONS(1375), - [anon_sym_bool] = ACTIONS(1375), - [anon_sym_str] = ACTIONS(1375), - [anon_sym_char] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_LBRACK] = ACTIONS(1299), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1379), + [anon_sym_i8] = ACTIONS(1379), + [anon_sym_u16] = ACTIONS(1379), + [anon_sym_i16] = ACTIONS(1379), + [anon_sym_u32] = ACTIONS(1379), + [anon_sym_i32] = ACTIONS(1379), + [anon_sym_u64] = ACTIONS(1379), + [anon_sym_i64] = ACTIONS(1379), + [anon_sym_u128] = ACTIONS(1379), + [anon_sym_i128] = ACTIONS(1379), + [anon_sym_isize] = ACTIONS(1379), + [anon_sym_usize] = ACTIONS(1379), + [anon_sym_f32] = ACTIONS(1379), + [anon_sym_f64] = ACTIONS(1379), + [anon_sym_bool] = ACTIONS(1379), + [anon_sym_str] = ACTIONS(1379), + [anon_sym_char] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1513), [anon_sym_PIPE] = ACTIONS(1515), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), [anon_sym_COMMA] = ACTIONS(1521), - [anon_sym_COLON_COLON] = ACTIONS(1383), - [anon_sym_SQUOTE] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1319), - [anon_sym_default] = ACTIONS(1385), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1387), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_COLON_COLON] = ACTIONS(1387), + [anon_sym_SQUOTE] = ACTIONS(1327), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1331), + [anon_sym_default] = ACTIONS(1389), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1391), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_static] = ACTIONS(1523), - [anon_sym_union] = ACTIONS(1387), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_ref] = ACTIONS(1333), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1391), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_ref] = ACTIONS(1345), + [anon_sym_dyn] = ACTIONS(1347), [sym_mutable_specifier] = ACTIONS(1525), [anon_sym_move] = ACTIONS(1527), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1391), - [sym_super] = ACTIONS(1391), - [sym_crate] = ACTIONS(1391), - [sym_metavariable] = ACTIONS(1393), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), + [sym_self] = ACTIONS(1395), + [sym_super] = ACTIONS(1395), + [sym_crate] = ACTIONS(1395), + [sym_metavariable] = ACTIONS(1397), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), }, - [418] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2728), - [sym_bracketed_type] = STATE(3557), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(2446), - [sym_scoped_identifier] = STATE(2125), - [sym_scoped_type_identifier] = STATE(2118), - [sym_const_block] = STATE(2136), - [sym_closure_expression] = STATE(2866), - [sym_closure_parameters] = STATE(220), - [sym__pattern] = STATE(2724), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), - [sym_line_comment] = STATE(418), - [sym_block_comment] = STATE(418), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(1369), - [anon_sym_LPAREN] = ACTIONS(1371), + [425] = { + [sym_attribute_item] = STATE(430), + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_self_parameter] = STATE(3671), + [sym_variadic_parameter] = STATE(3671), + [sym_parameter] = STATE(3671), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(3350), + [sym_bracketed_type] = STATE(4026), + [sym_lifetime] = STATE(3377), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3775), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2751), + [sym_scoped_identifier] = STATE(2534), + [sym_scoped_type_identifier] = STATE(2400), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(3619), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(425), + [sym_block_comment] = STATE(425), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(1293), + [anon_sym_LPAREN] = ACTIONS(1295), + [anon_sym_LBRACK] = ACTIONS(1299), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1305), + [anon_sym_i8] = ACTIONS(1305), + [anon_sym_u16] = ACTIONS(1305), + [anon_sym_i16] = ACTIONS(1305), + [anon_sym_u32] = ACTIONS(1305), + [anon_sym_i32] = ACTIONS(1305), + [anon_sym_u64] = ACTIONS(1305), + [anon_sym_i64] = ACTIONS(1305), + [anon_sym_u128] = ACTIONS(1305), + [anon_sym_i128] = ACTIONS(1305), + [anon_sym_isize] = ACTIONS(1305), + [anon_sym_usize] = ACTIONS(1305), + [anon_sym_f32] = ACTIONS(1305), + [anon_sym_f64] = ACTIONS(1305), + [anon_sym_bool] = ACTIONS(1305), + [anon_sym_str] = ACTIONS(1305), + [anon_sym_char] = ACTIONS(1305), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1311), + [anon_sym_PIPE] = ACTIONS(1313), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1493), + [anon_sym_DOT_DOT] = ACTIONS(1317), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(1323), + [anon_sym_POUND] = ACTIONS(1325), + [anon_sym_SQUOTE] = ACTIONS(1327), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1331), + [anon_sym_default] = ACTIONS(1333), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1339), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1339), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_ref] = ACTIONS(1345), + [anon_sym_dyn] = ACTIONS(1347), + [sym_mutable_specifier] = ACTIONS(1349), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1357), + [sym_super] = ACTIONS(1359), + [sym_crate] = ACTIONS(1359), + [sym_metavariable] = ACTIONS(1361), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), + }, + [426] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(3004), + [sym_bracketed_type] = STATE(4033), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3566), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2818), + [sym_scoped_identifier] = STATE(2397), + [sym_scoped_type_identifier] = STATE(2400), + [sym_const_block] = STATE(2409), + [sym_closure_expression] = STATE(3270), + [sym_closure_parameters] = STATE(229), + [sym__pattern] = STATE(3032), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(426), + [sym_block_comment] = STATE(426), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(1375), [anon_sym_RPAREN] = ACTIONS(1529), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1375), - [anon_sym_i8] = ACTIONS(1375), - [anon_sym_u16] = ACTIONS(1375), - [anon_sym_i16] = ACTIONS(1375), - [anon_sym_u32] = ACTIONS(1375), - [anon_sym_i32] = ACTIONS(1375), - [anon_sym_u64] = ACTIONS(1375), - [anon_sym_i64] = ACTIONS(1375), - [anon_sym_u128] = ACTIONS(1375), - [anon_sym_i128] = ACTIONS(1375), - [anon_sym_isize] = ACTIONS(1375), - [anon_sym_usize] = ACTIONS(1375), - [anon_sym_f32] = ACTIONS(1375), - [anon_sym_f64] = ACTIONS(1375), - [anon_sym_bool] = ACTIONS(1375), - [anon_sym_str] = ACTIONS(1375), - [anon_sym_char] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_LBRACK] = ACTIONS(1299), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1379), + [anon_sym_i8] = ACTIONS(1379), + [anon_sym_u16] = ACTIONS(1379), + [anon_sym_i16] = ACTIONS(1379), + [anon_sym_u32] = ACTIONS(1379), + [anon_sym_i32] = ACTIONS(1379), + [anon_sym_u64] = ACTIONS(1379), + [anon_sym_i64] = ACTIONS(1379), + [anon_sym_u128] = ACTIONS(1379), + [anon_sym_i128] = ACTIONS(1379), + [anon_sym_isize] = ACTIONS(1379), + [anon_sym_usize] = ACTIONS(1379), + [anon_sym_f32] = ACTIONS(1379), + [anon_sym_f64] = ACTIONS(1379), + [anon_sym_bool] = ACTIONS(1379), + [anon_sym_str] = ACTIONS(1379), + [anon_sym_char] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1513), [anon_sym_PIPE] = ACTIONS(1515), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), [anon_sym_COMMA] = ACTIONS(1521), - [anon_sym_COLON_COLON] = ACTIONS(1383), - [anon_sym_SQUOTE] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1319), - [anon_sym_default] = ACTIONS(1385), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1387), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_COLON_COLON] = ACTIONS(1387), + [anon_sym_SQUOTE] = ACTIONS(1327), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1331), + [anon_sym_default] = ACTIONS(1389), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1391), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_static] = ACTIONS(1523), - [anon_sym_union] = ACTIONS(1387), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_ref] = ACTIONS(1333), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1391), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_ref] = ACTIONS(1345), + [anon_sym_dyn] = ACTIONS(1347), [sym_mutable_specifier] = ACTIONS(1525), [anon_sym_move] = ACTIONS(1527), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1391), - [sym_super] = ACTIONS(1391), - [sym_crate] = ACTIONS(1391), - [sym_metavariable] = ACTIONS(1393), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), + [sym_self] = ACTIONS(1395), + [sym_super] = ACTIONS(1395), + [sym_crate] = ACTIONS(1395), + [sym_metavariable] = ACTIONS(1397), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), }, - [419] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2728), - [sym_bracketed_type] = STATE(3557), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(2446), - [sym_scoped_identifier] = STATE(2125), - [sym_scoped_type_identifier] = STATE(2118), - [sym_const_block] = STATE(2136), - [sym_closure_expression] = STATE(2866), - [sym_closure_parameters] = STATE(220), - [sym__pattern] = STATE(2724), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), - [sym_line_comment] = STATE(419), - [sym_block_comment] = STATE(419), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(1369), - [anon_sym_LPAREN] = ACTIONS(1371), + [427] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(3004), + [sym_bracketed_type] = STATE(4033), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3566), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2818), + [sym_scoped_identifier] = STATE(2397), + [sym_scoped_type_identifier] = STATE(2400), + [sym_const_block] = STATE(2409), + [sym_closure_expression] = STATE(3270), + [sym_closure_parameters] = STATE(229), + [sym__pattern] = STATE(3032), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(427), + [sym_block_comment] = STATE(427), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(1375), [anon_sym_RPAREN] = ACTIONS(1531), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1375), - [anon_sym_i8] = ACTIONS(1375), - [anon_sym_u16] = ACTIONS(1375), - [anon_sym_i16] = ACTIONS(1375), - [anon_sym_u32] = ACTIONS(1375), - [anon_sym_i32] = ACTIONS(1375), - [anon_sym_u64] = ACTIONS(1375), - [anon_sym_i64] = ACTIONS(1375), - [anon_sym_u128] = ACTIONS(1375), - [anon_sym_i128] = ACTIONS(1375), - [anon_sym_isize] = ACTIONS(1375), - [anon_sym_usize] = ACTIONS(1375), - [anon_sym_f32] = ACTIONS(1375), - [anon_sym_f64] = ACTIONS(1375), - [anon_sym_bool] = ACTIONS(1375), - [anon_sym_str] = ACTIONS(1375), - [anon_sym_char] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_LBRACK] = ACTIONS(1299), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1379), + [anon_sym_i8] = ACTIONS(1379), + [anon_sym_u16] = ACTIONS(1379), + [anon_sym_i16] = ACTIONS(1379), + [anon_sym_u32] = ACTIONS(1379), + [anon_sym_i32] = ACTIONS(1379), + [anon_sym_u64] = ACTIONS(1379), + [anon_sym_i64] = ACTIONS(1379), + [anon_sym_u128] = ACTIONS(1379), + [anon_sym_i128] = ACTIONS(1379), + [anon_sym_isize] = ACTIONS(1379), + [anon_sym_usize] = ACTIONS(1379), + [anon_sym_f32] = ACTIONS(1379), + [anon_sym_f64] = ACTIONS(1379), + [anon_sym_bool] = ACTIONS(1379), + [anon_sym_str] = ACTIONS(1379), + [anon_sym_char] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1513), [anon_sym_PIPE] = ACTIONS(1515), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), [anon_sym_COMMA] = ACTIONS(1521), - [anon_sym_COLON_COLON] = ACTIONS(1383), - [anon_sym_SQUOTE] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1319), - [anon_sym_default] = ACTIONS(1385), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1387), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_COLON_COLON] = ACTIONS(1387), + [anon_sym_SQUOTE] = ACTIONS(1327), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1331), + [anon_sym_default] = ACTIONS(1389), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1391), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_static] = ACTIONS(1523), - [anon_sym_union] = ACTIONS(1387), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_ref] = ACTIONS(1333), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_union] = ACTIONS(1391), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_ref] = ACTIONS(1345), + [anon_sym_dyn] = ACTIONS(1347), [sym_mutable_specifier] = ACTIONS(1525), [anon_sym_move] = ACTIONS(1527), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1391), - [sym_super] = ACTIONS(1391), - [sym_crate] = ACTIONS(1391), - [sym_metavariable] = ACTIONS(1393), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), + [sym_self] = ACTIONS(1395), + [sym_super] = ACTIONS(1395), + [sym_crate] = ACTIONS(1395), + [sym_metavariable] = ACTIONS(1397), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), }, - [420] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_self_parameter] = STATE(3012), - [sym_variadic_parameter] = STATE(3012), - [sym_parameter] = STATE(3012), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2693), - [sym_bracketed_type] = STATE(3550), - [sym_lifetime] = STATE(2800), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3221), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(2410), - [sym_scoped_identifier] = STATE(2242), - [sym_scoped_type_identifier] = STATE(2118), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(3256), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), - [sym_line_comment] = STATE(420), - [sym_block_comment] = STATE(420), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(1281), - [anon_sym_LPAREN] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1293), - [anon_sym_i8] = ACTIONS(1293), - [anon_sym_u16] = ACTIONS(1293), - [anon_sym_i16] = ACTIONS(1293), - [anon_sym_u32] = ACTIONS(1293), - [anon_sym_i32] = ACTIONS(1293), - [anon_sym_u64] = ACTIONS(1293), - [anon_sym_i64] = ACTIONS(1293), - [anon_sym_u128] = ACTIONS(1293), - [anon_sym_i128] = ACTIONS(1293), - [anon_sym_isize] = ACTIONS(1293), - [anon_sym_usize] = ACTIONS(1293), - [anon_sym_f32] = ACTIONS(1293), - [anon_sym_f64] = ACTIONS(1293), - [anon_sym_bool] = ACTIONS(1293), - [anon_sym_str] = ACTIONS(1293), - [anon_sym_char] = ACTIONS(1293), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1299), - [anon_sym_PIPE] = ACTIONS(1301), + [428] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_self_parameter] = STATE(3296), + [sym_variadic_parameter] = STATE(3296), + [sym_parameter] = STATE(3296), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(3040), + [sym_bracketed_type] = STATE(4026), + [sym_lifetime] = STATE(3377), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3775), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2751), + [sym_scoped_identifier] = STATE(2534), + [sym_scoped_type_identifier] = STATE(2400), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(3619), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(428), + [sym_block_comment] = STATE(428), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(1293), + [anon_sym_LPAREN] = ACTIONS(1295), + [anon_sym_LBRACK] = ACTIONS(1299), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1305), + [anon_sym_i8] = ACTIONS(1305), + [anon_sym_u16] = ACTIONS(1305), + [anon_sym_i16] = ACTIONS(1305), + [anon_sym_u32] = ACTIONS(1305), + [anon_sym_i32] = ACTIONS(1305), + [anon_sym_u64] = ACTIONS(1305), + [anon_sym_i64] = ACTIONS(1305), + [anon_sym_u128] = ACTIONS(1305), + [anon_sym_i128] = ACTIONS(1305), + [anon_sym_isize] = ACTIONS(1305), + [anon_sym_usize] = ACTIONS(1305), + [anon_sym_f32] = ACTIONS(1305), + [anon_sym_f64] = ACTIONS(1305), + [anon_sym_bool] = ACTIONS(1305), + [anon_sym_str] = ACTIONS(1305), + [anon_sym_char] = ACTIONS(1305), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1311), + [anon_sym_PIPE] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1533), - [anon_sym_DOT_DOT] = ACTIONS(1305), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1307), - [anon_sym_COLON_COLON] = ACTIONS(1311), - [anon_sym_SQUOTE] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1319), - [anon_sym_default] = ACTIONS(1321), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1327), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1327), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_ref] = ACTIONS(1333), - [anon_sym_dyn] = ACTIONS(1335), - [sym_mutable_specifier] = ACTIONS(1337), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1345), - [sym_super] = ACTIONS(1347), - [sym_crate] = ACTIONS(1347), - [sym_metavariable] = ACTIONS(1349), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), + [anon_sym_DOT_DOT] = ACTIONS(1317), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(1323), + [anon_sym_SQUOTE] = ACTIONS(1327), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1331), + [anon_sym_default] = ACTIONS(1333), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1339), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1339), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_ref] = ACTIONS(1345), + [anon_sym_dyn] = ACTIONS(1347), + [sym_mutable_specifier] = ACTIONS(1349), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1357), + [sym_super] = ACTIONS(1359), + [sym_crate] = ACTIONS(1359), + [sym_metavariable] = ACTIONS(1361), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), }, - [421] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_self_parameter] = STATE(2836), - [sym_variadic_parameter] = STATE(2836), - [sym_parameter] = STATE(2836), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2610), - [sym_bracketed_type] = STATE(3550), - [sym_lifetime] = STATE(2800), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3221), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(2410), - [sym_scoped_identifier] = STATE(2242), - [sym_scoped_type_identifier] = STATE(2118), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(3256), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), - [sym_line_comment] = STATE(421), - [sym_block_comment] = STATE(421), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(1281), - [anon_sym_LPAREN] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1293), - [anon_sym_i8] = ACTIONS(1293), - [anon_sym_u16] = ACTIONS(1293), - [anon_sym_i16] = ACTIONS(1293), - [anon_sym_u32] = ACTIONS(1293), - [anon_sym_i32] = ACTIONS(1293), - [anon_sym_u64] = ACTIONS(1293), - [anon_sym_i64] = ACTIONS(1293), - [anon_sym_u128] = ACTIONS(1293), - [anon_sym_i128] = ACTIONS(1293), - [anon_sym_isize] = ACTIONS(1293), - [anon_sym_usize] = ACTIONS(1293), - [anon_sym_f32] = ACTIONS(1293), - [anon_sym_f64] = ACTIONS(1293), - [anon_sym_bool] = ACTIONS(1293), - [anon_sym_str] = ACTIONS(1293), - [anon_sym_char] = ACTIONS(1293), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1299), - [anon_sym_PIPE] = ACTIONS(1301), + [429] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_self_parameter] = STATE(3464), + [sym_variadic_parameter] = STATE(3464), + [sym_parameter] = STATE(3464), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2929), + [sym_bracketed_type] = STATE(4026), + [sym_lifetime] = STATE(3377), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3775), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2751), + [sym_scoped_identifier] = STATE(2534), + [sym_scoped_type_identifier] = STATE(2400), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(3619), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(429), + [sym_block_comment] = STATE(429), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(1293), + [anon_sym_LPAREN] = ACTIONS(1295), + [anon_sym_LBRACK] = ACTIONS(1299), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1305), + [anon_sym_i8] = ACTIONS(1305), + [anon_sym_u16] = ACTIONS(1305), + [anon_sym_i16] = ACTIONS(1305), + [anon_sym_u32] = ACTIONS(1305), + [anon_sym_i32] = ACTIONS(1305), + [anon_sym_u64] = ACTIONS(1305), + [anon_sym_i64] = ACTIONS(1305), + [anon_sym_u128] = ACTIONS(1305), + [anon_sym_i128] = ACTIONS(1305), + [anon_sym_isize] = ACTIONS(1305), + [anon_sym_usize] = ACTIONS(1305), + [anon_sym_f32] = ACTIONS(1305), + [anon_sym_f64] = ACTIONS(1305), + [anon_sym_bool] = ACTIONS(1305), + [anon_sym_str] = ACTIONS(1305), + [anon_sym_char] = ACTIONS(1305), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1311), + [anon_sym_PIPE] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1535), - [anon_sym_DOT_DOT] = ACTIONS(1305), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1307), - [anon_sym_COLON_COLON] = ACTIONS(1311), - [anon_sym_SQUOTE] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1319), - [anon_sym_default] = ACTIONS(1321), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1327), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1327), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_ref] = ACTIONS(1333), - [anon_sym_dyn] = ACTIONS(1335), - [sym_mutable_specifier] = ACTIONS(1337), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1345), - [sym_super] = ACTIONS(1347), - [sym_crate] = ACTIONS(1347), - [sym_metavariable] = ACTIONS(1349), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), + [anon_sym_DOT_DOT] = ACTIONS(1317), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(1323), + [anon_sym_SQUOTE] = ACTIONS(1327), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1331), + [anon_sym_default] = ACTIONS(1333), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1339), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1339), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_ref] = ACTIONS(1345), + [anon_sym_dyn] = ACTIONS(1347), + [sym_mutable_specifier] = ACTIONS(1349), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1357), + [sym_super] = ACTIONS(1359), + [sym_crate] = ACTIONS(1359), + [sym_metavariable] = ACTIONS(1361), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), }, - [422] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_self_parameter] = STATE(2928), - [sym_variadic_parameter] = STATE(2928), - [sym_parameter] = STATE(2928), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2592), - [sym_bracketed_type] = STATE(3550), - [sym_lifetime] = STATE(2800), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3221), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(2410), - [sym_scoped_identifier] = STATE(2242), - [sym_scoped_type_identifier] = STATE(2118), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(3256), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), - [sym_line_comment] = STATE(422), - [sym_block_comment] = STATE(422), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(1281), - [anon_sym_LPAREN] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1293), - [anon_sym_i8] = ACTIONS(1293), - [anon_sym_u16] = ACTIONS(1293), - [anon_sym_i16] = ACTIONS(1293), - [anon_sym_u32] = ACTIONS(1293), - [anon_sym_i32] = ACTIONS(1293), - [anon_sym_u64] = ACTIONS(1293), - [anon_sym_i64] = ACTIONS(1293), - [anon_sym_u128] = ACTIONS(1293), - [anon_sym_i128] = ACTIONS(1293), - [anon_sym_isize] = ACTIONS(1293), - [anon_sym_usize] = ACTIONS(1293), - [anon_sym_f32] = ACTIONS(1293), - [anon_sym_f64] = ACTIONS(1293), - [anon_sym_bool] = ACTIONS(1293), - [anon_sym_str] = ACTIONS(1293), - [anon_sym_char] = ACTIONS(1293), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1299), - [anon_sym_PIPE] = ACTIONS(1301), + [430] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_self_parameter] = STATE(3709), + [sym_variadic_parameter] = STATE(3709), + [sym_parameter] = STATE(3709), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(3267), + [sym_bracketed_type] = STATE(4026), + [sym_lifetime] = STATE(3377), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3775), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2751), + [sym_scoped_identifier] = STATE(2534), + [sym_scoped_type_identifier] = STATE(2400), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(3619), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(430), + [sym_block_comment] = STATE(430), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(1293), + [anon_sym_LPAREN] = ACTIONS(1295), + [anon_sym_LBRACK] = ACTIONS(1299), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1305), + [anon_sym_i8] = ACTIONS(1305), + [anon_sym_u16] = ACTIONS(1305), + [anon_sym_i16] = ACTIONS(1305), + [anon_sym_u32] = ACTIONS(1305), + [anon_sym_i32] = ACTIONS(1305), + [anon_sym_u64] = ACTIONS(1305), + [anon_sym_i64] = ACTIONS(1305), + [anon_sym_u128] = ACTIONS(1305), + [anon_sym_i128] = ACTIONS(1305), + [anon_sym_isize] = ACTIONS(1305), + [anon_sym_usize] = ACTIONS(1305), + [anon_sym_f32] = ACTIONS(1305), + [anon_sym_f64] = ACTIONS(1305), + [anon_sym_bool] = ACTIONS(1305), + [anon_sym_str] = ACTIONS(1305), + [anon_sym_char] = ACTIONS(1305), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1311), + [anon_sym_PIPE] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1537), - [anon_sym_DOT_DOT] = ACTIONS(1305), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1307), - [anon_sym_COLON_COLON] = ACTIONS(1311), - [anon_sym_SQUOTE] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1319), - [anon_sym_default] = ACTIONS(1321), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1327), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1327), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_ref] = ACTIONS(1333), - [anon_sym_dyn] = ACTIONS(1335), - [sym_mutable_specifier] = ACTIONS(1337), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1345), - [sym_super] = ACTIONS(1347), - [sym_crate] = ACTIONS(1347), - [sym_metavariable] = ACTIONS(1349), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), + [anon_sym_DOT_DOT] = ACTIONS(1317), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(1323), + [anon_sym_SQUOTE] = ACTIONS(1327), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1331), + [anon_sym_default] = ACTIONS(1333), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1339), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1339), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_ref] = ACTIONS(1345), + [anon_sym_dyn] = ACTIONS(1347), + [sym_mutable_specifier] = ACTIONS(1349), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1357), + [sym_super] = ACTIONS(1359), + [sym_crate] = ACTIONS(1359), + [sym_metavariable] = ACTIONS(1361), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), }, - [423] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_self_parameter] = STATE(3140), - [sym_variadic_parameter] = STATE(3140), - [sym_parameter] = STATE(3140), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2945), - [sym_bracketed_type] = STATE(3550), - [sym_lifetime] = STATE(2800), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3221), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(2410), - [sym_scoped_identifier] = STATE(2242), - [sym_scoped_type_identifier] = STATE(2118), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(3256), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), - [sym_line_comment] = STATE(423), - [sym_block_comment] = STATE(423), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(1281), - [anon_sym_LPAREN] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1293), - [anon_sym_i8] = ACTIONS(1293), - [anon_sym_u16] = ACTIONS(1293), - [anon_sym_i16] = ACTIONS(1293), - [anon_sym_u32] = ACTIONS(1293), - [anon_sym_i32] = ACTIONS(1293), - [anon_sym_u64] = ACTIONS(1293), - [anon_sym_i64] = ACTIONS(1293), - [anon_sym_u128] = ACTIONS(1293), - [anon_sym_i128] = ACTIONS(1293), - [anon_sym_isize] = ACTIONS(1293), - [anon_sym_usize] = ACTIONS(1293), - [anon_sym_f32] = ACTIONS(1293), - [anon_sym_f64] = ACTIONS(1293), - [anon_sym_bool] = ACTIONS(1293), - [anon_sym_str] = ACTIONS(1293), - [anon_sym_char] = ACTIONS(1293), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1299), - [anon_sym_PIPE] = ACTIONS(1301), + [431] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_self_parameter] = STATE(3378), + [sym_variadic_parameter] = STATE(3378), + [sym_parameter] = STATE(3378), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2865), + [sym_bracketed_type] = STATE(4026), + [sym_lifetime] = STATE(3377), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3775), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2751), + [sym_scoped_identifier] = STATE(2534), + [sym_scoped_type_identifier] = STATE(2400), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(3619), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(431), + [sym_block_comment] = STATE(431), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(1293), + [anon_sym_LPAREN] = ACTIONS(1295), + [anon_sym_LBRACK] = ACTIONS(1299), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1305), + [anon_sym_i8] = ACTIONS(1305), + [anon_sym_u16] = ACTIONS(1305), + [anon_sym_i16] = ACTIONS(1305), + [anon_sym_u32] = ACTIONS(1305), + [anon_sym_i32] = ACTIONS(1305), + [anon_sym_u64] = ACTIONS(1305), + [anon_sym_i64] = ACTIONS(1305), + [anon_sym_u128] = ACTIONS(1305), + [anon_sym_i128] = ACTIONS(1305), + [anon_sym_isize] = ACTIONS(1305), + [anon_sym_usize] = ACTIONS(1305), + [anon_sym_f32] = ACTIONS(1305), + [anon_sym_f64] = ACTIONS(1305), + [anon_sym_bool] = ACTIONS(1305), + [anon_sym_str] = ACTIONS(1305), + [anon_sym_char] = ACTIONS(1305), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1311), + [anon_sym_PIPE] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1539), - [anon_sym_DOT_DOT] = ACTIONS(1305), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1307), - [anon_sym_COLON_COLON] = ACTIONS(1311), - [anon_sym_SQUOTE] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1319), - [anon_sym_default] = ACTIONS(1321), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1327), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1327), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_ref] = ACTIONS(1333), - [anon_sym_dyn] = ACTIONS(1335), - [sym_mutable_specifier] = ACTIONS(1337), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1345), - [sym_super] = ACTIONS(1347), - [sym_crate] = ACTIONS(1347), - [sym_metavariable] = ACTIONS(1349), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), + [anon_sym_DOT_DOT] = ACTIONS(1317), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1319), + [anon_sym_COLON_COLON] = ACTIONS(1323), + [anon_sym_SQUOTE] = ACTIONS(1327), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1331), + [anon_sym_default] = ACTIONS(1333), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1339), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1339), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_ref] = ACTIONS(1345), + [anon_sym_dyn] = ACTIONS(1347), + [sym_mutable_specifier] = ACTIONS(1349), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1357), + [sym_super] = ACTIONS(1359), + [sym_crate] = ACTIONS(1359), + [sym_metavariable] = ACTIONS(1361), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), }, - [424] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2904), - [sym_bracketed_type] = STATE(3558), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3304), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(2489), - [sym_scoped_identifier] = STATE(2191), - [sym_scoped_type_identifier] = STATE(2118), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2670), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), - [sym_line_comment] = STATE(424), - [sym_block_comment] = STATE(424), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [432] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(3291), + [sym_bracketed_type] = STATE(4034), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3551), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2756), + [sym_scoped_identifier] = STATE(2436), + [sym_scoped_type_identifier] = STATE(2400), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(3022), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(432), + [sym_block_comment] = STATE(432), + [aux_sym_function_modifiers_repeat1] = STATE(2519), [sym_identifier] = ACTIONS(1541), [anon_sym_LPAREN] = ACTIONS(1543), - [anon_sym_LBRACK] = ACTIONS(1287), + [anon_sym_LBRACK] = ACTIONS(1299), [anon_sym_RBRACK] = ACTIONS(1545), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1547), [anon_sym_i8] = ACTIONS(1547), [anon_sym_u16] = ACTIONS(1547), @@ -64725,806 +66984,602 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1547), [anon_sym_str] = ACTIONS(1547), [anon_sym_char] = ACTIONS(1547), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1549), - [anon_sym_PIPE] = ACTIONS(1301), + [anon_sym_PIPE] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), [anon_sym_COMMA] = ACTIONS(1551), [anon_sym_COLON_COLON] = ACTIONS(1553), - [anon_sym_SQUOTE] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1319), + [anon_sym_SQUOTE] = ACTIONS(1327), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1331), [anon_sym_default] = ACTIONS(1555), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1557), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1557), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_ref] = ACTIONS(1333), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_ref] = ACTIONS(1345), + [anon_sym_dyn] = ACTIONS(1347), [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1559), [sym_super] = ACTIONS(1559), [sym_crate] = ACTIONS(1559), [sym_metavariable] = ACTIONS(1561), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), }, - [425] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1992), - [sym_bracketed_type] = STATE(3557), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(2446), - [sym_scoped_identifier] = STATE(2125), - [sym_scoped_type_identifier] = STATE(2118), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2143), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), - [sym_line_comment] = STATE(425), - [sym_block_comment] = STATE(425), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(1369), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1375), - [anon_sym_i8] = ACTIONS(1375), - [anon_sym_u16] = ACTIONS(1375), - [anon_sym_i16] = ACTIONS(1375), - [anon_sym_u32] = ACTIONS(1375), - [anon_sym_i32] = ACTIONS(1375), - [anon_sym_u64] = ACTIONS(1375), - [anon_sym_i64] = ACTIONS(1375), - [anon_sym_u128] = ACTIONS(1375), - [anon_sym_i128] = ACTIONS(1375), - [anon_sym_isize] = ACTIONS(1375), - [anon_sym_usize] = ACTIONS(1375), - [anon_sym_f32] = ACTIONS(1375), - [anon_sym_f64] = ACTIONS(1375), - [anon_sym_bool] = ACTIONS(1375), - [anon_sym_str] = ACTIONS(1375), - [anon_sym_char] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1513), - [anon_sym_PIPE] = ACTIONS(1301), + [433] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2284), + [sym_bracketed_type] = STATE(4034), + [sym_lifetime] = STATE(956), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3551), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2756), + [sym_scoped_identifier] = STATE(2436), + [sym_scoped_type_identifier] = STATE(2400), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(2414), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(433), + [sym_block_comment] = STATE(433), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(1541), + [anon_sym_LPAREN] = ACTIONS(1543), + [anon_sym_LBRACK] = ACTIONS(1299), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1547), + [anon_sym_i8] = ACTIONS(1547), + [anon_sym_u16] = ACTIONS(1547), + [anon_sym_i16] = ACTIONS(1547), + [anon_sym_u32] = ACTIONS(1547), + [anon_sym_i32] = ACTIONS(1547), + [anon_sym_u64] = ACTIONS(1547), + [anon_sym_i64] = ACTIONS(1547), + [anon_sym_u128] = ACTIONS(1547), + [anon_sym_i128] = ACTIONS(1547), + [anon_sym_isize] = ACTIONS(1547), + [anon_sym_usize] = ACTIONS(1547), + [anon_sym_f32] = ACTIONS(1547), + [anon_sym_f64] = ACTIONS(1547), + [anon_sym_bool] = ACTIONS(1547), + [anon_sym_str] = ACTIONS(1547), + [anon_sym_char] = ACTIONS(1547), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1549), + [anon_sym_PIPE] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(1383), - [anon_sym_SQUOTE] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1319), - [anon_sym_default] = ACTIONS(1385), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1387), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1387), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_ref] = ACTIONS(1333), - [anon_sym_dyn] = ACTIONS(1335), - [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), + [anon_sym_COLON_COLON] = ACTIONS(1553), + [anon_sym_SQUOTE] = ACTIONS(1327), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1331), + [anon_sym_default] = ACTIONS(1555), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1557), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1557), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_ref] = ACTIONS(1345), + [anon_sym_dyn] = ACTIONS(1347), + [sym_mutable_specifier] = ACTIONS(1563), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1563), - [sym_super] = ACTIONS(1391), - [sym_crate] = ACTIONS(1391), - [sym_metavariable] = ACTIONS(1393), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [426] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2004), - [sym_bracketed_type] = STATE(3550), - [sym_lifetime] = STATE(839), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3221), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(2410), - [sym_scoped_identifier] = STATE(2242), - [sym_scoped_type_identifier] = STATE(2118), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2134), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), - [sym_line_comment] = STATE(426), - [sym_block_comment] = STATE(426), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(1281), - [anon_sym_LPAREN] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1293), - [anon_sym_i8] = ACTIONS(1293), - [anon_sym_u16] = ACTIONS(1293), - [anon_sym_i16] = ACTIONS(1293), - [anon_sym_u32] = ACTIONS(1293), - [anon_sym_i32] = ACTIONS(1293), - [anon_sym_u64] = ACTIONS(1293), - [anon_sym_i64] = ACTIONS(1293), - [anon_sym_u128] = ACTIONS(1293), - [anon_sym_i128] = ACTIONS(1293), - [anon_sym_isize] = ACTIONS(1293), - [anon_sym_usize] = ACTIONS(1293), - [anon_sym_f32] = ACTIONS(1293), - [anon_sym_f64] = ACTIONS(1293), - [anon_sym_bool] = ACTIONS(1293), - [anon_sym_str] = ACTIONS(1293), - [anon_sym_char] = ACTIONS(1293), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(1311), - [anon_sym_SQUOTE] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1319), - [anon_sym_default] = ACTIONS(1321), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1327), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1327), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_ref] = ACTIONS(1333), - [anon_sym_dyn] = ACTIONS(1335), - [sym_mutable_specifier] = ACTIONS(1567), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1569), - [sym_super] = ACTIONS(1347), - [sym_crate] = ACTIONS(1347), - [sym_metavariable] = ACTIONS(1349), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), + [sym_self] = ACTIONS(1559), + [sym_super] = ACTIONS(1559), + [sym_crate] = ACTIONS(1559), + [sym_metavariable] = ACTIONS(1561), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), }, - [427] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2004), - [sym_bracketed_type] = STATE(3557), - [sym_lifetime] = STATE(839), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(2446), - [sym_scoped_identifier] = STATE(2125), - [sym_scoped_type_identifier] = STATE(2118), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2134), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), - [sym_line_comment] = STATE(427), - [sym_block_comment] = STATE(427), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(1369), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1375), - [anon_sym_i8] = ACTIONS(1375), - [anon_sym_u16] = ACTIONS(1375), - [anon_sym_i16] = ACTIONS(1375), - [anon_sym_u32] = ACTIONS(1375), - [anon_sym_i32] = ACTIONS(1375), - [anon_sym_u64] = ACTIONS(1375), - [anon_sym_i64] = ACTIONS(1375), - [anon_sym_u128] = ACTIONS(1375), - [anon_sym_i128] = ACTIONS(1375), - [anon_sym_isize] = ACTIONS(1375), - [anon_sym_usize] = ACTIONS(1375), - [anon_sym_f32] = ACTIONS(1375), - [anon_sym_f64] = ACTIONS(1375), - [anon_sym_bool] = ACTIONS(1375), - [anon_sym_str] = ACTIONS(1375), - [anon_sym_char] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1297), + [434] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2255), + [sym_bracketed_type] = STATE(4033), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3566), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2818), + [sym_scoped_identifier] = STATE(2397), + [sym_scoped_type_identifier] = STATE(2400), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(2420), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(434), + [sym_block_comment] = STATE(434), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1299), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1379), + [anon_sym_i8] = ACTIONS(1379), + [anon_sym_u16] = ACTIONS(1379), + [anon_sym_i16] = ACTIONS(1379), + [anon_sym_u32] = ACTIONS(1379), + [anon_sym_i32] = ACTIONS(1379), + [anon_sym_u64] = ACTIONS(1379), + [anon_sym_i64] = ACTIONS(1379), + [anon_sym_u128] = ACTIONS(1379), + [anon_sym_i128] = ACTIONS(1379), + [anon_sym_isize] = ACTIONS(1379), + [anon_sym_usize] = ACTIONS(1379), + [anon_sym_f32] = ACTIONS(1379), + [anon_sym_f64] = ACTIONS(1379), + [anon_sym_bool] = ACTIONS(1379), + [anon_sym_str] = ACTIONS(1379), + [anon_sym_char] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1513), - [anon_sym_PIPE] = ACTIONS(1301), + [anon_sym_PIPE] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(1383), - [anon_sym_SQUOTE] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1319), - [anon_sym_default] = ACTIONS(1385), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1387), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1387), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_ref] = ACTIONS(1333), - [anon_sym_dyn] = ACTIONS(1335), - [sym_mutable_specifier] = ACTIONS(1571), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), + [anon_sym_COLON_COLON] = ACTIONS(1387), + [anon_sym_SQUOTE] = ACTIONS(1327), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1331), + [anon_sym_default] = ACTIONS(1389), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1391), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1391), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_ref] = ACTIONS(1345), + [anon_sym_dyn] = ACTIONS(1347), + [sym_mutable_specifier] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1573), - [sym_super] = ACTIONS(1391), - [sym_crate] = ACTIONS(1391), - [sym_metavariable] = ACTIONS(1393), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), + [sym_self] = ACTIONS(1565), + [sym_super] = ACTIONS(1395), + [sym_crate] = ACTIONS(1395), + [sym_metavariable] = ACTIONS(1397), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), }, - [428] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2004), - [sym_bracketed_type] = STATE(3550), - [sym_lifetime] = STATE(840), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3221), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(2410), - [sym_scoped_identifier] = STATE(2242), - [sym_scoped_type_identifier] = STATE(2118), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2134), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), - [sym_line_comment] = STATE(428), - [sym_block_comment] = STATE(428), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(1281), - [anon_sym_LPAREN] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1293), - [anon_sym_i8] = ACTIONS(1293), - [anon_sym_u16] = ACTIONS(1293), - [anon_sym_i16] = ACTIONS(1293), - [anon_sym_u32] = ACTIONS(1293), - [anon_sym_i32] = ACTIONS(1293), - [anon_sym_u64] = ACTIONS(1293), - [anon_sym_i64] = ACTIONS(1293), - [anon_sym_u128] = ACTIONS(1293), - [anon_sym_i128] = ACTIONS(1293), - [anon_sym_isize] = ACTIONS(1293), - [anon_sym_usize] = ACTIONS(1293), - [anon_sym_f32] = ACTIONS(1293), - [anon_sym_f64] = ACTIONS(1293), - [anon_sym_bool] = ACTIONS(1293), - [anon_sym_str] = ACTIONS(1293), - [anon_sym_char] = ACTIONS(1293), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_PIPE] = ACTIONS(1301), + [435] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2284), + [sym_bracketed_type] = STATE(4026), + [sym_lifetime] = STATE(956), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3775), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2751), + [sym_scoped_identifier] = STATE(2534), + [sym_scoped_type_identifier] = STATE(2400), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(2414), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(435), + [sym_block_comment] = STATE(435), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(1293), + [anon_sym_LPAREN] = ACTIONS(1295), + [anon_sym_LBRACK] = ACTIONS(1299), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1305), + [anon_sym_i8] = ACTIONS(1305), + [anon_sym_u16] = ACTIONS(1305), + [anon_sym_i16] = ACTIONS(1305), + [anon_sym_u32] = ACTIONS(1305), + [anon_sym_i32] = ACTIONS(1305), + [anon_sym_u64] = ACTIONS(1305), + [anon_sym_i64] = ACTIONS(1305), + [anon_sym_u128] = ACTIONS(1305), + [anon_sym_i128] = ACTIONS(1305), + [anon_sym_isize] = ACTIONS(1305), + [anon_sym_usize] = ACTIONS(1305), + [anon_sym_f32] = ACTIONS(1305), + [anon_sym_f64] = ACTIONS(1305), + [anon_sym_bool] = ACTIONS(1305), + [anon_sym_str] = ACTIONS(1305), + [anon_sym_char] = ACTIONS(1305), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1567), + [anon_sym_PIPE] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(1311), - [anon_sym_SQUOTE] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1319), - [anon_sym_default] = ACTIONS(1321), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1327), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1327), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_ref] = ACTIONS(1333), - [anon_sym_dyn] = ACTIONS(1335), - [sym_mutable_specifier] = ACTIONS(1575), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), + [anon_sym_COLON_COLON] = ACTIONS(1323), + [anon_sym_SQUOTE] = ACTIONS(1327), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1331), + [anon_sym_default] = ACTIONS(1333), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1339), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1339), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_ref] = ACTIONS(1345), + [anon_sym_dyn] = ACTIONS(1347), + [sym_mutable_specifier] = ACTIONS(1569), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1347), - [sym_super] = ACTIONS(1347), - [sym_crate] = ACTIONS(1347), - [sym_metavariable] = ACTIONS(1349), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), + [sym_self] = ACTIONS(1359), + [sym_super] = ACTIONS(1359), + [sym_crate] = ACTIONS(1359), + [sym_metavariable] = ACTIONS(1361), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), }, - [429] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1992), - [sym_bracketed_type] = STATE(3550), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3221), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(2410), - [sym_scoped_identifier] = STATE(2242), - [sym_scoped_type_identifier] = STATE(2118), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2143), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), - [sym_line_comment] = STATE(429), - [sym_block_comment] = STATE(429), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(1281), - [anon_sym_LPAREN] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1293), - [anon_sym_i8] = ACTIONS(1293), - [anon_sym_u16] = ACTIONS(1293), - [anon_sym_i16] = ACTIONS(1293), - [anon_sym_u32] = ACTIONS(1293), - [anon_sym_i32] = ACTIONS(1293), - [anon_sym_u64] = ACTIONS(1293), - [anon_sym_i64] = ACTIONS(1293), - [anon_sym_u128] = ACTIONS(1293), - [anon_sym_i128] = ACTIONS(1293), - [anon_sym_isize] = ACTIONS(1293), - [anon_sym_usize] = ACTIONS(1293), - [anon_sym_f32] = ACTIONS(1293), - [anon_sym_f64] = ACTIONS(1293), - [anon_sym_bool] = ACTIONS(1293), - [anon_sym_str] = ACTIONS(1293), - [anon_sym_char] = ACTIONS(1293), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_PIPE] = ACTIONS(1301), + [436] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2284), + [sym_bracketed_type] = STATE(4033), + [sym_lifetime] = STATE(955), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3566), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2818), + [sym_scoped_identifier] = STATE(2397), + [sym_scoped_type_identifier] = STATE(2400), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(2414), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(436), + [sym_block_comment] = STATE(436), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1299), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1379), + [anon_sym_i8] = ACTIONS(1379), + [anon_sym_u16] = ACTIONS(1379), + [anon_sym_i16] = ACTIONS(1379), + [anon_sym_u32] = ACTIONS(1379), + [anon_sym_i32] = ACTIONS(1379), + [anon_sym_u64] = ACTIONS(1379), + [anon_sym_i64] = ACTIONS(1379), + [anon_sym_u128] = ACTIONS(1379), + [anon_sym_i128] = ACTIONS(1379), + [anon_sym_isize] = ACTIONS(1379), + [anon_sym_usize] = ACTIONS(1379), + [anon_sym_f32] = ACTIONS(1379), + [anon_sym_f64] = ACTIONS(1379), + [anon_sym_bool] = ACTIONS(1379), + [anon_sym_str] = ACTIONS(1379), + [anon_sym_char] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1513), + [anon_sym_PIPE] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(1311), - [anon_sym_SQUOTE] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1319), - [anon_sym_default] = ACTIONS(1321), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1327), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1327), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_ref] = ACTIONS(1333), - [anon_sym_dyn] = ACTIONS(1335), - [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), + [anon_sym_COLON_COLON] = ACTIONS(1387), + [anon_sym_SQUOTE] = ACTIONS(1327), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1331), + [anon_sym_default] = ACTIONS(1389), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1391), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1391), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_ref] = ACTIONS(1345), + [anon_sym_dyn] = ACTIONS(1347), + [sym_mutable_specifier] = ACTIONS(1571), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1347), - [sym_super] = ACTIONS(1347), - [sym_crate] = ACTIONS(1347), - [sym_metavariable] = ACTIONS(1349), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [430] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2004), - [sym_bracketed_type] = STATE(3557), - [sym_lifetime] = STATE(840), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(2446), - [sym_scoped_identifier] = STATE(2125), - [sym_scoped_type_identifier] = STATE(2118), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2134), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), - [sym_line_comment] = STATE(430), - [sym_block_comment] = STATE(430), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(1369), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1375), - [anon_sym_i8] = ACTIONS(1375), - [anon_sym_u16] = ACTIONS(1375), - [anon_sym_i16] = ACTIONS(1375), - [anon_sym_u32] = ACTIONS(1375), - [anon_sym_i32] = ACTIONS(1375), - [anon_sym_u64] = ACTIONS(1375), - [anon_sym_i64] = ACTIONS(1375), - [anon_sym_u128] = ACTIONS(1375), - [anon_sym_i128] = ACTIONS(1375), - [anon_sym_isize] = ACTIONS(1375), - [anon_sym_usize] = ACTIONS(1375), - [anon_sym_f32] = ACTIONS(1375), - [anon_sym_f64] = ACTIONS(1375), - [anon_sym_bool] = ACTIONS(1375), - [anon_sym_str] = ACTIONS(1375), - [anon_sym_char] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1513), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(1383), - [anon_sym_SQUOTE] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1319), - [anon_sym_default] = ACTIONS(1385), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1387), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1387), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_ref] = ACTIONS(1333), - [anon_sym_dyn] = ACTIONS(1335), - [sym_mutable_specifier] = ACTIONS(1577), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1391), - [sym_super] = ACTIONS(1391), - [sym_crate] = ACTIONS(1391), - [sym_metavariable] = ACTIONS(1393), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), + [sym_self] = ACTIONS(1573), + [sym_super] = ACTIONS(1395), + [sym_crate] = ACTIONS(1395), + [sym_metavariable] = ACTIONS(1397), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), }, - [431] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1992), - [sym_bracketed_type] = STATE(3550), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3221), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(2410), - [sym_scoped_identifier] = STATE(2242), - [sym_scoped_type_identifier] = STATE(2118), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2143), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), - [sym_line_comment] = STATE(431), - [sym_block_comment] = STATE(431), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(1281), - [anon_sym_LPAREN] = ACTIONS(1283), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1293), - [anon_sym_i8] = ACTIONS(1293), - [anon_sym_u16] = ACTIONS(1293), - [anon_sym_i16] = ACTIONS(1293), - [anon_sym_u32] = ACTIONS(1293), - [anon_sym_i32] = ACTIONS(1293), - [anon_sym_u64] = ACTIONS(1293), - [anon_sym_i64] = ACTIONS(1293), - [anon_sym_u128] = ACTIONS(1293), - [anon_sym_i128] = ACTIONS(1293), - [anon_sym_isize] = ACTIONS(1293), - [anon_sym_usize] = ACTIONS(1293), - [anon_sym_f32] = ACTIONS(1293), - [anon_sym_f64] = ACTIONS(1293), - [anon_sym_bool] = ACTIONS(1293), - [anon_sym_str] = ACTIONS(1293), - [anon_sym_char] = ACTIONS(1293), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1565), - [anon_sym_PIPE] = ACTIONS(1301), + [437] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2255), + [sym_bracketed_type] = STATE(4026), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3775), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2751), + [sym_scoped_identifier] = STATE(2534), + [sym_scoped_type_identifier] = STATE(2400), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(2420), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(437), + [sym_block_comment] = STATE(437), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(1293), + [anon_sym_LPAREN] = ACTIONS(1295), + [anon_sym_LBRACK] = ACTIONS(1299), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1305), + [anon_sym_i8] = ACTIONS(1305), + [anon_sym_u16] = ACTIONS(1305), + [anon_sym_i16] = ACTIONS(1305), + [anon_sym_u32] = ACTIONS(1305), + [anon_sym_i32] = ACTIONS(1305), + [anon_sym_u64] = ACTIONS(1305), + [anon_sym_i64] = ACTIONS(1305), + [anon_sym_u128] = ACTIONS(1305), + [anon_sym_i128] = ACTIONS(1305), + [anon_sym_isize] = ACTIONS(1305), + [anon_sym_usize] = ACTIONS(1305), + [anon_sym_f32] = ACTIONS(1305), + [anon_sym_f64] = ACTIONS(1305), + [anon_sym_bool] = ACTIONS(1305), + [anon_sym_str] = ACTIONS(1305), + [anon_sym_char] = ACTIONS(1305), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1567), + [anon_sym_PIPE] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(1311), - [anon_sym_SQUOTE] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1319), - [anon_sym_default] = ACTIONS(1321), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1327), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1327), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_ref] = ACTIONS(1333), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_COLON_COLON] = ACTIONS(1323), + [anon_sym_SQUOTE] = ACTIONS(1327), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1331), + [anon_sym_default] = ACTIONS(1333), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1339), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1339), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_ref] = ACTIONS(1345), + [anon_sym_dyn] = ACTIONS(1347), [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1579), - [sym_super] = ACTIONS(1347), - [sym_crate] = ACTIONS(1347), - [sym_metavariable] = ACTIONS(1349), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), + [sym_self] = ACTIONS(1359), + [sym_super] = ACTIONS(1359), + [sym_crate] = ACTIONS(1359), + [sym_metavariable] = ACTIONS(1361), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), }, - [432] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2004), - [sym_bracketed_type] = STATE(3558), - [sym_lifetime] = STATE(840), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3304), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(2489), - [sym_scoped_identifier] = STATE(2191), - [sym_scoped_type_identifier] = STATE(2118), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2134), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), - [sym_line_comment] = STATE(432), - [sym_block_comment] = STATE(432), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [438] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2255), + [sym_bracketed_type] = STATE(4034), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3551), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2756), + [sym_scoped_identifier] = STATE(2436), + [sym_scoped_type_identifier] = STATE(2400), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(2420), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(438), + [sym_block_comment] = STATE(438), + [aux_sym_function_modifiers_repeat1] = STATE(2519), [sym_identifier] = ACTIONS(1541), [anon_sym_LPAREN] = ACTIONS(1543), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(1299), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1547), [anon_sym_i8] = ACTIONS(1547), [anon_sym_u16] = ACTIONS(1547), @@ -65542,249 +67597,453 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1547), [anon_sym_str] = ACTIONS(1547), [anon_sym_char] = ACTIONS(1547), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1549), - [anon_sym_PIPE] = ACTIONS(1301), + [anon_sym_PIPE] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), [anon_sym_COLON_COLON] = ACTIONS(1553), - [anon_sym_SQUOTE] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1319), + [anon_sym_SQUOTE] = ACTIONS(1327), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1331), [anon_sym_default] = ACTIONS(1555), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1557), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1557), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_ref] = ACTIONS(1333), - [anon_sym_dyn] = ACTIONS(1335), - [sym_mutable_specifier] = ACTIONS(1581), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_ref] = ACTIONS(1345), + [anon_sym_dyn] = ACTIONS(1347), + [sym_mutable_specifier] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1559), [sym_super] = ACTIONS(1559), [sym_crate] = ACTIONS(1559), [sym_metavariable] = ACTIONS(1561), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), }, - [433] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1992), - [sym_bracketed_type] = STATE(3558), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3304), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(2489), - [sym_scoped_identifier] = STATE(2191), - [sym_scoped_type_identifier] = STATE(2118), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2143), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), - [sym_line_comment] = STATE(433), - [sym_block_comment] = STATE(433), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(1541), - [anon_sym_LPAREN] = ACTIONS(1543), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1547), - [anon_sym_i8] = ACTIONS(1547), - [anon_sym_u16] = ACTIONS(1547), - [anon_sym_i16] = ACTIONS(1547), - [anon_sym_u32] = ACTIONS(1547), - [anon_sym_i32] = ACTIONS(1547), - [anon_sym_u64] = ACTIONS(1547), - [anon_sym_i64] = ACTIONS(1547), - [anon_sym_u128] = ACTIONS(1547), - [anon_sym_i128] = ACTIONS(1547), - [anon_sym_isize] = ACTIONS(1547), - [anon_sym_usize] = ACTIONS(1547), - [anon_sym_f32] = ACTIONS(1547), - [anon_sym_f64] = ACTIONS(1547), - [anon_sym_bool] = ACTIONS(1547), - [anon_sym_str] = ACTIONS(1547), - [anon_sym_char] = ACTIONS(1547), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1549), - [anon_sym_PIPE] = ACTIONS(1301), + [439] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2284), + [sym_bracketed_type] = STATE(4026), + [sym_lifetime] = STATE(955), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3775), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2751), + [sym_scoped_identifier] = STATE(2534), + [sym_scoped_type_identifier] = STATE(2400), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(2414), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(439), + [sym_block_comment] = STATE(439), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(1293), + [anon_sym_LPAREN] = ACTIONS(1295), + [anon_sym_LBRACK] = ACTIONS(1299), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1305), + [anon_sym_i8] = ACTIONS(1305), + [anon_sym_u16] = ACTIONS(1305), + [anon_sym_i16] = ACTIONS(1305), + [anon_sym_u32] = ACTIONS(1305), + [anon_sym_i32] = ACTIONS(1305), + [anon_sym_u64] = ACTIONS(1305), + [anon_sym_i64] = ACTIONS(1305), + [anon_sym_u128] = ACTIONS(1305), + [anon_sym_i128] = ACTIONS(1305), + [anon_sym_isize] = ACTIONS(1305), + [anon_sym_usize] = ACTIONS(1305), + [anon_sym_f32] = ACTIONS(1305), + [anon_sym_f64] = ACTIONS(1305), + [anon_sym_bool] = ACTIONS(1305), + [anon_sym_str] = ACTIONS(1305), + [anon_sym_char] = ACTIONS(1305), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1567), + [anon_sym_PIPE] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(1553), - [anon_sym_SQUOTE] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1319), - [anon_sym_default] = ACTIONS(1555), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1557), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1557), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_ref] = ACTIONS(1333), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_COLON_COLON] = ACTIONS(1323), + [anon_sym_SQUOTE] = ACTIONS(1327), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1331), + [anon_sym_default] = ACTIONS(1333), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1339), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1339), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_ref] = ACTIONS(1345), + [anon_sym_dyn] = ACTIONS(1347), + [sym_mutable_specifier] = ACTIONS(1575), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1577), + [sym_super] = ACTIONS(1359), + [sym_crate] = ACTIONS(1359), + [sym_metavariable] = ACTIONS(1361), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), + }, + [440] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2255), + [sym_bracketed_type] = STATE(4026), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3775), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2751), + [sym_scoped_identifier] = STATE(2534), + [sym_scoped_type_identifier] = STATE(2400), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(2420), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(440), + [sym_block_comment] = STATE(440), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(1293), + [anon_sym_LPAREN] = ACTIONS(1295), + [anon_sym_LBRACK] = ACTIONS(1299), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1305), + [anon_sym_i8] = ACTIONS(1305), + [anon_sym_u16] = ACTIONS(1305), + [anon_sym_i16] = ACTIONS(1305), + [anon_sym_u32] = ACTIONS(1305), + [anon_sym_i32] = ACTIONS(1305), + [anon_sym_u64] = ACTIONS(1305), + [anon_sym_i64] = ACTIONS(1305), + [anon_sym_u128] = ACTIONS(1305), + [anon_sym_i128] = ACTIONS(1305), + [anon_sym_isize] = ACTIONS(1305), + [anon_sym_usize] = ACTIONS(1305), + [anon_sym_f32] = ACTIONS(1305), + [anon_sym_f64] = ACTIONS(1305), + [anon_sym_bool] = ACTIONS(1305), + [anon_sym_str] = ACTIONS(1305), + [anon_sym_char] = ACTIONS(1305), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1567), + [anon_sym_PIPE] = ACTIONS(1313), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(1323), + [anon_sym_SQUOTE] = ACTIONS(1327), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1331), + [anon_sym_default] = ACTIONS(1333), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1339), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1339), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_ref] = ACTIONS(1345), + [anon_sym_dyn] = ACTIONS(1347), [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1559), - [sym_super] = ACTIONS(1559), - [sym_crate] = ACTIONS(1559), - [sym_metavariable] = ACTIONS(1561), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), + [sym_self] = ACTIONS(1579), + [sym_super] = ACTIONS(1359), + [sym_crate] = ACTIONS(1359), + [sym_metavariable] = ACTIONS(1361), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), }, - [434] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1992), - [sym_bracketed_type] = STATE(3557), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3301), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(2446), - [sym_scoped_identifier] = STATE(2125), - [sym_scoped_type_identifier] = STATE(2118), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2143), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), - [sym_line_comment] = STATE(434), - [sym_block_comment] = STATE(434), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(1369), - [anon_sym_LPAREN] = ACTIONS(1371), - [anon_sym_LBRACK] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1375), - [anon_sym_i8] = ACTIONS(1375), - [anon_sym_u16] = ACTIONS(1375), - [anon_sym_i16] = ACTIONS(1375), - [anon_sym_u32] = ACTIONS(1375), - [anon_sym_i32] = ACTIONS(1375), - [anon_sym_u64] = ACTIONS(1375), - [anon_sym_i64] = ACTIONS(1375), - [anon_sym_u128] = ACTIONS(1375), - [anon_sym_i128] = ACTIONS(1375), - [anon_sym_isize] = ACTIONS(1375), - [anon_sym_usize] = ACTIONS(1375), - [anon_sym_f32] = ACTIONS(1375), - [anon_sym_f64] = ACTIONS(1375), - [anon_sym_bool] = ACTIONS(1375), - [anon_sym_str] = ACTIONS(1375), - [anon_sym_char] = ACTIONS(1375), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_BANG] = ACTIONS(1297), + [441] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2255), + [sym_bracketed_type] = STATE(4033), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3566), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2818), + [sym_scoped_identifier] = STATE(2397), + [sym_scoped_type_identifier] = STATE(2400), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(2420), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(441), + [sym_block_comment] = STATE(441), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1299), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1379), + [anon_sym_i8] = ACTIONS(1379), + [anon_sym_u16] = ACTIONS(1379), + [anon_sym_i16] = ACTIONS(1379), + [anon_sym_u32] = ACTIONS(1379), + [anon_sym_i32] = ACTIONS(1379), + [anon_sym_u64] = ACTIONS(1379), + [anon_sym_i64] = ACTIONS(1379), + [anon_sym_u128] = ACTIONS(1379), + [anon_sym_i128] = ACTIONS(1379), + [anon_sym_isize] = ACTIONS(1379), + [anon_sym_usize] = ACTIONS(1379), + [anon_sym_f32] = ACTIONS(1379), + [anon_sym_f64] = ACTIONS(1379), + [anon_sym_bool] = ACTIONS(1379), + [anon_sym_str] = ACTIONS(1379), + [anon_sym_char] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1513), - [anon_sym_PIPE] = ACTIONS(1301), + [anon_sym_PIPE] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(1383), - [anon_sym_SQUOTE] = ACTIONS(1315), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1319), - [anon_sym_default] = ACTIONS(1385), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1387), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1387), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_ref] = ACTIONS(1333), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_COLON_COLON] = ACTIONS(1387), + [anon_sym_SQUOTE] = ACTIONS(1327), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1331), + [anon_sym_default] = ACTIONS(1389), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1391), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1391), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_ref] = ACTIONS(1345), + [anon_sym_dyn] = ACTIONS(1347), [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1391), - [sym_super] = ACTIONS(1391), - [sym_crate] = ACTIONS(1391), - [sym_metavariable] = ACTIONS(1393), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), + [sym_self] = ACTIONS(1395), + [sym_super] = ACTIONS(1395), + [sym_crate] = ACTIONS(1395), + [sym_metavariable] = ACTIONS(1397), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), }, - [435] = { - [sym_line_comment] = STATE(435), - [sym_block_comment] = STATE(435), + [442] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2284), + [sym_bracketed_type] = STATE(4033), + [sym_lifetime] = STATE(956), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3566), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2818), + [sym_scoped_identifier] = STATE(2397), + [sym_scoped_type_identifier] = STATE(2400), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(2414), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(442), + [sym_block_comment] = STATE(442), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(1373), + [anon_sym_LPAREN] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1299), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1379), + [anon_sym_i8] = ACTIONS(1379), + [anon_sym_u16] = ACTIONS(1379), + [anon_sym_i16] = ACTIONS(1379), + [anon_sym_u32] = ACTIONS(1379), + [anon_sym_i32] = ACTIONS(1379), + [anon_sym_u64] = ACTIONS(1379), + [anon_sym_i64] = ACTIONS(1379), + [anon_sym_u128] = ACTIONS(1379), + [anon_sym_i128] = ACTIONS(1379), + [anon_sym_isize] = ACTIONS(1379), + [anon_sym_usize] = ACTIONS(1379), + [anon_sym_f32] = ACTIONS(1379), + [anon_sym_f64] = ACTIONS(1379), + [anon_sym_bool] = ACTIONS(1379), + [anon_sym_str] = ACTIONS(1379), + [anon_sym_char] = ACTIONS(1379), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1513), + [anon_sym_PIPE] = ACTIONS(1313), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(1387), + [anon_sym_SQUOTE] = ACTIONS(1327), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1331), + [anon_sym_default] = ACTIONS(1389), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1391), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1391), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_ref] = ACTIONS(1345), + [anon_sym_dyn] = ACTIONS(1347), + [sym_mutable_specifier] = ACTIONS(1581), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1395), + [sym_super] = ACTIONS(1395), + [sym_crate] = ACTIONS(1395), + [sym_metavariable] = ACTIONS(1397), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), + }, + [443] = { + [sym_line_comment] = STATE(443), + [sym_block_comment] = STATE(443), [sym_identifier] = ACTIONS(1583), [anon_sym_SEMI] = ACTIONS(1585), [anon_sym_LPAREN] = ACTIONS(1585), @@ -65883,9 +68142,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1585), [sym_float_literal] = ACTIONS(1585), }, - [436] = { - [sym_line_comment] = STATE(436), - [sym_block_comment] = STATE(436), + [444] = { + [sym_line_comment] = STATE(444), + [sym_block_comment] = STATE(444), [sym_identifier] = ACTIONS(1583), [anon_sym_LPAREN] = ACTIONS(1585), [anon_sym_LBRACK] = ACTIONS(1585), @@ -65979,33 +68238,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1585), [sym_float_literal] = ACTIONS(1585), }, - [437] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2142), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), - [sym_line_comment] = STATE(437), - [sym_block_comment] = STATE(437), + [445] = { + [sym_bracketed_type] = STATE(3973), + [sym_generic_type] = STATE(3972), + [sym_generic_type_with_turbofish] = STATE(3591), + [sym_macro_invocation] = STATE(2409), + [sym_scoped_identifier] = STATE(2246), + [sym_scoped_type_identifier] = STATE(3197), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(2381), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(445), + [sym_block_comment] = STATE(445), [sym_identifier] = ACTIONS(1587), [anon_sym_LPAREN] = ACTIONS(1589), [anon_sym_LBRACK] = ACTIONS(1589), @@ -66053,7 +68312,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(1587), [anon_sym_unsafe] = ACTIONS(1587), [anon_sym_while] = ACTIONS(1587), - [anon_sym_ref] = ACTIONS(1333), + [anon_sym_ref] = ACTIONS(1345), [sym_mutable_specifier] = ACTIONS(1525), [anon_sym_yield] = ACTIONS(1587), [anon_sym_move] = ACTIONS(1587), @@ -66072,33 +68331,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1589), [sym_float_literal] = ACTIONS(1589), }, - [438] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2119), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), - [sym_line_comment] = STATE(438), - [sym_block_comment] = STATE(438), + [446] = { + [sym_bracketed_type] = STATE(3973), + [sym_generic_type] = STATE(3972), + [sym_generic_type_with_turbofish] = STATE(3591), + [sym_macro_invocation] = STATE(2409), + [sym_scoped_identifier] = STATE(2246), + [sym_scoped_type_identifier] = STATE(3197), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(2411), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(446), + [sym_block_comment] = STATE(446), [sym_identifier] = ACTIONS(1591), [anon_sym_LPAREN] = ACTIONS(1593), [anon_sym_LBRACK] = ACTIONS(1593), @@ -66146,7 +68405,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(1591), [anon_sym_unsafe] = ACTIONS(1591), [anon_sym_while] = ACTIONS(1591), - [anon_sym_ref] = ACTIONS(1333), + [anon_sym_ref] = ACTIONS(1345), [sym_mutable_specifier] = ACTIONS(1525), [anon_sym_yield] = ACTIONS(1591), [anon_sym_move] = ACTIONS(1591), @@ -66165,45 +68424,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1593), [sym_float_literal] = ACTIONS(1593), }, - [439] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2501), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(2502), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_type_binding] = STATE(2721), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_label] = STATE(3611), - [sym_block] = STATE(2721), - [sym__literal] = STATE(2721), - [sym_string_literal] = STATE(2814), - [sym_raw_string_literal] = STATE(2814), - [sym_boolean_literal] = STATE(2814), - [sym_line_comment] = STATE(439), - [sym_block_comment] = STATE(439), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [447] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2824), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(2823), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_type_binding] = STATE(2922), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_label] = STATE(4107), + [sym_block] = STATE(2922), + [sym__literal] = STATE(2922), + [sym_string_literal] = STATE(3208), + [sym_raw_string_literal] = STATE(3208), + [sym_boolean_literal] = STATE(3208), + [sym_line_comment] = STATE(447), + [sym_block_comment] = STATE(447), + [aux_sym_function_modifiers_repeat1] = STATE(2519), [sym_identifier] = ACTIONS(1595), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -66221,76 +68480,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_GT] = ACTIONS(1607), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [sym_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1341), + [aux_sym_string_literal_token1] = ACTIONS(1353), [sym_char_literal] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), - [sym__raw_string_literal_start] = ACTIONS(1351), + [sym__raw_string_literal_start] = ACTIONS(1363), [sym_float_literal] = ACTIONS(1617), }, - [440] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2501), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(2502), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_type_binding] = STATE(2721), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_label] = STATE(3611), - [sym_block] = STATE(2721), - [sym__literal] = STATE(2721), - [sym_string_literal] = STATE(2814), - [sym_raw_string_literal] = STATE(2814), - [sym_boolean_literal] = STATE(2814), - [sym_line_comment] = STATE(440), - [sym_block_comment] = STATE(440), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [448] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2824), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(2823), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_type_binding] = STATE(2922), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_label] = STATE(4107), + [sym_block] = STATE(2922), + [sym__literal] = STATE(2922), + [sym_string_literal] = STATE(3208), + [sym_raw_string_literal] = STATE(3208), + [sym_boolean_literal] = STATE(3208), + [sym_line_comment] = STATE(448), + [sym_block_comment] = STATE(448), + [aux_sym_function_modifiers_repeat1] = STATE(2519), [sym_identifier] = ACTIONS(1595), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -66308,76 +68567,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_GT] = ACTIONS(1623), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [sym_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1341), + [aux_sym_string_literal_token1] = ACTIONS(1353), [sym_char_literal] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), - [sym__raw_string_literal_start] = ACTIONS(1351), + [sym__raw_string_literal_start] = ACTIONS(1363), [sym_float_literal] = ACTIONS(1617), }, - [441] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2501), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(2502), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_type_binding] = STATE(2721), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_label] = STATE(3611), - [sym_block] = STATE(2721), - [sym__literal] = STATE(2721), - [sym_string_literal] = STATE(2814), - [sym_raw_string_literal] = STATE(2814), - [sym_boolean_literal] = STATE(2814), - [sym_line_comment] = STATE(441), - [sym_block_comment] = STATE(441), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [449] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2824), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(2823), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_type_binding] = STATE(2922), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_label] = STATE(4107), + [sym_block] = STATE(2922), + [sym__literal] = STATE(2922), + [sym_string_literal] = STATE(3208), + [sym_raw_string_literal] = STATE(3208), + [sym_boolean_literal] = STATE(3208), + [sym_line_comment] = STATE(449), + [sym_block_comment] = STATE(449), + [aux_sym_function_modifiers_repeat1] = STATE(2519), [sym_identifier] = ACTIONS(1595), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -66395,76 +68654,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_GT] = ACTIONS(1625), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [sym_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1341), + [aux_sym_string_literal_token1] = ACTIONS(1353), [sym_char_literal] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), - [sym__raw_string_literal_start] = ACTIONS(1351), + [sym__raw_string_literal_start] = ACTIONS(1363), [sym_float_literal] = ACTIONS(1617), }, - [442] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2501), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(2502), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_type_binding] = STATE(2721), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_label] = STATE(3611), - [sym_block] = STATE(2721), - [sym__literal] = STATE(2721), - [sym_string_literal] = STATE(2814), - [sym_raw_string_literal] = STATE(2814), - [sym_boolean_literal] = STATE(2814), - [sym_line_comment] = STATE(442), - [sym_block_comment] = STATE(442), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [450] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2824), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(2823), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_type_binding] = STATE(2922), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_label] = STATE(4107), + [sym_block] = STATE(2922), + [sym__literal] = STATE(2922), + [sym_string_literal] = STATE(3208), + [sym_raw_string_literal] = STATE(3208), + [sym_boolean_literal] = STATE(3208), + [sym_line_comment] = STATE(450), + [sym_block_comment] = STATE(450), + [aux_sym_function_modifiers_repeat1] = STATE(2519), [sym_identifier] = ACTIONS(1595), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -66482,76 +68741,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_GT] = ACTIONS(1627), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [sym_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1341), + [aux_sym_string_literal_token1] = ACTIONS(1353), [sym_char_literal] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), - [sym__raw_string_literal_start] = ACTIONS(1351), + [sym__raw_string_literal_start] = ACTIONS(1363), [sym_float_literal] = ACTIONS(1617), }, - [443] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2501), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(2502), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_type_binding] = STATE(2721), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_label] = STATE(3611), - [sym_block] = STATE(2721), - [sym__literal] = STATE(2721), - [sym_string_literal] = STATE(2814), - [sym_raw_string_literal] = STATE(2814), - [sym_boolean_literal] = STATE(2814), - [sym_line_comment] = STATE(443), - [sym_block_comment] = STATE(443), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [451] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2824), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(2823), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_type_binding] = STATE(2922), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_label] = STATE(4107), + [sym_block] = STATE(2922), + [sym__literal] = STATE(2922), + [sym_string_literal] = STATE(3208), + [sym_raw_string_literal] = STATE(3208), + [sym_boolean_literal] = STATE(3208), + [sym_line_comment] = STATE(451), + [sym_block_comment] = STATE(451), + [aux_sym_function_modifiers_repeat1] = STATE(2519), [sym_identifier] = ACTIONS(1595), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -66569,76 +68828,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_GT] = ACTIONS(1629), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [sym_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1341), + [aux_sym_string_literal_token1] = ACTIONS(1353), [sym_char_literal] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), - [sym__raw_string_literal_start] = ACTIONS(1351), + [sym__raw_string_literal_start] = ACTIONS(1363), [sym_float_literal] = ACTIONS(1617), }, - [444] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2501), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(2502), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_type_binding] = STATE(2721), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_label] = STATE(3611), - [sym_block] = STATE(2721), - [sym__literal] = STATE(2721), - [sym_string_literal] = STATE(2814), - [sym_raw_string_literal] = STATE(2814), - [sym_boolean_literal] = STATE(2814), - [sym_line_comment] = STATE(444), - [sym_block_comment] = STATE(444), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [452] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2824), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(2823), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_type_binding] = STATE(2922), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_label] = STATE(4107), + [sym_block] = STATE(2922), + [sym__literal] = STATE(2922), + [sym_string_literal] = STATE(3208), + [sym_raw_string_literal] = STATE(3208), + [sym_boolean_literal] = STATE(3208), + [sym_line_comment] = STATE(452), + [sym_block_comment] = STATE(452), + [aux_sym_function_modifiers_repeat1] = STATE(2519), [sym_identifier] = ACTIONS(1595), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -66656,76 +68915,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_GT] = ACTIONS(1631), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [sym_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1341), + [aux_sym_string_literal_token1] = ACTIONS(1353), [sym_char_literal] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), - [sym__raw_string_literal_start] = ACTIONS(1351), + [sym__raw_string_literal_start] = ACTIONS(1363), [sym_float_literal] = ACTIONS(1617), }, - [445] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2501), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(2502), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_type_binding] = STATE(2721), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_label] = STATE(3611), - [sym_block] = STATE(2721), - [sym__literal] = STATE(2721), - [sym_string_literal] = STATE(2814), - [sym_raw_string_literal] = STATE(2814), - [sym_boolean_literal] = STATE(2814), - [sym_line_comment] = STATE(445), - [sym_block_comment] = STATE(445), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [453] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2824), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(2823), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_type_binding] = STATE(2922), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_label] = STATE(4107), + [sym_block] = STATE(2922), + [sym__literal] = STATE(2922), + [sym_string_literal] = STATE(3208), + [sym_raw_string_literal] = STATE(3208), + [sym_boolean_literal] = STATE(3208), + [sym_line_comment] = STATE(453), + [sym_block_comment] = STATE(453), + [aux_sym_function_modifiers_repeat1] = STATE(2519), [sym_identifier] = ACTIONS(1595), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -66743,76 +69002,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_GT] = ACTIONS(1633), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [sym_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1341), + [aux_sym_string_literal_token1] = ACTIONS(1353), [sym_char_literal] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), - [sym__raw_string_literal_start] = ACTIONS(1351), + [sym__raw_string_literal_start] = ACTIONS(1363), [sym_float_literal] = ACTIONS(1617), }, - [446] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2501), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(2502), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_type_binding] = STATE(2721), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_label] = STATE(3611), - [sym_block] = STATE(2721), - [sym__literal] = STATE(2721), - [sym_string_literal] = STATE(2814), - [sym_raw_string_literal] = STATE(2814), - [sym_boolean_literal] = STATE(2814), - [sym_line_comment] = STATE(446), - [sym_block_comment] = STATE(446), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [454] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2824), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(2823), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_type_binding] = STATE(2922), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_label] = STATE(4107), + [sym_block] = STATE(2922), + [sym__literal] = STATE(2922), + [sym_string_literal] = STATE(3208), + [sym_raw_string_literal] = STATE(3208), + [sym_boolean_literal] = STATE(3208), + [sym_line_comment] = STATE(454), + [sym_block_comment] = STATE(454), + [aux_sym_function_modifiers_repeat1] = STATE(2519), [sym_identifier] = ACTIONS(1595), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -66830,76 +69089,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_GT] = ACTIONS(1635), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [sym_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1341), + [aux_sym_string_literal_token1] = ACTIONS(1353), [sym_char_literal] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), - [sym__raw_string_literal_start] = ACTIONS(1351), + [sym__raw_string_literal_start] = ACTIONS(1363), [sym_float_literal] = ACTIONS(1617), }, - [447] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2501), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(2502), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_type_binding] = STATE(2721), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_label] = STATE(3611), - [sym_block] = STATE(2721), - [sym__literal] = STATE(2721), - [sym_string_literal] = STATE(2814), - [sym_raw_string_literal] = STATE(2814), - [sym_boolean_literal] = STATE(2814), - [sym_line_comment] = STATE(447), - [sym_block_comment] = STATE(447), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [455] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2824), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(2823), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_type_binding] = STATE(2922), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_label] = STATE(4107), + [sym_block] = STATE(2922), + [sym__literal] = STATE(2922), + [sym_string_literal] = STATE(3208), + [sym_raw_string_literal] = STATE(3208), + [sym_boolean_literal] = STATE(3208), + [sym_line_comment] = STATE(455), + [sym_block_comment] = STATE(455), + [aux_sym_function_modifiers_repeat1] = STATE(2519), [sym_identifier] = ACTIONS(1595), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -66917,76 +69176,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_GT] = ACTIONS(1637), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [sym_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1341), + [aux_sym_string_literal_token1] = ACTIONS(1353), [sym_char_literal] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), - [sym__raw_string_literal_start] = ACTIONS(1351), + [sym__raw_string_literal_start] = ACTIONS(1363), [sym_float_literal] = ACTIONS(1617), }, - [448] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2340), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(2341), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_type_binding] = STATE(2472), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_label] = STATE(3611), - [sym_block] = STATE(2472), - [sym__literal] = STATE(2472), - [sym_string_literal] = STATE(2814), - [sym_raw_string_literal] = STATE(2814), - [sym_boolean_literal] = STATE(2814), - [sym_line_comment] = STATE(448), - [sym_block_comment] = STATE(448), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [456] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2824), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(2823), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_type_binding] = STATE(2922), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_label] = STATE(4107), + [sym_block] = STATE(2922), + [sym__literal] = STATE(2922), + [sym_string_literal] = STATE(3208), + [sym_raw_string_literal] = STATE(3208), + [sym_boolean_literal] = STATE(3208), + [sym_line_comment] = STATE(456), + [sym_block_comment] = STATE(456), + [aux_sym_function_modifiers_repeat1] = STATE(2519), [sym_identifier] = ACTIONS(1595), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -67004,75 +69263,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [sym_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1341), + [aux_sym_string_literal_token1] = ACTIONS(1353), [sym_char_literal] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), - [sym__raw_string_literal_start] = ACTIONS(1351), + [sym__raw_string_literal_start] = ACTIONS(1363), [sym_float_literal] = ACTIONS(1617), }, - [449] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2501), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(2502), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_type_binding] = STATE(2721), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_label] = STATE(3611), - [sym_block] = STATE(2721), - [sym__literal] = STATE(2721), - [sym_string_literal] = STATE(2814), - [sym_raw_string_literal] = STATE(2814), - [sym_boolean_literal] = STATE(2814), - [sym_line_comment] = STATE(449), - [sym_block_comment] = STATE(449), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [457] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2629), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(2631), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_type_binding] = STATE(2849), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_label] = STATE(4107), + [sym_block] = STATE(2849), + [sym__literal] = STATE(2849), + [sym_string_literal] = STATE(3208), + [sym_raw_string_literal] = STATE(3208), + [sym_boolean_literal] = STATE(3208), + [sym_line_comment] = STATE(457), + [sym_block_comment] = STATE(457), + [aux_sym_function_modifiers_repeat1] = STATE(2519), [sym_identifier] = ACTIONS(1595), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -67090,75 +69349,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [sym_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1341), + [aux_sym_string_literal_token1] = ACTIONS(1353), [sym_char_literal] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), - [sym__raw_string_literal_start] = ACTIONS(1351), + [sym__raw_string_literal_start] = ACTIONS(1363), [sym_float_literal] = ACTIONS(1617), }, - [450] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2369), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(2370), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_type_binding] = STATE(2419), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_label] = STATE(3611), - [sym_block] = STATE(2419), - [sym__literal] = STATE(2419), - [sym_string_literal] = STATE(2814), - [sym_raw_string_literal] = STATE(2814), - [sym_boolean_literal] = STATE(2814), - [sym_line_comment] = STATE(450), - [sym_block_comment] = STATE(450), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [458] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2624), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(2625), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_type_binding] = STATE(2853), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_label] = STATE(4107), + [sym_block] = STATE(2853), + [sym__literal] = STATE(2853), + [sym_string_literal] = STATE(3208), + [sym_raw_string_literal] = STATE(3208), + [sym_boolean_literal] = STATE(3208), + [sym_line_comment] = STATE(458), + [sym_block_comment] = STATE(458), + [aux_sym_function_modifiers_repeat1] = STATE(2519), [sym_identifier] = ACTIONS(1595), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -67176,75 +69435,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [sym_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1341), + [aux_sym_string_literal_token1] = ACTIONS(1353), [sym_char_literal] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), - [sym__raw_string_literal_start] = ACTIONS(1351), + [sym__raw_string_literal_start] = ACTIONS(1363), [sym_float_literal] = ACTIONS(1617), }, - [451] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2339), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(2360), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_type_binding] = STATE(2503), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_label] = STATE(3611), - [sym_block] = STATE(2503), - [sym__literal] = STATE(2503), - [sym_string_literal] = STATE(2814), - [sym_raw_string_literal] = STATE(2814), - [sym_boolean_literal] = STATE(2814), - [sym_line_comment] = STATE(451), - [sym_block_comment] = STATE(451), - [aux_sym_function_modifiers_repeat1] = STATE(2239), + [459] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2685), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(2708), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_type_binding] = STATE(2766), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_label] = STATE(4107), + [sym_block] = STATE(2766), + [sym__literal] = STATE(2766), + [sym_string_literal] = STATE(3208), + [sym_raw_string_literal] = STATE(3208), + [sym_boolean_literal] = STATE(3208), + [sym_line_comment] = STATE(459), + [sym_block_comment] = STATE(459), + [aux_sym_function_modifiers_repeat1] = STATE(2519), [sym_identifier] = ACTIONS(1595), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -67262,40 +69521,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), [anon_sym_SQUOTE] = ACTIONS(1611), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [sym_integer_literal] = ACTIONS(1617), - [aux_sym_string_literal_token1] = ACTIONS(1341), + [aux_sym_string_literal_token1] = ACTIONS(1353), [sym_char_literal] = ACTIONS(1617), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), - [sym__raw_string_literal_start] = ACTIONS(1351), + [sym__raw_string_literal_start] = ACTIONS(1363), [sym_float_literal] = ACTIONS(1617), }, - [452] = { - [sym_else_clause] = STATE(481), - [sym_line_comment] = STATE(452), - [sym_block_comment] = STATE(452), + [460] = { + [sym_else_clause] = STATE(479), + [sym_line_comment] = STATE(460), + [sym_block_comment] = STATE(460), [sym_identifier] = ACTIONS(1253), [anon_sym_LPAREN] = ACTIONS(1251), [anon_sym_LBRACK] = ACTIONS(1251), @@ -67377,9 +69636,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1251), [sym_float_literal] = ACTIONS(1251), }, - [453] = { - [sym_line_comment] = STATE(453), - [sym_block_comment] = STATE(453), + [461] = { + [sym_line_comment] = STATE(461), + [sym_block_comment] = STATE(461), + [sym_identifier] = ACTIONS(1267), + [anon_sym_LPAREN] = ACTIONS(1265), + [anon_sym_LBRACK] = ACTIONS(1265), + [anon_sym_RBRACE] = ACTIONS(1265), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_STAR] = ACTIONS(1267), + [anon_sym_QMARK] = ACTIONS(1265), + [anon_sym_u8] = ACTIONS(1267), + [anon_sym_i8] = ACTIONS(1267), + [anon_sym_u16] = ACTIONS(1267), + [anon_sym_i16] = ACTIONS(1267), + [anon_sym_u32] = ACTIONS(1267), + [anon_sym_i32] = ACTIONS(1267), + [anon_sym_u64] = ACTIONS(1267), + [anon_sym_i64] = ACTIONS(1267), + [anon_sym_u128] = ACTIONS(1267), + [anon_sym_i128] = ACTIONS(1267), + [anon_sym_isize] = ACTIONS(1267), + [anon_sym_usize] = ACTIONS(1267), + [anon_sym_f32] = ACTIONS(1267), + [anon_sym_f64] = ACTIONS(1267), + [anon_sym_bool] = ACTIONS(1267), + [anon_sym_str] = ACTIONS(1267), + [anon_sym_char] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1267), + [anon_sym_SLASH] = ACTIONS(1267), + [anon_sym_PERCENT] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1267), + [anon_sym_PIPE] = ACTIONS(1267), + [anon_sym_AMP_AMP] = ACTIONS(1265), + [anon_sym_PIPE_PIPE] = ACTIONS(1265), + [anon_sym_LT_LT] = ACTIONS(1267), + [anon_sym_GT_GT] = ACTIONS(1267), + [anon_sym_PLUS_EQ] = ACTIONS(1265), + [anon_sym_DASH_EQ] = ACTIONS(1265), + [anon_sym_STAR_EQ] = ACTIONS(1265), + [anon_sym_SLASH_EQ] = ACTIONS(1265), + [anon_sym_PERCENT_EQ] = ACTIONS(1265), + [anon_sym_CARET_EQ] = ACTIONS(1265), + [anon_sym_AMP_EQ] = ACTIONS(1265), + [anon_sym_PIPE_EQ] = ACTIONS(1265), + [anon_sym_LT_LT_EQ] = ACTIONS(1265), + [anon_sym_GT_GT_EQ] = ACTIONS(1265), + [anon_sym_EQ] = ACTIONS(1267), + [anon_sym_EQ_EQ] = ACTIONS(1265), + [anon_sym_BANG_EQ] = ACTIONS(1265), + [anon_sym_GT] = ACTIONS(1267), + [anon_sym_LT] = ACTIONS(1267), + [anon_sym_GT_EQ] = ACTIONS(1265), + [anon_sym_LT_EQ] = ACTIONS(1265), + [anon_sym__] = ACTIONS(1267), + [anon_sym_DOT] = ACTIONS(1267), + [anon_sym_DOT_DOT] = ACTIONS(1267), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1265), + [anon_sym_COMMA] = ACTIONS(1265), + [anon_sym_COLON_COLON] = ACTIONS(1265), + [anon_sym_POUND] = ACTIONS(1265), + [anon_sym_as] = ACTIONS(1267), + [anon_sym_const] = ACTIONS(1267), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_gen] = ACTIONS(1267), + [anon_sym_union] = ACTIONS(1267), + [anon_sym_ref] = ACTIONS(1267), + [anon_sym_else] = ACTIONS(1267), + [sym_mutable_specifier] = ACTIONS(1267), + [sym_integer_literal] = ACTIONS(1265), + [aux_sym_string_literal_token1] = ACTIONS(1265), + [sym_char_literal] = ACTIONS(1265), + [anon_sym_true] = ACTIONS(1267), + [anon_sym_false] = ACTIONS(1267), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1267), + [sym_super] = ACTIONS(1267), + [sym_crate] = ACTIONS(1267), + [sym_metavariable] = ACTIONS(1265), + [sym__raw_string_literal_start] = ACTIONS(1265), + [sym_float_literal] = ACTIONS(1265), + }, + [462] = { + [sym_line_comment] = STATE(462), + [sym_block_comment] = STATE(462), [sym_identifier] = ACTIONS(1271), [anon_sym_LPAREN] = ACTIONS(1269), [anon_sym_LBRACK] = ACTIONS(1269), @@ -67461,93 +69804,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1269), [sym_float_literal] = ACTIONS(1269), }, - [454] = { - [sym_line_comment] = STATE(454), - [sym_block_comment] = STATE(454), - [sym_identifier] = ACTIONS(1259), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_LBRACK] = ACTIONS(1257), - [anon_sym_RBRACE] = ACTIONS(1257), - [anon_sym_PLUS] = ACTIONS(1259), - [anon_sym_STAR] = ACTIONS(1259), - [anon_sym_QMARK] = ACTIONS(1257), - [anon_sym_u8] = ACTIONS(1259), - [anon_sym_i8] = ACTIONS(1259), - [anon_sym_u16] = ACTIONS(1259), - [anon_sym_i16] = ACTIONS(1259), - [anon_sym_u32] = ACTIONS(1259), - [anon_sym_i32] = ACTIONS(1259), - [anon_sym_u64] = ACTIONS(1259), - [anon_sym_i64] = ACTIONS(1259), - [anon_sym_u128] = ACTIONS(1259), - [anon_sym_i128] = ACTIONS(1259), - [anon_sym_isize] = ACTIONS(1259), - [anon_sym_usize] = ACTIONS(1259), - [anon_sym_f32] = ACTIONS(1259), - [anon_sym_f64] = ACTIONS(1259), - [anon_sym_bool] = ACTIONS(1259), - [anon_sym_str] = ACTIONS(1259), - [anon_sym_char] = ACTIONS(1259), - [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_SLASH] = ACTIONS(1259), - [anon_sym_PERCENT] = ACTIONS(1259), - [anon_sym_CARET] = ACTIONS(1259), - [anon_sym_AMP] = ACTIONS(1259), - [anon_sym_PIPE] = ACTIONS(1259), - [anon_sym_AMP_AMP] = ACTIONS(1257), - [anon_sym_PIPE_PIPE] = ACTIONS(1257), - [anon_sym_LT_LT] = ACTIONS(1259), - [anon_sym_GT_GT] = ACTIONS(1259), - [anon_sym_PLUS_EQ] = ACTIONS(1257), - [anon_sym_DASH_EQ] = ACTIONS(1257), - [anon_sym_STAR_EQ] = ACTIONS(1257), - [anon_sym_SLASH_EQ] = ACTIONS(1257), - [anon_sym_PERCENT_EQ] = ACTIONS(1257), - [anon_sym_CARET_EQ] = ACTIONS(1257), - [anon_sym_AMP_EQ] = ACTIONS(1257), - [anon_sym_PIPE_EQ] = ACTIONS(1257), - [anon_sym_LT_LT_EQ] = ACTIONS(1257), - [anon_sym_GT_GT_EQ] = ACTIONS(1257), - [anon_sym_EQ] = ACTIONS(1259), - [anon_sym_EQ_EQ] = ACTIONS(1257), - [anon_sym_BANG_EQ] = ACTIONS(1257), - [anon_sym_GT] = ACTIONS(1259), - [anon_sym_LT] = ACTIONS(1259), - [anon_sym_GT_EQ] = ACTIONS(1257), - [anon_sym_LT_EQ] = ACTIONS(1257), - [anon_sym__] = ACTIONS(1259), - [anon_sym_DOT] = ACTIONS(1259), - [anon_sym_DOT_DOT] = ACTIONS(1259), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1257), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1257), - [anon_sym_COMMA] = ACTIONS(1257), - [anon_sym_COLON_COLON] = ACTIONS(1257), - [anon_sym_POUND] = ACTIONS(1257), - [anon_sym_as] = ACTIONS(1259), - [anon_sym_const] = ACTIONS(1259), - [anon_sym_default] = ACTIONS(1259), - [anon_sym_gen] = ACTIONS(1259), - [anon_sym_union] = ACTIONS(1259), - [anon_sym_ref] = ACTIONS(1259), - [anon_sym_else] = ACTIONS(1259), - [sym_mutable_specifier] = ACTIONS(1259), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1257), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1259), - [sym_super] = ACTIONS(1259), - [sym_crate] = ACTIONS(1259), - [sym_metavariable] = ACTIONS(1257), - [sym__raw_string_literal_start] = ACTIONS(1257), - [sym_float_literal] = ACTIONS(1257), - }, - [455] = { - [sym_line_comment] = STATE(455), - [sym_block_comment] = STATE(455), + [463] = { + [sym_line_comment] = STATE(463), + [sym_block_comment] = STATE(463), [sym_identifier] = ACTIONS(1263), [anon_sym_LPAREN] = ACTIONS(1261), [anon_sym_LBRACK] = ACTIONS(1261), @@ -67629,9 +69888,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1261), [sym_float_literal] = ACTIONS(1261), }, - [456] = { - [sym_line_comment] = STATE(456), - [sym_block_comment] = STATE(456), + [464] = { + [sym_line_comment] = STATE(464), + [sym_block_comment] = STATE(464), + [sym_identifier] = ACTIONS(1259), + [anon_sym_LPAREN] = ACTIONS(1257), + [anon_sym_LBRACK] = ACTIONS(1257), + [anon_sym_RBRACE] = ACTIONS(1257), + [anon_sym_PLUS] = ACTIONS(1259), + [anon_sym_STAR] = ACTIONS(1259), + [anon_sym_QMARK] = ACTIONS(1257), + [anon_sym_u8] = ACTIONS(1259), + [anon_sym_i8] = ACTIONS(1259), + [anon_sym_u16] = ACTIONS(1259), + [anon_sym_i16] = ACTIONS(1259), + [anon_sym_u32] = ACTIONS(1259), + [anon_sym_i32] = ACTIONS(1259), + [anon_sym_u64] = ACTIONS(1259), + [anon_sym_i64] = ACTIONS(1259), + [anon_sym_u128] = ACTIONS(1259), + [anon_sym_i128] = ACTIONS(1259), + [anon_sym_isize] = ACTIONS(1259), + [anon_sym_usize] = ACTIONS(1259), + [anon_sym_f32] = ACTIONS(1259), + [anon_sym_f64] = ACTIONS(1259), + [anon_sym_bool] = ACTIONS(1259), + [anon_sym_str] = ACTIONS(1259), + [anon_sym_char] = ACTIONS(1259), + [anon_sym_DASH] = ACTIONS(1259), + [anon_sym_SLASH] = ACTIONS(1259), + [anon_sym_PERCENT] = ACTIONS(1259), + [anon_sym_CARET] = ACTIONS(1259), + [anon_sym_AMP] = ACTIONS(1259), + [anon_sym_PIPE] = ACTIONS(1259), + [anon_sym_AMP_AMP] = ACTIONS(1257), + [anon_sym_PIPE_PIPE] = ACTIONS(1257), + [anon_sym_LT_LT] = ACTIONS(1259), + [anon_sym_GT_GT] = ACTIONS(1259), + [anon_sym_PLUS_EQ] = ACTIONS(1257), + [anon_sym_DASH_EQ] = ACTIONS(1257), + [anon_sym_STAR_EQ] = ACTIONS(1257), + [anon_sym_SLASH_EQ] = ACTIONS(1257), + [anon_sym_PERCENT_EQ] = ACTIONS(1257), + [anon_sym_CARET_EQ] = ACTIONS(1257), + [anon_sym_AMP_EQ] = ACTIONS(1257), + [anon_sym_PIPE_EQ] = ACTIONS(1257), + [anon_sym_LT_LT_EQ] = ACTIONS(1257), + [anon_sym_GT_GT_EQ] = ACTIONS(1257), + [anon_sym_EQ] = ACTIONS(1259), + [anon_sym_EQ_EQ] = ACTIONS(1257), + [anon_sym_BANG_EQ] = ACTIONS(1257), + [anon_sym_GT] = ACTIONS(1259), + [anon_sym_LT] = ACTIONS(1259), + [anon_sym_GT_EQ] = ACTIONS(1257), + [anon_sym_LT_EQ] = ACTIONS(1257), + [anon_sym__] = ACTIONS(1259), + [anon_sym_DOT] = ACTIONS(1259), + [anon_sym_DOT_DOT] = ACTIONS(1259), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1257), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1257), + [anon_sym_COMMA] = ACTIONS(1257), + [anon_sym_COLON_COLON] = ACTIONS(1257), + [anon_sym_POUND] = ACTIONS(1257), + [anon_sym_as] = ACTIONS(1259), + [anon_sym_const] = ACTIONS(1259), + [anon_sym_default] = ACTIONS(1259), + [anon_sym_gen] = ACTIONS(1259), + [anon_sym_union] = ACTIONS(1259), + [anon_sym_ref] = ACTIONS(1259), + [anon_sym_else] = ACTIONS(1259), + [sym_mutable_specifier] = ACTIONS(1259), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1257), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1259), + [anon_sym_false] = ACTIONS(1259), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1259), + [sym_super] = ACTIONS(1259), + [sym_crate] = ACTIONS(1259), + [sym_metavariable] = ACTIONS(1257), + [sym__raw_string_literal_start] = ACTIONS(1257), + [sym_float_literal] = ACTIONS(1257), + }, + [465] = { + [sym_line_comment] = STATE(465), + [sym_block_comment] = STATE(465), [sym_identifier] = ACTIONS(1275), [anon_sym_LPAREN] = ACTIONS(1273), [anon_sym_LBRACK] = ACTIONS(1273), @@ -67713,432 +70056,431 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1273), [sym_float_literal] = ACTIONS(1273), }, - [457] = { - [sym_line_comment] = STATE(457), - [sym_block_comment] = STATE(457), - [sym_identifier] = ACTIONS(1267), - [anon_sym_LPAREN] = ACTIONS(1265), - [anon_sym_LBRACK] = ACTIONS(1265), - [anon_sym_RBRACE] = ACTIONS(1265), - [anon_sym_PLUS] = ACTIONS(1267), - [anon_sym_STAR] = ACTIONS(1267), - [anon_sym_QMARK] = ACTIONS(1265), - [anon_sym_u8] = ACTIONS(1267), - [anon_sym_i8] = ACTIONS(1267), - [anon_sym_u16] = ACTIONS(1267), - [anon_sym_i16] = ACTIONS(1267), - [anon_sym_u32] = ACTIONS(1267), - [anon_sym_i32] = ACTIONS(1267), - [anon_sym_u64] = ACTIONS(1267), - [anon_sym_i64] = ACTIONS(1267), - [anon_sym_u128] = ACTIONS(1267), - [anon_sym_i128] = ACTIONS(1267), - [anon_sym_isize] = ACTIONS(1267), - [anon_sym_usize] = ACTIONS(1267), - [anon_sym_f32] = ACTIONS(1267), - [anon_sym_f64] = ACTIONS(1267), - [anon_sym_bool] = ACTIONS(1267), - [anon_sym_str] = ACTIONS(1267), - [anon_sym_char] = ACTIONS(1267), - [anon_sym_DASH] = ACTIONS(1267), - [anon_sym_SLASH] = ACTIONS(1267), - [anon_sym_PERCENT] = ACTIONS(1267), - [anon_sym_CARET] = ACTIONS(1267), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_PIPE] = ACTIONS(1267), - [anon_sym_AMP_AMP] = ACTIONS(1265), - [anon_sym_PIPE_PIPE] = ACTIONS(1265), - [anon_sym_LT_LT] = ACTIONS(1267), - [anon_sym_GT_GT] = ACTIONS(1267), - [anon_sym_PLUS_EQ] = ACTIONS(1265), - [anon_sym_DASH_EQ] = ACTIONS(1265), - [anon_sym_STAR_EQ] = ACTIONS(1265), - [anon_sym_SLASH_EQ] = ACTIONS(1265), - [anon_sym_PERCENT_EQ] = ACTIONS(1265), - [anon_sym_CARET_EQ] = ACTIONS(1265), - [anon_sym_AMP_EQ] = ACTIONS(1265), - [anon_sym_PIPE_EQ] = ACTIONS(1265), - [anon_sym_LT_LT_EQ] = ACTIONS(1265), - [anon_sym_GT_GT_EQ] = ACTIONS(1265), - [anon_sym_EQ] = ACTIONS(1267), - [anon_sym_EQ_EQ] = ACTIONS(1265), - [anon_sym_BANG_EQ] = ACTIONS(1265), - [anon_sym_GT] = ACTIONS(1267), - [anon_sym_LT] = ACTIONS(1267), - [anon_sym_GT_EQ] = ACTIONS(1265), - [anon_sym_LT_EQ] = ACTIONS(1265), - [anon_sym__] = ACTIONS(1267), - [anon_sym_DOT] = ACTIONS(1267), - [anon_sym_DOT_DOT] = ACTIONS(1267), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1265), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1265), - [anon_sym_COMMA] = ACTIONS(1265), - [anon_sym_COLON_COLON] = ACTIONS(1265), - [anon_sym_POUND] = ACTIONS(1265), - [anon_sym_as] = ACTIONS(1267), - [anon_sym_const] = ACTIONS(1267), - [anon_sym_default] = ACTIONS(1267), - [anon_sym_gen] = ACTIONS(1267), - [anon_sym_union] = ACTIONS(1267), - [anon_sym_ref] = ACTIONS(1267), - [anon_sym_else] = ACTIONS(1267), - [sym_mutable_specifier] = ACTIONS(1267), - [sym_integer_literal] = ACTIONS(1265), - [aux_sym_string_literal_token1] = ACTIONS(1265), - [sym_char_literal] = ACTIONS(1265), - [anon_sym_true] = ACTIONS(1267), - [anon_sym_false] = ACTIONS(1267), + [466] = { + [sym_line_comment] = STATE(466), + [sym_block_comment] = STATE(466), + [sym_identifier] = ACTIONS(1417), + [anon_sym_LPAREN] = ACTIONS(1415), + [anon_sym_LBRACK] = ACTIONS(1415), + [anon_sym_RBRACE] = ACTIONS(1415), + [anon_sym_PLUS] = ACTIONS(1417), + [anon_sym_STAR] = ACTIONS(1417), + [anon_sym_QMARK] = ACTIONS(1415), + [anon_sym_u8] = ACTIONS(1417), + [anon_sym_i8] = ACTIONS(1417), + [anon_sym_u16] = ACTIONS(1417), + [anon_sym_i16] = ACTIONS(1417), + [anon_sym_u32] = ACTIONS(1417), + [anon_sym_i32] = ACTIONS(1417), + [anon_sym_u64] = ACTIONS(1417), + [anon_sym_i64] = ACTIONS(1417), + [anon_sym_u128] = ACTIONS(1417), + [anon_sym_i128] = ACTIONS(1417), + [anon_sym_isize] = ACTIONS(1417), + [anon_sym_usize] = ACTIONS(1417), + [anon_sym_f32] = ACTIONS(1417), + [anon_sym_f64] = ACTIONS(1417), + [anon_sym_bool] = ACTIONS(1417), + [anon_sym_str] = ACTIONS(1417), + [anon_sym_char] = ACTIONS(1417), + [anon_sym_DASH] = ACTIONS(1417), + [anon_sym_SLASH] = ACTIONS(1417), + [anon_sym_PERCENT] = ACTIONS(1417), + [anon_sym_CARET] = ACTIONS(1417), + [anon_sym_AMP] = ACTIONS(1417), + [anon_sym_PIPE] = ACTIONS(1417), + [anon_sym_AMP_AMP] = ACTIONS(1415), + [anon_sym_PIPE_PIPE] = ACTIONS(1415), + [anon_sym_LT_LT] = ACTIONS(1417), + [anon_sym_GT_GT] = ACTIONS(1417), + [anon_sym_PLUS_EQ] = ACTIONS(1415), + [anon_sym_DASH_EQ] = ACTIONS(1415), + [anon_sym_STAR_EQ] = ACTIONS(1415), + [anon_sym_SLASH_EQ] = ACTIONS(1415), + [anon_sym_PERCENT_EQ] = ACTIONS(1415), + [anon_sym_CARET_EQ] = ACTIONS(1415), + [anon_sym_AMP_EQ] = ACTIONS(1415), + [anon_sym_PIPE_EQ] = ACTIONS(1415), + [anon_sym_LT_LT_EQ] = ACTIONS(1415), + [anon_sym_GT_GT_EQ] = ACTIONS(1415), + [anon_sym_EQ] = ACTIONS(1417), + [anon_sym_EQ_EQ] = ACTIONS(1415), + [anon_sym_BANG_EQ] = ACTIONS(1415), + [anon_sym_GT] = ACTIONS(1417), + [anon_sym_LT] = ACTIONS(1417), + [anon_sym_GT_EQ] = ACTIONS(1415), + [anon_sym_LT_EQ] = ACTIONS(1415), + [anon_sym__] = ACTIONS(1417), + [anon_sym_DOT] = ACTIONS(1417), + [anon_sym_DOT_DOT] = ACTIONS(1417), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1415), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1415), + [anon_sym_COMMA] = ACTIONS(1415), + [anon_sym_COLON_COLON] = ACTIONS(1415), + [anon_sym_POUND] = ACTIONS(1415), + [anon_sym_as] = ACTIONS(1417), + [anon_sym_const] = ACTIONS(1417), + [anon_sym_default] = ACTIONS(1417), + [anon_sym_gen] = ACTIONS(1417), + [anon_sym_union] = ACTIONS(1417), + [anon_sym_ref] = ACTIONS(1417), + [sym_mutable_specifier] = ACTIONS(1417), + [sym_integer_literal] = ACTIONS(1415), + [aux_sym_string_literal_token1] = ACTIONS(1415), + [sym_char_literal] = ACTIONS(1415), + [anon_sym_true] = ACTIONS(1417), + [anon_sym_false] = ACTIONS(1417), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1267), - [sym_super] = ACTIONS(1267), - [sym_crate] = ACTIONS(1267), - [sym_metavariable] = ACTIONS(1265), - [sym__raw_string_literal_start] = ACTIONS(1265), - [sym_float_literal] = ACTIONS(1265), + [sym_self] = ACTIONS(1417), + [sym_super] = ACTIONS(1417), + [sym_crate] = ACTIONS(1417), + [sym_metavariable] = ACTIONS(1415), + [sym__raw_string_literal_start] = ACTIONS(1415), + [sym_float_literal] = ACTIONS(1415), }, - [458] = { - [sym_line_comment] = STATE(458), - [sym_block_comment] = STATE(458), - [sym_identifier] = ACTIONS(1397), - [anon_sym_LPAREN] = ACTIONS(1395), - [anon_sym_LBRACK] = ACTIONS(1395), - [anon_sym_RBRACE] = ACTIONS(1395), - [anon_sym_PLUS] = ACTIONS(1397), - [anon_sym_STAR] = ACTIONS(1397), - [anon_sym_QMARK] = ACTIONS(1395), - [anon_sym_u8] = ACTIONS(1397), - [anon_sym_i8] = ACTIONS(1397), - [anon_sym_u16] = ACTIONS(1397), - [anon_sym_i16] = ACTIONS(1397), - [anon_sym_u32] = ACTIONS(1397), - [anon_sym_i32] = ACTIONS(1397), - [anon_sym_u64] = ACTIONS(1397), - [anon_sym_i64] = ACTIONS(1397), - [anon_sym_u128] = ACTIONS(1397), - [anon_sym_i128] = ACTIONS(1397), - [anon_sym_isize] = ACTIONS(1397), - [anon_sym_usize] = ACTIONS(1397), - [anon_sym_f32] = ACTIONS(1397), - [anon_sym_f64] = ACTIONS(1397), - [anon_sym_bool] = ACTIONS(1397), - [anon_sym_str] = ACTIONS(1397), - [anon_sym_char] = ACTIONS(1397), - [anon_sym_DASH] = ACTIONS(1397), - [anon_sym_SLASH] = ACTIONS(1397), - [anon_sym_PERCENT] = ACTIONS(1397), - [anon_sym_CARET] = ACTIONS(1397), - [anon_sym_AMP] = ACTIONS(1397), - [anon_sym_PIPE] = ACTIONS(1397), - [anon_sym_AMP_AMP] = ACTIONS(1395), - [anon_sym_PIPE_PIPE] = ACTIONS(1395), - [anon_sym_LT_LT] = ACTIONS(1397), - [anon_sym_GT_GT] = ACTIONS(1397), - [anon_sym_PLUS_EQ] = ACTIONS(1395), - [anon_sym_DASH_EQ] = ACTIONS(1395), - [anon_sym_STAR_EQ] = ACTIONS(1395), - [anon_sym_SLASH_EQ] = ACTIONS(1395), - [anon_sym_PERCENT_EQ] = ACTIONS(1395), - [anon_sym_CARET_EQ] = ACTIONS(1395), - [anon_sym_AMP_EQ] = ACTIONS(1395), - [anon_sym_PIPE_EQ] = ACTIONS(1395), - [anon_sym_LT_LT_EQ] = ACTIONS(1395), - [anon_sym_GT_GT_EQ] = ACTIONS(1395), - [anon_sym_EQ] = ACTIONS(1397), - [anon_sym_EQ_EQ] = ACTIONS(1395), - [anon_sym_BANG_EQ] = ACTIONS(1395), - [anon_sym_GT] = ACTIONS(1397), - [anon_sym_LT] = ACTIONS(1397), - [anon_sym_GT_EQ] = ACTIONS(1395), - [anon_sym_LT_EQ] = ACTIONS(1395), - [anon_sym__] = ACTIONS(1397), - [anon_sym_DOT] = ACTIONS(1397), - [anon_sym_DOT_DOT] = ACTIONS(1397), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1395), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1395), - [anon_sym_COMMA] = ACTIONS(1395), - [anon_sym_COLON_COLON] = ACTIONS(1395), - [anon_sym_POUND] = ACTIONS(1395), - [anon_sym_as] = ACTIONS(1397), - [anon_sym_const] = ACTIONS(1397), - [anon_sym_default] = ACTIONS(1397), - [anon_sym_gen] = ACTIONS(1397), - [anon_sym_union] = ACTIONS(1397), - [anon_sym_ref] = ACTIONS(1397), - [sym_mutable_specifier] = ACTIONS(1397), - [sym_integer_literal] = ACTIONS(1395), - [aux_sym_string_literal_token1] = ACTIONS(1395), - [sym_char_literal] = ACTIONS(1395), - [anon_sym_true] = ACTIONS(1397), - [anon_sym_false] = ACTIONS(1397), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1397), - [sym_super] = ACTIONS(1397), - [sym_crate] = ACTIONS(1397), - [sym_metavariable] = ACTIONS(1395), - [sym__raw_string_literal_start] = ACTIONS(1395), - [sym_float_literal] = ACTIONS(1395), + [467] = { + [sym_line_comment] = STATE(467), + [sym_block_comment] = STATE(467), + [sym_identifier] = ACTIONS(1479), + [anon_sym_LPAREN] = ACTIONS(1477), + [anon_sym_LBRACK] = ACTIONS(1477), + [anon_sym_RBRACE] = ACTIONS(1477), + [anon_sym_PLUS] = ACTIONS(1479), + [anon_sym_STAR] = ACTIONS(1479), + [anon_sym_QMARK] = ACTIONS(1477), + [anon_sym_u8] = ACTIONS(1479), + [anon_sym_i8] = ACTIONS(1479), + [anon_sym_u16] = ACTIONS(1479), + [anon_sym_i16] = ACTIONS(1479), + [anon_sym_u32] = ACTIONS(1479), + [anon_sym_i32] = ACTIONS(1479), + [anon_sym_u64] = ACTIONS(1479), + [anon_sym_i64] = ACTIONS(1479), + [anon_sym_u128] = ACTIONS(1479), + [anon_sym_i128] = ACTIONS(1479), + [anon_sym_isize] = ACTIONS(1479), + [anon_sym_usize] = ACTIONS(1479), + [anon_sym_f32] = ACTIONS(1479), + [anon_sym_f64] = ACTIONS(1479), + [anon_sym_bool] = ACTIONS(1479), + [anon_sym_str] = ACTIONS(1479), + [anon_sym_char] = ACTIONS(1479), + [anon_sym_DASH] = ACTIONS(1479), + [anon_sym_SLASH] = ACTIONS(1479), + [anon_sym_PERCENT] = ACTIONS(1479), + [anon_sym_CARET] = ACTIONS(1479), + [anon_sym_AMP] = ACTIONS(1479), + [anon_sym_PIPE] = ACTIONS(1479), + [anon_sym_AMP_AMP] = ACTIONS(1477), + [anon_sym_PIPE_PIPE] = ACTIONS(1477), + [anon_sym_LT_LT] = ACTIONS(1479), + [anon_sym_GT_GT] = ACTIONS(1479), + [anon_sym_PLUS_EQ] = ACTIONS(1477), + [anon_sym_DASH_EQ] = ACTIONS(1477), + [anon_sym_STAR_EQ] = ACTIONS(1477), + [anon_sym_SLASH_EQ] = ACTIONS(1477), + [anon_sym_PERCENT_EQ] = ACTIONS(1477), + [anon_sym_CARET_EQ] = ACTIONS(1477), + [anon_sym_AMP_EQ] = ACTIONS(1477), + [anon_sym_PIPE_EQ] = ACTIONS(1477), + [anon_sym_LT_LT_EQ] = ACTIONS(1477), + [anon_sym_GT_GT_EQ] = ACTIONS(1477), + [anon_sym_EQ] = ACTIONS(1479), + [anon_sym_EQ_EQ] = ACTIONS(1477), + [anon_sym_BANG_EQ] = ACTIONS(1477), + [anon_sym_GT] = ACTIONS(1479), + [anon_sym_LT] = ACTIONS(1479), + [anon_sym_GT_EQ] = ACTIONS(1477), + [anon_sym_LT_EQ] = ACTIONS(1477), + [anon_sym__] = ACTIONS(1479), + [anon_sym_DOT] = ACTIONS(1479), + [anon_sym_DOT_DOT] = ACTIONS(1479), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1477), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1477), + [anon_sym_COMMA] = ACTIONS(1477), + [anon_sym_COLON_COLON] = ACTIONS(1477), + [anon_sym_POUND] = ACTIONS(1477), + [anon_sym_as] = ACTIONS(1479), + [anon_sym_const] = ACTIONS(1479), + [anon_sym_default] = ACTIONS(1479), + [anon_sym_gen] = ACTIONS(1479), + [anon_sym_union] = ACTIONS(1479), + [anon_sym_ref] = ACTIONS(1479), + [sym_mutable_specifier] = ACTIONS(1479), + [sym_integer_literal] = ACTIONS(1477), + [aux_sym_string_literal_token1] = ACTIONS(1477), + [sym_char_literal] = ACTIONS(1477), + [anon_sym_true] = ACTIONS(1479), + [anon_sym_false] = ACTIONS(1479), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1479), + [sym_super] = ACTIONS(1479), + [sym_crate] = ACTIONS(1479), + [sym_metavariable] = ACTIONS(1477), + [sym__raw_string_literal_start] = ACTIONS(1477), + [sym_float_literal] = ACTIONS(1477), }, - [459] = { - [sym_line_comment] = STATE(459), - [sym_block_comment] = STATE(459), - [sym_identifier] = ACTIONS(1485), - [anon_sym_LPAREN] = ACTIONS(1483), - [anon_sym_LBRACK] = ACTIONS(1483), - [anon_sym_RBRACE] = ACTIONS(1483), - [anon_sym_PLUS] = ACTIONS(1485), - [anon_sym_STAR] = ACTIONS(1485), - [anon_sym_QMARK] = ACTIONS(1483), - [anon_sym_u8] = ACTIONS(1485), - [anon_sym_i8] = ACTIONS(1485), - [anon_sym_u16] = ACTIONS(1485), - [anon_sym_i16] = ACTIONS(1485), - [anon_sym_u32] = ACTIONS(1485), - [anon_sym_i32] = ACTIONS(1485), - [anon_sym_u64] = ACTIONS(1485), - [anon_sym_i64] = ACTIONS(1485), - [anon_sym_u128] = ACTIONS(1485), - [anon_sym_i128] = ACTIONS(1485), - [anon_sym_isize] = ACTIONS(1485), - [anon_sym_usize] = ACTIONS(1485), - [anon_sym_f32] = ACTIONS(1485), - [anon_sym_f64] = ACTIONS(1485), - [anon_sym_bool] = ACTIONS(1485), - [anon_sym_str] = ACTIONS(1485), - [anon_sym_char] = ACTIONS(1485), - [anon_sym_DASH] = ACTIONS(1485), - [anon_sym_SLASH] = ACTIONS(1485), - [anon_sym_PERCENT] = ACTIONS(1485), - [anon_sym_CARET] = ACTIONS(1485), - [anon_sym_AMP] = ACTIONS(1485), - [anon_sym_PIPE] = ACTIONS(1485), - [anon_sym_AMP_AMP] = ACTIONS(1483), - [anon_sym_PIPE_PIPE] = ACTIONS(1483), - [anon_sym_LT_LT] = ACTIONS(1485), - [anon_sym_GT_GT] = ACTIONS(1485), - [anon_sym_PLUS_EQ] = ACTIONS(1483), - [anon_sym_DASH_EQ] = ACTIONS(1483), - [anon_sym_STAR_EQ] = ACTIONS(1483), - [anon_sym_SLASH_EQ] = ACTIONS(1483), - [anon_sym_PERCENT_EQ] = ACTIONS(1483), - [anon_sym_CARET_EQ] = ACTIONS(1483), - [anon_sym_AMP_EQ] = ACTIONS(1483), - [anon_sym_PIPE_EQ] = ACTIONS(1483), - [anon_sym_LT_LT_EQ] = ACTIONS(1483), - [anon_sym_GT_GT_EQ] = ACTIONS(1483), - [anon_sym_EQ] = ACTIONS(1485), - [anon_sym_EQ_EQ] = ACTIONS(1483), - [anon_sym_BANG_EQ] = ACTIONS(1483), - [anon_sym_GT] = ACTIONS(1485), - [anon_sym_LT] = ACTIONS(1485), - [anon_sym_GT_EQ] = ACTIONS(1483), - [anon_sym_LT_EQ] = ACTIONS(1483), - [anon_sym__] = ACTIONS(1485), - [anon_sym_DOT] = ACTIONS(1485), - [anon_sym_DOT_DOT] = ACTIONS(1485), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1483), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1483), - [anon_sym_COMMA] = ACTIONS(1483), - [anon_sym_COLON_COLON] = ACTIONS(1483), - [anon_sym_POUND] = ACTIONS(1483), - [anon_sym_as] = ACTIONS(1485), - [anon_sym_const] = ACTIONS(1485), - [anon_sym_default] = ACTIONS(1485), - [anon_sym_gen] = ACTIONS(1485), - [anon_sym_union] = ACTIONS(1485), - [anon_sym_ref] = ACTIONS(1485), - [sym_mutable_specifier] = ACTIONS(1485), - [sym_integer_literal] = ACTIONS(1483), - [aux_sym_string_literal_token1] = ACTIONS(1483), - [sym_char_literal] = ACTIONS(1483), - [anon_sym_true] = ACTIONS(1485), - [anon_sym_false] = ACTIONS(1485), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1485), - [sym_super] = ACTIONS(1485), - [sym_crate] = ACTIONS(1485), - [sym_metavariable] = ACTIONS(1483), - [sym__raw_string_literal_start] = ACTIONS(1483), - [sym_float_literal] = ACTIONS(1483), + [468] = { + [sym_line_comment] = STATE(468), + [sym_block_comment] = STATE(468), + [sym_identifier] = ACTIONS(1435), + [anon_sym_LPAREN] = ACTIONS(1433), + [anon_sym_LBRACK] = ACTIONS(1433), + [anon_sym_RBRACE] = ACTIONS(1433), + [anon_sym_PLUS] = ACTIONS(1435), + [anon_sym_STAR] = ACTIONS(1435), + [anon_sym_QMARK] = ACTIONS(1433), + [anon_sym_u8] = ACTIONS(1435), + [anon_sym_i8] = ACTIONS(1435), + [anon_sym_u16] = ACTIONS(1435), + [anon_sym_i16] = ACTIONS(1435), + [anon_sym_u32] = ACTIONS(1435), + [anon_sym_i32] = ACTIONS(1435), + [anon_sym_u64] = ACTIONS(1435), + [anon_sym_i64] = ACTIONS(1435), + [anon_sym_u128] = ACTIONS(1435), + [anon_sym_i128] = ACTIONS(1435), + [anon_sym_isize] = ACTIONS(1435), + [anon_sym_usize] = ACTIONS(1435), + [anon_sym_f32] = ACTIONS(1435), + [anon_sym_f64] = ACTIONS(1435), + [anon_sym_bool] = ACTIONS(1435), + [anon_sym_str] = ACTIONS(1435), + [anon_sym_char] = ACTIONS(1435), + [anon_sym_DASH] = ACTIONS(1435), + [anon_sym_SLASH] = ACTIONS(1435), + [anon_sym_PERCENT] = ACTIONS(1435), + [anon_sym_CARET] = ACTIONS(1435), + [anon_sym_AMP] = ACTIONS(1435), + [anon_sym_PIPE] = ACTIONS(1435), + [anon_sym_AMP_AMP] = ACTIONS(1433), + [anon_sym_PIPE_PIPE] = ACTIONS(1433), + [anon_sym_LT_LT] = ACTIONS(1435), + [anon_sym_GT_GT] = ACTIONS(1435), + [anon_sym_PLUS_EQ] = ACTIONS(1433), + [anon_sym_DASH_EQ] = ACTIONS(1433), + [anon_sym_STAR_EQ] = ACTIONS(1433), + [anon_sym_SLASH_EQ] = ACTIONS(1433), + [anon_sym_PERCENT_EQ] = ACTIONS(1433), + [anon_sym_CARET_EQ] = ACTIONS(1433), + [anon_sym_AMP_EQ] = ACTIONS(1433), + [anon_sym_PIPE_EQ] = ACTIONS(1433), + [anon_sym_LT_LT_EQ] = ACTIONS(1433), + [anon_sym_GT_GT_EQ] = ACTIONS(1433), + [anon_sym_EQ] = ACTIONS(1435), + [anon_sym_EQ_EQ] = ACTIONS(1433), + [anon_sym_BANG_EQ] = ACTIONS(1433), + [anon_sym_GT] = ACTIONS(1435), + [anon_sym_LT] = ACTIONS(1435), + [anon_sym_GT_EQ] = ACTIONS(1433), + [anon_sym_LT_EQ] = ACTIONS(1433), + [anon_sym__] = ACTIONS(1435), + [anon_sym_DOT] = ACTIONS(1435), + [anon_sym_DOT_DOT] = ACTIONS(1435), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1433), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1433), + [anon_sym_COMMA] = ACTIONS(1433), + [anon_sym_COLON_COLON] = ACTIONS(1433), + [anon_sym_POUND] = ACTIONS(1433), + [anon_sym_as] = ACTIONS(1435), + [anon_sym_const] = ACTIONS(1435), + [anon_sym_default] = ACTIONS(1435), + [anon_sym_gen] = ACTIONS(1435), + [anon_sym_union] = ACTIONS(1435), + [anon_sym_ref] = ACTIONS(1435), + [sym_mutable_specifier] = ACTIONS(1435), + [sym_integer_literal] = ACTIONS(1433), + [aux_sym_string_literal_token1] = ACTIONS(1433), + [sym_char_literal] = ACTIONS(1433), + [anon_sym_true] = ACTIONS(1435), + [anon_sym_false] = ACTIONS(1435), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1435), + [sym_super] = ACTIONS(1435), + [sym_crate] = ACTIONS(1435), + [sym_metavariable] = ACTIONS(1433), + [sym__raw_string_literal_start] = ACTIONS(1433), + [sym_float_literal] = ACTIONS(1433), }, - [460] = { - [sym_line_comment] = STATE(460), - [sym_block_comment] = STATE(460), - [sym_identifier] = ACTIONS(1461), - [anon_sym_LPAREN] = ACTIONS(1459), - [anon_sym_LBRACK] = ACTIONS(1459), - [anon_sym_RBRACE] = ACTIONS(1459), - [anon_sym_PLUS] = ACTIONS(1461), - [anon_sym_STAR] = ACTIONS(1461), - [anon_sym_QMARK] = ACTIONS(1459), - [anon_sym_u8] = ACTIONS(1461), - [anon_sym_i8] = ACTIONS(1461), - [anon_sym_u16] = ACTIONS(1461), - [anon_sym_i16] = ACTIONS(1461), - [anon_sym_u32] = ACTIONS(1461), - [anon_sym_i32] = ACTIONS(1461), - [anon_sym_u64] = ACTIONS(1461), - [anon_sym_i64] = ACTIONS(1461), - [anon_sym_u128] = ACTIONS(1461), - [anon_sym_i128] = ACTIONS(1461), - [anon_sym_isize] = ACTIONS(1461), - [anon_sym_usize] = ACTIONS(1461), - [anon_sym_f32] = ACTIONS(1461), - [anon_sym_f64] = ACTIONS(1461), - [anon_sym_bool] = ACTIONS(1461), - [anon_sym_str] = ACTIONS(1461), - [anon_sym_char] = ACTIONS(1461), - [anon_sym_DASH] = ACTIONS(1461), - [anon_sym_SLASH] = ACTIONS(1461), - [anon_sym_PERCENT] = ACTIONS(1461), - [anon_sym_CARET] = ACTIONS(1461), - [anon_sym_AMP] = ACTIONS(1461), - [anon_sym_PIPE] = ACTIONS(1461), - [anon_sym_AMP_AMP] = ACTIONS(1459), - [anon_sym_PIPE_PIPE] = ACTIONS(1459), - [anon_sym_LT_LT] = ACTIONS(1461), - [anon_sym_GT_GT] = ACTIONS(1461), - [anon_sym_PLUS_EQ] = ACTIONS(1459), - [anon_sym_DASH_EQ] = ACTIONS(1459), - [anon_sym_STAR_EQ] = ACTIONS(1459), - [anon_sym_SLASH_EQ] = ACTIONS(1459), - [anon_sym_PERCENT_EQ] = ACTIONS(1459), - [anon_sym_CARET_EQ] = ACTIONS(1459), - [anon_sym_AMP_EQ] = ACTIONS(1459), - [anon_sym_PIPE_EQ] = ACTIONS(1459), - [anon_sym_LT_LT_EQ] = ACTIONS(1459), - [anon_sym_GT_GT_EQ] = ACTIONS(1459), - [anon_sym_EQ] = ACTIONS(1461), - [anon_sym_EQ_EQ] = ACTIONS(1459), - [anon_sym_BANG_EQ] = ACTIONS(1459), - [anon_sym_GT] = ACTIONS(1461), - [anon_sym_LT] = ACTIONS(1461), - [anon_sym_GT_EQ] = ACTIONS(1459), - [anon_sym_LT_EQ] = ACTIONS(1459), - [anon_sym__] = ACTIONS(1461), - [anon_sym_DOT] = ACTIONS(1461), - [anon_sym_DOT_DOT] = ACTIONS(1461), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1459), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1459), - [anon_sym_COMMA] = ACTIONS(1459), - [anon_sym_COLON_COLON] = ACTIONS(1459), - [anon_sym_POUND] = ACTIONS(1459), - [anon_sym_as] = ACTIONS(1461), - [anon_sym_const] = ACTIONS(1461), - [anon_sym_default] = ACTIONS(1461), - [anon_sym_gen] = ACTIONS(1461), - [anon_sym_union] = ACTIONS(1461), - [anon_sym_ref] = ACTIONS(1461), - [sym_mutable_specifier] = ACTIONS(1461), - [sym_integer_literal] = ACTIONS(1459), - [aux_sym_string_literal_token1] = ACTIONS(1459), - [sym_char_literal] = ACTIONS(1459), - [anon_sym_true] = ACTIONS(1461), - [anon_sym_false] = ACTIONS(1461), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1461), - [sym_super] = ACTIONS(1461), - [sym_crate] = ACTIONS(1461), - [sym_metavariable] = ACTIONS(1459), - [sym__raw_string_literal_start] = ACTIONS(1459), - [sym_float_literal] = ACTIONS(1459), + [469] = { + [sym_line_comment] = STATE(469), + [sym_block_comment] = STATE(469), + [sym_identifier] = ACTIONS(1443), + [anon_sym_LPAREN] = ACTIONS(1441), + [anon_sym_LBRACK] = ACTIONS(1441), + [anon_sym_RBRACE] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1443), + [anon_sym_STAR] = ACTIONS(1443), + [anon_sym_QMARK] = ACTIONS(1441), + [anon_sym_u8] = ACTIONS(1443), + [anon_sym_i8] = ACTIONS(1443), + [anon_sym_u16] = ACTIONS(1443), + [anon_sym_i16] = ACTIONS(1443), + [anon_sym_u32] = ACTIONS(1443), + [anon_sym_i32] = ACTIONS(1443), + [anon_sym_u64] = ACTIONS(1443), + [anon_sym_i64] = ACTIONS(1443), + [anon_sym_u128] = ACTIONS(1443), + [anon_sym_i128] = ACTIONS(1443), + [anon_sym_isize] = ACTIONS(1443), + [anon_sym_usize] = ACTIONS(1443), + [anon_sym_f32] = ACTIONS(1443), + [anon_sym_f64] = ACTIONS(1443), + [anon_sym_bool] = ACTIONS(1443), + [anon_sym_str] = ACTIONS(1443), + [anon_sym_char] = ACTIONS(1443), + [anon_sym_DASH] = ACTIONS(1443), + [anon_sym_SLASH] = ACTIONS(1443), + [anon_sym_PERCENT] = ACTIONS(1443), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_AMP] = ACTIONS(1443), + [anon_sym_PIPE] = ACTIONS(1443), + [anon_sym_AMP_AMP] = ACTIONS(1441), + [anon_sym_PIPE_PIPE] = ACTIONS(1441), + [anon_sym_LT_LT] = ACTIONS(1443), + [anon_sym_GT_GT] = ACTIONS(1443), + [anon_sym_PLUS_EQ] = ACTIONS(1441), + [anon_sym_DASH_EQ] = ACTIONS(1441), + [anon_sym_STAR_EQ] = ACTIONS(1441), + [anon_sym_SLASH_EQ] = ACTIONS(1441), + [anon_sym_PERCENT_EQ] = ACTIONS(1441), + [anon_sym_CARET_EQ] = ACTIONS(1441), + [anon_sym_AMP_EQ] = ACTIONS(1441), + [anon_sym_PIPE_EQ] = ACTIONS(1441), + [anon_sym_LT_LT_EQ] = ACTIONS(1441), + [anon_sym_GT_GT_EQ] = ACTIONS(1441), + [anon_sym_EQ] = ACTIONS(1443), + [anon_sym_EQ_EQ] = ACTIONS(1441), + [anon_sym_BANG_EQ] = ACTIONS(1441), + [anon_sym_GT] = ACTIONS(1443), + [anon_sym_LT] = ACTIONS(1443), + [anon_sym_GT_EQ] = ACTIONS(1441), + [anon_sym_LT_EQ] = ACTIONS(1441), + [anon_sym__] = ACTIONS(1443), + [anon_sym_DOT] = ACTIONS(1443), + [anon_sym_DOT_DOT] = ACTIONS(1443), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1441), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1441), + [anon_sym_COMMA] = ACTIONS(1441), + [anon_sym_COLON_COLON] = ACTIONS(1441), + [anon_sym_POUND] = ACTIONS(1441), + [anon_sym_as] = ACTIONS(1443), + [anon_sym_const] = ACTIONS(1443), + [anon_sym_default] = ACTIONS(1443), + [anon_sym_gen] = ACTIONS(1443), + [anon_sym_union] = ACTIONS(1443), + [anon_sym_ref] = ACTIONS(1443), + [sym_mutable_specifier] = ACTIONS(1443), + [sym_integer_literal] = ACTIONS(1441), + [aux_sym_string_literal_token1] = ACTIONS(1441), + [sym_char_literal] = ACTIONS(1441), + [anon_sym_true] = ACTIONS(1443), + [anon_sym_false] = ACTIONS(1443), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1443), + [sym_super] = ACTIONS(1443), + [sym_crate] = ACTIONS(1443), + [sym_metavariable] = ACTIONS(1441), + [sym__raw_string_literal_start] = ACTIONS(1441), + [sym_float_literal] = ACTIONS(1441), }, - [461] = { - [sym_line_comment] = STATE(461), - [sym_block_comment] = STATE(461), - [sym_identifier] = ACTIONS(1449), - [anon_sym_LPAREN] = ACTIONS(1447), - [anon_sym_LBRACK] = ACTIONS(1447), - [anon_sym_RBRACE] = ACTIONS(1447), - [anon_sym_PLUS] = ACTIONS(1449), - [anon_sym_STAR] = ACTIONS(1449), - [anon_sym_QMARK] = ACTIONS(1447), - [anon_sym_u8] = ACTIONS(1449), - [anon_sym_i8] = ACTIONS(1449), - [anon_sym_u16] = ACTIONS(1449), - [anon_sym_i16] = ACTIONS(1449), - [anon_sym_u32] = ACTIONS(1449), - [anon_sym_i32] = ACTIONS(1449), - [anon_sym_u64] = ACTIONS(1449), - [anon_sym_i64] = ACTIONS(1449), - [anon_sym_u128] = ACTIONS(1449), - [anon_sym_i128] = ACTIONS(1449), - [anon_sym_isize] = ACTIONS(1449), - [anon_sym_usize] = ACTIONS(1449), - [anon_sym_f32] = ACTIONS(1449), - [anon_sym_f64] = ACTIONS(1449), - [anon_sym_bool] = ACTIONS(1449), - [anon_sym_str] = ACTIONS(1449), - [anon_sym_char] = ACTIONS(1449), - [anon_sym_DASH] = ACTIONS(1449), - [anon_sym_SLASH] = ACTIONS(1449), - [anon_sym_PERCENT] = ACTIONS(1449), - [anon_sym_CARET] = ACTIONS(1449), - [anon_sym_AMP] = ACTIONS(1449), - [anon_sym_PIPE] = ACTIONS(1449), - [anon_sym_AMP_AMP] = ACTIONS(1447), - [anon_sym_PIPE_PIPE] = ACTIONS(1447), - [anon_sym_LT_LT] = ACTIONS(1449), - [anon_sym_GT_GT] = ACTIONS(1449), - [anon_sym_PLUS_EQ] = ACTIONS(1447), - [anon_sym_DASH_EQ] = ACTIONS(1447), - [anon_sym_STAR_EQ] = ACTIONS(1447), - [anon_sym_SLASH_EQ] = ACTIONS(1447), - [anon_sym_PERCENT_EQ] = ACTIONS(1447), - [anon_sym_CARET_EQ] = ACTIONS(1447), - [anon_sym_AMP_EQ] = ACTIONS(1447), - [anon_sym_PIPE_EQ] = ACTIONS(1447), - [anon_sym_LT_LT_EQ] = ACTIONS(1447), - [anon_sym_GT_GT_EQ] = ACTIONS(1447), - [anon_sym_EQ] = ACTIONS(1449), - [anon_sym_EQ_EQ] = ACTIONS(1447), - [anon_sym_BANG_EQ] = ACTIONS(1447), - [anon_sym_GT] = ACTIONS(1449), - [anon_sym_LT] = ACTIONS(1449), - [anon_sym_GT_EQ] = ACTIONS(1447), - [anon_sym_LT_EQ] = ACTIONS(1447), - [anon_sym__] = ACTIONS(1449), - [anon_sym_DOT] = ACTIONS(1449), - [anon_sym_DOT_DOT] = ACTIONS(1449), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1447), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1447), - [anon_sym_COMMA] = ACTIONS(1447), - [anon_sym_COLON_COLON] = ACTIONS(1447), - [anon_sym_POUND] = ACTIONS(1447), - [anon_sym_as] = ACTIONS(1449), - [anon_sym_const] = ACTIONS(1449), - [anon_sym_default] = ACTIONS(1449), - [anon_sym_gen] = ACTIONS(1449), - [anon_sym_union] = ACTIONS(1449), - [anon_sym_ref] = ACTIONS(1449), - [sym_mutable_specifier] = ACTIONS(1449), - [sym_integer_literal] = ACTIONS(1447), - [aux_sym_string_literal_token1] = ACTIONS(1447), - [sym_char_literal] = ACTIONS(1447), - [anon_sym_true] = ACTIONS(1449), - [anon_sym_false] = ACTIONS(1449), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1449), - [sym_super] = ACTIONS(1449), - [sym_crate] = ACTIONS(1449), - [sym_metavariable] = ACTIONS(1447), - [sym__raw_string_literal_start] = ACTIONS(1447), - [sym_float_literal] = ACTIONS(1447), + [470] = { + [sym_line_comment] = STATE(470), + [sym_block_comment] = STATE(470), + [sym_identifier] = ACTIONS(1459), + [anon_sym_LPAREN] = ACTIONS(1457), + [anon_sym_LBRACK] = ACTIONS(1457), + [anon_sym_RBRACE] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1459), + [anon_sym_STAR] = ACTIONS(1459), + [anon_sym_QMARK] = ACTIONS(1457), + [anon_sym_u8] = ACTIONS(1459), + [anon_sym_i8] = ACTIONS(1459), + [anon_sym_u16] = ACTIONS(1459), + [anon_sym_i16] = ACTIONS(1459), + [anon_sym_u32] = ACTIONS(1459), + [anon_sym_i32] = ACTIONS(1459), + [anon_sym_u64] = ACTIONS(1459), + [anon_sym_i64] = ACTIONS(1459), + [anon_sym_u128] = ACTIONS(1459), + [anon_sym_i128] = ACTIONS(1459), + [anon_sym_isize] = ACTIONS(1459), + [anon_sym_usize] = ACTIONS(1459), + [anon_sym_f32] = ACTIONS(1459), + [anon_sym_f64] = ACTIONS(1459), + [anon_sym_bool] = ACTIONS(1459), + [anon_sym_str] = ACTIONS(1459), + [anon_sym_char] = ACTIONS(1459), + [anon_sym_DASH] = ACTIONS(1459), + [anon_sym_SLASH] = ACTIONS(1459), + [anon_sym_PERCENT] = ACTIONS(1459), + [anon_sym_CARET] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1459), + [anon_sym_PIPE] = ACTIONS(1459), + [anon_sym_AMP_AMP] = ACTIONS(1457), + [anon_sym_PIPE_PIPE] = ACTIONS(1457), + [anon_sym_LT_LT] = ACTIONS(1459), + [anon_sym_GT_GT] = ACTIONS(1459), + [anon_sym_PLUS_EQ] = ACTIONS(1457), + [anon_sym_DASH_EQ] = ACTIONS(1457), + [anon_sym_STAR_EQ] = ACTIONS(1457), + [anon_sym_SLASH_EQ] = ACTIONS(1457), + [anon_sym_PERCENT_EQ] = ACTIONS(1457), + [anon_sym_CARET_EQ] = ACTIONS(1457), + [anon_sym_AMP_EQ] = ACTIONS(1457), + [anon_sym_PIPE_EQ] = ACTIONS(1457), + [anon_sym_LT_LT_EQ] = ACTIONS(1457), + [anon_sym_GT_GT_EQ] = ACTIONS(1457), + [anon_sym_EQ] = ACTIONS(1459), + [anon_sym_EQ_EQ] = ACTIONS(1457), + [anon_sym_BANG_EQ] = ACTIONS(1457), + [anon_sym_GT] = ACTIONS(1459), + [anon_sym_LT] = ACTIONS(1459), + [anon_sym_GT_EQ] = ACTIONS(1457), + [anon_sym_LT_EQ] = ACTIONS(1457), + [anon_sym__] = ACTIONS(1459), + [anon_sym_DOT] = ACTIONS(1459), + [anon_sym_DOT_DOT] = ACTIONS(1459), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1457), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1457), + [anon_sym_COMMA] = ACTIONS(1457), + [anon_sym_COLON_COLON] = ACTIONS(1457), + [anon_sym_POUND] = ACTIONS(1457), + [anon_sym_as] = ACTIONS(1459), + [anon_sym_const] = ACTIONS(1459), + [anon_sym_default] = ACTIONS(1459), + [anon_sym_gen] = ACTIONS(1459), + [anon_sym_union] = ACTIONS(1459), + [anon_sym_ref] = ACTIONS(1459), + [sym_mutable_specifier] = ACTIONS(1459), + [sym_integer_literal] = ACTIONS(1457), + [aux_sym_string_literal_token1] = ACTIONS(1457), + [sym_char_literal] = ACTIONS(1457), + [anon_sym_true] = ACTIONS(1459), + [anon_sym_false] = ACTIONS(1459), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1459), + [sym_super] = ACTIONS(1459), + [sym_crate] = ACTIONS(1459), + [sym_metavariable] = ACTIONS(1457), + [sym__raw_string_literal_start] = ACTIONS(1457), + [sym_float_literal] = ACTIONS(1457), }, - [462] = { - [sym_line_comment] = STATE(462), - [sym_block_comment] = STATE(462), + [471] = { + [sym_line_comment] = STATE(471), + [sym_block_comment] = STATE(471), [sym_identifier] = ACTIONS(1641), [anon_sym_LPAREN] = ACTIONS(1643), [anon_sym_LBRACK] = ACTIONS(1643), - [anon_sym_RBRACE] = ACTIONS(1359), - [anon_sym_PLUS] = ACTIONS(1357), - [anon_sym_STAR] = ACTIONS(1357), - [anon_sym_QMARK] = ACTIONS(1359), + [anon_sym_RBRACE] = ACTIONS(1449), + [anon_sym_PLUS] = ACTIONS(1451), + [anon_sym_STAR] = ACTIONS(1451), + [anon_sym_QMARK] = ACTIONS(1449), [anon_sym_u8] = ACTIONS(1641), [anon_sym_i8] = ACTIONS(1641), [anon_sym_u16] = ACTIONS(1641), @@ -68157,41 +70499,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(1641), [anon_sym_char] = ACTIONS(1641), [anon_sym_DASH] = ACTIONS(1641), - [anon_sym_SLASH] = ACTIONS(1357), - [anon_sym_PERCENT] = ACTIONS(1357), - [anon_sym_CARET] = ACTIONS(1357), + [anon_sym_SLASH] = ACTIONS(1451), + [anon_sym_PERCENT] = ACTIONS(1451), + [anon_sym_CARET] = ACTIONS(1451), [anon_sym_AMP] = ACTIONS(1641), [anon_sym_PIPE] = ACTIONS(1641), - [anon_sym_AMP_AMP] = ACTIONS(1359), - [anon_sym_PIPE_PIPE] = ACTIONS(1359), - [anon_sym_LT_LT] = ACTIONS(1357), - [anon_sym_GT_GT] = ACTIONS(1357), - [anon_sym_PLUS_EQ] = ACTIONS(1359), - [anon_sym_DASH_EQ] = ACTIONS(1359), - [anon_sym_STAR_EQ] = ACTIONS(1359), - [anon_sym_SLASH_EQ] = ACTIONS(1359), - [anon_sym_PERCENT_EQ] = ACTIONS(1359), - [anon_sym_CARET_EQ] = ACTIONS(1359), - [anon_sym_AMP_EQ] = ACTIONS(1359), - [anon_sym_PIPE_EQ] = ACTIONS(1359), - [anon_sym_LT_LT_EQ] = ACTIONS(1359), - [anon_sym_GT_GT_EQ] = ACTIONS(1359), - [anon_sym_EQ] = ACTIONS(1357), - [anon_sym_EQ_EQ] = ACTIONS(1359), - [anon_sym_BANG_EQ] = ACTIONS(1359), - [anon_sym_GT] = ACTIONS(1357), + [anon_sym_AMP_AMP] = ACTIONS(1449), + [anon_sym_PIPE_PIPE] = ACTIONS(1449), + [anon_sym_LT_LT] = ACTIONS(1451), + [anon_sym_GT_GT] = ACTIONS(1451), + [anon_sym_PLUS_EQ] = ACTIONS(1449), + [anon_sym_DASH_EQ] = ACTIONS(1449), + [anon_sym_STAR_EQ] = ACTIONS(1449), + [anon_sym_SLASH_EQ] = ACTIONS(1449), + [anon_sym_PERCENT_EQ] = ACTIONS(1449), + [anon_sym_CARET_EQ] = ACTIONS(1449), + [anon_sym_AMP_EQ] = ACTIONS(1449), + [anon_sym_PIPE_EQ] = ACTIONS(1449), + [anon_sym_LT_LT_EQ] = ACTIONS(1449), + [anon_sym_GT_GT_EQ] = ACTIONS(1449), + [anon_sym_EQ] = ACTIONS(1451), + [anon_sym_EQ_EQ] = ACTIONS(1449), + [anon_sym_BANG_EQ] = ACTIONS(1449), + [anon_sym_GT] = ACTIONS(1451), [anon_sym_LT] = ACTIONS(1641), - [anon_sym_GT_EQ] = ACTIONS(1359), - [anon_sym_LT_EQ] = ACTIONS(1359), + [anon_sym_GT_EQ] = ACTIONS(1449), + [anon_sym_LT_EQ] = ACTIONS(1449), [anon_sym__] = ACTIONS(1641), - [anon_sym_DOT] = ACTIONS(1357), + [anon_sym_DOT] = ACTIONS(1451), [anon_sym_DOT_DOT] = ACTIONS(1641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1359), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1359), - [anon_sym_COMMA] = ACTIONS(1359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1449), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1449), + [anon_sym_COMMA] = ACTIONS(1449), [anon_sym_COLON_COLON] = ACTIONS(1643), [anon_sym_POUND] = ACTIONS(1643), - [anon_sym_as] = ACTIONS(1357), + [anon_sym_as] = ACTIONS(1451), [anon_sym_const] = ACTIONS(1641), [anon_sym_default] = ACTIONS(1641), [anon_sym_gen] = ACTIONS(1641), @@ -68212,92 +70554,590 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1643), [sym_float_literal] = ACTIONS(1643), }, - [463] = { - [sym_line_comment] = STATE(463), - [sym_block_comment] = STATE(463), - [sym_identifier] = ACTIONS(1453), - [anon_sym_LPAREN] = ACTIONS(1451), - [anon_sym_LBRACK] = ACTIONS(1451), - [anon_sym_RBRACE] = ACTIONS(1451), - [anon_sym_PLUS] = ACTIONS(1453), - [anon_sym_STAR] = ACTIONS(1453), - [anon_sym_QMARK] = ACTIONS(1451), - [anon_sym_u8] = ACTIONS(1453), - [anon_sym_i8] = ACTIONS(1453), - [anon_sym_u16] = ACTIONS(1453), - [anon_sym_i16] = ACTIONS(1453), - [anon_sym_u32] = ACTIONS(1453), - [anon_sym_i32] = ACTIONS(1453), - [anon_sym_u64] = ACTIONS(1453), - [anon_sym_i64] = ACTIONS(1453), - [anon_sym_u128] = ACTIONS(1453), - [anon_sym_i128] = ACTIONS(1453), - [anon_sym_isize] = ACTIONS(1453), - [anon_sym_usize] = ACTIONS(1453), - [anon_sym_f32] = ACTIONS(1453), - [anon_sym_f64] = ACTIONS(1453), - [anon_sym_bool] = ACTIONS(1453), - [anon_sym_str] = ACTIONS(1453), - [anon_sym_char] = ACTIONS(1453), - [anon_sym_DASH] = ACTIONS(1453), - [anon_sym_SLASH] = ACTIONS(1453), - [anon_sym_PERCENT] = ACTIONS(1453), - [anon_sym_CARET] = ACTIONS(1453), - [anon_sym_AMP] = ACTIONS(1453), - [anon_sym_PIPE] = ACTIONS(1453), - [anon_sym_AMP_AMP] = ACTIONS(1451), - [anon_sym_PIPE_PIPE] = ACTIONS(1451), - [anon_sym_LT_LT] = ACTIONS(1453), - [anon_sym_GT_GT] = ACTIONS(1453), - [anon_sym_PLUS_EQ] = ACTIONS(1451), - [anon_sym_DASH_EQ] = ACTIONS(1451), - [anon_sym_STAR_EQ] = ACTIONS(1451), - [anon_sym_SLASH_EQ] = ACTIONS(1451), - [anon_sym_PERCENT_EQ] = ACTIONS(1451), - [anon_sym_CARET_EQ] = ACTIONS(1451), - [anon_sym_AMP_EQ] = ACTIONS(1451), - [anon_sym_PIPE_EQ] = ACTIONS(1451), - [anon_sym_LT_LT_EQ] = ACTIONS(1451), - [anon_sym_GT_GT_EQ] = ACTIONS(1451), - [anon_sym_EQ] = ACTIONS(1453), - [anon_sym_EQ_EQ] = ACTIONS(1451), - [anon_sym_BANG_EQ] = ACTIONS(1451), - [anon_sym_GT] = ACTIONS(1453), - [anon_sym_LT] = ACTIONS(1453), - [anon_sym_GT_EQ] = ACTIONS(1451), - [anon_sym_LT_EQ] = ACTIONS(1451), - [anon_sym__] = ACTIONS(1453), - [anon_sym_DOT] = ACTIONS(1453), - [anon_sym_DOT_DOT] = ACTIONS(1453), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1451), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1451), - [anon_sym_COMMA] = ACTIONS(1451), - [anon_sym_COLON_COLON] = ACTIONS(1451), - [anon_sym_POUND] = ACTIONS(1451), - [anon_sym_as] = ACTIONS(1453), - [anon_sym_const] = ACTIONS(1453), - [anon_sym_default] = ACTIONS(1453), - [anon_sym_gen] = ACTIONS(1453), - [anon_sym_union] = ACTIONS(1453), - [anon_sym_ref] = ACTIONS(1453), - [sym_mutable_specifier] = ACTIONS(1453), - [sym_integer_literal] = ACTIONS(1451), - [aux_sym_string_literal_token1] = ACTIONS(1451), - [sym_char_literal] = ACTIONS(1451), - [anon_sym_true] = ACTIONS(1453), - [anon_sym_false] = ACTIONS(1453), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1453), - [sym_super] = ACTIONS(1453), - [sym_crate] = ACTIONS(1453), - [sym_metavariable] = ACTIONS(1451), - [sym__raw_string_literal_start] = ACTIONS(1451), - [sym_float_literal] = ACTIONS(1451), + [472] = { + [sym_line_comment] = STATE(472), + [sym_block_comment] = STATE(472), + [sym_identifier] = ACTIONS(1283), + [anon_sym_LPAREN] = ACTIONS(1281), + [anon_sym_LBRACK] = ACTIONS(1281), + [anon_sym_RBRACE] = ACTIONS(1281), + [anon_sym_PLUS] = ACTIONS(1283), + [anon_sym_STAR] = ACTIONS(1283), + [anon_sym_QMARK] = ACTIONS(1281), + [anon_sym_u8] = ACTIONS(1283), + [anon_sym_i8] = ACTIONS(1283), + [anon_sym_u16] = ACTIONS(1283), + [anon_sym_i16] = ACTIONS(1283), + [anon_sym_u32] = ACTIONS(1283), + [anon_sym_i32] = ACTIONS(1283), + [anon_sym_u64] = ACTIONS(1283), + [anon_sym_i64] = ACTIONS(1283), + [anon_sym_u128] = ACTIONS(1283), + [anon_sym_i128] = ACTIONS(1283), + [anon_sym_isize] = ACTIONS(1283), + [anon_sym_usize] = ACTIONS(1283), + [anon_sym_f32] = ACTIONS(1283), + [anon_sym_f64] = ACTIONS(1283), + [anon_sym_bool] = ACTIONS(1283), + [anon_sym_str] = ACTIONS(1283), + [anon_sym_char] = ACTIONS(1283), + [anon_sym_DASH] = ACTIONS(1283), + [anon_sym_SLASH] = ACTIONS(1283), + [anon_sym_PERCENT] = ACTIONS(1283), + [anon_sym_CARET] = ACTIONS(1283), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_PIPE] = ACTIONS(1283), + [anon_sym_AMP_AMP] = ACTIONS(1281), + [anon_sym_PIPE_PIPE] = ACTIONS(1281), + [anon_sym_LT_LT] = ACTIONS(1283), + [anon_sym_GT_GT] = ACTIONS(1283), + [anon_sym_PLUS_EQ] = ACTIONS(1281), + [anon_sym_DASH_EQ] = ACTIONS(1281), + [anon_sym_STAR_EQ] = ACTIONS(1281), + [anon_sym_SLASH_EQ] = ACTIONS(1281), + [anon_sym_PERCENT_EQ] = ACTIONS(1281), + [anon_sym_CARET_EQ] = ACTIONS(1281), + [anon_sym_AMP_EQ] = ACTIONS(1281), + [anon_sym_PIPE_EQ] = ACTIONS(1281), + [anon_sym_LT_LT_EQ] = ACTIONS(1281), + [anon_sym_GT_GT_EQ] = ACTIONS(1281), + [anon_sym_EQ] = ACTIONS(1283), + [anon_sym_EQ_EQ] = ACTIONS(1281), + [anon_sym_BANG_EQ] = ACTIONS(1281), + [anon_sym_GT] = ACTIONS(1283), + [anon_sym_LT] = ACTIONS(1283), + [anon_sym_GT_EQ] = ACTIONS(1281), + [anon_sym_LT_EQ] = ACTIONS(1281), + [anon_sym__] = ACTIONS(1283), + [anon_sym_DOT] = ACTIONS(1283), + [anon_sym_DOT_DOT] = ACTIONS(1283), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1281), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1281), + [anon_sym_COMMA] = ACTIONS(1281), + [anon_sym_COLON_COLON] = ACTIONS(1281), + [anon_sym_POUND] = ACTIONS(1281), + [anon_sym_as] = ACTIONS(1283), + [anon_sym_const] = ACTIONS(1283), + [anon_sym_default] = ACTIONS(1283), + [anon_sym_gen] = ACTIONS(1283), + [anon_sym_union] = ACTIONS(1283), + [anon_sym_ref] = ACTIONS(1283), + [sym_mutable_specifier] = ACTIONS(1283), + [sym_integer_literal] = ACTIONS(1281), + [aux_sym_string_literal_token1] = ACTIONS(1281), + [sym_char_literal] = ACTIONS(1281), + [anon_sym_true] = ACTIONS(1283), + [anon_sym_false] = ACTIONS(1283), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1283), + [sym_super] = ACTIONS(1283), + [sym_crate] = ACTIONS(1283), + [sym_metavariable] = ACTIONS(1281), + [sym__raw_string_literal_start] = ACTIONS(1281), + [sym_float_literal] = ACTIONS(1281), }, - [464] = { - [sym_line_comment] = STATE(464), - [sym_block_comment] = STATE(464), + [473] = { + [sym_line_comment] = STATE(473), + [sym_block_comment] = STATE(473), + [sym_identifier] = ACTIONS(1455), + [anon_sym_LPAREN] = ACTIONS(1453), + [anon_sym_LBRACK] = ACTIONS(1453), + [anon_sym_RBRACE] = ACTIONS(1453), + [anon_sym_PLUS] = ACTIONS(1455), + [anon_sym_STAR] = ACTIONS(1455), + [anon_sym_QMARK] = ACTIONS(1453), + [anon_sym_u8] = ACTIONS(1455), + [anon_sym_i8] = ACTIONS(1455), + [anon_sym_u16] = ACTIONS(1455), + [anon_sym_i16] = ACTIONS(1455), + [anon_sym_u32] = ACTIONS(1455), + [anon_sym_i32] = ACTIONS(1455), + [anon_sym_u64] = ACTIONS(1455), + [anon_sym_i64] = ACTIONS(1455), + [anon_sym_u128] = ACTIONS(1455), + [anon_sym_i128] = ACTIONS(1455), + [anon_sym_isize] = ACTIONS(1455), + [anon_sym_usize] = ACTIONS(1455), + [anon_sym_f32] = ACTIONS(1455), + [anon_sym_f64] = ACTIONS(1455), + [anon_sym_bool] = ACTIONS(1455), + [anon_sym_str] = ACTIONS(1455), + [anon_sym_char] = ACTIONS(1455), + [anon_sym_DASH] = ACTIONS(1455), + [anon_sym_SLASH] = ACTIONS(1455), + [anon_sym_PERCENT] = ACTIONS(1455), + [anon_sym_CARET] = ACTIONS(1455), + [anon_sym_AMP] = ACTIONS(1455), + [anon_sym_PIPE] = ACTIONS(1455), + [anon_sym_AMP_AMP] = ACTIONS(1453), + [anon_sym_PIPE_PIPE] = ACTIONS(1453), + [anon_sym_LT_LT] = ACTIONS(1455), + [anon_sym_GT_GT] = ACTIONS(1455), + [anon_sym_PLUS_EQ] = ACTIONS(1453), + [anon_sym_DASH_EQ] = ACTIONS(1453), + [anon_sym_STAR_EQ] = ACTIONS(1453), + [anon_sym_SLASH_EQ] = ACTIONS(1453), + [anon_sym_PERCENT_EQ] = ACTIONS(1453), + [anon_sym_CARET_EQ] = ACTIONS(1453), + [anon_sym_AMP_EQ] = ACTIONS(1453), + [anon_sym_PIPE_EQ] = ACTIONS(1453), + [anon_sym_LT_LT_EQ] = ACTIONS(1453), + [anon_sym_GT_GT_EQ] = ACTIONS(1453), + [anon_sym_EQ] = ACTIONS(1455), + [anon_sym_EQ_EQ] = ACTIONS(1453), + [anon_sym_BANG_EQ] = ACTIONS(1453), + [anon_sym_GT] = ACTIONS(1455), + [anon_sym_LT] = ACTIONS(1455), + [anon_sym_GT_EQ] = ACTIONS(1453), + [anon_sym_LT_EQ] = ACTIONS(1453), + [anon_sym__] = ACTIONS(1455), + [anon_sym_DOT] = ACTIONS(1455), + [anon_sym_DOT_DOT] = ACTIONS(1455), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1453), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1453), + [anon_sym_COMMA] = ACTIONS(1453), + [anon_sym_COLON_COLON] = ACTIONS(1453), + [anon_sym_POUND] = ACTIONS(1453), + [anon_sym_as] = ACTIONS(1455), + [anon_sym_const] = ACTIONS(1455), + [anon_sym_default] = ACTIONS(1455), + [anon_sym_gen] = ACTIONS(1455), + [anon_sym_union] = ACTIONS(1455), + [anon_sym_ref] = ACTIONS(1455), + [sym_mutable_specifier] = ACTIONS(1455), + [sym_integer_literal] = ACTIONS(1453), + [aux_sym_string_literal_token1] = ACTIONS(1453), + [sym_char_literal] = ACTIONS(1453), + [anon_sym_true] = ACTIONS(1455), + [anon_sym_false] = ACTIONS(1455), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1455), + [sym_super] = ACTIONS(1455), + [sym_crate] = ACTIONS(1455), + [sym_metavariable] = ACTIONS(1453), + [sym__raw_string_literal_start] = ACTIONS(1453), + [sym_float_literal] = ACTIONS(1453), + }, + [474] = { + [sym_line_comment] = STATE(474), + [sym_block_comment] = STATE(474), + [sym_identifier] = ACTIONS(1475), + [anon_sym_LPAREN] = ACTIONS(1473), + [anon_sym_LBRACK] = ACTIONS(1473), + [anon_sym_RBRACE] = ACTIONS(1473), + [anon_sym_PLUS] = ACTIONS(1475), + [anon_sym_STAR] = ACTIONS(1475), + [anon_sym_QMARK] = ACTIONS(1473), + [anon_sym_u8] = ACTIONS(1475), + [anon_sym_i8] = ACTIONS(1475), + [anon_sym_u16] = ACTIONS(1475), + [anon_sym_i16] = ACTIONS(1475), + [anon_sym_u32] = ACTIONS(1475), + [anon_sym_i32] = ACTIONS(1475), + [anon_sym_u64] = ACTIONS(1475), + [anon_sym_i64] = ACTIONS(1475), + [anon_sym_u128] = ACTIONS(1475), + [anon_sym_i128] = ACTIONS(1475), + [anon_sym_isize] = ACTIONS(1475), + [anon_sym_usize] = ACTIONS(1475), + [anon_sym_f32] = ACTIONS(1475), + [anon_sym_f64] = ACTIONS(1475), + [anon_sym_bool] = ACTIONS(1475), + [anon_sym_str] = ACTIONS(1475), + [anon_sym_char] = ACTIONS(1475), + [anon_sym_DASH] = ACTIONS(1475), + [anon_sym_SLASH] = ACTIONS(1475), + [anon_sym_PERCENT] = ACTIONS(1475), + [anon_sym_CARET] = ACTIONS(1475), + [anon_sym_AMP] = ACTIONS(1475), + [anon_sym_PIPE] = ACTIONS(1475), + [anon_sym_AMP_AMP] = ACTIONS(1473), + [anon_sym_PIPE_PIPE] = ACTIONS(1473), + [anon_sym_LT_LT] = ACTIONS(1475), + [anon_sym_GT_GT] = ACTIONS(1475), + [anon_sym_PLUS_EQ] = ACTIONS(1473), + [anon_sym_DASH_EQ] = ACTIONS(1473), + [anon_sym_STAR_EQ] = ACTIONS(1473), + [anon_sym_SLASH_EQ] = ACTIONS(1473), + [anon_sym_PERCENT_EQ] = ACTIONS(1473), + [anon_sym_CARET_EQ] = ACTIONS(1473), + [anon_sym_AMP_EQ] = ACTIONS(1473), + [anon_sym_PIPE_EQ] = ACTIONS(1473), + [anon_sym_LT_LT_EQ] = ACTIONS(1473), + [anon_sym_GT_GT_EQ] = ACTIONS(1473), + [anon_sym_EQ] = ACTIONS(1475), + [anon_sym_EQ_EQ] = ACTIONS(1473), + [anon_sym_BANG_EQ] = ACTIONS(1473), + [anon_sym_GT] = ACTIONS(1475), + [anon_sym_LT] = ACTIONS(1475), + [anon_sym_GT_EQ] = ACTIONS(1473), + [anon_sym_LT_EQ] = ACTIONS(1473), + [anon_sym__] = ACTIONS(1475), + [anon_sym_DOT] = ACTIONS(1475), + [anon_sym_DOT_DOT] = ACTIONS(1475), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1473), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1473), + [anon_sym_COMMA] = ACTIONS(1473), + [anon_sym_COLON_COLON] = ACTIONS(1473), + [anon_sym_POUND] = ACTIONS(1473), + [anon_sym_as] = ACTIONS(1475), + [anon_sym_const] = ACTIONS(1475), + [anon_sym_default] = ACTIONS(1475), + [anon_sym_gen] = ACTIONS(1475), + [anon_sym_union] = ACTIONS(1475), + [anon_sym_ref] = ACTIONS(1475), + [sym_mutable_specifier] = ACTIONS(1475), + [sym_integer_literal] = ACTIONS(1473), + [aux_sym_string_literal_token1] = ACTIONS(1473), + [sym_char_literal] = ACTIONS(1473), + [anon_sym_true] = ACTIONS(1475), + [anon_sym_false] = ACTIONS(1475), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1475), + [sym_super] = ACTIONS(1475), + [sym_crate] = ACTIONS(1475), + [sym_metavariable] = ACTIONS(1473), + [sym__raw_string_literal_start] = ACTIONS(1473), + [sym_float_literal] = ACTIONS(1473), + }, + [475] = { + [sym_line_comment] = STATE(475), + [sym_block_comment] = STATE(475), + [sym_identifier] = ACTIONS(1467), + [anon_sym_LPAREN] = ACTIONS(1465), + [anon_sym_LBRACK] = ACTIONS(1465), + [anon_sym_RBRACE] = ACTIONS(1465), + [anon_sym_PLUS] = ACTIONS(1467), + [anon_sym_STAR] = ACTIONS(1467), + [anon_sym_QMARK] = ACTIONS(1465), + [anon_sym_u8] = ACTIONS(1467), + [anon_sym_i8] = ACTIONS(1467), + [anon_sym_u16] = ACTIONS(1467), + [anon_sym_i16] = ACTIONS(1467), + [anon_sym_u32] = ACTIONS(1467), + [anon_sym_i32] = ACTIONS(1467), + [anon_sym_u64] = ACTIONS(1467), + [anon_sym_i64] = ACTIONS(1467), + [anon_sym_u128] = ACTIONS(1467), + [anon_sym_i128] = ACTIONS(1467), + [anon_sym_isize] = ACTIONS(1467), + [anon_sym_usize] = ACTIONS(1467), + [anon_sym_f32] = ACTIONS(1467), + [anon_sym_f64] = ACTIONS(1467), + [anon_sym_bool] = ACTIONS(1467), + [anon_sym_str] = ACTIONS(1467), + [anon_sym_char] = ACTIONS(1467), + [anon_sym_DASH] = ACTIONS(1467), + [anon_sym_SLASH] = ACTIONS(1467), + [anon_sym_PERCENT] = ACTIONS(1467), + [anon_sym_CARET] = ACTIONS(1467), + [anon_sym_AMP] = ACTIONS(1467), + [anon_sym_PIPE] = ACTIONS(1467), + [anon_sym_AMP_AMP] = ACTIONS(1465), + [anon_sym_PIPE_PIPE] = ACTIONS(1465), + [anon_sym_LT_LT] = ACTIONS(1467), + [anon_sym_GT_GT] = ACTIONS(1467), + [anon_sym_PLUS_EQ] = ACTIONS(1465), + [anon_sym_DASH_EQ] = ACTIONS(1465), + [anon_sym_STAR_EQ] = ACTIONS(1465), + [anon_sym_SLASH_EQ] = ACTIONS(1465), + [anon_sym_PERCENT_EQ] = ACTIONS(1465), + [anon_sym_CARET_EQ] = ACTIONS(1465), + [anon_sym_AMP_EQ] = ACTIONS(1465), + [anon_sym_PIPE_EQ] = ACTIONS(1465), + [anon_sym_LT_LT_EQ] = ACTIONS(1465), + [anon_sym_GT_GT_EQ] = ACTIONS(1465), + [anon_sym_EQ] = ACTIONS(1467), + [anon_sym_EQ_EQ] = ACTIONS(1465), + [anon_sym_BANG_EQ] = ACTIONS(1465), + [anon_sym_GT] = ACTIONS(1467), + [anon_sym_LT] = ACTIONS(1467), + [anon_sym_GT_EQ] = ACTIONS(1465), + [anon_sym_LT_EQ] = ACTIONS(1465), + [anon_sym__] = ACTIONS(1467), + [anon_sym_DOT] = ACTIONS(1467), + [anon_sym_DOT_DOT] = ACTIONS(1467), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1465), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1465), + [anon_sym_COMMA] = ACTIONS(1465), + [anon_sym_COLON_COLON] = ACTIONS(1465), + [anon_sym_POUND] = ACTIONS(1465), + [anon_sym_as] = ACTIONS(1467), + [anon_sym_const] = ACTIONS(1467), + [anon_sym_default] = ACTIONS(1467), + [anon_sym_gen] = ACTIONS(1467), + [anon_sym_union] = ACTIONS(1467), + [anon_sym_ref] = ACTIONS(1467), + [sym_mutable_specifier] = ACTIONS(1467), + [sym_integer_literal] = ACTIONS(1465), + [aux_sym_string_literal_token1] = ACTIONS(1465), + [sym_char_literal] = ACTIONS(1465), + [anon_sym_true] = ACTIONS(1467), + [anon_sym_false] = ACTIONS(1467), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1467), + [sym_super] = ACTIONS(1467), + [sym_crate] = ACTIONS(1467), + [sym_metavariable] = ACTIONS(1465), + [sym__raw_string_literal_start] = ACTIONS(1465), + [sym_float_literal] = ACTIONS(1465), + }, + [476] = { + [sym_line_comment] = STATE(476), + [sym_block_comment] = STATE(476), + [sym_identifier] = ACTIONS(1645), + [anon_sym_LPAREN] = ACTIONS(1647), + [anon_sym_LBRACK] = ACTIONS(1647), + [anon_sym_RBRACE] = ACTIONS(1449), + [anon_sym_PLUS] = ACTIONS(1451), + [anon_sym_STAR] = ACTIONS(1451), + [anon_sym_QMARK] = ACTIONS(1449), + [anon_sym_u8] = ACTIONS(1645), + [anon_sym_i8] = ACTIONS(1645), + [anon_sym_u16] = ACTIONS(1645), + [anon_sym_i16] = ACTIONS(1645), + [anon_sym_u32] = ACTIONS(1645), + [anon_sym_i32] = ACTIONS(1645), + [anon_sym_u64] = ACTIONS(1645), + [anon_sym_i64] = ACTIONS(1645), + [anon_sym_u128] = ACTIONS(1645), + [anon_sym_i128] = ACTIONS(1645), + [anon_sym_isize] = ACTIONS(1645), + [anon_sym_usize] = ACTIONS(1645), + [anon_sym_f32] = ACTIONS(1645), + [anon_sym_f64] = ACTIONS(1645), + [anon_sym_bool] = ACTIONS(1645), + [anon_sym_str] = ACTIONS(1645), + [anon_sym_char] = ACTIONS(1645), + [anon_sym_DASH] = ACTIONS(1645), + [anon_sym_SLASH] = ACTIONS(1451), + [anon_sym_PERCENT] = ACTIONS(1451), + [anon_sym_CARET] = ACTIONS(1451), + [anon_sym_AMP] = ACTIONS(1645), + [anon_sym_PIPE] = ACTIONS(1645), + [anon_sym_AMP_AMP] = ACTIONS(1449), + [anon_sym_PIPE_PIPE] = ACTIONS(1449), + [anon_sym_LT_LT] = ACTIONS(1451), + [anon_sym_GT_GT] = ACTIONS(1451), + [anon_sym_PLUS_EQ] = ACTIONS(1449), + [anon_sym_DASH_EQ] = ACTIONS(1449), + [anon_sym_STAR_EQ] = ACTIONS(1449), + [anon_sym_SLASH_EQ] = ACTIONS(1449), + [anon_sym_PERCENT_EQ] = ACTIONS(1449), + [anon_sym_CARET_EQ] = ACTIONS(1449), + [anon_sym_AMP_EQ] = ACTIONS(1449), + [anon_sym_PIPE_EQ] = ACTIONS(1449), + [anon_sym_LT_LT_EQ] = ACTIONS(1449), + [anon_sym_GT_GT_EQ] = ACTIONS(1449), + [anon_sym_EQ] = ACTIONS(1451), + [anon_sym_EQ_EQ] = ACTIONS(1449), + [anon_sym_BANG_EQ] = ACTIONS(1449), + [anon_sym_GT] = ACTIONS(1451), + [anon_sym_LT] = ACTIONS(1645), + [anon_sym_GT_EQ] = ACTIONS(1449), + [anon_sym_LT_EQ] = ACTIONS(1449), + [anon_sym__] = ACTIONS(1645), + [anon_sym_DOT] = ACTIONS(1451), + [anon_sym_DOT_DOT] = ACTIONS(1645), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1449), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1449), + [anon_sym_COMMA] = ACTIONS(1449), + [anon_sym_COLON_COLON] = ACTIONS(1647), + [anon_sym_POUND] = ACTIONS(1647), + [anon_sym_as] = ACTIONS(1451), + [anon_sym_const] = ACTIONS(1645), + [anon_sym_default] = ACTIONS(1645), + [anon_sym_gen] = ACTIONS(1645), + [anon_sym_union] = ACTIONS(1645), + [anon_sym_ref] = ACTIONS(1645), + [sym_mutable_specifier] = ACTIONS(1645), + [sym_integer_literal] = ACTIONS(1647), + [aux_sym_string_literal_token1] = ACTIONS(1647), + [sym_char_literal] = ACTIONS(1647), + [anon_sym_true] = ACTIONS(1645), + [anon_sym_false] = ACTIONS(1645), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1645), + [sym_super] = ACTIONS(1645), + [sym_crate] = ACTIONS(1645), + [sym_metavariable] = ACTIONS(1647), + [sym__raw_string_literal_start] = ACTIONS(1647), + [sym_float_literal] = ACTIONS(1647), + }, + [477] = { + [sym_attribute_item] = STATE(1649), + [sym_inner_attribute_item] = STATE(1649), + [sym_bracketed_type] = STATE(4029), + [sym_generic_type] = STATE(3972), + [sym_generic_type_with_turbofish] = STATE(3589), + [sym_macro_invocation] = STATE(3205), + [sym_scoped_identifier] = STATE(2461), + [sym_scoped_type_identifier] = STATE(3294), + [sym_match_arm] = STATE(1654), + [sym_last_match_arm] = STATE(3977), + [sym_match_pattern] = STATE(3985), + [sym_const_block] = STATE(3205), + [sym__pattern] = STATE(3193), + [sym_tuple_pattern] = STATE(3205), + [sym_slice_pattern] = STATE(3205), + [sym_tuple_struct_pattern] = STATE(3205), + [sym_struct_pattern] = STATE(3205), + [sym_remaining_field_pattern] = STATE(3205), + [sym_mut_pattern] = STATE(3205), + [sym_range_pattern] = STATE(3205), + [sym_ref_pattern] = STATE(3205), + [sym_captured_pattern] = STATE(3205), + [sym_reference_pattern] = STATE(3205), + [sym_or_pattern] = STATE(3205), + [sym__literal_pattern] = STATE(2617), + [sym_negative_literal] = STATE(2620), + [sym_string_literal] = STATE(2620), + [sym_raw_string_literal] = STATE(2620), + [sym_boolean_literal] = STATE(2620), + [sym_line_comment] = STATE(477), + [sym_block_comment] = STATE(477), + [aux_sym_match_block_repeat1] = STATE(493), + [aux_sym_match_arm_repeat1] = STATE(879), + [sym_identifier] = ACTIONS(1649), + [anon_sym_LPAREN] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_RBRACE] = ACTIONS(1655), + [anon_sym_u8] = ACTIONS(1657), + [anon_sym_i8] = ACTIONS(1657), + [anon_sym_u16] = ACTIONS(1657), + [anon_sym_i16] = ACTIONS(1657), + [anon_sym_u32] = ACTIONS(1657), + [anon_sym_i32] = ACTIONS(1657), + [anon_sym_u64] = ACTIONS(1657), + [anon_sym_i64] = ACTIONS(1657), + [anon_sym_u128] = ACTIONS(1657), + [anon_sym_i128] = ACTIONS(1657), + [anon_sym_isize] = ACTIONS(1657), + [anon_sym_usize] = ACTIONS(1657), + [anon_sym_f32] = ACTIONS(1657), + [anon_sym_f64] = ACTIONS(1657), + [anon_sym_bool] = ACTIONS(1657), + [anon_sym_str] = ACTIONS(1657), + [anon_sym_char] = ACTIONS(1657), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_AMP] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(1663), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1665), + [anon_sym_DOT_DOT] = ACTIONS(1667), + [anon_sym_COLON_COLON] = ACTIONS(1669), + [anon_sym_POUND] = ACTIONS(1671), + [anon_sym_const] = ACTIONS(1673), + [anon_sym_default] = ACTIONS(1675), + [anon_sym_gen] = ACTIONS(1675), + [anon_sym_union] = ACTIONS(1675), + [anon_sym_ref] = ACTIONS(1677), + [sym_mutable_specifier] = ACTIONS(1679), + [sym_integer_literal] = ACTIONS(1681), + [aux_sym_string_literal_token1] = ACTIONS(1683), + [sym_char_literal] = ACTIONS(1681), + [anon_sym_true] = ACTIONS(1685), + [anon_sym_false] = ACTIONS(1685), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1687), + [sym_super] = ACTIONS(1687), + [sym_crate] = ACTIONS(1687), + [sym_metavariable] = ACTIONS(1689), + [sym__raw_string_literal_start] = ACTIONS(1691), + [sym_float_literal] = ACTIONS(1681), + }, + [478] = { + [sym_line_comment] = STATE(478), + [sym_block_comment] = STATE(478), + [sym_identifier] = ACTIONS(1287), + [anon_sym_LPAREN] = ACTIONS(1285), + [anon_sym_LBRACK] = ACTIONS(1285), + [anon_sym_RBRACE] = ACTIONS(1285), + [anon_sym_PLUS] = ACTIONS(1287), + [anon_sym_STAR] = ACTIONS(1287), + [anon_sym_QMARK] = ACTIONS(1285), + [anon_sym_u8] = ACTIONS(1287), + [anon_sym_i8] = ACTIONS(1287), + [anon_sym_u16] = ACTIONS(1287), + [anon_sym_i16] = ACTIONS(1287), + [anon_sym_u32] = ACTIONS(1287), + [anon_sym_i32] = ACTIONS(1287), + [anon_sym_u64] = ACTIONS(1287), + [anon_sym_i64] = ACTIONS(1287), + [anon_sym_u128] = ACTIONS(1287), + [anon_sym_i128] = ACTIONS(1287), + [anon_sym_isize] = ACTIONS(1287), + [anon_sym_usize] = ACTIONS(1287), + [anon_sym_f32] = ACTIONS(1287), + [anon_sym_f64] = ACTIONS(1287), + [anon_sym_bool] = ACTIONS(1287), + [anon_sym_str] = ACTIONS(1287), + [anon_sym_char] = ACTIONS(1287), + [anon_sym_DASH] = ACTIONS(1287), + [anon_sym_SLASH] = ACTIONS(1287), + [anon_sym_PERCENT] = ACTIONS(1287), + [anon_sym_CARET] = ACTIONS(1287), + [anon_sym_AMP] = ACTIONS(1287), + [anon_sym_PIPE] = ACTIONS(1287), + [anon_sym_AMP_AMP] = ACTIONS(1285), + [anon_sym_PIPE_PIPE] = ACTIONS(1285), + [anon_sym_LT_LT] = ACTIONS(1287), + [anon_sym_GT_GT] = ACTIONS(1287), + [anon_sym_PLUS_EQ] = ACTIONS(1285), + [anon_sym_DASH_EQ] = ACTIONS(1285), + [anon_sym_STAR_EQ] = ACTIONS(1285), + [anon_sym_SLASH_EQ] = ACTIONS(1285), + [anon_sym_PERCENT_EQ] = ACTIONS(1285), + [anon_sym_CARET_EQ] = ACTIONS(1285), + [anon_sym_AMP_EQ] = ACTIONS(1285), + [anon_sym_PIPE_EQ] = ACTIONS(1285), + [anon_sym_LT_LT_EQ] = ACTIONS(1285), + [anon_sym_GT_GT_EQ] = ACTIONS(1285), + [anon_sym_EQ] = ACTIONS(1287), + [anon_sym_EQ_EQ] = ACTIONS(1285), + [anon_sym_BANG_EQ] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1287), + [anon_sym_LT] = ACTIONS(1287), + [anon_sym_GT_EQ] = ACTIONS(1285), + [anon_sym_LT_EQ] = ACTIONS(1285), + [anon_sym__] = ACTIONS(1287), + [anon_sym_DOT] = ACTIONS(1287), + [anon_sym_DOT_DOT] = ACTIONS(1287), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1285), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1285), + [anon_sym_COMMA] = ACTIONS(1285), + [anon_sym_COLON_COLON] = ACTIONS(1285), + [anon_sym_POUND] = ACTIONS(1285), + [anon_sym_as] = ACTIONS(1287), + [anon_sym_const] = ACTIONS(1287), + [anon_sym_default] = ACTIONS(1287), + [anon_sym_gen] = ACTIONS(1287), + [anon_sym_union] = ACTIONS(1287), + [anon_sym_ref] = ACTIONS(1287), + [sym_mutable_specifier] = ACTIONS(1287), + [sym_integer_literal] = ACTIONS(1285), + [aux_sym_string_literal_token1] = ACTIONS(1285), + [sym_char_literal] = ACTIONS(1285), + [anon_sym_true] = ACTIONS(1287), + [anon_sym_false] = ACTIONS(1287), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1287), + [sym_super] = ACTIONS(1287), + [sym_crate] = ACTIONS(1287), + [sym_metavariable] = ACTIONS(1285), + [sym__raw_string_literal_start] = ACTIONS(1285), + [sym_float_literal] = ACTIONS(1285), + }, + [479] = { + [sym_line_comment] = STATE(479), + [sym_block_comment] = STATE(479), [sym_identifier] = ACTIONS(1367), [anon_sym_LPAREN] = ACTIONS(1365), [anon_sym_LBRACK] = ACTIONS(1365), @@ -68378,341 +71218,341 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1365), [sym_float_literal] = ACTIONS(1365), }, - [465] = { - [sym_line_comment] = STATE(465), - [sym_block_comment] = STATE(465), - [sym_identifier] = ACTIONS(1457), - [anon_sym_LPAREN] = ACTIONS(1455), - [anon_sym_LBRACK] = ACTIONS(1455), - [anon_sym_RBRACE] = ACTIONS(1455), - [anon_sym_PLUS] = ACTIONS(1457), - [anon_sym_STAR] = ACTIONS(1457), - [anon_sym_QMARK] = ACTIONS(1455), - [anon_sym_u8] = ACTIONS(1457), - [anon_sym_i8] = ACTIONS(1457), - [anon_sym_u16] = ACTIONS(1457), - [anon_sym_i16] = ACTIONS(1457), - [anon_sym_u32] = ACTIONS(1457), - [anon_sym_i32] = ACTIONS(1457), - [anon_sym_u64] = ACTIONS(1457), - [anon_sym_i64] = ACTIONS(1457), - [anon_sym_u128] = ACTIONS(1457), - [anon_sym_i128] = ACTIONS(1457), - [anon_sym_isize] = ACTIONS(1457), - [anon_sym_usize] = ACTIONS(1457), - [anon_sym_f32] = ACTIONS(1457), - [anon_sym_f64] = ACTIONS(1457), - [anon_sym_bool] = ACTIONS(1457), - [anon_sym_str] = ACTIONS(1457), - [anon_sym_char] = ACTIONS(1457), - [anon_sym_DASH] = ACTIONS(1457), - [anon_sym_SLASH] = ACTIONS(1457), - [anon_sym_PERCENT] = ACTIONS(1457), - [anon_sym_CARET] = ACTIONS(1457), - [anon_sym_AMP] = ACTIONS(1457), - [anon_sym_PIPE] = ACTIONS(1457), - [anon_sym_AMP_AMP] = ACTIONS(1455), - [anon_sym_PIPE_PIPE] = ACTIONS(1455), - [anon_sym_LT_LT] = ACTIONS(1457), - [anon_sym_GT_GT] = ACTIONS(1457), - [anon_sym_PLUS_EQ] = ACTIONS(1455), - [anon_sym_DASH_EQ] = ACTIONS(1455), - [anon_sym_STAR_EQ] = ACTIONS(1455), - [anon_sym_SLASH_EQ] = ACTIONS(1455), - [anon_sym_PERCENT_EQ] = ACTIONS(1455), - [anon_sym_CARET_EQ] = ACTIONS(1455), - [anon_sym_AMP_EQ] = ACTIONS(1455), - [anon_sym_PIPE_EQ] = ACTIONS(1455), - [anon_sym_LT_LT_EQ] = ACTIONS(1455), - [anon_sym_GT_GT_EQ] = ACTIONS(1455), - [anon_sym_EQ] = ACTIONS(1457), - [anon_sym_EQ_EQ] = ACTIONS(1455), - [anon_sym_BANG_EQ] = ACTIONS(1455), - [anon_sym_GT] = ACTIONS(1457), - [anon_sym_LT] = ACTIONS(1457), - [anon_sym_GT_EQ] = ACTIONS(1455), - [anon_sym_LT_EQ] = ACTIONS(1455), - [anon_sym__] = ACTIONS(1457), - [anon_sym_DOT] = ACTIONS(1457), - [anon_sym_DOT_DOT] = ACTIONS(1457), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1455), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1455), - [anon_sym_COMMA] = ACTIONS(1455), - [anon_sym_COLON_COLON] = ACTIONS(1455), - [anon_sym_POUND] = ACTIONS(1455), - [anon_sym_as] = ACTIONS(1457), - [anon_sym_const] = ACTIONS(1457), - [anon_sym_default] = ACTIONS(1457), - [anon_sym_gen] = ACTIONS(1457), - [anon_sym_union] = ACTIONS(1457), - [anon_sym_ref] = ACTIONS(1457), - [sym_mutable_specifier] = ACTIONS(1457), - [sym_integer_literal] = ACTIONS(1455), - [aux_sym_string_literal_token1] = ACTIONS(1455), - [sym_char_literal] = ACTIONS(1455), - [anon_sym_true] = ACTIONS(1457), - [anon_sym_false] = ACTIONS(1457), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1457), - [sym_super] = ACTIONS(1457), - [sym_crate] = ACTIONS(1457), - [sym_metavariable] = ACTIONS(1455), - [sym__raw_string_literal_start] = ACTIONS(1455), - [sym_float_literal] = ACTIONS(1455), + [480] = { + [sym_attribute_item] = STATE(1649), + [sym_inner_attribute_item] = STATE(1649), + [sym_bracketed_type] = STATE(4029), + [sym_generic_type] = STATE(3972), + [sym_generic_type_with_turbofish] = STATE(3589), + [sym_macro_invocation] = STATE(3205), + [sym_scoped_identifier] = STATE(2461), + [sym_scoped_type_identifier] = STATE(3294), + [sym_match_arm] = STATE(1654), + [sym_last_match_arm] = STATE(3955), + [sym_match_pattern] = STATE(3985), + [sym_const_block] = STATE(3205), + [sym__pattern] = STATE(3193), + [sym_tuple_pattern] = STATE(3205), + [sym_slice_pattern] = STATE(3205), + [sym_tuple_struct_pattern] = STATE(3205), + [sym_struct_pattern] = STATE(3205), + [sym_remaining_field_pattern] = STATE(3205), + [sym_mut_pattern] = STATE(3205), + [sym_range_pattern] = STATE(3205), + [sym_ref_pattern] = STATE(3205), + [sym_captured_pattern] = STATE(3205), + [sym_reference_pattern] = STATE(3205), + [sym_or_pattern] = STATE(3205), + [sym__literal_pattern] = STATE(2617), + [sym_negative_literal] = STATE(2620), + [sym_string_literal] = STATE(2620), + [sym_raw_string_literal] = STATE(2620), + [sym_boolean_literal] = STATE(2620), + [sym_line_comment] = STATE(480), + [sym_block_comment] = STATE(480), + [aux_sym_match_block_repeat1] = STATE(492), + [aux_sym_match_arm_repeat1] = STATE(879), + [sym_identifier] = ACTIONS(1649), + [anon_sym_LPAREN] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_RBRACE] = ACTIONS(1693), + [anon_sym_u8] = ACTIONS(1657), + [anon_sym_i8] = ACTIONS(1657), + [anon_sym_u16] = ACTIONS(1657), + [anon_sym_i16] = ACTIONS(1657), + [anon_sym_u32] = ACTIONS(1657), + [anon_sym_i32] = ACTIONS(1657), + [anon_sym_u64] = ACTIONS(1657), + [anon_sym_i64] = ACTIONS(1657), + [anon_sym_u128] = ACTIONS(1657), + [anon_sym_i128] = ACTIONS(1657), + [anon_sym_isize] = ACTIONS(1657), + [anon_sym_usize] = ACTIONS(1657), + [anon_sym_f32] = ACTIONS(1657), + [anon_sym_f64] = ACTIONS(1657), + [anon_sym_bool] = ACTIONS(1657), + [anon_sym_str] = ACTIONS(1657), + [anon_sym_char] = ACTIONS(1657), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_AMP] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(1663), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1665), + [anon_sym_DOT_DOT] = ACTIONS(1667), + [anon_sym_COLON_COLON] = ACTIONS(1669), + [anon_sym_POUND] = ACTIONS(1671), + [anon_sym_const] = ACTIONS(1673), + [anon_sym_default] = ACTIONS(1675), + [anon_sym_gen] = ACTIONS(1675), + [anon_sym_union] = ACTIONS(1675), + [anon_sym_ref] = ACTIONS(1677), + [sym_mutable_specifier] = ACTIONS(1679), + [sym_integer_literal] = ACTIONS(1681), + [aux_sym_string_literal_token1] = ACTIONS(1683), + [sym_char_literal] = ACTIONS(1681), + [anon_sym_true] = ACTIONS(1685), + [anon_sym_false] = ACTIONS(1685), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1687), + [sym_super] = ACTIONS(1687), + [sym_crate] = ACTIONS(1687), + [sym_metavariable] = ACTIONS(1689), + [sym__raw_string_literal_start] = ACTIONS(1691), + [sym_float_literal] = ACTIONS(1681), }, - [466] = { - [sym_line_comment] = STATE(466), - [sym_block_comment] = STATE(466), - [sym_identifier] = ACTIONS(1405), - [anon_sym_LPAREN] = ACTIONS(1403), - [anon_sym_LBRACK] = ACTIONS(1403), - [anon_sym_RBRACE] = ACTIONS(1403), - [anon_sym_PLUS] = ACTIONS(1405), - [anon_sym_STAR] = ACTIONS(1405), - [anon_sym_QMARK] = ACTIONS(1403), - [anon_sym_u8] = ACTIONS(1405), - [anon_sym_i8] = ACTIONS(1405), - [anon_sym_u16] = ACTIONS(1405), - [anon_sym_i16] = ACTIONS(1405), - [anon_sym_u32] = ACTIONS(1405), - [anon_sym_i32] = ACTIONS(1405), - [anon_sym_u64] = ACTIONS(1405), - [anon_sym_i64] = ACTIONS(1405), - [anon_sym_u128] = ACTIONS(1405), - [anon_sym_i128] = ACTIONS(1405), - [anon_sym_isize] = ACTIONS(1405), - [anon_sym_usize] = ACTIONS(1405), - [anon_sym_f32] = ACTIONS(1405), - [anon_sym_f64] = ACTIONS(1405), - [anon_sym_bool] = ACTIONS(1405), - [anon_sym_str] = ACTIONS(1405), - [anon_sym_char] = ACTIONS(1405), - [anon_sym_DASH] = ACTIONS(1405), - [anon_sym_SLASH] = ACTIONS(1405), - [anon_sym_PERCENT] = ACTIONS(1405), - [anon_sym_CARET] = ACTIONS(1405), - [anon_sym_AMP] = ACTIONS(1405), - [anon_sym_PIPE] = ACTIONS(1405), - [anon_sym_AMP_AMP] = ACTIONS(1403), - [anon_sym_PIPE_PIPE] = ACTIONS(1403), - [anon_sym_LT_LT] = ACTIONS(1405), - [anon_sym_GT_GT] = ACTIONS(1405), - [anon_sym_PLUS_EQ] = ACTIONS(1403), - [anon_sym_DASH_EQ] = ACTIONS(1403), - [anon_sym_STAR_EQ] = ACTIONS(1403), - [anon_sym_SLASH_EQ] = ACTIONS(1403), - [anon_sym_PERCENT_EQ] = ACTIONS(1403), - [anon_sym_CARET_EQ] = ACTIONS(1403), - [anon_sym_AMP_EQ] = ACTIONS(1403), - [anon_sym_PIPE_EQ] = ACTIONS(1403), - [anon_sym_LT_LT_EQ] = ACTIONS(1403), - [anon_sym_GT_GT_EQ] = ACTIONS(1403), - [anon_sym_EQ] = ACTIONS(1405), - [anon_sym_EQ_EQ] = ACTIONS(1403), - [anon_sym_BANG_EQ] = ACTIONS(1403), - [anon_sym_GT] = ACTIONS(1405), - [anon_sym_LT] = ACTIONS(1405), - [anon_sym_GT_EQ] = ACTIONS(1403), - [anon_sym_LT_EQ] = ACTIONS(1403), - [anon_sym__] = ACTIONS(1405), - [anon_sym_DOT] = ACTIONS(1405), - [anon_sym_DOT_DOT] = ACTIONS(1405), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1403), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1403), - [anon_sym_COMMA] = ACTIONS(1403), - [anon_sym_COLON_COLON] = ACTIONS(1403), - [anon_sym_POUND] = ACTIONS(1403), - [anon_sym_as] = ACTIONS(1405), - [anon_sym_const] = ACTIONS(1405), - [anon_sym_default] = ACTIONS(1405), - [anon_sym_gen] = ACTIONS(1405), - [anon_sym_union] = ACTIONS(1405), - [anon_sym_ref] = ACTIONS(1405), - [sym_mutable_specifier] = ACTIONS(1405), - [sym_integer_literal] = ACTIONS(1403), - [aux_sym_string_literal_token1] = ACTIONS(1403), - [sym_char_literal] = ACTIONS(1403), - [anon_sym_true] = ACTIONS(1405), - [anon_sym_false] = ACTIONS(1405), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1405), - [sym_super] = ACTIONS(1405), - [sym_crate] = ACTIONS(1405), - [sym_metavariable] = ACTIONS(1403), - [sym__raw_string_literal_start] = ACTIONS(1403), - [sym_float_literal] = ACTIONS(1403), + [481] = { + [sym_attribute_item] = STATE(1649), + [sym_inner_attribute_item] = STATE(1649), + [sym_bracketed_type] = STATE(4029), + [sym_generic_type] = STATE(3972), + [sym_generic_type_with_turbofish] = STATE(3589), + [sym_macro_invocation] = STATE(3205), + [sym_scoped_identifier] = STATE(2461), + [sym_scoped_type_identifier] = STATE(3294), + [sym_match_arm] = STATE(1654), + [sym_last_match_arm] = STATE(3890), + [sym_match_pattern] = STATE(3985), + [sym_const_block] = STATE(3205), + [sym__pattern] = STATE(3193), + [sym_tuple_pattern] = STATE(3205), + [sym_slice_pattern] = STATE(3205), + [sym_tuple_struct_pattern] = STATE(3205), + [sym_struct_pattern] = STATE(3205), + [sym_remaining_field_pattern] = STATE(3205), + [sym_mut_pattern] = STATE(3205), + [sym_range_pattern] = STATE(3205), + [sym_ref_pattern] = STATE(3205), + [sym_captured_pattern] = STATE(3205), + [sym_reference_pattern] = STATE(3205), + [sym_or_pattern] = STATE(3205), + [sym__literal_pattern] = STATE(2617), + [sym_negative_literal] = STATE(2620), + [sym_string_literal] = STATE(2620), + [sym_raw_string_literal] = STATE(2620), + [sym_boolean_literal] = STATE(2620), + [sym_line_comment] = STATE(481), + [sym_block_comment] = STATE(481), + [aux_sym_match_block_repeat1] = STATE(491), + [aux_sym_match_arm_repeat1] = STATE(879), + [sym_identifier] = ACTIONS(1649), + [anon_sym_LPAREN] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_RBRACE] = ACTIONS(1695), + [anon_sym_u8] = ACTIONS(1657), + [anon_sym_i8] = ACTIONS(1657), + [anon_sym_u16] = ACTIONS(1657), + [anon_sym_i16] = ACTIONS(1657), + [anon_sym_u32] = ACTIONS(1657), + [anon_sym_i32] = ACTIONS(1657), + [anon_sym_u64] = ACTIONS(1657), + [anon_sym_i64] = ACTIONS(1657), + [anon_sym_u128] = ACTIONS(1657), + [anon_sym_i128] = ACTIONS(1657), + [anon_sym_isize] = ACTIONS(1657), + [anon_sym_usize] = ACTIONS(1657), + [anon_sym_f32] = ACTIONS(1657), + [anon_sym_f64] = ACTIONS(1657), + [anon_sym_bool] = ACTIONS(1657), + [anon_sym_str] = ACTIONS(1657), + [anon_sym_char] = ACTIONS(1657), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_AMP] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(1663), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1665), + [anon_sym_DOT_DOT] = ACTIONS(1667), + [anon_sym_COLON_COLON] = ACTIONS(1669), + [anon_sym_POUND] = ACTIONS(1671), + [anon_sym_const] = ACTIONS(1673), + [anon_sym_default] = ACTIONS(1675), + [anon_sym_gen] = ACTIONS(1675), + [anon_sym_union] = ACTIONS(1675), + [anon_sym_ref] = ACTIONS(1677), + [sym_mutable_specifier] = ACTIONS(1679), + [sym_integer_literal] = ACTIONS(1681), + [aux_sym_string_literal_token1] = ACTIONS(1683), + [sym_char_literal] = ACTIONS(1681), + [anon_sym_true] = ACTIONS(1685), + [anon_sym_false] = ACTIONS(1685), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1687), + [sym_super] = ACTIONS(1687), + [sym_crate] = ACTIONS(1687), + [sym_metavariable] = ACTIONS(1689), + [sym__raw_string_literal_start] = ACTIONS(1691), + [sym_float_literal] = ACTIONS(1681), }, - [467] = { - [sym_attribute_item] = STATE(1468), - [sym_inner_attribute_item] = STATE(1468), - [sym_bracketed_type] = STATE(3553), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3287), - [sym_macro_invocation] = STATE(2757), - [sym_scoped_identifier] = STATE(2151), - [sym_scoped_type_identifier] = STATE(2982), - [sym_match_arm] = STATE(1469), - [sym_last_match_arm] = STATE(3466), - [sym_match_pattern] = STATE(3352), - [sym_const_block] = STATE(2757), - [sym__pattern] = STATE(2907), - [sym_tuple_pattern] = STATE(2757), - [sym_slice_pattern] = STATE(2757), - [sym_tuple_struct_pattern] = STATE(2757), - [sym_struct_pattern] = STATE(2757), - [sym_remaining_field_pattern] = STATE(2757), - [sym_mut_pattern] = STATE(2757), - [sym_range_pattern] = STATE(2757), - [sym_ref_pattern] = STATE(2757), - [sym_captured_pattern] = STATE(2757), - [sym_reference_pattern] = STATE(2757), - [sym_or_pattern] = STATE(2757), - [sym__literal_pattern] = STATE(2330), - [sym_negative_literal] = STATE(2364), - [sym_string_literal] = STATE(2364), - [sym_raw_string_literal] = STATE(2364), - [sym_boolean_literal] = STATE(2364), - [sym_line_comment] = STATE(467), - [sym_block_comment] = STATE(467), - [aux_sym_match_block_repeat1] = STATE(486), - [aux_sym_match_arm_repeat1] = STATE(767), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1649), - [anon_sym_RBRACE] = ACTIONS(1651), - [anon_sym_u8] = ACTIONS(1653), - [anon_sym_i8] = ACTIONS(1653), - [anon_sym_u16] = ACTIONS(1653), - [anon_sym_i16] = ACTIONS(1653), - [anon_sym_u32] = ACTIONS(1653), - [anon_sym_i32] = ACTIONS(1653), - [anon_sym_u64] = ACTIONS(1653), - [anon_sym_i64] = ACTIONS(1653), - [anon_sym_u128] = ACTIONS(1653), - [anon_sym_i128] = ACTIONS(1653), - [anon_sym_isize] = ACTIONS(1653), - [anon_sym_usize] = ACTIONS(1653), - [anon_sym_f32] = ACTIONS(1653), - [anon_sym_f64] = ACTIONS(1653), - [anon_sym_bool] = ACTIONS(1653), - [anon_sym_str] = ACTIONS(1653), - [anon_sym_char] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_PIPE] = ACTIONS(1659), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1661), - [anon_sym_DOT_DOT] = ACTIONS(1663), - [anon_sym_COLON_COLON] = ACTIONS(1665), - [anon_sym_POUND] = ACTIONS(1667), - [anon_sym_const] = ACTIONS(1669), - [anon_sym_default] = ACTIONS(1671), - [anon_sym_gen] = ACTIONS(1671), - [anon_sym_union] = ACTIONS(1671), - [anon_sym_ref] = ACTIONS(1673), - [sym_mutable_specifier] = ACTIONS(1675), - [sym_integer_literal] = ACTIONS(1677), - [aux_sym_string_literal_token1] = ACTIONS(1679), - [sym_char_literal] = ACTIONS(1677), - [anon_sym_true] = ACTIONS(1681), - [anon_sym_false] = ACTIONS(1681), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1683), - [sym_super] = ACTIONS(1683), - [sym_crate] = ACTIONS(1683), - [sym_metavariable] = ACTIONS(1685), - [sym__raw_string_literal_start] = ACTIONS(1687), - [sym_float_literal] = ACTIONS(1677), + [482] = { + [sym_attribute_item] = STATE(1649), + [sym_inner_attribute_item] = STATE(1649), + [sym_bracketed_type] = STATE(4029), + [sym_generic_type] = STATE(3972), + [sym_generic_type_with_turbofish] = STATE(3589), + [sym_macro_invocation] = STATE(3205), + [sym_scoped_identifier] = STATE(2461), + [sym_scoped_type_identifier] = STATE(3294), + [sym_match_arm] = STATE(1654), + [sym_last_match_arm] = STATE(3960), + [sym_match_pattern] = STATE(3985), + [sym_const_block] = STATE(3205), + [sym__pattern] = STATE(3193), + [sym_tuple_pattern] = STATE(3205), + [sym_slice_pattern] = STATE(3205), + [sym_tuple_struct_pattern] = STATE(3205), + [sym_struct_pattern] = STATE(3205), + [sym_remaining_field_pattern] = STATE(3205), + [sym_mut_pattern] = STATE(3205), + [sym_range_pattern] = STATE(3205), + [sym_ref_pattern] = STATE(3205), + [sym_captured_pattern] = STATE(3205), + [sym_reference_pattern] = STATE(3205), + [sym_or_pattern] = STATE(3205), + [sym__literal_pattern] = STATE(2617), + [sym_negative_literal] = STATE(2620), + [sym_string_literal] = STATE(2620), + [sym_raw_string_literal] = STATE(2620), + [sym_boolean_literal] = STATE(2620), + [sym_line_comment] = STATE(482), + [sym_block_comment] = STATE(482), + [aux_sym_match_block_repeat1] = STATE(494), + [aux_sym_match_arm_repeat1] = STATE(879), + [sym_identifier] = ACTIONS(1649), + [anon_sym_LPAREN] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_RBRACE] = ACTIONS(1697), + [anon_sym_u8] = ACTIONS(1657), + [anon_sym_i8] = ACTIONS(1657), + [anon_sym_u16] = ACTIONS(1657), + [anon_sym_i16] = ACTIONS(1657), + [anon_sym_u32] = ACTIONS(1657), + [anon_sym_i32] = ACTIONS(1657), + [anon_sym_u64] = ACTIONS(1657), + [anon_sym_i64] = ACTIONS(1657), + [anon_sym_u128] = ACTIONS(1657), + [anon_sym_i128] = ACTIONS(1657), + [anon_sym_isize] = ACTIONS(1657), + [anon_sym_usize] = ACTIONS(1657), + [anon_sym_f32] = ACTIONS(1657), + [anon_sym_f64] = ACTIONS(1657), + [anon_sym_bool] = ACTIONS(1657), + [anon_sym_str] = ACTIONS(1657), + [anon_sym_char] = ACTIONS(1657), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_AMP] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(1663), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1665), + [anon_sym_DOT_DOT] = ACTIONS(1667), + [anon_sym_COLON_COLON] = ACTIONS(1669), + [anon_sym_POUND] = ACTIONS(1671), + [anon_sym_const] = ACTIONS(1673), + [anon_sym_default] = ACTIONS(1675), + [anon_sym_gen] = ACTIONS(1675), + [anon_sym_union] = ACTIONS(1675), + [anon_sym_ref] = ACTIONS(1677), + [sym_mutable_specifier] = ACTIONS(1679), + [sym_integer_literal] = ACTIONS(1681), + [aux_sym_string_literal_token1] = ACTIONS(1683), + [sym_char_literal] = ACTIONS(1681), + [anon_sym_true] = ACTIONS(1685), + [anon_sym_false] = ACTIONS(1685), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1687), + [sym_super] = ACTIONS(1687), + [sym_crate] = ACTIONS(1687), + [sym_metavariable] = ACTIONS(1689), + [sym__raw_string_literal_start] = ACTIONS(1691), + [sym_float_literal] = ACTIONS(1681), }, - [468] = { - [sym_line_comment] = STATE(468), - [sym_block_comment] = STATE(468), - [sym_identifier] = ACTIONS(1413), - [anon_sym_LPAREN] = ACTIONS(1411), - [anon_sym_LBRACK] = ACTIONS(1411), - [anon_sym_RBRACE] = ACTIONS(1411), - [anon_sym_PLUS] = ACTIONS(1413), - [anon_sym_STAR] = ACTIONS(1413), - [anon_sym_QMARK] = ACTIONS(1411), - [anon_sym_u8] = ACTIONS(1413), - [anon_sym_i8] = ACTIONS(1413), - [anon_sym_u16] = ACTIONS(1413), - [anon_sym_i16] = ACTIONS(1413), - [anon_sym_u32] = ACTIONS(1413), - [anon_sym_i32] = ACTIONS(1413), - [anon_sym_u64] = ACTIONS(1413), - [anon_sym_i64] = ACTIONS(1413), - [anon_sym_u128] = ACTIONS(1413), - [anon_sym_i128] = ACTIONS(1413), - [anon_sym_isize] = ACTIONS(1413), - [anon_sym_usize] = ACTIONS(1413), - [anon_sym_f32] = ACTIONS(1413), - [anon_sym_f64] = ACTIONS(1413), - [anon_sym_bool] = ACTIONS(1413), - [anon_sym_str] = ACTIONS(1413), - [anon_sym_char] = ACTIONS(1413), - [anon_sym_DASH] = ACTIONS(1413), - [anon_sym_SLASH] = ACTIONS(1413), - [anon_sym_PERCENT] = ACTIONS(1413), - [anon_sym_CARET] = ACTIONS(1413), - [anon_sym_AMP] = ACTIONS(1413), - [anon_sym_PIPE] = ACTIONS(1413), - [anon_sym_AMP_AMP] = ACTIONS(1411), - [anon_sym_PIPE_PIPE] = ACTIONS(1411), - [anon_sym_LT_LT] = ACTIONS(1413), - [anon_sym_GT_GT] = ACTIONS(1413), - [anon_sym_PLUS_EQ] = ACTIONS(1411), - [anon_sym_DASH_EQ] = ACTIONS(1411), - [anon_sym_STAR_EQ] = ACTIONS(1411), - [anon_sym_SLASH_EQ] = ACTIONS(1411), - [anon_sym_PERCENT_EQ] = ACTIONS(1411), - [anon_sym_CARET_EQ] = ACTIONS(1411), - [anon_sym_AMP_EQ] = ACTIONS(1411), - [anon_sym_PIPE_EQ] = ACTIONS(1411), - [anon_sym_LT_LT_EQ] = ACTIONS(1411), - [anon_sym_GT_GT_EQ] = ACTIONS(1411), - [anon_sym_EQ] = ACTIONS(1413), - [anon_sym_EQ_EQ] = ACTIONS(1411), - [anon_sym_BANG_EQ] = ACTIONS(1411), - [anon_sym_GT] = ACTIONS(1413), - [anon_sym_LT] = ACTIONS(1413), - [anon_sym_GT_EQ] = ACTIONS(1411), - [anon_sym_LT_EQ] = ACTIONS(1411), - [anon_sym__] = ACTIONS(1413), - [anon_sym_DOT] = ACTIONS(1413), - [anon_sym_DOT_DOT] = ACTIONS(1413), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1411), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1411), - [anon_sym_COMMA] = ACTIONS(1411), - [anon_sym_COLON_COLON] = ACTIONS(1411), - [anon_sym_POUND] = ACTIONS(1411), - [anon_sym_as] = ACTIONS(1413), - [anon_sym_const] = ACTIONS(1413), - [anon_sym_default] = ACTIONS(1413), - [anon_sym_gen] = ACTIONS(1413), - [anon_sym_union] = ACTIONS(1413), - [anon_sym_ref] = ACTIONS(1413), - [sym_mutable_specifier] = ACTIONS(1413), - [sym_integer_literal] = ACTIONS(1411), - [aux_sym_string_literal_token1] = ACTIONS(1411), - [sym_char_literal] = ACTIONS(1411), - [anon_sym_true] = ACTIONS(1413), - [anon_sym_false] = ACTIONS(1413), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1413), - [sym_super] = ACTIONS(1413), - [sym_crate] = ACTIONS(1413), - [sym_metavariable] = ACTIONS(1411), - [sym__raw_string_literal_start] = ACTIONS(1411), - [sym_float_literal] = ACTIONS(1411), + [483] = { + [sym_line_comment] = STATE(483), + [sym_block_comment] = STATE(483), + [sym_identifier] = ACTIONS(1371), + [anon_sym_LPAREN] = ACTIONS(1369), + [anon_sym_LBRACK] = ACTIONS(1369), + [anon_sym_RBRACE] = ACTIONS(1369), + [anon_sym_PLUS] = ACTIONS(1371), + [anon_sym_STAR] = ACTIONS(1371), + [anon_sym_QMARK] = ACTIONS(1369), + [anon_sym_u8] = ACTIONS(1371), + [anon_sym_i8] = ACTIONS(1371), + [anon_sym_u16] = ACTIONS(1371), + [anon_sym_i16] = ACTIONS(1371), + [anon_sym_u32] = ACTIONS(1371), + [anon_sym_i32] = ACTIONS(1371), + [anon_sym_u64] = ACTIONS(1371), + [anon_sym_i64] = ACTIONS(1371), + [anon_sym_u128] = ACTIONS(1371), + [anon_sym_i128] = ACTIONS(1371), + [anon_sym_isize] = ACTIONS(1371), + [anon_sym_usize] = ACTIONS(1371), + [anon_sym_f32] = ACTIONS(1371), + [anon_sym_f64] = ACTIONS(1371), + [anon_sym_bool] = ACTIONS(1371), + [anon_sym_str] = ACTIONS(1371), + [anon_sym_char] = ACTIONS(1371), + [anon_sym_DASH] = ACTIONS(1371), + [anon_sym_SLASH] = ACTIONS(1371), + [anon_sym_PERCENT] = ACTIONS(1371), + [anon_sym_CARET] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1371), + [anon_sym_PIPE] = ACTIONS(1371), + [anon_sym_AMP_AMP] = ACTIONS(1369), + [anon_sym_PIPE_PIPE] = ACTIONS(1369), + [anon_sym_LT_LT] = ACTIONS(1371), + [anon_sym_GT_GT] = ACTIONS(1371), + [anon_sym_PLUS_EQ] = ACTIONS(1369), + [anon_sym_DASH_EQ] = ACTIONS(1369), + [anon_sym_STAR_EQ] = ACTIONS(1369), + [anon_sym_SLASH_EQ] = ACTIONS(1369), + [anon_sym_PERCENT_EQ] = ACTIONS(1369), + [anon_sym_CARET_EQ] = ACTIONS(1369), + [anon_sym_AMP_EQ] = ACTIONS(1369), + [anon_sym_PIPE_EQ] = ACTIONS(1369), + [anon_sym_LT_LT_EQ] = ACTIONS(1369), + [anon_sym_GT_GT_EQ] = ACTIONS(1369), + [anon_sym_EQ] = ACTIONS(1371), + [anon_sym_EQ_EQ] = ACTIONS(1369), + [anon_sym_BANG_EQ] = ACTIONS(1369), + [anon_sym_GT] = ACTIONS(1371), + [anon_sym_LT] = ACTIONS(1371), + [anon_sym_GT_EQ] = ACTIONS(1369), + [anon_sym_LT_EQ] = ACTIONS(1369), + [anon_sym__] = ACTIONS(1371), + [anon_sym_DOT] = ACTIONS(1371), + [anon_sym_DOT_DOT] = ACTIONS(1371), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1369), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1369), + [anon_sym_COMMA] = ACTIONS(1369), + [anon_sym_COLON_COLON] = ACTIONS(1369), + [anon_sym_POUND] = ACTIONS(1369), + [anon_sym_as] = ACTIONS(1371), + [anon_sym_const] = ACTIONS(1371), + [anon_sym_default] = ACTIONS(1371), + [anon_sym_gen] = ACTIONS(1371), + [anon_sym_union] = ACTIONS(1371), + [anon_sym_ref] = ACTIONS(1371), + [sym_mutable_specifier] = ACTIONS(1371), + [sym_integer_literal] = ACTIONS(1369), + [aux_sym_string_literal_token1] = ACTIONS(1369), + [sym_char_literal] = ACTIONS(1369), + [anon_sym_true] = ACTIONS(1371), + [anon_sym_false] = ACTIONS(1371), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1371), + [sym_super] = ACTIONS(1371), + [sym_crate] = ACTIONS(1371), + [sym_metavariable] = ACTIONS(1369), + [sym__raw_string_literal_start] = ACTIONS(1369), + [sym_float_literal] = ACTIONS(1369), }, - [469] = { - [sym_line_comment] = STATE(469), - [sym_block_comment] = STATE(469), + [484] = { + [sym_line_comment] = STATE(484), + [sym_block_comment] = STATE(484), [sym_identifier] = ACTIONS(1401), [anon_sym_LPAREN] = ACTIONS(1399), [anon_sym_LBRACK] = ACTIONS(1399), @@ -68793,673 +71633,341 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1399), [sym_float_literal] = ACTIONS(1399), }, - [470] = { - [sym_line_comment] = STATE(470), - [sym_block_comment] = STATE(470), - [sym_identifier] = ACTIONS(1363), - [anon_sym_LPAREN] = ACTIONS(1361), - [anon_sym_LBRACK] = ACTIONS(1361), - [anon_sym_RBRACE] = ACTIONS(1361), - [anon_sym_PLUS] = ACTIONS(1363), - [anon_sym_STAR] = ACTIONS(1363), - [anon_sym_QMARK] = ACTIONS(1361), - [anon_sym_u8] = ACTIONS(1363), - [anon_sym_i8] = ACTIONS(1363), - [anon_sym_u16] = ACTIONS(1363), - [anon_sym_i16] = ACTIONS(1363), - [anon_sym_u32] = ACTIONS(1363), - [anon_sym_i32] = ACTIONS(1363), - [anon_sym_u64] = ACTIONS(1363), - [anon_sym_i64] = ACTIONS(1363), - [anon_sym_u128] = ACTIONS(1363), - [anon_sym_i128] = ACTIONS(1363), - [anon_sym_isize] = ACTIONS(1363), - [anon_sym_usize] = ACTIONS(1363), - [anon_sym_f32] = ACTIONS(1363), - [anon_sym_f64] = ACTIONS(1363), - [anon_sym_bool] = ACTIONS(1363), - [anon_sym_str] = ACTIONS(1363), - [anon_sym_char] = ACTIONS(1363), - [anon_sym_DASH] = ACTIONS(1363), - [anon_sym_SLASH] = ACTIONS(1363), - [anon_sym_PERCENT] = ACTIONS(1363), - [anon_sym_CARET] = ACTIONS(1363), - [anon_sym_AMP] = ACTIONS(1363), - [anon_sym_PIPE] = ACTIONS(1363), - [anon_sym_AMP_AMP] = ACTIONS(1361), - [anon_sym_PIPE_PIPE] = ACTIONS(1361), - [anon_sym_LT_LT] = ACTIONS(1363), - [anon_sym_GT_GT] = ACTIONS(1363), - [anon_sym_PLUS_EQ] = ACTIONS(1361), - [anon_sym_DASH_EQ] = ACTIONS(1361), - [anon_sym_STAR_EQ] = ACTIONS(1361), - [anon_sym_SLASH_EQ] = ACTIONS(1361), - [anon_sym_PERCENT_EQ] = ACTIONS(1361), - [anon_sym_CARET_EQ] = ACTIONS(1361), - [anon_sym_AMP_EQ] = ACTIONS(1361), - [anon_sym_PIPE_EQ] = ACTIONS(1361), - [anon_sym_LT_LT_EQ] = ACTIONS(1361), - [anon_sym_GT_GT_EQ] = ACTIONS(1361), - [anon_sym_EQ] = ACTIONS(1363), - [anon_sym_EQ_EQ] = ACTIONS(1361), - [anon_sym_BANG_EQ] = ACTIONS(1361), - [anon_sym_GT] = ACTIONS(1363), - [anon_sym_LT] = ACTIONS(1363), - [anon_sym_GT_EQ] = ACTIONS(1361), - [anon_sym_LT_EQ] = ACTIONS(1361), - [anon_sym__] = ACTIONS(1363), - [anon_sym_DOT] = ACTIONS(1363), - [anon_sym_DOT_DOT] = ACTIONS(1363), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1361), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1361), - [anon_sym_COMMA] = ACTIONS(1361), - [anon_sym_COLON_COLON] = ACTIONS(1361), - [anon_sym_POUND] = ACTIONS(1361), - [anon_sym_as] = ACTIONS(1363), - [anon_sym_const] = ACTIONS(1363), - [anon_sym_default] = ACTIONS(1363), - [anon_sym_gen] = ACTIONS(1363), - [anon_sym_union] = ACTIONS(1363), - [anon_sym_ref] = ACTIONS(1363), - [sym_mutable_specifier] = ACTIONS(1363), - [sym_integer_literal] = ACTIONS(1361), - [aux_sym_string_literal_token1] = ACTIONS(1361), - [sym_char_literal] = ACTIONS(1361), - [anon_sym_true] = ACTIONS(1363), - [anon_sym_false] = ACTIONS(1363), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1363), - [sym_super] = ACTIONS(1363), - [sym_crate] = ACTIONS(1363), - [sym_metavariable] = ACTIONS(1361), - [sym__raw_string_literal_start] = ACTIONS(1361), - [sym_float_literal] = ACTIONS(1361), - }, - [471] = { - [sym_line_comment] = STATE(471), - [sym_block_comment] = STATE(471), - [sym_identifier] = ACTIONS(1689), - [anon_sym_LPAREN] = ACTIONS(1691), - [anon_sym_LBRACK] = ACTIONS(1691), - [anon_sym_RBRACE] = ACTIONS(1359), - [anon_sym_PLUS] = ACTIONS(1357), - [anon_sym_STAR] = ACTIONS(1357), - [anon_sym_QMARK] = ACTIONS(1359), - [anon_sym_u8] = ACTIONS(1689), - [anon_sym_i8] = ACTIONS(1689), - [anon_sym_u16] = ACTIONS(1689), - [anon_sym_i16] = ACTIONS(1689), - [anon_sym_u32] = ACTIONS(1689), - [anon_sym_i32] = ACTIONS(1689), - [anon_sym_u64] = ACTIONS(1689), - [anon_sym_i64] = ACTIONS(1689), - [anon_sym_u128] = ACTIONS(1689), - [anon_sym_i128] = ACTIONS(1689), - [anon_sym_isize] = ACTIONS(1689), - [anon_sym_usize] = ACTIONS(1689), - [anon_sym_f32] = ACTIONS(1689), - [anon_sym_f64] = ACTIONS(1689), - [anon_sym_bool] = ACTIONS(1689), - [anon_sym_str] = ACTIONS(1689), - [anon_sym_char] = ACTIONS(1689), - [anon_sym_DASH] = ACTIONS(1689), - [anon_sym_SLASH] = ACTIONS(1357), - [anon_sym_PERCENT] = ACTIONS(1357), - [anon_sym_CARET] = ACTIONS(1357), - [anon_sym_AMP] = ACTIONS(1689), - [anon_sym_PIPE] = ACTIONS(1689), - [anon_sym_AMP_AMP] = ACTIONS(1359), - [anon_sym_PIPE_PIPE] = ACTIONS(1359), - [anon_sym_LT_LT] = ACTIONS(1357), - [anon_sym_GT_GT] = ACTIONS(1357), - [anon_sym_PLUS_EQ] = ACTIONS(1359), - [anon_sym_DASH_EQ] = ACTIONS(1359), - [anon_sym_STAR_EQ] = ACTIONS(1359), - [anon_sym_SLASH_EQ] = ACTIONS(1359), - [anon_sym_PERCENT_EQ] = ACTIONS(1359), - [anon_sym_CARET_EQ] = ACTIONS(1359), - [anon_sym_AMP_EQ] = ACTIONS(1359), - [anon_sym_PIPE_EQ] = ACTIONS(1359), - [anon_sym_LT_LT_EQ] = ACTIONS(1359), - [anon_sym_GT_GT_EQ] = ACTIONS(1359), - [anon_sym_EQ] = ACTIONS(1357), - [anon_sym_EQ_EQ] = ACTIONS(1359), - [anon_sym_BANG_EQ] = ACTIONS(1359), - [anon_sym_GT] = ACTIONS(1357), - [anon_sym_LT] = ACTIONS(1689), - [anon_sym_GT_EQ] = ACTIONS(1359), - [anon_sym_LT_EQ] = ACTIONS(1359), - [anon_sym__] = ACTIONS(1689), - [anon_sym_DOT] = ACTIONS(1357), - [anon_sym_DOT_DOT] = ACTIONS(1689), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1359), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1359), - [anon_sym_COMMA] = ACTIONS(1359), - [anon_sym_COLON_COLON] = ACTIONS(1691), - [anon_sym_POUND] = ACTIONS(1691), - [anon_sym_as] = ACTIONS(1357), - [anon_sym_const] = ACTIONS(1689), - [anon_sym_default] = ACTIONS(1689), - [anon_sym_gen] = ACTIONS(1689), - [anon_sym_union] = ACTIONS(1689), - [anon_sym_ref] = ACTIONS(1689), - [sym_mutable_specifier] = ACTIONS(1689), - [sym_integer_literal] = ACTIONS(1691), - [aux_sym_string_literal_token1] = ACTIONS(1691), - [sym_char_literal] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(1689), - [anon_sym_false] = ACTIONS(1689), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1689), - [sym_super] = ACTIONS(1689), - [sym_crate] = ACTIONS(1689), - [sym_metavariable] = ACTIONS(1691), - [sym__raw_string_literal_start] = ACTIONS(1691), - [sym_float_literal] = ACTIONS(1691), - }, - [472] = { - [sym_attribute_item] = STATE(1468), - [sym_inner_attribute_item] = STATE(1468), - [sym_bracketed_type] = STATE(3553), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3287), - [sym_macro_invocation] = STATE(2757), - [sym_scoped_identifier] = STATE(2151), - [sym_scoped_type_identifier] = STATE(2982), - [sym_match_arm] = STATE(1469), - [sym_last_match_arm] = STATE(3406), - [sym_match_pattern] = STATE(3352), - [sym_const_block] = STATE(2757), - [sym__pattern] = STATE(2907), - [sym_tuple_pattern] = STATE(2757), - [sym_slice_pattern] = STATE(2757), - [sym_tuple_struct_pattern] = STATE(2757), - [sym_struct_pattern] = STATE(2757), - [sym_remaining_field_pattern] = STATE(2757), - [sym_mut_pattern] = STATE(2757), - [sym_range_pattern] = STATE(2757), - [sym_ref_pattern] = STATE(2757), - [sym_captured_pattern] = STATE(2757), - [sym_reference_pattern] = STATE(2757), - [sym_or_pattern] = STATE(2757), - [sym__literal_pattern] = STATE(2330), - [sym_negative_literal] = STATE(2364), - [sym_string_literal] = STATE(2364), - [sym_raw_string_literal] = STATE(2364), - [sym_boolean_literal] = STATE(2364), - [sym_line_comment] = STATE(472), - [sym_block_comment] = STATE(472), - [aux_sym_match_block_repeat1] = STATE(484), - [aux_sym_match_arm_repeat1] = STATE(767), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1649), - [anon_sym_RBRACE] = ACTIONS(1693), - [anon_sym_u8] = ACTIONS(1653), - [anon_sym_i8] = ACTIONS(1653), - [anon_sym_u16] = ACTIONS(1653), - [anon_sym_i16] = ACTIONS(1653), - [anon_sym_u32] = ACTIONS(1653), - [anon_sym_i32] = ACTIONS(1653), - [anon_sym_u64] = ACTIONS(1653), - [anon_sym_i64] = ACTIONS(1653), - [anon_sym_u128] = ACTIONS(1653), - [anon_sym_i128] = ACTIONS(1653), - [anon_sym_isize] = ACTIONS(1653), - [anon_sym_usize] = ACTIONS(1653), - [anon_sym_f32] = ACTIONS(1653), - [anon_sym_f64] = ACTIONS(1653), - [anon_sym_bool] = ACTIONS(1653), - [anon_sym_str] = ACTIONS(1653), - [anon_sym_char] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_PIPE] = ACTIONS(1659), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1661), - [anon_sym_DOT_DOT] = ACTIONS(1663), - [anon_sym_COLON_COLON] = ACTIONS(1665), - [anon_sym_POUND] = ACTIONS(1667), - [anon_sym_const] = ACTIONS(1669), - [anon_sym_default] = ACTIONS(1671), - [anon_sym_gen] = ACTIONS(1671), - [anon_sym_union] = ACTIONS(1671), - [anon_sym_ref] = ACTIONS(1673), - [sym_mutable_specifier] = ACTIONS(1675), - [sym_integer_literal] = ACTIONS(1677), - [aux_sym_string_literal_token1] = ACTIONS(1679), - [sym_char_literal] = ACTIONS(1677), - [anon_sym_true] = ACTIONS(1681), - [anon_sym_false] = ACTIONS(1681), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1683), - [sym_super] = ACTIONS(1683), - [sym_crate] = ACTIONS(1683), - [sym_metavariable] = ACTIONS(1685), - [sym__raw_string_literal_start] = ACTIONS(1687), - [sym_float_literal] = ACTIONS(1677), - }, - [473] = { - [sym_line_comment] = STATE(473), - [sym_block_comment] = STATE(473), - [sym_identifier] = ACTIONS(1469), - [anon_sym_LPAREN] = ACTIONS(1467), - [anon_sym_LBRACK] = ACTIONS(1467), - [anon_sym_RBRACE] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1469), - [anon_sym_STAR] = ACTIONS(1469), - [anon_sym_QMARK] = ACTIONS(1467), - [anon_sym_u8] = ACTIONS(1469), - [anon_sym_i8] = ACTIONS(1469), - [anon_sym_u16] = ACTIONS(1469), - [anon_sym_i16] = ACTIONS(1469), - [anon_sym_u32] = ACTIONS(1469), - [anon_sym_i32] = ACTIONS(1469), - [anon_sym_u64] = ACTIONS(1469), - [anon_sym_i64] = ACTIONS(1469), - [anon_sym_u128] = ACTIONS(1469), - [anon_sym_i128] = ACTIONS(1469), - [anon_sym_isize] = ACTIONS(1469), - [anon_sym_usize] = ACTIONS(1469), - [anon_sym_f32] = ACTIONS(1469), - [anon_sym_f64] = ACTIONS(1469), - [anon_sym_bool] = ACTIONS(1469), - [anon_sym_str] = ACTIONS(1469), - [anon_sym_char] = ACTIONS(1469), - [anon_sym_DASH] = ACTIONS(1469), - [anon_sym_SLASH] = ACTIONS(1469), - [anon_sym_PERCENT] = ACTIONS(1469), - [anon_sym_CARET] = ACTIONS(1469), - [anon_sym_AMP] = ACTIONS(1469), - [anon_sym_PIPE] = ACTIONS(1469), - [anon_sym_AMP_AMP] = ACTIONS(1467), - [anon_sym_PIPE_PIPE] = ACTIONS(1467), - [anon_sym_LT_LT] = ACTIONS(1469), - [anon_sym_GT_GT] = ACTIONS(1469), - [anon_sym_PLUS_EQ] = ACTIONS(1467), - [anon_sym_DASH_EQ] = ACTIONS(1467), - [anon_sym_STAR_EQ] = ACTIONS(1467), - [anon_sym_SLASH_EQ] = ACTIONS(1467), - [anon_sym_PERCENT_EQ] = ACTIONS(1467), - [anon_sym_CARET_EQ] = ACTIONS(1467), - [anon_sym_AMP_EQ] = ACTIONS(1467), - [anon_sym_PIPE_EQ] = ACTIONS(1467), - [anon_sym_LT_LT_EQ] = ACTIONS(1467), - [anon_sym_GT_GT_EQ] = ACTIONS(1467), - [anon_sym_EQ] = ACTIONS(1469), - [anon_sym_EQ_EQ] = ACTIONS(1467), - [anon_sym_BANG_EQ] = ACTIONS(1467), - [anon_sym_GT] = ACTIONS(1469), - [anon_sym_LT] = ACTIONS(1469), - [anon_sym_GT_EQ] = ACTIONS(1467), - [anon_sym_LT_EQ] = ACTIONS(1467), - [anon_sym__] = ACTIONS(1469), - [anon_sym_DOT] = ACTIONS(1469), - [anon_sym_DOT_DOT] = ACTIONS(1469), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1467), - [anon_sym_COMMA] = ACTIONS(1467), - [anon_sym_COLON_COLON] = ACTIONS(1467), - [anon_sym_POUND] = ACTIONS(1467), - [anon_sym_as] = ACTIONS(1469), - [anon_sym_const] = ACTIONS(1469), - [anon_sym_default] = ACTIONS(1469), - [anon_sym_gen] = ACTIONS(1469), - [anon_sym_union] = ACTIONS(1469), - [anon_sym_ref] = ACTIONS(1469), - [sym_mutable_specifier] = ACTIONS(1469), - [sym_integer_literal] = ACTIONS(1467), - [aux_sym_string_literal_token1] = ACTIONS(1467), - [sym_char_literal] = ACTIONS(1467), - [anon_sym_true] = ACTIONS(1469), - [anon_sym_false] = ACTIONS(1469), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1469), - [sym_super] = ACTIONS(1469), - [sym_crate] = ACTIONS(1469), - [sym_metavariable] = ACTIONS(1467), - [sym__raw_string_literal_start] = ACTIONS(1467), - [sym_float_literal] = ACTIONS(1467), - }, - [474] = { - [sym_attribute_item] = STATE(1468), - [sym_inner_attribute_item] = STATE(1468), - [sym_bracketed_type] = STATE(3553), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3287), - [sym_macro_invocation] = STATE(2757), - [sym_scoped_identifier] = STATE(2151), - [sym_scoped_type_identifier] = STATE(2982), - [sym_match_arm] = STATE(1469), - [sym_last_match_arm] = STATE(3342), - [sym_match_pattern] = STATE(3352), - [sym_const_block] = STATE(2757), - [sym__pattern] = STATE(2907), - [sym_tuple_pattern] = STATE(2757), - [sym_slice_pattern] = STATE(2757), - [sym_tuple_struct_pattern] = STATE(2757), - [sym_struct_pattern] = STATE(2757), - [sym_remaining_field_pattern] = STATE(2757), - [sym_mut_pattern] = STATE(2757), - [sym_range_pattern] = STATE(2757), - [sym_ref_pattern] = STATE(2757), - [sym_captured_pattern] = STATE(2757), - [sym_reference_pattern] = STATE(2757), - [sym_or_pattern] = STATE(2757), - [sym__literal_pattern] = STATE(2330), - [sym_negative_literal] = STATE(2364), - [sym_string_literal] = STATE(2364), - [sym_raw_string_literal] = STATE(2364), - [sym_boolean_literal] = STATE(2364), - [sym_line_comment] = STATE(474), - [sym_block_comment] = STATE(474), - [aux_sym_match_block_repeat1] = STATE(483), - [aux_sym_match_arm_repeat1] = STATE(767), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1649), - [anon_sym_RBRACE] = ACTIONS(1695), - [anon_sym_u8] = ACTIONS(1653), - [anon_sym_i8] = ACTIONS(1653), - [anon_sym_u16] = ACTIONS(1653), - [anon_sym_i16] = ACTIONS(1653), - [anon_sym_u32] = ACTIONS(1653), - [anon_sym_i32] = ACTIONS(1653), - [anon_sym_u64] = ACTIONS(1653), - [anon_sym_i64] = ACTIONS(1653), - [anon_sym_u128] = ACTIONS(1653), - [anon_sym_i128] = ACTIONS(1653), - [anon_sym_isize] = ACTIONS(1653), - [anon_sym_usize] = ACTIONS(1653), - [anon_sym_f32] = ACTIONS(1653), - [anon_sym_f64] = ACTIONS(1653), - [anon_sym_bool] = ACTIONS(1653), - [anon_sym_str] = ACTIONS(1653), - [anon_sym_char] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_PIPE] = ACTIONS(1659), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1661), - [anon_sym_DOT_DOT] = ACTIONS(1663), - [anon_sym_COLON_COLON] = ACTIONS(1665), - [anon_sym_POUND] = ACTIONS(1667), - [anon_sym_const] = ACTIONS(1669), - [anon_sym_default] = ACTIONS(1671), - [anon_sym_gen] = ACTIONS(1671), - [anon_sym_union] = ACTIONS(1671), - [anon_sym_ref] = ACTIONS(1673), - [sym_mutable_specifier] = ACTIONS(1675), - [sym_integer_literal] = ACTIONS(1677), - [aux_sym_string_literal_token1] = ACTIONS(1679), - [sym_char_literal] = ACTIONS(1677), - [anon_sym_true] = ACTIONS(1681), - [anon_sym_false] = ACTIONS(1681), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1683), - [sym_super] = ACTIONS(1683), - [sym_crate] = ACTIONS(1683), - [sym_metavariable] = ACTIONS(1685), - [sym__raw_string_literal_start] = ACTIONS(1687), - [sym_float_literal] = ACTIONS(1677), + [485] = { + [sym_line_comment] = STATE(485), + [sym_block_comment] = STATE(485), + [sym_identifier] = ACTIONS(1291), + [anon_sym_LPAREN] = ACTIONS(1289), + [anon_sym_LBRACK] = ACTIONS(1289), + [anon_sym_RBRACE] = ACTIONS(1289), + [anon_sym_PLUS] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1291), + [anon_sym_QMARK] = ACTIONS(1289), + [anon_sym_u8] = ACTIONS(1291), + [anon_sym_i8] = ACTIONS(1291), + [anon_sym_u16] = ACTIONS(1291), + [anon_sym_i16] = ACTIONS(1291), + [anon_sym_u32] = ACTIONS(1291), + [anon_sym_i32] = ACTIONS(1291), + [anon_sym_u64] = ACTIONS(1291), + [anon_sym_i64] = ACTIONS(1291), + [anon_sym_u128] = ACTIONS(1291), + [anon_sym_i128] = ACTIONS(1291), + [anon_sym_isize] = ACTIONS(1291), + [anon_sym_usize] = ACTIONS(1291), + [anon_sym_f32] = ACTIONS(1291), + [anon_sym_f64] = ACTIONS(1291), + [anon_sym_bool] = ACTIONS(1291), + [anon_sym_str] = ACTIONS(1291), + [anon_sym_char] = ACTIONS(1291), + [anon_sym_DASH] = ACTIONS(1291), + [anon_sym_SLASH] = ACTIONS(1291), + [anon_sym_PERCENT] = ACTIONS(1291), + [anon_sym_CARET] = ACTIONS(1291), + [anon_sym_AMP] = ACTIONS(1291), + [anon_sym_PIPE] = ACTIONS(1291), + [anon_sym_AMP_AMP] = ACTIONS(1289), + [anon_sym_PIPE_PIPE] = ACTIONS(1289), + [anon_sym_LT_LT] = ACTIONS(1291), + [anon_sym_GT_GT] = ACTIONS(1291), + [anon_sym_PLUS_EQ] = ACTIONS(1289), + [anon_sym_DASH_EQ] = ACTIONS(1289), + [anon_sym_STAR_EQ] = ACTIONS(1289), + [anon_sym_SLASH_EQ] = ACTIONS(1289), + [anon_sym_PERCENT_EQ] = ACTIONS(1289), + [anon_sym_CARET_EQ] = ACTIONS(1289), + [anon_sym_AMP_EQ] = ACTIONS(1289), + [anon_sym_PIPE_EQ] = ACTIONS(1289), + [anon_sym_LT_LT_EQ] = ACTIONS(1289), + [anon_sym_GT_GT_EQ] = ACTIONS(1289), + [anon_sym_EQ] = ACTIONS(1291), + [anon_sym_EQ_EQ] = ACTIONS(1289), + [anon_sym_BANG_EQ] = ACTIONS(1289), + [anon_sym_GT] = ACTIONS(1291), + [anon_sym_LT] = ACTIONS(1291), + [anon_sym_GT_EQ] = ACTIONS(1289), + [anon_sym_LT_EQ] = ACTIONS(1289), + [anon_sym__] = ACTIONS(1291), + [anon_sym_DOT] = ACTIONS(1291), + [anon_sym_DOT_DOT] = ACTIONS(1291), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1289), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1289), + [anon_sym_COMMA] = ACTIONS(1289), + [anon_sym_COLON_COLON] = ACTIONS(1289), + [anon_sym_POUND] = ACTIONS(1289), + [anon_sym_as] = ACTIONS(1291), + [anon_sym_const] = ACTIONS(1291), + [anon_sym_default] = ACTIONS(1291), + [anon_sym_gen] = ACTIONS(1291), + [anon_sym_union] = ACTIONS(1291), + [anon_sym_ref] = ACTIONS(1291), + [sym_mutable_specifier] = ACTIONS(1291), + [sym_integer_literal] = ACTIONS(1289), + [aux_sym_string_literal_token1] = ACTIONS(1289), + [sym_char_literal] = ACTIONS(1289), + [anon_sym_true] = ACTIONS(1291), + [anon_sym_false] = ACTIONS(1291), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1291), + [sym_super] = ACTIONS(1291), + [sym_crate] = ACTIONS(1291), + [sym_metavariable] = ACTIONS(1289), + [sym__raw_string_literal_start] = ACTIONS(1289), + [sym_float_literal] = ACTIONS(1289), }, - [475] = { - [sym_attribute_item] = STATE(1468), - [sym_inner_attribute_item] = STATE(1468), - [sym_bracketed_type] = STATE(3553), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3287), - [sym_macro_invocation] = STATE(2757), - [sym_scoped_identifier] = STATE(2151), - [sym_scoped_type_identifier] = STATE(2982), - [sym_match_arm] = STATE(1469), - [sym_last_match_arm] = STATE(3506), - [sym_match_pattern] = STATE(3352), - [sym_const_block] = STATE(2757), - [sym__pattern] = STATE(2907), - [sym_tuple_pattern] = STATE(2757), - [sym_slice_pattern] = STATE(2757), - [sym_tuple_struct_pattern] = STATE(2757), - [sym_struct_pattern] = STATE(2757), - [sym_remaining_field_pattern] = STATE(2757), - [sym_mut_pattern] = STATE(2757), - [sym_range_pattern] = STATE(2757), - [sym_ref_pattern] = STATE(2757), - [sym_captured_pattern] = STATE(2757), - [sym_reference_pattern] = STATE(2757), - [sym_or_pattern] = STATE(2757), - [sym__literal_pattern] = STATE(2330), - [sym_negative_literal] = STATE(2364), - [sym_string_literal] = STATE(2364), - [sym_raw_string_literal] = STATE(2364), - [sym_boolean_literal] = STATE(2364), - [sym_line_comment] = STATE(475), - [sym_block_comment] = STATE(475), - [aux_sym_match_block_repeat1] = STATE(485), - [aux_sym_match_arm_repeat1] = STATE(767), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1649), - [anon_sym_RBRACE] = ACTIONS(1697), - [anon_sym_u8] = ACTIONS(1653), - [anon_sym_i8] = ACTIONS(1653), - [anon_sym_u16] = ACTIONS(1653), - [anon_sym_i16] = ACTIONS(1653), - [anon_sym_u32] = ACTIONS(1653), - [anon_sym_i32] = ACTIONS(1653), - [anon_sym_u64] = ACTIONS(1653), - [anon_sym_i64] = ACTIONS(1653), - [anon_sym_u128] = ACTIONS(1653), - [anon_sym_i128] = ACTIONS(1653), - [anon_sym_isize] = ACTIONS(1653), - [anon_sym_usize] = ACTIONS(1653), - [anon_sym_f32] = ACTIONS(1653), - [anon_sym_f64] = ACTIONS(1653), - [anon_sym_bool] = ACTIONS(1653), - [anon_sym_str] = ACTIONS(1653), - [anon_sym_char] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_PIPE] = ACTIONS(1659), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1661), - [anon_sym_DOT_DOT] = ACTIONS(1663), - [anon_sym_COLON_COLON] = ACTIONS(1665), - [anon_sym_POUND] = ACTIONS(1667), - [anon_sym_const] = ACTIONS(1669), - [anon_sym_default] = ACTIONS(1671), - [anon_sym_gen] = ACTIONS(1671), - [anon_sym_union] = ACTIONS(1671), - [anon_sym_ref] = ACTIONS(1673), - [sym_mutable_specifier] = ACTIONS(1675), - [sym_integer_literal] = ACTIONS(1677), - [aux_sym_string_literal_token1] = ACTIONS(1679), - [sym_char_literal] = ACTIONS(1677), - [anon_sym_true] = ACTIONS(1681), - [anon_sym_false] = ACTIONS(1681), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1683), - [sym_super] = ACTIONS(1683), - [sym_crate] = ACTIONS(1683), - [sym_metavariable] = ACTIONS(1685), - [sym__raw_string_literal_start] = ACTIONS(1687), - [sym_float_literal] = ACTIONS(1677), + [486] = { + [sym_line_comment] = STATE(486), + [sym_block_comment] = STATE(486), + [sym_identifier] = ACTIONS(1471), + [anon_sym_LPAREN] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1469), + [anon_sym_RBRACE] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1471), + [anon_sym_STAR] = ACTIONS(1471), + [anon_sym_QMARK] = ACTIONS(1469), + [anon_sym_u8] = ACTIONS(1471), + [anon_sym_i8] = ACTIONS(1471), + [anon_sym_u16] = ACTIONS(1471), + [anon_sym_i16] = ACTIONS(1471), + [anon_sym_u32] = ACTIONS(1471), + [anon_sym_i32] = ACTIONS(1471), + [anon_sym_u64] = ACTIONS(1471), + [anon_sym_i64] = ACTIONS(1471), + [anon_sym_u128] = ACTIONS(1471), + [anon_sym_i128] = ACTIONS(1471), + [anon_sym_isize] = ACTIONS(1471), + [anon_sym_usize] = ACTIONS(1471), + [anon_sym_f32] = ACTIONS(1471), + [anon_sym_f64] = ACTIONS(1471), + [anon_sym_bool] = ACTIONS(1471), + [anon_sym_str] = ACTIONS(1471), + [anon_sym_char] = ACTIONS(1471), + [anon_sym_DASH] = ACTIONS(1471), + [anon_sym_SLASH] = ACTIONS(1471), + [anon_sym_PERCENT] = ACTIONS(1471), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_AMP] = ACTIONS(1471), + [anon_sym_PIPE] = ACTIONS(1471), + [anon_sym_AMP_AMP] = ACTIONS(1469), + [anon_sym_PIPE_PIPE] = ACTIONS(1469), + [anon_sym_LT_LT] = ACTIONS(1471), + [anon_sym_GT_GT] = ACTIONS(1471), + [anon_sym_PLUS_EQ] = ACTIONS(1469), + [anon_sym_DASH_EQ] = ACTIONS(1469), + [anon_sym_STAR_EQ] = ACTIONS(1469), + [anon_sym_SLASH_EQ] = ACTIONS(1469), + [anon_sym_PERCENT_EQ] = ACTIONS(1469), + [anon_sym_CARET_EQ] = ACTIONS(1469), + [anon_sym_AMP_EQ] = ACTIONS(1469), + [anon_sym_PIPE_EQ] = ACTIONS(1469), + [anon_sym_LT_LT_EQ] = ACTIONS(1469), + [anon_sym_GT_GT_EQ] = ACTIONS(1469), + [anon_sym_EQ] = ACTIONS(1471), + [anon_sym_EQ_EQ] = ACTIONS(1469), + [anon_sym_BANG_EQ] = ACTIONS(1469), + [anon_sym_GT] = ACTIONS(1471), + [anon_sym_LT] = ACTIONS(1471), + [anon_sym_GT_EQ] = ACTIONS(1469), + [anon_sym_LT_EQ] = ACTIONS(1469), + [anon_sym__] = ACTIONS(1471), + [anon_sym_DOT] = ACTIONS(1471), + [anon_sym_DOT_DOT] = ACTIONS(1471), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1469), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1469), + [anon_sym_COMMA] = ACTIONS(1469), + [anon_sym_COLON_COLON] = ACTIONS(1469), + [anon_sym_POUND] = ACTIONS(1469), + [anon_sym_as] = ACTIONS(1471), + [anon_sym_const] = ACTIONS(1471), + [anon_sym_default] = ACTIONS(1471), + [anon_sym_gen] = ACTIONS(1471), + [anon_sym_union] = ACTIONS(1471), + [anon_sym_ref] = ACTIONS(1471), + [sym_mutable_specifier] = ACTIONS(1471), + [sym_integer_literal] = ACTIONS(1469), + [aux_sym_string_literal_token1] = ACTIONS(1469), + [sym_char_literal] = ACTIONS(1469), + [anon_sym_true] = ACTIONS(1471), + [anon_sym_false] = ACTIONS(1471), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1471), + [sym_super] = ACTIONS(1471), + [sym_crate] = ACTIONS(1471), + [sym_metavariable] = ACTIONS(1469), + [sym__raw_string_literal_start] = ACTIONS(1469), + [sym_float_literal] = ACTIONS(1469), }, - [476] = { - [sym_line_comment] = STATE(476), - [sym_block_comment] = STATE(476), - [sym_identifier] = ACTIONS(1481), - [anon_sym_LPAREN] = ACTIONS(1479), - [anon_sym_LBRACK] = ACTIONS(1479), - [anon_sym_RBRACE] = ACTIONS(1479), - [anon_sym_PLUS] = ACTIONS(1481), - [anon_sym_STAR] = ACTIONS(1481), - [anon_sym_QMARK] = ACTIONS(1479), - [anon_sym_u8] = ACTIONS(1481), - [anon_sym_i8] = ACTIONS(1481), - [anon_sym_u16] = ACTIONS(1481), - [anon_sym_i16] = ACTIONS(1481), - [anon_sym_u32] = ACTIONS(1481), - [anon_sym_i32] = ACTIONS(1481), - [anon_sym_u64] = ACTIONS(1481), - [anon_sym_i64] = ACTIONS(1481), - [anon_sym_u128] = ACTIONS(1481), - [anon_sym_i128] = ACTIONS(1481), - [anon_sym_isize] = ACTIONS(1481), - [anon_sym_usize] = ACTIONS(1481), - [anon_sym_f32] = ACTIONS(1481), - [anon_sym_f64] = ACTIONS(1481), - [anon_sym_bool] = ACTIONS(1481), - [anon_sym_str] = ACTIONS(1481), - [anon_sym_char] = ACTIONS(1481), - [anon_sym_DASH] = ACTIONS(1481), - [anon_sym_SLASH] = ACTIONS(1481), - [anon_sym_PERCENT] = ACTIONS(1481), - [anon_sym_CARET] = ACTIONS(1481), - [anon_sym_AMP] = ACTIONS(1481), - [anon_sym_PIPE] = ACTIONS(1481), - [anon_sym_AMP_AMP] = ACTIONS(1479), - [anon_sym_PIPE_PIPE] = ACTIONS(1479), - [anon_sym_LT_LT] = ACTIONS(1481), - [anon_sym_GT_GT] = ACTIONS(1481), - [anon_sym_PLUS_EQ] = ACTIONS(1479), - [anon_sym_DASH_EQ] = ACTIONS(1479), - [anon_sym_STAR_EQ] = ACTIONS(1479), - [anon_sym_SLASH_EQ] = ACTIONS(1479), - [anon_sym_PERCENT_EQ] = ACTIONS(1479), - [anon_sym_CARET_EQ] = ACTIONS(1479), - [anon_sym_AMP_EQ] = ACTIONS(1479), - [anon_sym_PIPE_EQ] = ACTIONS(1479), - [anon_sym_LT_LT_EQ] = ACTIONS(1479), - [anon_sym_GT_GT_EQ] = ACTIONS(1479), - [anon_sym_EQ] = ACTIONS(1481), - [anon_sym_EQ_EQ] = ACTIONS(1479), - [anon_sym_BANG_EQ] = ACTIONS(1479), - [anon_sym_GT] = ACTIONS(1481), - [anon_sym_LT] = ACTIONS(1481), - [anon_sym_GT_EQ] = ACTIONS(1479), - [anon_sym_LT_EQ] = ACTIONS(1479), - [anon_sym__] = ACTIONS(1481), - [anon_sym_DOT] = ACTIONS(1481), - [anon_sym_DOT_DOT] = ACTIONS(1481), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1479), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1479), - [anon_sym_COMMA] = ACTIONS(1479), - [anon_sym_COLON_COLON] = ACTIONS(1479), - [anon_sym_POUND] = ACTIONS(1479), - [anon_sym_as] = ACTIONS(1481), - [anon_sym_const] = ACTIONS(1481), - [anon_sym_default] = ACTIONS(1481), - [anon_sym_gen] = ACTIONS(1481), - [anon_sym_union] = ACTIONS(1481), - [anon_sym_ref] = ACTIONS(1481), - [sym_mutable_specifier] = ACTIONS(1481), - [sym_integer_literal] = ACTIONS(1479), - [aux_sym_string_literal_token1] = ACTIONS(1479), - [sym_char_literal] = ACTIONS(1479), - [anon_sym_true] = ACTIONS(1481), - [anon_sym_false] = ACTIONS(1481), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1481), - [sym_super] = ACTIONS(1481), - [sym_crate] = ACTIONS(1481), - [sym_metavariable] = ACTIONS(1479), - [sym__raw_string_literal_start] = ACTIONS(1479), - [sym_float_literal] = ACTIONS(1479), + [487] = { + [sym_line_comment] = STATE(487), + [sym_block_comment] = STATE(487), + [sym_identifier] = ACTIONS(1405), + [anon_sym_LPAREN] = ACTIONS(1403), + [anon_sym_LBRACK] = ACTIONS(1403), + [anon_sym_RBRACE] = ACTIONS(1403), + [anon_sym_PLUS] = ACTIONS(1405), + [anon_sym_STAR] = ACTIONS(1405), + [anon_sym_QMARK] = ACTIONS(1403), + [anon_sym_u8] = ACTIONS(1405), + [anon_sym_i8] = ACTIONS(1405), + [anon_sym_u16] = ACTIONS(1405), + [anon_sym_i16] = ACTIONS(1405), + [anon_sym_u32] = ACTIONS(1405), + [anon_sym_i32] = ACTIONS(1405), + [anon_sym_u64] = ACTIONS(1405), + [anon_sym_i64] = ACTIONS(1405), + [anon_sym_u128] = ACTIONS(1405), + [anon_sym_i128] = ACTIONS(1405), + [anon_sym_isize] = ACTIONS(1405), + [anon_sym_usize] = ACTIONS(1405), + [anon_sym_f32] = ACTIONS(1405), + [anon_sym_f64] = ACTIONS(1405), + [anon_sym_bool] = ACTIONS(1405), + [anon_sym_str] = ACTIONS(1405), + [anon_sym_char] = ACTIONS(1405), + [anon_sym_DASH] = ACTIONS(1405), + [anon_sym_SLASH] = ACTIONS(1405), + [anon_sym_PERCENT] = ACTIONS(1405), + [anon_sym_CARET] = ACTIONS(1405), + [anon_sym_AMP] = ACTIONS(1405), + [anon_sym_PIPE] = ACTIONS(1405), + [anon_sym_AMP_AMP] = ACTIONS(1403), + [anon_sym_PIPE_PIPE] = ACTIONS(1403), + [anon_sym_LT_LT] = ACTIONS(1405), + [anon_sym_GT_GT] = ACTIONS(1405), + [anon_sym_PLUS_EQ] = ACTIONS(1403), + [anon_sym_DASH_EQ] = ACTIONS(1403), + [anon_sym_STAR_EQ] = ACTIONS(1403), + [anon_sym_SLASH_EQ] = ACTIONS(1403), + [anon_sym_PERCENT_EQ] = ACTIONS(1403), + [anon_sym_CARET_EQ] = ACTIONS(1403), + [anon_sym_AMP_EQ] = ACTIONS(1403), + [anon_sym_PIPE_EQ] = ACTIONS(1403), + [anon_sym_LT_LT_EQ] = ACTIONS(1403), + [anon_sym_GT_GT_EQ] = ACTIONS(1403), + [anon_sym_EQ] = ACTIONS(1405), + [anon_sym_EQ_EQ] = ACTIONS(1403), + [anon_sym_BANG_EQ] = ACTIONS(1403), + [anon_sym_GT] = ACTIONS(1405), + [anon_sym_LT] = ACTIONS(1405), + [anon_sym_GT_EQ] = ACTIONS(1403), + [anon_sym_LT_EQ] = ACTIONS(1403), + [anon_sym__] = ACTIONS(1405), + [anon_sym_DOT] = ACTIONS(1405), + [anon_sym_DOT_DOT] = ACTIONS(1405), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1403), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1403), + [anon_sym_COMMA] = ACTIONS(1403), + [anon_sym_COLON_COLON] = ACTIONS(1403), + [anon_sym_POUND] = ACTIONS(1403), + [anon_sym_as] = ACTIONS(1405), + [anon_sym_const] = ACTIONS(1405), + [anon_sym_default] = ACTIONS(1405), + [anon_sym_gen] = ACTIONS(1405), + [anon_sym_union] = ACTIONS(1405), + [anon_sym_ref] = ACTIONS(1405), + [sym_mutable_specifier] = ACTIONS(1405), + [sym_integer_literal] = ACTIONS(1403), + [aux_sym_string_literal_token1] = ACTIONS(1403), + [sym_char_literal] = ACTIONS(1403), + [anon_sym_true] = ACTIONS(1405), + [anon_sym_false] = ACTIONS(1405), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1405), + [sym_super] = ACTIONS(1405), + [sym_crate] = ACTIONS(1405), + [sym_metavariable] = ACTIONS(1403), + [sym__raw_string_literal_start] = ACTIONS(1403), + [sym_float_literal] = ACTIONS(1403), }, - [477] = { - [sym_line_comment] = STATE(477), - [sym_block_comment] = STATE(477), - [sym_identifier] = ACTIONS(1435), - [anon_sym_LPAREN] = ACTIONS(1433), - [anon_sym_LBRACK] = ACTIONS(1433), - [anon_sym_RBRACE] = ACTIONS(1433), - [anon_sym_PLUS] = ACTIONS(1435), - [anon_sym_STAR] = ACTIONS(1435), - [anon_sym_QMARK] = ACTIONS(1433), - [anon_sym_u8] = ACTIONS(1435), - [anon_sym_i8] = ACTIONS(1435), - [anon_sym_u16] = ACTIONS(1435), - [anon_sym_i16] = ACTIONS(1435), - [anon_sym_u32] = ACTIONS(1435), - [anon_sym_i32] = ACTIONS(1435), - [anon_sym_u64] = ACTIONS(1435), - [anon_sym_i64] = ACTIONS(1435), - [anon_sym_u128] = ACTIONS(1435), - [anon_sym_i128] = ACTIONS(1435), - [anon_sym_isize] = ACTIONS(1435), - [anon_sym_usize] = ACTIONS(1435), - [anon_sym_f32] = ACTIONS(1435), - [anon_sym_f64] = ACTIONS(1435), - [anon_sym_bool] = ACTIONS(1435), - [anon_sym_str] = ACTIONS(1435), - [anon_sym_char] = ACTIONS(1435), - [anon_sym_DASH] = ACTIONS(1435), - [anon_sym_SLASH] = ACTIONS(1435), - [anon_sym_PERCENT] = ACTIONS(1435), - [anon_sym_CARET] = ACTIONS(1435), - [anon_sym_AMP] = ACTIONS(1435), - [anon_sym_PIPE] = ACTIONS(1435), - [anon_sym_AMP_AMP] = ACTIONS(1433), - [anon_sym_PIPE_PIPE] = ACTIONS(1433), - [anon_sym_LT_LT] = ACTIONS(1435), - [anon_sym_GT_GT] = ACTIONS(1435), - [anon_sym_PLUS_EQ] = ACTIONS(1433), - [anon_sym_DASH_EQ] = ACTIONS(1433), - [anon_sym_STAR_EQ] = ACTIONS(1433), - [anon_sym_SLASH_EQ] = ACTIONS(1433), - [anon_sym_PERCENT_EQ] = ACTIONS(1433), - [anon_sym_CARET_EQ] = ACTIONS(1433), - [anon_sym_AMP_EQ] = ACTIONS(1433), - [anon_sym_PIPE_EQ] = ACTIONS(1433), - [anon_sym_LT_LT_EQ] = ACTIONS(1433), - [anon_sym_GT_GT_EQ] = ACTIONS(1433), - [anon_sym_EQ] = ACTIONS(1435), - [anon_sym_EQ_EQ] = ACTIONS(1433), - [anon_sym_BANG_EQ] = ACTIONS(1433), - [anon_sym_GT] = ACTIONS(1435), - [anon_sym_LT] = ACTIONS(1435), - [anon_sym_GT_EQ] = ACTIONS(1433), - [anon_sym_LT_EQ] = ACTIONS(1433), - [anon_sym__] = ACTIONS(1435), - [anon_sym_DOT] = ACTIONS(1435), - [anon_sym_DOT_DOT] = ACTIONS(1435), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1433), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1433), - [anon_sym_COMMA] = ACTIONS(1433), - [anon_sym_COLON_COLON] = ACTIONS(1433), - [anon_sym_POUND] = ACTIONS(1433), - [anon_sym_as] = ACTIONS(1435), - [anon_sym_const] = ACTIONS(1435), - [anon_sym_default] = ACTIONS(1435), - [anon_sym_gen] = ACTIONS(1435), - [anon_sym_union] = ACTIONS(1435), - [anon_sym_ref] = ACTIONS(1435), - [sym_mutable_specifier] = ACTIONS(1435), - [sym_integer_literal] = ACTIONS(1433), - [aux_sym_string_literal_token1] = ACTIONS(1433), - [sym_char_literal] = ACTIONS(1433), - [anon_sym_true] = ACTIONS(1435), - [anon_sym_false] = ACTIONS(1435), + [488] = { + [sym_line_comment] = STATE(488), + [sym_block_comment] = STATE(488), + [sym_identifier] = ACTIONS(1439), + [anon_sym_LPAREN] = ACTIONS(1437), + [anon_sym_LBRACK] = ACTIONS(1437), + [anon_sym_RBRACE] = ACTIONS(1437), + [anon_sym_PLUS] = ACTIONS(1439), + [anon_sym_STAR] = ACTIONS(1439), + [anon_sym_QMARK] = ACTIONS(1437), + [anon_sym_u8] = ACTIONS(1439), + [anon_sym_i8] = ACTIONS(1439), + [anon_sym_u16] = ACTIONS(1439), + [anon_sym_i16] = ACTIONS(1439), + [anon_sym_u32] = ACTIONS(1439), + [anon_sym_i32] = ACTIONS(1439), + [anon_sym_u64] = ACTIONS(1439), + [anon_sym_i64] = ACTIONS(1439), + [anon_sym_u128] = ACTIONS(1439), + [anon_sym_i128] = ACTIONS(1439), + [anon_sym_isize] = ACTIONS(1439), + [anon_sym_usize] = ACTIONS(1439), + [anon_sym_f32] = ACTIONS(1439), + [anon_sym_f64] = ACTIONS(1439), + [anon_sym_bool] = ACTIONS(1439), + [anon_sym_str] = ACTIONS(1439), + [anon_sym_char] = ACTIONS(1439), + [anon_sym_DASH] = ACTIONS(1439), + [anon_sym_SLASH] = ACTIONS(1439), + [anon_sym_PERCENT] = ACTIONS(1439), + [anon_sym_CARET] = ACTIONS(1439), + [anon_sym_AMP] = ACTIONS(1439), + [anon_sym_PIPE] = ACTIONS(1439), + [anon_sym_AMP_AMP] = ACTIONS(1437), + [anon_sym_PIPE_PIPE] = ACTIONS(1437), + [anon_sym_LT_LT] = ACTIONS(1439), + [anon_sym_GT_GT] = ACTIONS(1439), + [anon_sym_PLUS_EQ] = ACTIONS(1437), + [anon_sym_DASH_EQ] = ACTIONS(1437), + [anon_sym_STAR_EQ] = ACTIONS(1437), + [anon_sym_SLASH_EQ] = ACTIONS(1437), + [anon_sym_PERCENT_EQ] = ACTIONS(1437), + [anon_sym_CARET_EQ] = ACTIONS(1437), + [anon_sym_AMP_EQ] = ACTIONS(1437), + [anon_sym_PIPE_EQ] = ACTIONS(1437), + [anon_sym_LT_LT_EQ] = ACTIONS(1437), + [anon_sym_GT_GT_EQ] = ACTIONS(1437), + [anon_sym_EQ] = ACTIONS(1439), + [anon_sym_EQ_EQ] = ACTIONS(1437), + [anon_sym_BANG_EQ] = ACTIONS(1437), + [anon_sym_GT] = ACTIONS(1439), + [anon_sym_LT] = ACTIONS(1439), + [anon_sym_GT_EQ] = ACTIONS(1437), + [anon_sym_LT_EQ] = ACTIONS(1437), + [anon_sym__] = ACTIONS(1439), + [anon_sym_DOT] = ACTIONS(1439), + [anon_sym_DOT_DOT] = ACTIONS(1439), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1437), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1437), + [anon_sym_COMMA] = ACTIONS(1437), + [anon_sym_COLON_COLON] = ACTIONS(1437), + [anon_sym_POUND] = ACTIONS(1437), + [anon_sym_as] = ACTIONS(1439), + [anon_sym_const] = ACTIONS(1439), + [anon_sym_default] = ACTIONS(1439), + [anon_sym_gen] = ACTIONS(1439), + [anon_sym_union] = ACTIONS(1439), + [anon_sym_ref] = ACTIONS(1439), + [sym_mutable_specifier] = ACTIONS(1439), + [sym_integer_literal] = ACTIONS(1437), + [aux_sym_string_literal_token1] = ACTIONS(1437), + [sym_char_literal] = ACTIONS(1437), + [anon_sym_true] = ACTIONS(1439), + [anon_sym_false] = ACTIONS(1439), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1435), - [sym_super] = ACTIONS(1435), - [sym_crate] = ACTIONS(1435), - [sym_metavariable] = ACTIONS(1433), - [sym__raw_string_literal_start] = ACTIONS(1433), - [sym_float_literal] = ACTIONS(1433), + [sym_self] = ACTIONS(1439), + [sym_super] = ACTIONS(1439), + [sym_crate] = ACTIONS(1439), + [sym_metavariable] = ACTIONS(1437), + [sym__raw_string_literal_start] = ACTIONS(1437), + [sym_float_literal] = ACTIONS(1437), }, - [478] = { - [sym_line_comment] = STATE(478), - [sym_block_comment] = STATE(478), + [489] = { + [sym_line_comment] = STATE(489), + [sym_block_comment] = STATE(489), [sym_identifier] = ACTIONS(1489), [anon_sym_LPAREN] = ACTIONS(1487), [anon_sym_LBRACK] = ACTIONS(1487), @@ -69540,175 +72048,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1487), [sym_float_literal] = ACTIONS(1487), }, - [479] = { - [sym_line_comment] = STATE(479), - [sym_block_comment] = STATE(479), - [sym_identifier] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(1407), - [anon_sym_LBRACK] = ACTIONS(1407), - [anon_sym_RBRACE] = ACTIONS(1407), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_STAR] = ACTIONS(1409), - [anon_sym_QMARK] = ACTIONS(1407), - [anon_sym_u8] = ACTIONS(1409), - [anon_sym_i8] = ACTIONS(1409), - [anon_sym_u16] = ACTIONS(1409), - [anon_sym_i16] = ACTIONS(1409), - [anon_sym_u32] = ACTIONS(1409), - [anon_sym_i32] = ACTIONS(1409), - [anon_sym_u64] = ACTIONS(1409), - [anon_sym_i64] = ACTIONS(1409), - [anon_sym_u128] = ACTIONS(1409), - [anon_sym_i128] = ACTIONS(1409), - [anon_sym_isize] = ACTIONS(1409), - [anon_sym_usize] = ACTIONS(1409), - [anon_sym_f32] = ACTIONS(1409), - [anon_sym_f64] = ACTIONS(1409), - [anon_sym_bool] = ACTIONS(1409), - [anon_sym_str] = ACTIONS(1409), - [anon_sym_char] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(1409), - [anon_sym_PERCENT] = ACTIONS(1409), - [anon_sym_CARET] = ACTIONS(1409), - [anon_sym_AMP] = ACTIONS(1409), - [anon_sym_PIPE] = ACTIONS(1409), - [anon_sym_AMP_AMP] = ACTIONS(1407), - [anon_sym_PIPE_PIPE] = ACTIONS(1407), - [anon_sym_LT_LT] = ACTIONS(1409), - [anon_sym_GT_GT] = ACTIONS(1409), - [anon_sym_PLUS_EQ] = ACTIONS(1407), - [anon_sym_DASH_EQ] = ACTIONS(1407), - [anon_sym_STAR_EQ] = ACTIONS(1407), - [anon_sym_SLASH_EQ] = ACTIONS(1407), - [anon_sym_PERCENT_EQ] = ACTIONS(1407), - [anon_sym_CARET_EQ] = ACTIONS(1407), - [anon_sym_AMP_EQ] = ACTIONS(1407), - [anon_sym_PIPE_EQ] = ACTIONS(1407), - [anon_sym_LT_LT_EQ] = ACTIONS(1407), - [anon_sym_GT_GT_EQ] = ACTIONS(1407), - [anon_sym_EQ] = ACTIONS(1409), - [anon_sym_EQ_EQ] = ACTIONS(1407), - [anon_sym_BANG_EQ] = ACTIONS(1407), - [anon_sym_GT] = ACTIONS(1409), - [anon_sym_LT] = ACTIONS(1409), - [anon_sym_GT_EQ] = ACTIONS(1407), - [anon_sym_LT_EQ] = ACTIONS(1407), - [anon_sym__] = ACTIONS(1409), - [anon_sym_DOT] = ACTIONS(1409), - [anon_sym_DOT_DOT] = ACTIONS(1409), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1407), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1407), - [anon_sym_COMMA] = ACTIONS(1407), - [anon_sym_COLON_COLON] = ACTIONS(1407), - [anon_sym_POUND] = ACTIONS(1407), - [anon_sym_as] = ACTIONS(1409), - [anon_sym_const] = ACTIONS(1409), - [anon_sym_default] = ACTIONS(1409), - [anon_sym_gen] = ACTIONS(1409), - [anon_sym_union] = ACTIONS(1409), - [anon_sym_ref] = ACTIONS(1409), - [sym_mutable_specifier] = ACTIONS(1409), - [sym_integer_literal] = ACTIONS(1407), - [aux_sym_string_literal_token1] = ACTIONS(1407), - [sym_char_literal] = ACTIONS(1407), - [anon_sym_true] = ACTIONS(1409), - [anon_sym_false] = ACTIONS(1409), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1409), - [sym_super] = ACTIONS(1409), - [sym_crate] = ACTIONS(1409), - [sym_metavariable] = ACTIONS(1407), - [sym__raw_string_literal_start] = ACTIONS(1407), - [sym_float_literal] = ACTIONS(1407), - }, - [480] = { - [sym_line_comment] = STATE(480), - [sym_block_comment] = STATE(480), - [sym_identifier] = ACTIONS(1439), - [anon_sym_LPAREN] = ACTIONS(1437), - [anon_sym_LBRACK] = ACTIONS(1437), - [anon_sym_RBRACE] = ACTIONS(1437), - [anon_sym_PLUS] = ACTIONS(1439), - [anon_sym_STAR] = ACTIONS(1439), - [anon_sym_QMARK] = ACTIONS(1437), - [anon_sym_u8] = ACTIONS(1439), - [anon_sym_i8] = ACTIONS(1439), - [anon_sym_u16] = ACTIONS(1439), - [anon_sym_i16] = ACTIONS(1439), - [anon_sym_u32] = ACTIONS(1439), - [anon_sym_i32] = ACTIONS(1439), - [anon_sym_u64] = ACTIONS(1439), - [anon_sym_i64] = ACTIONS(1439), - [anon_sym_u128] = ACTIONS(1439), - [anon_sym_i128] = ACTIONS(1439), - [anon_sym_isize] = ACTIONS(1439), - [anon_sym_usize] = ACTIONS(1439), - [anon_sym_f32] = ACTIONS(1439), - [anon_sym_f64] = ACTIONS(1439), - [anon_sym_bool] = ACTIONS(1439), - [anon_sym_str] = ACTIONS(1439), - [anon_sym_char] = ACTIONS(1439), - [anon_sym_DASH] = ACTIONS(1439), - [anon_sym_SLASH] = ACTIONS(1439), - [anon_sym_PERCENT] = ACTIONS(1439), - [anon_sym_CARET] = ACTIONS(1439), - [anon_sym_AMP] = ACTIONS(1439), - [anon_sym_PIPE] = ACTIONS(1439), - [anon_sym_AMP_AMP] = ACTIONS(1437), - [anon_sym_PIPE_PIPE] = ACTIONS(1437), - [anon_sym_LT_LT] = ACTIONS(1439), - [anon_sym_GT_GT] = ACTIONS(1439), - [anon_sym_PLUS_EQ] = ACTIONS(1437), - [anon_sym_DASH_EQ] = ACTIONS(1437), - [anon_sym_STAR_EQ] = ACTIONS(1437), - [anon_sym_SLASH_EQ] = ACTIONS(1437), - [anon_sym_PERCENT_EQ] = ACTIONS(1437), - [anon_sym_CARET_EQ] = ACTIONS(1437), - [anon_sym_AMP_EQ] = ACTIONS(1437), - [anon_sym_PIPE_EQ] = ACTIONS(1437), - [anon_sym_LT_LT_EQ] = ACTIONS(1437), - [anon_sym_GT_GT_EQ] = ACTIONS(1437), - [anon_sym_EQ] = ACTIONS(1439), - [anon_sym_EQ_EQ] = ACTIONS(1437), - [anon_sym_BANG_EQ] = ACTIONS(1437), - [anon_sym_GT] = ACTIONS(1439), - [anon_sym_LT] = ACTIONS(1439), - [anon_sym_GT_EQ] = ACTIONS(1437), - [anon_sym_LT_EQ] = ACTIONS(1437), - [anon_sym__] = ACTIONS(1439), - [anon_sym_DOT] = ACTIONS(1439), - [anon_sym_DOT_DOT] = ACTIONS(1439), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1437), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1437), - [anon_sym_COMMA] = ACTIONS(1437), - [anon_sym_COLON_COLON] = ACTIONS(1437), - [anon_sym_POUND] = ACTIONS(1437), - [anon_sym_as] = ACTIONS(1439), - [anon_sym_const] = ACTIONS(1439), - [anon_sym_default] = ACTIONS(1439), - [anon_sym_gen] = ACTIONS(1439), - [anon_sym_union] = ACTIONS(1439), - [anon_sym_ref] = ACTIONS(1439), - [sym_mutable_specifier] = ACTIONS(1439), - [sym_integer_literal] = ACTIONS(1437), - [aux_sym_string_literal_token1] = ACTIONS(1437), - [sym_char_literal] = ACTIONS(1437), - [anon_sym_true] = ACTIONS(1439), - [anon_sym_false] = ACTIONS(1439), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1439), - [sym_super] = ACTIONS(1439), - [sym_crate] = ACTIONS(1439), - [sym_metavariable] = ACTIONS(1437), - [sym__raw_string_literal_start] = ACTIONS(1437), - [sym_float_literal] = ACTIONS(1437), - }, - [481] = { - [sym_line_comment] = STATE(481), - [sym_block_comment] = STATE(481), + [490] = { + [sym_line_comment] = STATE(490), + [sym_block_comment] = STATE(490), [sym_identifier] = ACTIONS(1279), [anon_sym_LPAREN] = ACTIONS(1277), [anon_sym_LBRACK] = ACTIONS(1277), @@ -69789,3336 +72131,747 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1277), [sym_float_literal] = ACTIONS(1277), }, - [482] = { - [sym_line_comment] = STATE(482), - [sym_block_comment] = STATE(482), - [sym_identifier] = ACTIONS(1431), - [anon_sym_LPAREN] = ACTIONS(1429), - [anon_sym_LBRACK] = ACTIONS(1429), - [anon_sym_RBRACE] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1431), - [anon_sym_STAR] = ACTIONS(1431), - [anon_sym_QMARK] = ACTIONS(1429), - [anon_sym_u8] = ACTIONS(1431), - [anon_sym_i8] = ACTIONS(1431), - [anon_sym_u16] = ACTIONS(1431), - [anon_sym_i16] = ACTIONS(1431), - [anon_sym_u32] = ACTIONS(1431), - [anon_sym_i32] = ACTIONS(1431), - [anon_sym_u64] = ACTIONS(1431), - [anon_sym_i64] = ACTIONS(1431), - [anon_sym_u128] = ACTIONS(1431), - [anon_sym_i128] = ACTIONS(1431), - [anon_sym_isize] = ACTIONS(1431), - [anon_sym_usize] = ACTIONS(1431), - [anon_sym_f32] = ACTIONS(1431), - [anon_sym_f64] = ACTIONS(1431), - [anon_sym_bool] = ACTIONS(1431), - [anon_sym_str] = ACTIONS(1431), - [anon_sym_char] = ACTIONS(1431), - [anon_sym_DASH] = ACTIONS(1431), - [anon_sym_SLASH] = ACTIONS(1431), - [anon_sym_PERCENT] = ACTIONS(1431), - [anon_sym_CARET] = ACTIONS(1431), - [anon_sym_AMP] = ACTIONS(1431), - [anon_sym_PIPE] = ACTIONS(1431), - [anon_sym_AMP_AMP] = ACTIONS(1429), - [anon_sym_PIPE_PIPE] = ACTIONS(1429), - [anon_sym_LT_LT] = ACTIONS(1431), - [anon_sym_GT_GT] = ACTIONS(1431), - [anon_sym_PLUS_EQ] = ACTIONS(1429), - [anon_sym_DASH_EQ] = ACTIONS(1429), - [anon_sym_STAR_EQ] = ACTIONS(1429), - [anon_sym_SLASH_EQ] = ACTIONS(1429), - [anon_sym_PERCENT_EQ] = ACTIONS(1429), - [anon_sym_CARET_EQ] = ACTIONS(1429), - [anon_sym_AMP_EQ] = ACTIONS(1429), - [anon_sym_PIPE_EQ] = ACTIONS(1429), - [anon_sym_LT_LT_EQ] = ACTIONS(1429), - [anon_sym_GT_GT_EQ] = ACTIONS(1429), - [anon_sym_EQ] = ACTIONS(1431), - [anon_sym_EQ_EQ] = ACTIONS(1429), - [anon_sym_BANG_EQ] = ACTIONS(1429), - [anon_sym_GT] = ACTIONS(1431), - [anon_sym_LT] = ACTIONS(1431), - [anon_sym_GT_EQ] = ACTIONS(1429), - [anon_sym_LT_EQ] = ACTIONS(1429), - [anon_sym__] = ACTIONS(1431), - [anon_sym_DOT] = ACTIONS(1431), - [anon_sym_DOT_DOT] = ACTIONS(1431), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1429), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1429), - [anon_sym_COMMA] = ACTIONS(1429), - [anon_sym_COLON_COLON] = ACTIONS(1429), - [anon_sym_POUND] = ACTIONS(1429), - [anon_sym_as] = ACTIONS(1431), - [anon_sym_const] = ACTIONS(1431), - [anon_sym_default] = ACTIONS(1431), - [anon_sym_gen] = ACTIONS(1431), - [anon_sym_union] = ACTIONS(1431), - [anon_sym_ref] = ACTIONS(1431), - [sym_mutable_specifier] = ACTIONS(1431), - [sym_integer_literal] = ACTIONS(1429), - [aux_sym_string_literal_token1] = ACTIONS(1429), - [sym_char_literal] = ACTIONS(1429), - [anon_sym_true] = ACTIONS(1431), - [anon_sym_false] = ACTIONS(1431), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1431), - [sym_super] = ACTIONS(1431), - [sym_crate] = ACTIONS(1431), - [sym_metavariable] = ACTIONS(1429), - [sym__raw_string_literal_start] = ACTIONS(1429), - [sym_float_literal] = ACTIONS(1429), - }, - [483] = { - [sym_attribute_item] = STATE(1468), - [sym_inner_attribute_item] = STATE(1468), - [sym_bracketed_type] = STATE(3553), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3287), - [sym_macro_invocation] = STATE(2757), - [sym_scoped_identifier] = STATE(2151), - [sym_scoped_type_identifier] = STATE(2982), - [sym_match_arm] = STATE(1469), - [sym_last_match_arm] = STATE(3534), - [sym_match_pattern] = STATE(3352), - [sym_const_block] = STATE(2757), - [sym__pattern] = STATE(2907), - [sym_tuple_pattern] = STATE(2757), - [sym_slice_pattern] = STATE(2757), - [sym_tuple_struct_pattern] = STATE(2757), - [sym_struct_pattern] = STATE(2757), - [sym_remaining_field_pattern] = STATE(2757), - [sym_mut_pattern] = STATE(2757), - [sym_range_pattern] = STATE(2757), - [sym_ref_pattern] = STATE(2757), - [sym_captured_pattern] = STATE(2757), - [sym_reference_pattern] = STATE(2757), - [sym_or_pattern] = STATE(2757), - [sym__literal_pattern] = STATE(2330), - [sym_negative_literal] = STATE(2364), - [sym_string_literal] = STATE(2364), - [sym_raw_string_literal] = STATE(2364), - [sym_boolean_literal] = STATE(2364), - [sym_line_comment] = STATE(483), - [sym_block_comment] = STATE(483), - [aux_sym_match_block_repeat1] = STATE(699), - [aux_sym_match_arm_repeat1] = STATE(767), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1649), - [anon_sym_u8] = ACTIONS(1653), - [anon_sym_i8] = ACTIONS(1653), - [anon_sym_u16] = ACTIONS(1653), - [anon_sym_i16] = ACTIONS(1653), - [anon_sym_u32] = ACTIONS(1653), - [anon_sym_i32] = ACTIONS(1653), - [anon_sym_u64] = ACTIONS(1653), - [anon_sym_i64] = ACTIONS(1653), - [anon_sym_u128] = ACTIONS(1653), - [anon_sym_i128] = ACTIONS(1653), - [anon_sym_isize] = ACTIONS(1653), - [anon_sym_usize] = ACTIONS(1653), - [anon_sym_f32] = ACTIONS(1653), - [anon_sym_f64] = ACTIONS(1653), - [anon_sym_bool] = ACTIONS(1653), - [anon_sym_str] = ACTIONS(1653), - [anon_sym_char] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_PIPE] = ACTIONS(1659), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1661), - [anon_sym_DOT_DOT] = ACTIONS(1663), - [anon_sym_COLON_COLON] = ACTIONS(1665), - [anon_sym_POUND] = ACTIONS(1667), - [anon_sym_const] = ACTIONS(1669), - [anon_sym_default] = ACTIONS(1671), - [anon_sym_gen] = ACTIONS(1671), - [anon_sym_union] = ACTIONS(1671), - [anon_sym_ref] = ACTIONS(1673), - [sym_mutable_specifier] = ACTIONS(1675), - [sym_integer_literal] = ACTIONS(1677), - [aux_sym_string_literal_token1] = ACTIONS(1679), - [sym_char_literal] = ACTIONS(1677), - [anon_sym_true] = ACTIONS(1681), - [anon_sym_false] = ACTIONS(1681), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1683), - [sym_super] = ACTIONS(1683), - [sym_crate] = ACTIONS(1683), - [sym_metavariable] = ACTIONS(1685), - [sym__raw_string_literal_start] = ACTIONS(1687), - [sym_float_literal] = ACTIONS(1677), - }, - [484] = { - [sym_attribute_item] = STATE(1468), - [sym_inner_attribute_item] = STATE(1468), - [sym_bracketed_type] = STATE(3553), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3287), - [sym_macro_invocation] = STATE(2757), - [sym_scoped_identifier] = STATE(2151), - [sym_scoped_type_identifier] = STATE(2982), - [sym_match_arm] = STATE(1469), - [sym_last_match_arm] = STATE(3416), - [sym_match_pattern] = STATE(3352), - [sym_const_block] = STATE(2757), - [sym__pattern] = STATE(2907), - [sym_tuple_pattern] = STATE(2757), - [sym_slice_pattern] = STATE(2757), - [sym_tuple_struct_pattern] = STATE(2757), - [sym_struct_pattern] = STATE(2757), - [sym_remaining_field_pattern] = STATE(2757), - [sym_mut_pattern] = STATE(2757), - [sym_range_pattern] = STATE(2757), - [sym_ref_pattern] = STATE(2757), - [sym_captured_pattern] = STATE(2757), - [sym_reference_pattern] = STATE(2757), - [sym_or_pattern] = STATE(2757), - [sym__literal_pattern] = STATE(2330), - [sym_negative_literal] = STATE(2364), - [sym_string_literal] = STATE(2364), - [sym_raw_string_literal] = STATE(2364), - [sym_boolean_literal] = STATE(2364), - [sym_line_comment] = STATE(484), - [sym_block_comment] = STATE(484), - [aux_sym_match_block_repeat1] = STATE(699), - [aux_sym_match_arm_repeat1] = STATE(767), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1649), - [anon_sym_u8] = ACTIONS(1653), - [anon_sym_i8] = ACTIONS(1653), - [anon_sym_u16] = ACTIONS(1653), - [anon_sym_i16] = ACTIONS(1653), - [anon_sym_u32] = ACTIONS(1653), - [anon_sym_i32] = ACTIONS(1653), - [anon_sym_u64] = ACTIONS(1653), - [anon_sym_i64] = ACTIONS(1653), - [anon_sym_u128] = ACTIONS(1653), - [anon_sym_i128] = ACTIONS(1653), - [anon_sym_isize] = ACTIONS(1653), - [anon_sym_usize] = ACTIONS(1653), - [anon_sym_f32] = ACTIONS(1653), - [anon_sym_f64] = ACTIONS(1653), - [anon_sym_bool] = ACTIONS(1653), - [anon_sym_str] = ACTIONS(1653), - [anon_sym_char] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_PIPE] = ACTIONS(1659), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1661), - [anon_sym_DOT_DOT] = ACTIONS(1663), - [anon_sym_COLON_COLON] = ACTIONS(1665), - [anon_sym_POUND] = ACTIONS(1667), - [anon_sym_const] = ACTIONS(1669), - [anon_sym_default] = ACTIONS(1671), - [anon_sym_gen] = ACTIONS(1671), - [anon_sym_union] = ACTIONS(1671), - [anon_sym_ref] = ACTIONS(1673), - [sym_mutable_specifier] = ACTIONS(1675), - [sym_integer_literal] = ACTIONS(1677), - [aux_sym_string_literal_token1] = ACTIONS(1679), - [sym_char_literal] = ACTIONS(1677), - [anon_sym_true] = ACTIONS(1681), - [anon_sym_false] = ACTIONS(1681), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1683), - [sym_super] = ACTIONS(1683), - [sym_crate] = ACTIONS(1683), - [sym_metavariable] = ACTIONS(1685), - [sym__raw_string_literal_start] = ACTIONS(1687), - [sym_float_literal] = ACTIONS(1677), - }, - [485] = { - [sym_attribute_item] = STATE(1468), - [sym_inner_attribute_item] = STATE(1468), - [sym_bracketed_type] = STATE(3553), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3287), - [sym_macro_invocation] = STATE(2757), - [sym_scoped_identifier] = STATE(2151), - [sym_scoped_type_identifier] = STATE(2982), - [sym_match_arm] = STATE(1469), - [sym_last_match_arm] = STATE(3374), - [sym_match_pattern] = STATE(3352), - [sym_const_block] = STATE(2757), - [sym__pattern] = STATE(2907), - [sym_tuple_pattern] = STATE(2757), - [sym_slice_pattern] = STATE(2757), - [sym_tuple_struct_pattern] = STATE(2757), - [sym_struct_pattern] = STATE(2757), - [sym_remaining_field_pattern] = STATE(2757), - [sym_mut_pattern] = STATE(2757), - [sym_range_pattern] = STATE(2757), - [sym_ref_pattern] = STATE(2757), - [sym_captured_pattern] = STATE(2757), - [sym_reference_pattern] = STATE(2757), - [sym_or_pattern] = STATE(2757), - [sym__literal_pattern] = STATE(2330), - [sym_negative_literal] = STATE(2364), - [sym_string_literal] = STATE(2364), - [sym_raw_string_literal] = STATE(2364), - [sym_boolean_literal] = STATE(2364), - [sym_line_comment] = STATE(485), - [sym_block_comment] = STATE(485), - [aux_sym_match_block_repeat1] = STATE(699), - [aux_sym_match_arm_repeat1] = STATE(767), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1649), - [anon_sym_u8] = ACTIONS(1653), - [anon_sym_i8] = ACTIONS(1653), - [anon_sym_u16] = ACTIONS(1653), - [anon_sym_i16] = ACTIONS(1653), - [anon_sym_u32] = ACTIONS(1653), - [anon_sym_i32] = ACTIONS(1653), - [anon_sym_u64] = ACTIONS(1653), - [anon_sym_i64] = ACTIONS(1653), - [anon_sym_u128] = ACTIONS(1653), - [anon_sym_i128] = ACTIONS(1653), - [anon_sym_isize] = ACTIONS(1653), - [anon_sym_usize] = ACTIONS(1653), - [anon_sym_f32] = ACTIONS(1653), - [anon_sym_f64] = ACTIONS(1653), - [anon_sym_bool] = ACTIONS(1653), - [anon_sym_str] = ACTIONS(1653), - [anon_sym_char] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_PIPE] = ACTIONS(1659), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1661), - [anon_sym_DOT_DOT] = ACTIONS(1663), - [anon_sym_COLON_COLON] = ACTIONS(1665), - [anon_sym_POUND] = ACTIONS(1667), - [anon_sym_const] = ACTIONS(1669), - [anon_sym_default] = ACTIONS(1671), - [anon_sym_gen] = ACTIONS(1671), - [anon_sym_union] = ACTIONS(1671), - [anon_sym_ref] = ACTIONS(1673), - [sym_mutable_specifier] = ACTIONS(1675), - [sym_integer_literal] = ACTIONS(1677), - [aux_sym_string_literal_token1] = ACTIONS(1679), - [sym_char_literal] = ACTIONS(1677), - [anon_sym_true] = ACTIONS(1681), - [anon_sym_false] = ACTIONS(1681), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1683), - [sym_super] = ACTIONS(1683), - [sym_crate] = ACTIONS(1683), - [sym_metavariable] = ACTIONS(1685), - [sym__raw_string_literal_start] = ACTIONS(1687), - [sym_float_literal] = ACTIONS(1677), - }, - [486] = { - [sym_attribute_item] = STATE(1468), - [sym_inner_attribute_item] = STATE(1468), - [sym_bracketed_type] = STATE(3553), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3287), - [sym_macro_invocation] = STATE(2757), - [sym_scoped_identifier] = STATE(2151), - [sym_scoped_type_identifier] = STATE(2982), - [sym_match_arm] = STATE(1469), - [sym_last_match_arm] = STATE(3530), - [sym_match_pattern] = STATE(3352), - [sym_const_block] = STATE(2757), - [sym__pattern] = STATE(2907), - [sym_tuple_pattern] = STATE(2757), - [sym_slice_pattern] = STATE(2757), - [sym_tuple_struct_pattern] = STATE(2757), - [sym_struct_pattern] = STATE(2757), - [sym_remaining_field_pattern] = STATE(2757), - [sym_mut_pattern] = STATE(2757), - [sym_range_pattern] = STATE(2757), - [sym_ref_pattern] = STATE(2757), - [sym_captured_pattern] = STATE(2757), - [sym_reference_pattern] = STATE(2757), - [sym_or_pattern] = STATE(2757), - [sym__literal_pattern] = STATE(2330), - [sym_negative_literal] = STATE(2364), - [sym_string_literal] = STATE(2364), - [sym_raw_string_literal] = STATE(2364), - [sym_boolean_literal] = STATE(2364), - [sym_line_comment] = STATE(486), - [sym_block_comment] = STATE(486), - [aux_sym_match_block_repeat1] = STATE(699), - [aux_sym_match_arm_repeat1] = STATE(767), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1649), - [anon_sym_u8] = ACTIONS(1653), - [anon_sym_i8] = ACTIONS(1653), - [anon_sym_u16] = ACTIONS(1653), - [anon_sym_i16] = ACTIONS(1653), - [anon_sym_u32] = ACTIONS(1653), - [anon_sym_i32] = ACTIONS(1653), - [anon_sym_u64] = ACTIONS(1653), - [anon_sym_i64] = ACTIONS(1653), - [anon_sym_u128] = ACTIONS(1653), - [anon_sym_i128] = ACTIONS(1653), - [anon_sym_isize] = ACTIONS(1653), - [anon_sym_usize] = ACTIONS(1653), - [anon_sym_f32] = ACTIONS(1653), - [anon_sym_f64] = ACTIONS(1653), - [anon_sym_bool] = ACTIONS(1653), - [anon_sym_str] = ACTIONS(1653), - [anon_sym_char] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_PIPE] = ACTIONS(1659), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1661), - [anon_sym_DOT_DOT] = ACTIONS(1663), - [anon_sym_COLON_COLON] = ACTIONS(1665), - [anon_sym_POUND] = ACTIONS(1667), - [anon_sym_const] = ACTIONS(1669), - [anon_sym_default] = ACTIONS(1671), - [anon_sym_gen] = ACTIONS(1671), - [anon_sym_union] = ACTIONS(1671), - [anon_sym_ref] = ACTIONS(1673), - [sym_mutable_specifier] = ACTIONS(1675), - [sym_integer_literal] = ACTIONS(1677), - [aux_sym_string_literal_token1] = ACTIONS(1679), - [sym_char_literal] = ACTIONS(1677), - [anon_sym_true] = ACTIONS(1681), - [anon_sym_false] = ACTIONS(1681), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1683), - [sym_super] = ACTIONS(1683), - [sym_crate] = ACTIONS(1683), - [sym_metavariable] = ACTIONS(1685), - [sym__raw_string_literal_start] = ACTIONS(1687), - [sym_float_literal] = ACTIONS(1677), - }, - [487] = { - [sym_line_comment] = STATE(487), - [sym_block_comment] = STATE(487), - [ts_builtin_sym_end] = ACTIONS(1699), - [sym_identifier] = ACTIONS(1701), - [anon_sym_SEMI] = ACTIONS(1699), - [anon_sym_macro_rules_BANG] = ACTIONS(1699), - [anon_sym_LPAREN] = ACTIONS(1699), - [anon_sym_LBRACK] = ACTIONS(1699), - [anon_sym_LBRACE] = ACTIONS(1699), - [anon_sym_RBRACE] = ACTIONS(1699), - [anon_sym_STAR] = ACTIONS(1699), - [anon_sym_u8] = ACTIONS(1701), - [anon_sym_i8] = ACTIONS(1701), - [anon_sym_u16] = ACTIONS(1701), - [anon_sym_i16] = ACTIONS(1701), - [anon_sym_u32] = ACTIONS(1701), - [anon_sym_i32] = ACTIONS(1701), - [anon_sym_u64] = ACTIONS(1701), - [anon_sym_i64] = ACTIONS(1701), - [anon_sym_u128] = ACTIONS(1701), - [anon_sym_i128] = ACTIONS(1701), - [anon_sym_isize] = ACTIONS(1701), - [anon_sym_usize] = ACTIONS(1701), - [anon_sym_f32] = ACTIONS(1701), - [anon_sym_f64] = ACTIONS(1701), - [anon_sym_bool] = ACTIONS(1701), - [anon_sym_str] = ACTIONS(1701), - [anon_sym_char] = ACTIONS(1701), - [anon_sym_DASH] = ACTIONS(1699), - [anon_sym_BANG] = ACTIONS(1699), - [anon_sym_AMP] = ACTIONS(1699), - [anon_sym_PIPE] = ACTIONS(1699), - [anon_sym_LT] = ACTIONS(1699), - [anon_sym_DOT_DOT] = ACTIONS(1699), - [anon_sym_COLON_COLON] = ACTIONS(1699), - [anon_sym_POUND] = ACTIONS(1699), - [anon_sym_SQUOTE] = ACTIONS(1701), - [anon_sym_async] = ACTIONS(1701), - [anon_sym_break] = ACTIONS(1701), - [anon_sym_const] = ACTIONS(1701), - [anon_sym_continue] = ACTIONS(1701), - [anon_sym_default] = ACTIONS(1701), - [anon_sym_enum] = ACTIONS(1701), - [anon_sym_fn] = ACTIONS(1701), - [anon_sym_for] = ACTIONS(1701), - [anon_sym_gen] = ACTIONS(1701), - [anon_sym_if] = ACTIONS(1701), - [anon_sym_impl] = ACTIONS(1701), - [anon_sym_let] = ACTIONS(1701), - [anon_sym_loop] = ACTIONS(1701), - [anon_sym_match] = ACTIONS(1701), - [anon_sym_mod] = ACTIONS(1701), - [anon_sym_pub] = ACTIONS(1701), - [anon_sym_return] = ACTIONS(1701), - [anon_sym_static] = ACTIONS(1701), - [anon_sym_struct] = ACTIONS(1701), - [anon_sym_trait] = ACTIONS(1701), - [anon_sym_type] = ACTIONS(1701), - [anon_sym_union] = ACTIONS(1701), - [anon_sym_unsafe] = ACTIONS(1701), - [anon_sym_use] = ACTIONS(1701), - [anon_sym_while] = ACTIONS(1701), - [anon_sym_extern] = ACTIONS(1701), - [anon_sym_yield] = ACTIONS(1701), - [anon_sym_move] = ACTIONS(1701), - [anon_sym_try] = ACTIONS(1701), - [sym_integer_literal] = ACTIONS(1699), - [aux_sym_string_literal_token1] = ACTIONS(1699), - [sym_char_literal] = ACTIONS(1699), - [anon_sym_true] = ACTIONS(1701), - [anon_sym_false] = ACTIONS(1701), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1701), - [sym_super] = ACTIONS(1701), - [sym_crate] = ACTIONS(1701), - [sym_metavariable] = ACTIONS(1699), - [sym__raw_string_literal_start] = ACTIONS(1699), - [sym_float_literal] = ACTIONS(1699), - }, - [488] = { - [sym_line_comment] = STATE(488), - [sym_block_comment] = STATE(488), - [ts_builtin_sym_end] = ACTIONS(1703), - [sym_identifier] = ACTIONS(1705), - [anon_sym_SEMI] = ACTIONS(1703), - [anon_sym_macro_rules_BANG] = ACTIONS(1703), - [anon_sym_LPAREN] = ACTIONS(1703), - [anon_sym_LBRACK] = ACTIONS(1703), - [anon_sym_LBRACE] = ACTIONS(1703), - [anon_sym_RBRACE] = ACTIONS(1703), - [anon_sym_STAR] = ACTIONS(1703), - [anon_sym_u8] = ACTIONS(1705), - [anon_sym_i8] = ACTIONS(1705), - [anon_sym_u16] = ACTIONS(1705), - [anon_sym_i16] = ACTIONS(1705), - [anon_sym_u32] = ACTIONS(1705), - [anon_sym_i32] = ACTIONS(1705), - [anon_sym_u64] = ACTIONS(1705), - [anon_sym_i64] = ACTIONS(1705), - [anon_sym_u128] = ACTIONS(1705), - [anon_sym_i128] = ACTIONS(1705), - [anon_sym_isize] = ACTIONS(1705), - [anon_sym_usize] = ACTIONS(1705), - [anon_sym_f32] = ACTIONS(1705), - [anon_sym_f64] = ACTIONS(1705), - [anon_sym_bool] = ACTIONS(1705), - [anon_sym_str] = ACTIONS(1705), - [anon_sym_char] = ACTIONS(1705), - [anon_sym_DASH] = ACTIONS(1703), - [anon_sym_BANG] = ACTIONS(1703), - [anon_sym_AMP] = ACTIONS(1703), - [anon_sym_PIPE] = ACTIONS(1703), - [anon_sym_LT] = ACTIONS(1703), - [anon_sym_DOT_DOT] = ACTIONS(1703), - [anon_sym_COLON_COLON] = ACTIONS(1703), - [anon_sym_POUND] = ACTIONS(1703), - [anon_sym_SQUOTE] = ACTIONS(1705), - [anon_sym_async] = ACTIONS(1705), - [anon_sym_break] = ACTIONS(1705), - [anon_sym_const] = ACTIONS(1705), - [anon_sym_continue] = ACTIONS(1705), - [anon_sym_default] = ACTIONS(1705), - [anon_sym_enum] = ACTIONS(1705), - [anon_sym_fn] = ACTIONS(1705), - [anon_sym_for] = ACTIONS(1705), - [anon_sym_gen] = ACTIONS(1705), - [anon_sym_if] = ACTIONS(1705), - [anon_sym_impl] = ACTIONS(1705), - [anon_sym_let] = ACTIONS(1705), - [anon_sym_loop] = ACTIONS(1705), - [anon_sym_match] = ACTIONS(1705), - [anon_sym_mod] = ACTIONS(1705), - [anon_sym_pub] = ACTIONS(1705), - [anon_sym_return] = ACTIONS(1705), - [anon_sym_static] = ACTIONS(1705), - [anon_sym_struct] = ACTIONS(1705), - [anon_sym_trait] = ACTIONS(1705), - [anon_sym_type] = ACTIONS(1705), - [anon_sym_union] = ACTIONS(1705), - [anon_sym_unsafe] = ACTIONS(1705), - [anon_sym_use] = ACTIONS(1705), - [anon_sym_while] = ACTIONS(1705), - [anon_sym_extern] = ACTIONS(1705), - [anon_sym_yield] = ACTIONS(1705), - [anon_sym_move] = ACTIONS(1705), - [anon_sym_try] = ACTIONS(1705), - [sym_integer_literal] = ACTIONS(1703), - [aux_sym_string_literal_token1] = ACTIONS(1703), - [sym_char_literal] = ACTIONS(1703), - [anon_sym_true] = ACTIONS(1705), - [anon_sym_false] = ACTIONS(1705), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1705), - [sym_super] = ACTIONS(1705), - [sym_crate] = ACTIONS(1705), - [sym_metavariable] = ACTIONS(1703), - [sym__raw_string_literal_start] = ACTIONS(1703), - [sym_float_literal] = ACTIONS(1703), - }, - [489] = { - [sym_line_comment] = STATE(489), - [sym_block_comment] = STATE(489), - [ts_builtin_sym_end] = ACTIONS(1707), - [sym_identifier] = ACTIONS(1709), - [anon_sym_SEMI] = ACTIONS(1707), - [anon_sym_macro_rules_BANG] = ACTIONS(1707), - [anon_sym_LPAREN] = ACTIONS(1707), - [anon_sym_LBRACK] = ACTIONS(1707), - [anon_sym_LBRACE] = ACTIONS(1707), - [anon_sym_RBRACE] = ACTIONS(1707), - [anon_sym_STAR] = ACTIONS(1707), - [anon_sym_u8] = ACTIONS(1709), - [anon_sym_i8] = ACTIONS(1709), - [anon_sym_u16] = ACTIONS(1709), - [anon_sym_i16] = ACTIONS(1709), - [anon_sym_u32] = ACTIONS(1709), - [anon_sym_i32] = ACTIONS(1709), - [anon_sym_u64] = ACTIONS(1709), - [anon_sym_i64] = ACTIONS(1709), - [anon_sym_u128] = ACTIONS(1709), - [anon_sym_i128] = ACTIONS(1709), - [anon_sym_isize] = ACTIONS(1709), - [anon_sym_usize] = ACTIONS(1709), - [anon_sym_f32] = ACTIONS(1709), - [anon_sym_f64] = ACTIONS(1709), - [anon_sym_bool] = ACTIONS(1709), - [anon_sym_str] = ACTIONS(1709), - [anon_sym_char] = ACTIONS(1709), - [anon_sym_DASH] = ACTIONS(1707), - [anon_sym_BANG] = ACTIONS(1707), - [anon_sym_AMP] = ACTIONS(1707), - [anon_sym_PIPE] = ACTIONS(1707), - [anon_sym_LT] = ACTIONS(1707), - [anon_sym_DOT_DOT] = ACTIONS(1707), - [anon_sym_COLON_COLON] = ACTIONS(1707), - [anon_sym_POUND] = ACTIONS(1707), - [anon_sym_SQUOTE] = ACTIONS(1709), - [anon_sym_async] = ACTIONS(1709), - [anon_sym_break] = ACTIONS(1709), - [anon_sym_const] = ACTIONS(1709), - [anon_sym_continue] = ACTIONS(1709), - [anon_sym_default] = ACTIONS(1709), - [anon_sym_enum] = ACTIONS(1709), - [anon_sym_fn] = ACTIONS(1709), - [anon_sym_for] = ACTIONS(1709), - [anon_sym_gen] = ACTIONS(1709), - [anon_sym_if] = ACTIONS(1709), - [anon_sym_impl] = ACTIONS(1709), - [anon_sym_let] = ACTIONS(1709), - [anon_sym_loop] = ACTIONS(1709), - [anon_sym_match] = ACTIONS(1709), - [anon_sym_mod] = ACTIONS(1709), - [anon_sym_pub] = ACTIONS(1709), - [anon_sym_return] = ACTIONS(1709), - [anon_sym_static] = ACTIONS(1709), - [anon_sym_struct] = ACTIONS(1709), - [anon_sym_trait] = ACTIONS(1709), - [anon_sym_type] = ACTIONS(1709), - [anon_sym_union] = ACTIONS(1709), - [anon_sym_unsafe] = ACTIONS(1709), - [anon_sym_use] = ACTIONS(1709), - [anon_sym_while] = ACTIONS(1709), - [anon_sym_extern] = ACTIONS(1709), - [anon_sym_yield] = ACTIONS(1709), - [anon_sym_move] = ACTIONS(1709), - [anon_sym_try] = ACTIONS(1709), - [sym_integer_literal] = ACTIONS(1707), - [aux_sym_string_literal_token1] = ACTIONS(1707), - [sym_char_literal] = ACTIONS(1707), - [anon_sym_true] = ACTIONS(1709), - [anon_sym_false] = ACTIONS(1709), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1709), - [sym_super] = ACTIONS(1709), - [sym_crate] = ACTIONS(1709), - [sym_metavariable] = ACTIONS(1707), - [sym__raw_string_literal_start] = ACTIONS(1707), - [sym_float_literal] = ACTIONS(1707), - }, - [490] = { - [sym_line_comment] = STATE(490), - [sym_block_comment] = STATE(490), - [ts_builtin_sym_end] = ACTIONS(1711), - [sym_identifier] = ACTIONS(1713), - [anon_sym_SEMI] = ACTIONS(1711), - [anon_sym_macro_rules_BANG] = ACTIONS(1711), - [anon_sym_LPAREN] = ACTIONS(1711), - [anon_sym_LBRACK] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1711), - [anon_sym_RBRACE] = ACTIONS(1711), - [anon_sym_STAR] = ACTIONS(1711), - [anon_sym_u8] = ACTIONS(1713), - [anon_sym_i8] = ACTIONS(1713), - [anon_sym_u16] = ACTIONS(1713), - [anon_sym_i16] = ACTIONS(1713), - [anon_sym_u32] = ACTIONS(1713), - [anon_sym_i32] = ACTIONS(1713), - [anon_sym_u64] = ACTIONS(1713), - [anon_sym_i64] = ACTIONS(1713), - [anon_sym_u128] = ACTIONS(1713), - [anon_sym_i128] = ACTIONS(1713), - [anon_sym_isize] = ACTIONS(1713), - [anon_sym_usize] = ACTIONS(1713), - [anon_sym_f32] = ACTIONS(1713), - [anon_sym_f64] = ACTIONS(1713), - [anon_sym_bool] = ACTIONS(1713), - [anon_sym_str] = ACTIONS(1713), - [anon_sym_char] = ACTIONS(1713), - [anon_sym_DASH] = ACTIONS(1711), - [anon_sym_BANG] = ACTIONS(1711), - [anon_sym_AMP] = ACTIONS(1711), - [anon_sym_PIPE] = ACTIONS(1711), - [anon_sym_LT] = ACTIONS(1711), - [anon_sym_DOT_DOT] = ACTIONS(1711), - [anon_sym_COLON_COLON] = ACTIONS(1711), - [anon_sym_POUND] = ACTIONS(1711), - [anon_sym_SQUOTE] = ACTIONS(1713), - [anon_sym_async] = ACTIONS(1713), - [anon_sym_break] = ACTIONS(1713), - [anon_sym_const] = ACTIONS(1713), - [anon_sym_continue] = ACTIONS(1713), - [anon_sym_default] = ACTIONS(1713), - [anon_sym_enum] = ACTIONS(1713), - [anon_sym_fn] = ACTIONS(1713), - [anon_sym_for] = ACTIONS(1713), - [anon_sym_gen] = ACTIONS(1713), - [anon_sym_if] = ACTIONS(1713), - [anon_sym_impl] = ACTIONS(1713), - [anon_sym_let] = ACTIONS(1713), - [anon_sym_loop] = ACTIONS(1713), - [anon_sym_match] = ACTIONS(1713), - [anon_sym_mod] = ACTIONS(1713), - [anon_sym_pub] = ACTIONS(1713), - [anon_sym_return] = ACTIONS(1713), - [anon_sym_static] = ACTIONS(1713), - [anon_sym_struct] = ACTIONS(1713), - [anon_sym_trait] = ACTIONS(1713), - [anon_sym_type] = ACTIONS(1713), - [anon_sym_union] = ACTIONS(1713), - [anon_sym_unsafe] = ACTIONS(1713), - [anon_sym_use] = ACTIONS(1713), - [anon_sym_while] = ACTIONS(1713), - [anon_sym_extern] = ACTIONS(1713), - [anon_sym_yield] = ACTIONS(1713), - [anon_sym_move] = ACTIONS(1713), - [anon_sym_try] = ACTIONS(1713), - [sym_integer_literal] = ACTIONS(1711), - [aux_sym_string_literal_token1] = ACTIONS(1711), - [sym_char_literal] = ACTIONS(1711), - [anon_sym_true] = ACTIONS(1713), - [anon_sym_false] = ACTIONS(1713), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1713), - [sym_super] = ACTIONS(1713), - [sym_crate] = ACTIONS(1713), - [sym_metavariable] = ACTIONS(1711), - [sym__raw_string_literal_start] = ACTIONS(1711), - [sym_float_literal] = ACTIONS(1711), - }, [491] = { + [sym_attribute_item] = STATE(1649), + [sym_inner_attribute_item] = STATE(1649), + [sym_bracketed_type] = STATE(4029), + [sym_generic_type] = STATE(3972), + [sym_generic_type_with_turbofish] = STATE(3589), + [sym_macro_invocation] = STATE(3205), + [sym_scoped_identifier] = STATE(2461), + [sym_scoped_type_identifier] = STATE(3294), + [sym_match_arm] = STATE(1654), + [sym_last_match_arm] = STATE(3887), + [sym_match_pattern] = STATE(3985), + [sym_const_block] = STATE(3205), + [sym__pattern] = STATE(3193), + [sym_tuple_pattern] = STATE(3205), + [sym_slice_pattern] = STATE(3205), + [sym_tuple_struct_pattern] = STATE(3205), + [sym_struct_pattern] = STATE(3205), + [sym_remaining_field_pattern] = STATE(3205), + [sym_mut_pattern] = STATE(3205), + [sym_range_pattern] = STATE(3205), + [sym_ref_pattern] = STATE(3205), + [sym_captured_pattern] = STATE(3205), + [sym_reference_pattern] = STATE(3205), + [sym_or_pattern] = STATE(3205), + [sym__literal_pattern] = STATE(2617), + [sym_negative_literal] = STATE(2620), + [sym_string_literal] = STATE(2620), + [sym_raw_string_literal] = STATE(2620), + [sym_boolean_literal] = STATE(2620), [sym_line_comment] = STATE(491), [sym_block_comment] = STATE(491), - [ts_builtin_sym_end] = ACTIONS(1715), - [sym_identifier] = ACTIONS(1717), - [anon_sym_SEMI] = ACTIONS(1715), - [anon_sym_macro_rules_BANG] = ACTIONS(1715), - [anon_sym_LPAREN] = ACTIONS(1715), - [anon_sym_LBRACK] = ACTIONS(1715), - [anon_sym_LBRACE] = ACTIONS(1715), - [anon_sym_RBRACE] = ACTIONS(1715), - [anon_sym_STAR] = ACTIONS(1715), - [anon_sym_u8] = ACTIONS(1717), - [anon_sym_i8] = ACTIONS(1717), - [anon_sym_u16] = ACTIONS(1717), - [anon_sym_i16] = ACTIONS(1717), - [anon_sym_u32] = ACTIONS(1717), - [anon_sym_i32] = ACTIONS(1717), - [anon_sym_u64] = ACTIONS(1717), - [anon_sym_i64] = ACTIONS(1717), - [anon_sym_u128] = ACTIONS(1717), - [anon_sym_i128] = ACTIONS(1717), - [anon_sym_isize] = ACTIONS(1717), - [anon_sym_usize] = ACTIONS(1717), - [anon_sym_f32] = ACTIONS(1717), - [anon_sym_f64] = ACTIONS(1717), - [anon_sym_bool] = ACTIONS(1717), - [anon_sym_str] = ACTIONS(1717), - [anon_sym_char] = ACTIONS(1717), - [anon_sym_DASH] = ACTIONS(1715), - [anon_sym_BANG] = ACTIONS(1715), - [anon_sym_AMP] = ACTIONS(1715), - [anon_sym_PIPE] = ACTIONS(1715), - [anon_sym_LT] = ACTIONS(1715), - [anon_sym_DOT_DOT] = ACTIONS(1715), - [anon_sym_COLON_COLON] = ACTIONS(1715), - [anon_sym_POUND] = ACTIONS(1715), - [anon_sym_SQUOTE] = ACTIONS(1717), - [anon_sym_async] = ACTIONS(1717), - [anon_sym_break] = ACTIONS(1717), - [anon_sym_const] = ACTIONS(1717), - [anon_sym_continue] = ACTIONS(1717), - [anon_sym_default] = ACTIONS(1717), - [anon_sym_enum] = ACTIONS(1717), - [anon_sym_fn] = ACTIONS(1717), - [anon_sym_for] = ACTIONS(1717), - [anon_sym_gen] = ACTIONS(1717), - [anon_sym_if] = ACTIONS(1717), - [anon_sym_impl] = ACTIONS(1717), - [anon_sym_let] = ACTIONS(1717), - [anon_sym_loop] = ACTIONS(1717), - [anon_sym_match] = ACTIONS(1717), - [anon_sym_mod] = ACTIONS(1717), - [anon_sym_pub] = ACTIONS(1717), - [anon_sym_return] = ACTIONS(1717), - [anon_sym_static] = ACTIONS(1717), - [anon_sym_struct] = ACTIONS(1717), - [anon_sym_trait] = ACTIONS(1717), - [anon_sym_type] = ACTIONS(1717), - [anon_sym_union] = ACTIONS(1717), - [anon_sym_unsafe] = ACTIONS(1717), - [anon_sym_use] = ACTIONS(1717), - [anon_sym_while] = ACTIONS(1717), - [anon_sym_extern] = ACTIONS(1717), - [anon_sym_yield] = ACTIONS(1717), - [anon_sym_move] = ACTIONS(1717), - [anon_sym_try] = ACTIONS(1717), - [sym_integer_literal] = ACTIONS(1715), - [aux_sym_string_literal_token1] = ACTIONS(1715), - [sym_char_literal] = ACTIONS(1715), - [anon_sym_true] = ACTIONS(1717), - [anon_sym_false] = ACTIONS(1717), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1717), - [sym_super] = ACTIONS(1717), - [sym_crate] = ACTIONS(1717), - [sym_metavariable] = ACTIONS(1715), - [sym__raw_string_literal_start] = ACTIONS(1715), - [sym_float_literal] = ACTIONS(1715), + [aux_sym_match_block_repeat1] = STATE(541), + [aux_sym_match_arm_repeat1] = STATE(879), + [sym_identifier] = ACTIONS(1649), + [anon_sym_LPAREN] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_u8] = ACTIONS(1657), + [anon_sym_i8] = ACTIONS(1657), + [anon_sym_u16] = ACTIONS(1657), + [anon_sym_i16] = ACTIONS(1657), + [anon_sym_u32] = ACTIONS(1657), + [anon_sym_i32] = ACTIONS(1657), + [anon_sym_u64] = ACTIONS(1657), + [anon_sym_i64] = ACTIONS(1657), + [anon_sym_u128] = ACTIONS(1657), + [anon_sym_i128] = ACTIONS(1657), + [anon_sym_isize] = ACTIONS(1657), + [anon_sym_usize] = ACTIONS(1657), + [anon_sym_f32] = ACTIONS(1657), + [anon_sym_f64] = ACTIONS(1657), + [anon_sym_bool] = ACTIONS(1657), + [anon_sym_str] = ACTIONS(1657), + [anon_sym_char] = ACTIONS(1657), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_AMP] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(1663), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1665), + [anon_sym_DOT_DOT] = ACTIONS(1667), + [anon_sym_COLON_COLON] = ACTIONS(1669), + [anon_sym_POUND] = ACTIONS(1671), + [anon_sym_const] = ACTIONS(1673), + [anon_sym_default] = ACTIONS(1675), + [anon_sym_gen] = ACTIONS(1675), + [anon_sym_union] = ACTIONS(1675), + [anon_sym_ref] = ACTIONS(1677), + [sym_mutable_specifier] = ACTIONS(1679), + [sym_integer_literal] = ACTIONS(1681), + [aux_sym_string_literal_token1] = ACTIONS(1683), + [sym_char_literal] = ACTIONS(1681), + [anon_sym_true] = ACTIONS(1685), + [anon_sym_false] = ACTIONS(1685), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1687), + [sym_super] = ACTIONS(1687), + [sym_crate] = ACTIONS(1687), + [sym_metavariable] = ACTIONS(1689), + [sym__raw_string_literal_start] = ACTIONS(1691), + [sym_float_literal] = ACTIONS(1681), }, [492] = { + [sym_attribute_item] = STATE(1649), + [sym_inner_attribute_item] = STATE(1649), + [sym_bracketed_type] = STATE(4029), + [sym_generic_type] = STATE(3972), + [sym_generic_type_with_turbofish] = STATE(3589), + [sym_macro_invocation] = STATE(3205), + [sym_scoped_identifier] = STATE(2461), + [sym_scoped_type_identifier] = STATE(3294), + [sym_match_arm] = STATE(1654), + [sym_last_match_arm] = STATE(3823), + [sym_match_pattern] = STATE(3985), + [sym_const_block] = STATE(3205), + [sym__pattern] = STATE(3193), + [sym_tuple_pattern] = STATE(3205), + [sym_slice_pattern] = STATE(3205), + [sym_tuple_struct_pattern] = STATE(3205), + [sym_struct_pattern] = STATE(3205), + [sym_remaining_field_pattern] = STATE(3205), + [sym_mut_pattern] = STATE(3205), + [sym_range_pattern] = STATE(3205), + [sym_ref_pattern] = STATE(3205), + [sym_captured_pattern] = STATE(3205), + [sym_reference_pattern] = STATE(3205), + [sym_or_pattern] = STATE(3205), + [sym__literal_pattern] = STATE(2617), + [sym_negative_literal] = STATE(2620), + [sym_string_literal] = STATE(2620), + [sym_raw_string_literal] = STATE(2620), + [sym_boolean_literal] = STATE(2620), [sym_line_comment] = STATE(492), [sym_block_comment] = STATE(492), - [ts_builtin_sym_end] = ACTIONS(1719), - [sym_identifier] = ACTIONS(1721), - [anon_sym_SEMI] = ACTIONS(1719), - [anon_sym_macro_rules_BANG] = ACTIONS(1719), - [anon_sym_LPAREN] = ACTIONS(1719), - [anon_sym_LBRACK] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(1719), - [anon_sym_RBRACE] = ACTIONS(1719), - [anon_sym_STAR] = ACTIONS(1719), - [anon_sym_u8] = ACTIONS(1721), - [anon_sym_i8] = ACTIONS(1721), - [anon_sym_u16] = ACTIONS(1721), - [anon_sym_i16] = ACTIONS(1721), - [anon_sym_u32] = ACTIONS(1721), - [anon_sym_i32] = ACTIONS(1721), - [anon_sym_u64] = ACTIONS(1721), - [anon_sym_i64] = ACTIONS(1721), - [anon_sym_u128] = ACTIONS(1721), - [anon_sym_i128] = ACTIONS(1721), - [anon_sym_isize] = ACTIONS(1721), - [anon_sym_usize] = ACTIONS(1721), - [anon_sym_f32] = ACTIONS(1721), - [anon_sym_f64] = ACTIONS(1721), - [anon_sym_bool] = ACTIONS(1721), - [anon_sym_str] = ACTIONS(1721), - [anon_sym_char] = ACTIONS(1721), - [anon_sym_DASH] = ACTIONS(1719), - [anon_sym_BANG] = ACTIONS(1719), - [anon_sym_AMP] = ACTIONS(1719), - [anon_sym_PIPE] = ACTIONS(1719), - [anon_sym_LT] = ACTIONS(1719), - [anon_sym_DOT_DOT] = ACTIONS(1719), - [anon_sym_COLON_COLON] = ACTIONS(1719), - [anon_sym_POUND] = ACTIONS(1719), - [anon_sym_SQUOTE] = ACTIONS(1721), - [anon_sym_async] = ACTIONS(1721), - [anon_sym_break] = ACTIONS(1721), - [anon_sym_const] = ACTIONS(1721), - [anon_sym_continue] = ACTIONS(1721), - [anon_sym_default] = ACTIONS(1721), - [anon_sym_enum] = ACTIONS(1721), - [anon_sym_fn] = ACTIONS(1721), - [anon_sym_for] = ACTIONS(1721), - [anon_sym_gen] = ACTIONS(1721), - [anon_sym_if] = ACTIONS(1721), - [anon_sym_impl] = ACTIONS(1721), - [anon_sym_let] = ACTIONS(1721), - [anon_sym_loop] = ACTIONS(1721), - [anon_sym_match] = ACTIONS(1721), - [anon_sym_mod] = ACTIONS(1721), - [anon_sym_pub] = ACTIONS(1721), - [anon_sym_return] = ACTIONS(1721), - [anon_sym_static] = ACTIONS(1721), - [anon_sym_struct] = ACTIONS(1721), - [anon_sym_trait] = ACTIONS(1721), - [anon_sym_type] = ACTIONS(1721), - [anon_sym_union] = ACTIONS(1721), - [anon_sym_unsafe] = ACTIONS(1721), - [anon_sym_use] = ACTIONS(1721), - [anon_sym_while] = ACTIONS(1721), - [anon_sym_extern] = ACTIONS(1721), - [anon_sym_yield] = ACTIONS(1721), - [anon_sym_move] = ACTIONS(1721), - [anon_sym_try] = ACTIONS(1721), - [sym_integer_literal] = ACTIONS(1719), - [aux_sym_string_literal_token1] = ACTIONS(1719), - [sym_char_literal] = ACTIONS(1719), - [anon_sym_true] = ACTIONS(1721), - [anon_sym_false] = ACTIONS(1721), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1721), - [sym_super] = ACTIONS(1721), - [sym_crate] = ACTIONS(1721), - [sym_metavariable] = ACTIONS(1719), - [sym__raw_string_literal_start] = ACTIONS(1719), - [sym_float_literal] = ACTIONS(1719), + [aux_sym_match_block_repeat1] = STATE(541), + [aux_sym_match_arm_repeat1] = STATE(879), + [sym_identifier] = ACTIONS(1649), + [anon_sym_LPAREN] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_u8] = ACTIONS(1657), + [anon_sym_i8] = ACTIONS(1657), + [anon_sym_u16] = ACTIONS(1657), + [anon_sym_i16] = ACTIONS(1657), + [anon_sym_u32] = ACTIONS(1657), + [anon_sym_i32] = ACTIONS(1657), + [anon_sym_u64] = ACTIONS(1657), + [anon_sym_i64] = ACTIONS(1657), + [anon_sym_u128] = ACTIONS(1657), + [anon_sym_i128] = ACTIONS(1657), + [anon_sym_isize] = ACTIONS(1657), + [anon_sym_usize] = ACTIONS(1657), + [anon_sym_f32] = ACTIONS(1657), + [anon_sym_f64] = ACTIONS(1657), + [anon_sym_bool] = ACTIONS(1657), + [anon_sym_str] = ACTIONS(1657), + [anon_sym_char] = ACTIONS(1657), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_AMP] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(1663), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1665), + [anon_sym_DOT_DOT] = ACTIONS(1667), + [anon_sym_COLON_COLON] = ACTIONS(1669), + [anon_sym_POUND] = ACTIONS(1671), + [anon_sym_const] = ACTIONS(1673), + [anon_sym_default] = ACTIONS(1675), + [anon_sym_gen] = ACTIONS(1675), + [anon_sym_union] = ACTIONS(1675), + [anon_sym_ref] = ACTIONS(1677), + [sym_mutable_specifier] = ACTIONS(1679), + [sym_integer_literal] = ACTIONS(1681), + [aux_sym_string_literal_token1] = ACTIONS(1683), + [sym_char_literal] = ACTIONS(1681), + [anon_sym_true] = ACTIONS(1685), + [anon_sym_false] = ACTIONS(1685), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1687), + [sym_super] = ACTIONS(1687), + [sym_crate] = ACTIONS(1687), + [sym_metavariable] = ACTIONS(1689), + [sym__raw_string_literal_start] = ACTIONS(1691), + [sym_float_literal] = ACTIONS(1681), }, [493] = { + [sym_attribute_item] = STATE(1649), + [sym_inner_attribute_item] = STATE(1649), + [sym_bracketed_type] = STATE(4029), + [sym_generic_type] = STATE(3972), + [sym_generic_type_with_turbofish] = STATE(3589), + [sym_macro_invocation] = STATE(3205), + [sym_scoped_identifier] = STATE(2461), + [sym_scoped_type_identifier] = STATE(3294), + [sym_match_arm] = STATE(1654), + [sym_last_match_arm] = STATE(4071), + [sym_match_pattern] = STATE(3985), + [sym_const_block] = STATE(3205), + [sym__pattern] = STATE(3193), + [sym_tuple_pattern] = STATE(3205), + [sym_slice_pattern] = STATE(3205), + [sym_tuple_struct_pattern] = STATE(3205), + [sym_struct_pattern] = STATE(3205), + [sym_remaining_field_pattern] = STATE(3205), + [sym_mut_pattern] = STATE(3205), + [sym_range_pattern] = STATE(3205), + [sym_ref_pattern] = STATE(3205), + [sym_captured_pattern] = STATE(3205), + [sym_reference_pattern] = STATE(3205), + [sym_or_pattern] = STATE(3205), + [sym__literal_pattern] = STATE(2617), + [sym_negative_literal] = STATE(2620), + [sym_string_literal] = STATE(2620), + [sym_raw_string_literal] = STATE(2620), + [sym_boolean_literal] = STATE(2620), [sym_line_comment] = STATE(493), [sym_block_comment] = STATE(493), - [ts_builtin_sym_end] = ACTIONS(1723), - [sym_identifier] = ACTIONS(1725), - [anon_sym_SEMI] = ACTIONS(1723), - [anon_sym_macro_rules_BANG] = ACTIONS(1723), - [anon_sym_LPAREN] = ACTIONS(1723), - [anon_sym_LBRACK] = ACTIONS(1723), - [anon_sym_LBRACE] = ACTIONS(1723), - [anon_sym_RBRACE] = ACTIONS(1723), - [anon_sym_STAR] = ACTIONS(1723), - [anon_sym_u8] = ACTIONS(1725), - [anon_sym_i8] = ACTIONS(1725), - [anon_sym_u16] = ACTIONS(1725), - [anon_sym_i16] = ACTIONS(1725), - [anon_sym_u32] = ACTIONS(1725), - [anon_sym_i32] = ACTIONS(1725), - [anon_sym_u64] = ACTIONS(1725), - [anon_sym_i64] = ACTIONS(1725), - [anon_sym_u128] = ACTIONS(1725), - [anon_sym_i128] = ACTIONS(1725), - [anon_sym_isize] = ACTIONS(1725), - [anon_sym_usize] = ACTIONS(1725), - [anon_sym_f32] = ACTIONS(1725), - [anon_sym_f64] = ACTIONS(1725), - [anon_sym_bool] = ACTIONS(1725), - [anon_sym_str] = ACTIONS(1725), - [anon_sym_char] = ACTIONS(1725), - [anon_sym_DASH] = ACTIONS(1723), - [anon_sym_BANG] = ACTIONS(1723), - [anon_sym_AMP] = ACTIONS(1723), - [anon_sym_PIPE] = ACTIONS(1723), - [anon_sym_LT] = ACTIONS(1723), - [anon_sym_DOT_DOT] = ACTIONS(1723), - [anon_sym_COLON_COLON] = ACTIONS(1723), - [anon_sym_POUND] = ACTIONS(1723), - [anon_sym_SQUOTE] = ACTIONS(1725), - [anon_sym_async] = ACTIONS(1725), - [anon_sym_break] = ACTIONS(1725), - [anon_sym_const] = ACTIONS(1725), - [anon_sym_continue] = ACTIONS(1725), - [anon_sym_default] = ACTIONS(1725), - [anon_sym_enum] = ACTIONS(1725), - [anon_sym_fn] = ACTIONS(1725), - [anon_sym_for] = ACTIONS(1725), - [anon_sym_gen] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1725), - [anon_sym_impl] = ACTIONS(1725), - [anon_sym_let] = ACTIONS(1725), - [anon_sym_loop] = ACTIONS(1725), - [anon_sym_match] = ACTIONS(1725), - [anon_sym_mod] = ACTIONS(1725), - [anon_sym_pub] = ACTIONS(1725), - [anon_sym_return] = ACTIONS(1725), - [anon_sym_static] = ACTIONS(1725), - [anon_sym_struct] = ACTIONS(1725), - [anon_sym_trait] = ACTIONS(1725), - [anon_sym_type] = ACTIONS(1725), - [anon_sym_union] = ACTIONS(1725), - [anon_sym_unsafe] = ACTIONS(1725), - [anon_sym_use] = ACTIONS(1725), - [anon_sym_while] = ACTIONS(1725), - [anon_sym_extern] = ACTIONS(1725), - [anon_sym_yield] = ACTIONS(1725), - [anon_sym_move] = ACTIONS(1725), - [anon_sym_try] = ACTIONS(1725), - [sym_integer_literal] = ACTIONS(1723), - [aux_sym_string_literal_token1] = ACTIONS(1723), - [sym_char_literal] = ACTIONS(1723), - [anon_sym_true] = ACTIONS(1725), - [anon_sym_false] = ACTIONS(1725), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1725), - [sym_super] = ACTIONS(1725), - [sym_crate] = ACTIONS(1725), - [sym_metavariable] = ACTIONS(1723), - [sym__raw_string_literal_start] = ACTIONS(1723), - [sym_float_literal] = ACTIONS(1723), + [aux_sym_match_block_repeat1] = STATE(541), + [aux_sym_match_arm_repeat1] = STATE(879), + [sym_identifier] = ACTIONS(1649), + [anon_sym_LPAREN] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_u8] = ACTIONS(1657), + [anon_sym_i8] = ACTIONS(1657), + [anon_sym_u16] = ACTIONS(1657), + [anon_sym_i16] = ACTIONS(1657), + [anon_sym_u32] = ACTIONS(1657), + [anon_sym_i32] = ACTIONS(1657), + [anon_sym_u64] = ACTIONS(1657), + [anon_sym_i64] = ACTIONS(1657), + [anon_sym_u128] = ACTIONS(1657), + [anon_sym_i128] = ACTIONS(1657), + [anon_sym_isize] = ACTIONS(1657), + [anon_sym_usize] = ACTIONS(1657), + [anon_sym_f32] = ACTIONS(1657), + [anon_sym_f64] = ACTIONS(1657), + [anon_sym_bool] = ACTIONS(1657), + [anon_sym_str] = ACTIONS(1657), + [anon_sym_char] = ACTIONS(1657), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_AMP] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(1663), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1665), + [anon_sym_DOT_DOT] = ACTIONS(1667), + [anon_sym_COLON_COLON] = ACTIONS(1669), + [anon_sym_POUND] = ACTIONS(1671), + [anon_sym_const] = ACTIONS(1673), + [anon_sym_default] = ACTIONS(1675), + [anon_sym_gen] = ACTIONS(1675), + [anon_sym_union] = ACTIONS(1675), + [anon_sym_ref] = ACTIONS(1677), + [sym_mutable_specifier] = ACTIONS(1679), + [sym_integer_literal] = ACTIONS(1681), + [aux_sym_string_literal_token1] = ACTIONS(1683), + [sym_char_literal] = ACTIONS(1681), + [anon_sym_true] = ACTIONS(1685), + [anon_sym_false] = ACTIONS(1685), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1687), + [sym_super] = ACTIONS(1687), + [sym_crate] = ACTIONS(1687), + [sym_metavariable] = ACTIONS(1689), + [sym__raw_string_literal_start] = ACTIONS(1691), + [sym_float_literal] = ACTIONS(1681), }, [494] = { + [sym_attribute_item] = STATE(1649), + [sym_inner_attribute_item] = STATE(1649), + [sym_bracketed_type] = STATE(4029), + [sym_generic_type] = STATE(3972), + [sym_generic_type_with_turbofish] = STATE(3589), + [sym_macro_invocation] = STATE(3205), + [sym_scoped_identifier] = STATE(2461), + [sym_scoped_type_identifier] = STATE(3294), + [sym_match_arm] = STATE(1654), + [sym_last_match_arm] = STATE(3936), + [sym_match_pattern] = STATE(3985), + [sym_const_block] = STATE(3205), + [sym__pattern] = STATE(3193), + [sym_tuple_pattern] = STATE(3205), + [sym_slice_pattern] = STATE(3205), + [sym_tuple_struct_pattern] = STATE(3205), + [sym_struct_pattern] = STATE(3205), + [sym_remaining_field_pattern] = STATE(3205), + [sym_mut_pattern] = STATE(3205), + [sym_range_pattern] = STATE(3205), + [sym_ref_pattern] = STATE(3205), + [sym_captured_pattern] = STATE(3205), + [sym_reference_pattern] = STATE(3205), + [sym_or_pattern] = STATE(3205), + [sym__literal_pattern] = STATE(2617), + [sym_negative_literal] = STATE(2620), + [sym_string_literal] = STATE(2620), + [sym_raw_string_literal] = STATE(2620), + [sym_boolean_literal] = STATE(2620), [sym_line_comment] = STATE(494), [sym_block_comment] = STATE(494), - [ts_builtin_sym_end] = ACTIONS(1727), - [sym_identifier] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1727), - [anon_sym_macro_rules_BANG] = ACTIONS(1727), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1727), - [anon_sym_LBRACE] = ACTIONS(1727), - [anon_sym_RBRACE] = ACTIONS(1727), - [anon_sym_STAR] = ACTIONS(1727), - [anon_sym_u8] = ACTIONS(1729), - [anon_sym_i8] = ACTIONS(1729), - [anon_sym_u16] = ACTIONS(1729), - [anon_sym_i16] = ACTIONS(1729), - [anon_sym_u32] = ACTIONS(1729), - [anon_sym_i32] = ACTIONS(1729), - [anon_sym_u64] = ACTIONS(1729), - [anon_sym_i64] = ACTIONS(1729), - [anon_sym_u128] = ACTIONS(1729), - [anon_sym_i128] = ACTIONS(1729), - [anon_sym_isize] = ACTIONS(1729), - [anon_sym_usize] = ACTIONS(1729), - [anon_sym_f32] = ACTIONS(1729), - [anon_sym_f64] = ACTIONS(1729), - [anon_sym_bool] = ACTIONS(1729), - [anon_sym_str] = ACTIONS(1729), - [anon_sym_char] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1727), - [anon_sym_BANG] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(1727), - [anon_sym_PIPE] = ACTIONS(1727), - [anon_sym_LT] = ACTIONS(1727), - [anon_sym_DOT_DOT] = ACTIONS(1727), - [anon_sym_COLON_COLON] = ACTIONS(1727), - [anon_sym_POUND] = ACTIONS(1727), - [anon_sym_SQUOTE] = ACTIONS(1729), - [anon_sym_async] = ACTIONS(1729), - [anon_sym_break] = ACTIONS(1729), - [anon_sym_const] = ACTIONS(1729), - [anon_sym_continue] = ACTIONS(1729), - [anon_sym_default] = ACTIONS(1729), - [anon_sym_enum] = ACTIONS(1729), - [anon_sym_fn] = ACTIONS(1729), - [anon_sym_for] = ACTIONS(1729), - [anon_sym_gen] = ACTIONS(1729), - [anon_sym_if] = ACTIONS(1729), - [anon_sym_impl] = ACTIONS(1729), - [anon_sym_let] = ACTIONS(1729), - [anon_sym_loop] = ACTIONS(1729), - [anon_sym_match] = ACTIONS(1729), - [anon_sym_mod] = ACTIONS(1729), - [anon_sym_pub] = ACTIONS(1729), - [anon_sym_return] = ACTIONS(1729), - [anon_sym_static] = ACTIONS(1729), - [anon_sym_struct] = ACTIONS(1729), - [anon_sym_trait] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(1729), - [anon_sym_union] = ACTIONS(1729), - [anon_sym_unsafe] = ACTIONS(1729), - [anon_sym_use] = ACTIONS(1729), - [anon_sym_while] = ACTIONS(1729), - [anon_sym_extern] = ACTIONS(1729), - [anon_sym_yield] = ACTIONS(1729), - [anon_sym_move] = ACTIONS(1729), - [anon_sym_try] = ACTIONS(1729), - [sym_integer_literal] = ACTIONS(1727), - [aux_sym_string_literal_token1] = ACTIONS(1727), - [sym_char_literal] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(1729), - [anon_sym_false] = ACTIONS(1729), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1729), - [sym_super] = ACTIONS(1729), - [sym_crate] = ACTIONS(1729), - [sym_metavariable] = ACTIONS(1727), - [sym__raw_string_literal_start] = ACTIONS(1727), - [sym_float_literal] = ACTIONS(1727), + [aux_sym_match_block_repeat1] = STATE(541), + [aux_sym_match_arm_repeat1] = STATE(879), + [sym_identifier] = ACTIONS(1649), + [anon_sym_LPAREN] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_u8] = ACTIONS(1657), + [anon_sym_i8] = ACTIONS(1657), + [anon_sym_u16] = ACTIONS(1657), + [anon_sym_i16] = ACTIONS(1657), + [anon_sym_u32] = ACTIONS(1657), + [anon_sym_i32] = ACTIONS(1657), + [anon_sym_u64] = ACTIONS(1657), + [anon_sym_i64] = ACTIONS(1657), + [anon_sym_u128] = ACTIONS(1657), + [anon_sym_i128] = ACTIONS(1657), + [anon_sym_isize] = ACTIONS(1657), + [anon_sym_usize] = ACTIONS(1657), + [anon_sym_f32] = ACTIONS(1657), + [anon_sym_f64] = ACTIONS(1657), + [anon_sym_bool] = ACTIONS(1657), + [anon_sym_str] = ACTIONS(1657), + [anon_sym_char] = ACTIONS(1657), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_AMP] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(1663), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1665), + [anon_sym_DOT_DOT] = ACTIONS(1667), + [anon_sym_COLON_COLON] = ACTIONS(1669), + [anon_sym_POUND] = ACTIONS(1671), + [anon_sym_const] = ACTIONS(1673), + [anon_sym_default] = ACTIONS(1675), + [anon_sym_gen] = ACTIONS(1675), + [anon_sym_union] = ACTIONS(1675), + [anon_sym_ref] = ACTIONS(1677), + [sym_mutable_specifier] = ACTIONS(1679), + [sym_integer_literal] = ACTIONS(1681), + [aux_sym_string_literal_token1] = ACTIONS(1683), + [sym_char_literal] = ACTIONS(1681), + [anon_sym_true] = ACTIONS(1685), + [anon_sym_false] = ACTIONS(1685), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1687), + [sym_super] = ACTIONS(1687), + [sym_crate] = ACTIONS(1687), + [sym_metavariable] = ACTIONS(1689), + [sym__raw_string_literal_start] = ACTIONS(1691), + [sym_float_literal] = ACTIONS(1681), }, [495] = { + [sym_empty_statement] = STATE(1489), + [sym_macro_definition] = STATE(1489), + [sym_attribute_item] = STATE(2189), + [sym_inner_attribute_item] = STATE(1489), + [sym_mod_item] = STATE(1489), + [sym_foreign_mod_item] = STATE(1489), + [sym_struct_item] = STATE(1489), + [sym_union_item] = STATE(1489), + [sym_enum_item] = STATE(1489), + [sym_extern_crate_declaration] = STATE(1489), + [sym_const_item] = STATE(1489), + [sym_static_item] = STATE(1489), + [sym_type_item] = STATE(1489), + [sym_function_item] = STATE(1489), + [sym_function_signature_item] = STATE(1489), + [sym_function_modifiers] = STATE(4120), + [sym_impl_item] = STATE(1489), + [sym_trait_item] = STATE(1489), + [sym_associated_type] = STATE(1489), + [sym_let_declaration] = STATE(1489), + [sym_use_declaration] = STATE(1489), + [sym_extern_modifier] = STATE(2438), + [sym_visibility_modifier] = STATE(2225), + [sym_bracketed_type] = STATE(3786), + [sym_generic_type_with_turbofish] = STATE(3813), + [sym_macro_invocation] = STATE(1489), + [sym_scoped_identifier] = STATE(3610), [sym_line_comment] = STATE(495), [sym_block_comment] = STATE(495), - [ts_builtin_sym_end] = ACTIONS(1731), - [sym_identifier] = ACTIONS(1733), - [anon_sym_SEMI] = ACTIONS(1731), - [anon_sym_macro_rules_BANG] = ACTIONS(1731), - [anon_sym_LPAREN] = ACTIONS(1731), - [anon_sym_LBRACK] = ACTIONS(1731), - [anon_sym_LBRACE] = ACTIONS(1731), - [anon_sym_RBRACE] = ACTIONS(1731), - [anon_sym_STAR] = ACTIONS(1731), - [anon_sym_u8] = ACTIONS(1733), - [anon_sym_i8] = ACTIONS(1733), - [anon_sym_u16] = ACTIONS(1733), - [anon_sym_i16] = ACTIONS(1733), - [anon_sym_u32] = ACTIONS(1733), - [anon_sym_i32] = ACTIONS(1733), - [anon_sym_u64] = ACTIONS(1733), - [anon_sym_i64] = ACTIONS(1733), - [anon_sym_u128] = ACTIONS(1733), - [anon_sym_i128] = ACTIONS(1733), - [anon_sym_isize] = ACTIONS(1733), - [anon_sym_usize] = ACTIONS(1733), - [anon_sym_f32] = ACTIONS(1733), - [anon_sym_f64] = ACTIONS(1733), - [anon_sym_bool] = ACTIONS(1733), - [anon_sym_str] = ACTIONS(1733), - [anon_sym_char] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1731), - [anon_sym_BANG] = ACTIONS(1731), - [anon_sym_AMP] = ACTIONS(1731), - [anon_sym_PIPE] = ACTIONS(1731), - [anon_sym_LT] = ACTIONS(1731), - [anon_sym_DOT_DOT] = ACTIONS(1731), - [anon_sym_COLON_COLON] = ACTIONS(1731), - [anon_sym_POUND] = ACTIONS(1731), - [anon_sym_SQUOTE] = ACTIONS(1733), - [anon_sym_async] = ACTIONS(1733), - [anon_sym_break] = ACTIONS(1733), - [anon_sym_const] = ACTIONS(1733), - [anon_sym_continue] = ACTIONS(1733), - [anon_sym_default] = ACTIONS(1733), - [anon_sym_enum] = ACTIONS(1733), - [anon_sym_fn] = ACTIONS(1733), - [anon_sym_for] = ACTIONS(1733), - [anon_sym_gen] = ACTIONS(1733), - [anon_sym_if] = ACTIONS(1733), - [anon_sym_impl] = ACTIONS(1733), - [anon_sym_let] = ACTIONS(1733), - [anon_sym_loop] = ACTIONS(1733), - [anon_sym_match] = ACTIONS(1733), - [anon_sym_mod] = ACTIONS(1733), - [anon_sym_pub] = ACTIONS(1733), - [anon_sym_return] = ACTIONS(1733), - [anon_sym_static] = ACTIONS(1733), - [anon_sym_struct] = ACTIONS(1733), + [aux_sym_mod_item_repeat1] = STATE(2187), + [aux_sym_declaration_list_repeat1] = STATE(497), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(1699), + [anon_sym_SEMI] = ACTIONS(1701), + [anon_sym_macro_rules_BANG] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(1705), + [anon_sym_u8] = ACTIONS(1707), + [anon_sym_i8] = ACTIONS(1707), + [anon_sym_u16] = ACTIONS(1707), + [anon_sym_i16] = ACTIONS(1707), + [anon_sym_u32] = ACTIONS(1707), + [anon_sym_i32] = ACTIONS(1707), + [anon_sym_u64] = ACTIONS(1707), + [anon_sym_i64] = ACTIONS(1707), + [anon_sym_u128] = ACTIONS(1707), + [anon_sym_i128] = ACTIONS(1707), + [anon_sym_isize] = ACTIONS(1707), + [anon_sym_usize] = ACTIONS(1707), + [anon_sym_f32] = ACTIONS(1707), + [anon_sym_f64] = ACTIONS(1707), + [anon_sym_bool] = ACTIONS(1707), + [anon_sym_str] = ACTIONS(1707), + [anon_sym_char] = ACTIONS(1707), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1709), + [anon_sym_POUND] = ACTIONS(1711), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1715), + [anon_sym_enum] = ACTIONS(1717), + [anon_sym_fn] = ACTIONS(1719), + [anon_sym_gen] = ACTIONS(1721), + [anon_sym_impl] = ACTIONS(1723), + [anon_sym_let] = ACTIONS(1725), + [anon_sym_mod] = ACTIONS(1727), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_static] = ACTIONS(1729), + [anon_sym_struct] = ACTIONS(1731), [anon_sym_trait] = ACTIONS(1733), - [anon_sym_type] = ACTIONS(1733), - [anon_sym_union] = ACTIONS(1733), - [anon_sym_unsafe] = ACTIONS(1733), - [anon_sym_use] = ACTIONS(1733), - [anon_sym_while] = ACTIONS(1733), - [anon_sym_extern] = ACTIONS(1733), - [anon_sym_yield] = ACTIONS(1733), - [anon_sym_move] = ACTIONS(1733), - [anon_sym_try] = ACTIONS(1733), - [sym_integer_literal] = ACTIONS(1731), - [aux_sym_string_literal_token1] = ACTIONS(1731), - [sym_char_literal] = ACTIONS(1731), - [anon_sym_true] = ACTIONS(1733), - [anon_sym_false] = ACTIONS(1733), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1733), - [sym_super] = ACTIONS(1733), - [sym_crate] = ACTIONS(1733), - [sym_metavariable] = ACTIONS(1731), - [sym__raw_string_literal_start] = ACTIONS(1731), - [sym_float_literal] = ACTIONS(1731), + [anon_sym_type] = ACTIONS(1735), + [anon_sym_union] = ACTIONS(1737), + [anon_sym_unsafe] = ACTIONS(1739), + [anon_sym_use] = ACTIONS(1741), + [anon_sym_extern] = ACTIONS(1743), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1745), + [sym_super] = ACTIONS(1745), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), }, [496] = { + [sym_empty_statement] = STATE(1489), + [sym_macro_definition] = STATE(1489), + [sym_attribute_item] = STATE(2189), + [sym_inner_attribute_item] = STATE(1489), + [sym_mod_item] = STATE(1489), + [sym_foreign_mod_item] = STATE(1489), + [sym_struct_item] = STATE(1489), + [sym_union_item] = STATE(1489), + [sym_enum_item] = STATE(1489), + [sym_extern_crate_declaration] = STATE(1489), + [sym_const_item] = STATE(1489), + [sym_static_item] = STATE(1489), + [sym_type_item] = STATE(1489), + [sym_function_item] = STATE(1489), + [sym_function_signature_item] = STATE(1489), + [sym_function_modifiers] = STATE(4120), + [sym_impl_item] = STATE(1489), + [sym_trait_item] = STATE(1489), + [sym_associated_type] = STATE(1489), + [sym_let_declaration] = STATE(1489), + [sym_use_declaration] = STATE(1489), + [sym_extern_modifier] = STATE(2438), + [sym_visibility_modifier] = STATE(2225), + [sym_bracketed_type] = STATE(3786), + [sym_generic_type_with_turbofish] = STATE(3813), + [sym_macro_invocation] = STATE(1489), + [sym_scoped_identifier] = STATE(3610), [sym_line_comment] = STATE(496), [sym_block_comment] = STATE(496), - [ts_builtin_sym_end] = ACTIONS(1735), - [sym_identifier] = ACTIONS(1737), - [anon_sym_SEMI] = ACTIONS(1735), - [anon_sym_macro_rules_BANG] = ACTIONS(1735), - [anon_sym_LPAREN] = ACTIONS(1735), - [anon_sym_LBRACK] = ACTIONS(1735), - [anon_sym_LBRACE] = ACTIONS(1735), - [anon_sym_RBRACE] = ACTIONS(1735), - [anon_sym_STAR] = ACTIONS(1735), - [anon_sym_u8] = ACTIONS(1737), - [anon_sym_i8] = ACTIONS(1737), - [anon_sym_u16] = ACTIONS(1737), - [anon_sym_i16] = ACTIONS(1737), - [anon_sym_u32] = ACTIONS(1737), - [anon_sym_i32] = ACTIONS(1737), - [anon_sym_u64] = ACTIONS(1737), - [anon_sym_i64] = ACTIONS(1737), - [anon_sym_u128] = ACTIONS(1737), - [anon_sym_i128] = ACTIONS(1737), - [anon_sym_isize] = ACTIONS(1737), - [anon_sym_usize] = ACTIONS(1737), - [anon_sym_f32] = ACTIONS(1737), - [anon_sym_f64] = ACTIONS(1737), - [anon_sym_bool] = ACTIONS(1737), - [anon_sym_str] = ACTIONS(1737), - [anon_sym_char] = ACTIONS(1737), - [anon_sym_DASH] = ACTIONS(1735), - [anon_sym_BANG] = ACTIONS(1735), - [anon_sym_AMP] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1735), - [anon_sym_LT] = ACTIONS(1735), - [anon_sym_DOT_DOT] = ACTIONS(1735), - [anon_sym_COLON_COLON] = ACTIONS(1735), - [anon_sym_POUND] = ACTIONS(1735), - [anon_sym_SQUOTE] = ACTIONS(1737), - [anon_sym_async] = ACTIONS(1737), - [anon_sym_break] = ACTIONS(1737), - [anon_sym_const] = ACTIONS(1737), - [anon_sym_continue] = ACTIONS(1737), - [anon_sym_default] = ACTIONS(1737), - [anon_sym_enum] = ACTIONS(1737), - [anon_sym_fn] = ACTIONS(1737), - [anon_sym_for] = ACTIONS(1737), - [anon_sym_gen] = ACTIONS(1737), - [anon_sym_if] = ACTIONS(1737), - [anon_sym_impl] = ACTIONS(1737), - [anon_sym_let] = ACTIONS(1737), - [anon_sym_loop] = ACTIONS(1737), - [anon_sym_match] = ACTIONS(1737), - [anon_sym_mod] = ACTIONS(1737), - [anon_sym_pub] = ACTIONS(1737), - [anon_sym_return] = ACTIONS(1737), - [anon_sym_static] = ACTIONS(1737), - [anon_sym_struct] = ACTIONS(1737), - [anon_sym_trait] = ACTIONS(1737), - [anon_sym_type] = ACTIONS(1737), + [aux_sym_mod_item_repeat1] = STATE(2187), + [aux_sym_declaration_list_repeat1] = STATE(497), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(1699), + [anon_sym_SEMI] = ACTIONS(1701), + [anon_sym_macro_rules_BANG] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(1751), + [anon_sym_u8] = ACTIONS(1707), + [anon_sym_i8] = ACTIONS(1707), + [anon_sym_u16] = ACTIONS(1707), + [anon_sym_i16] = ACTIONS(1707), + [anon_sym_u32] = ACTIONS(1707), + [anon_sym_i32] = ACTIONS(1707), + [anon_sym_u64] = ACTIONS(1707), + [anon_sym_i64] = ACTIONS(1707), + [anon_sym_u128] = ACTIONS(1707), + [anon_sym_i128] = ACTIONS(1707), + [anon_sym_isize] = ACTIONS(1707), + [anon_sym_usize] = ACTIONS(1707), + [anon_sym_f32] = ACTIONS(1707), + [anon_sym_f64] = ACTIONS(1707), + [anon_sym_bool] = ACTIONS(1707), + [anon_sym_str] = ACTIONS(1707), + [anon_sym_char] = ACTIONS(1707), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1709), + [anon_sym_POUND] = ACTIONS(1711), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1715), + [anon_sym_enum] = ACTIONS(1717), + [anon_sym_fn] = ACTIONS(1719), + [anon_sym_gen] = ACTIONS(1721), + [anon_sym_impl] = ACTIONS(1723), + [anon_sym_let] = ACTIONS(1725), + [anon_sym_mod] = ACTIONS(1727), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_static] = ACTIONS(1729), + [anon_sym_struct] = ACTIONS(1731), + [anon_sym_trait] = ACTIONS(1733), + [anon_sym_type] = ACTIONS(1735), [anon_sym_union] = ACTIONS(1737), - [anon_sym_unsafe] = ACTIONS(1737), - [anon_sym_use] = ACTIONS(1737), - [anon_sym_while] = ACTIONS(1737), - [anon_sym_extern] = ACTIONS(1737), - [anon_sym_yield] = ACTIONS(1737), - [anon_sym_move] = ACTIONS(1737), - [anon_sym_try] = ACTIONS(1737), - [sym_integer_literal] = ACTIONS(1735), - [aux_sym_string_literal_token1] = ACTIONS(1735), - [sym_char_literal] = ACTIONS(1735), - [anon_sym_true] = ACTIONS(1737), - [anon_sym_false] = ACTIONS(1737), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1737), - [sym_super] = ACTIONS(1737), - [sym_crate] = ACTIONS(1737), - [sym_metavariable] = ACTIONS(1735), - [sym__raw_string_literal_start] = ACTIONS(1735), - [sym_float_literal] = ACTIONS(1735), + [anon_sym_unsafe] = ACTIONS(1739), + [anon_sym_use] = ACTIONS(1741), + [anon_sym_extern] = ACTIONS(1743), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1745), + [sym_super] = ACTIONS(1745), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), }, [497] = { + [sym_empty_statement] = STATE(1489), + [sym_macro_definition] = STATE(1489), + [sym_attribute_item] = STATE(2189), + [sym_inner_attribute_item] = STATE(1489), + [sym_mod_item] = STATE(1489), + [sym_foreign_mod_item] = STATE(1489), + [sym_struct_item] = STATE(1489), + [sym_union_item] = STATE(1489), + [sym_enum_item] = STATE(1489), + [sym_extern_crate_declaration] = STATE(1489), + [sym_const_item] = STATE(1489), + [sym_static_item] = STATE(1489), + [sym_type_item] = STATE(1489), + [sym_function_item] = STATE(1489), + [sym_function_signature_item] = STATE(1489), + [sym_function_modifiers] = STATE(4120), + [sym_impl_item] = STATE(1489), + [sym_trait_item] = STATE(1489), + [sym_associated_type] = STATE(1489), + [sym_let_declaration] = STATE(1489), + [sym_use_declaration] = STATE(1489), + [sym_extern_modifier] = STATE(2438), + [sym_visibility_modifier] = STATE(2225), + [sym_bracketed_type] = STATE(3786), + [sym_generic_type_with_turbofish] = STATE(3813), + [sym_macro_invocation] = STATE(1489), + [sym_scoped_identifier] = STATE(3610), [sym_line_comment] = STATE(497), [sym_block_comment] = STATE(497), - [ts_builtin_sym_end] = ACTIONS(1739), - [sym_identifier] = ACTIONS(1741), - [anon_sym_SEMI] = ACTIONS(1739), - [anon_sym_macro_rules_BANG] = ACTIONS(1739), - [anon_sym_LPAREN] = ACTIONS(1739), - [anon_sym_LBRACK] = ACTIONS(1739), - [anon_sym_LBRACE] = ACTIONS(1739), - [anon_sym_RBRACE] = ACTIONS(1739), - [anon_sym_STAR] = ACTIONS(1739), - [anon_sym_u8] = ACTIONS(1741), - [anon_sym_i8] = ACTIONS(1741), - [anon_sym_u16] = ACTIONS(1741), - [anon_sym_i16] = ACTIONS(1741), - [anon_sym_u32] = ACTIONS(1741), - [anon_sym_i32] = ACTIONS(1741), - [anon_sym_u64] = ACTIONS(1741), - [anon_sym_i64] = ACTIONS(1741), - [anon_sym_u128] = ACTIONS(1741), - [anon_sym_i128] = ACTIONS(1741), - [anon_sym_isize] = ACTIONS(1741), - [anon_sym_usize] = ACTIONS(1741), - [anon_sym_f32] = ACTIONS(1741), - [anon_sym_f64] = ACTIONS(1741), - [anon_sym_bool] = ACTIONS(1741), - [anon_sym_str] = ACTIONS(1741), - [anon_sym_char] = ACTIONS(1741), - [anon_sym_DASH] = ACTIONS(1739), - [anon_sym_BANG] = ACTIONS(1739), - [anon_sym_AMP] = ACTIONS(1739), - [anon_sym_PIPE] = ACTIONS(1739), - [anon_sym_LT] = ACTIONS(1739), - [anon_sym_DOT_DOT] = ACTIONS(1739), - [anon_sym_COLON_COLON] = ACTIONS(1739), - [anon_sym_POUND] = ACTIONS(1739), - [anon_sym_SQUOTE] = ACTIONS(1741), - [anon_sym_async] = ACTIONS(1741), - [anon_sym_break] = ACTIONS(1741), - [anon_sym_const] = ACTIONS(1741), - [anon_sym_continue] = ACTIONS(1741), - [anon_sym_default] = ACTIONS(1741), - [anon_sym_enum] = ACTIONS(1741), - [anon_sym_fn] = ACTIONS(1741), - [anon_sym_for] = ACTIONS(1741), - [anon_sym_gen] = ACTIONS(1741), - [anon_sym_if] = ACTIONS(1741), - [anon_sym_impl] = ACTIONS(1741), - [anon_sym_let] = ACTIONS(1741), - [anon_sym_loop] = ACTIONS(1741), - [anon_sym_match] = ACTIONS(1741), - [anon_sym_mod] = ACTIONS(1741), - [anon_sym_pub] = ACTIONS(1741), - [anon_sym_return] = ACTIONS(1741), - [anon_sym_static] = ACTIONS(1741), - [anon_sym_struct] = ACTIONS(1741), - [anon_sym_trait] = ACTIONS(1741), - [anon_sym_type] = ACTIONS(1741), - [anon_sym_union] = ACTIONS(1741), - [anon_sym_unsafe] = ACTIONS(1741), - [anon_sym_use] = ACTIONS(1741), - [anon_sym_while] = ACTIONS(1741), - [anon_sym_extern] = ACTIONS(1741), - [anon_sym_yield] = ACTIONS(1741), - [anon_sym_move] = ACTIONS(1741), - [anon_sym_try] = ACTIONS(1741), - [sym_integer_literal] = ACTIONS(1739), - [aux_sym_string_literal_token1] = ACTIONS(1739), - [sym_char_literal] = ACTIONS(1739), - [anon_sym_true] = ACTIONS(1741), - [anon_sym_false] = ACTIONS(1741), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1741), - [sym_super] = ACTIONS(1741), - [sym_crate] = ACTIONS(1741), - [sym_metavariable] = ACTIONS(1739), - [sym__raw_string_literal_start] = ACTIONS(1739), - [sym_float_literal] = ACTIONS(1739), + [aux_sym_mod_item_repeat1] = STATE(2187), + [aux_sym_declaration_list_repeat1] = STATE(497), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(1753), + [anon_sym_SEMI] = ACTIONS(1756), + [anon_sym_macro_rules_BANG] = ACTIONS(1759), + [anon_sym_RBRACE] = ACTIONS(1762), + [anon_sym_u8] = ACTIONS(1764), + [anon_sym_i8] = ACTIONS(1764), + [anon_sym_u16] = ACTIONS(1764), + [anon_sym_i16] = ACTIONS(1764), + [anon_sym_u32] = ACTIONS(1764), + [anon_sym_i32] = ACTIONS(1764), + [anon_sym_u64] = ACTIONS(1764), + [anon_sym_i64] = ACTIONS(1764), + [anon_sym_u128] = ACTIONS(1764), + [anon_sym_i128] = ACTIONS(1764), + [anon_sym_isize] = ACTIONS(1764), + [anon_sym_usize] = ACTIONS(1764), + [anon_sym_f32] = ACTIONS(1764), + [anon_sym_f64] = ACTIONS(1764), + [anon_sym_bool] = ACTIONS(1764), + [anon_sym_str] = ACTIONS(1764), + [anon_sym_char] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1767), + [anon_sym_COLON_COLON] = ACTIONS(1770), + [anon_sym_POUND] = ACTIONS(1773), + [anon_sym_async] = ACTIONS(1776), + [anon_sym_const] = ACTIONS(1779), + [anon_sym_default] = ACTIONS(1782), + [anon_sym_enum] = ACTIONS(1785), + [anon_sym_fn] = ACTIONS(1788), + [anon_sym_gen] = ACTIONS(1791), + [anon_sym_impl] = ACTIONS(1794), + [anon_sym_let] = ACTIONS(1797), + [anon_sym_mod] = ACTIONS(1800), + [anon_sym_pub] = ACTIONS(1803), + [anon_sym_static] = ACTIONS(1806), + [anon_sym_struct] = ACTIONS(1809), + [anon_sym_trait] = ACTIONS(1812), + [anon_sym_type] = ACTIONS(1815), + [anon_sym_union] = ACTIONS(1818), + [anon_sym_unsafe] = ACTIONS(1821), + [anon_sym_use] = ACTIONS(1824), + [anon_sym_extern] = ACTIONS(1827), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1830), + [sym_super] = ACTIONS(1830), + [sym_crate] = ACTIONS(1833), + [sym_metavariable] = ACTIONS(1836), }, [498] = { + [sym_empty_statement] = STATE(1489), + [sym_macro_definition] = STATE(1489), + [sym_attribute_item] = STATE(2189), + [sym_inner_attribute_item] = STATE(1489), + [sym_mod_item] = STATE(1489), + [sym_foreign_mod_item] = STATE(1489), + [sym_struct_item] = STATE(1489), + [sym_union_item] = STATE(1489), + [sym_enum_item] = STATE(1489), + [sym_extern_crate_declaration] = STATE(1489), + [sym_const_item] = STATE(1489), + [sym_static_item] = STATE(1489), + [sym_type_item] = STATE(1489), + [sym_function_item] = STATE(1489), + [sym_function_signature_item] = STATE(1489), + [sym_function_modifiers] = STATE(4120), + [sym_impl_item] = STATE(1489), + [sym_trait_item] = STATE(1489), + [sym_associated_type] = STATE(1489), + [sym_let_declaration] = STATE(1489), + [sym_use_declaration] = STATE(1489), + [sym_extern_modifier] = STATE(2438), + [sym_visibility_modifier] = STATE(2225), + [sym_bracketed_type] = STATE(3786), + [sym_generic_type_with_turbofish] = STATE(3813), + [sym_macro_invocation] = STATE(1489), + [sym_scoped_identifier] = STATE(3610), [sym_line_comment] = STATE(498), [sym_block_comment] = STATE(498), - [ts_builtin_sym_end] = ACTIONS(1743), - [sym_identifier] = ACTIONS(1745), - [anon_sym_SEMI] = ACTIONS(1743), - [anon_sym_macro_rules_BANG] = ACTIONS(1743), - [anon_sym_LPAREN] = ACTIONS(1743), - [anon_sym_LBRACK] = ACTIONS(1743), - [anon_sym_LBRACE] = ACTIONS(1743), - [anon_sym_RBRACE] = ACTIONS(1743), - [anon_sym_STAR] = ACTIONS(1743), - [anon_sym_u8] = ACTIONS(1745), - [anon_sym_i8] = ACTIONS(1745), - [anon_sym_u16] = ACTIONS(1745), - [anon_sym_i16] = ACTIONS(1745), - [anon_sym_u32] = ACTIONS(1745), - [anon_sym_i32] = ACTIONS(1745), - [anon_sym_u64] = ACTIONS(1745), - [anon_sym_i64] = ACTIONS(1745), - [anon_sym_u128] = ACTIONS(1745), - [anon_sym_i128] = ACTIONS(1745), - [anon_sym_isize] = ACTIONS(1745), - [anon_sym_usize] = ACTIONS(1745), - [anon_sym_f32] = ACTIONS(1745), - [anon_sym_f64] = ACTIONS(1745), - [anon_sym_bool] = ACTIONS(1745), - [anon_sym_str] = ACTIONS(1745), - [anon_sym_char] = ACTIONS(1745), - [anon_sym_DASH] = ACTIONS(1743), - [anon_sym_BANG] = ACTIONS(1743), - [anon_sym_AMP] = ACTIONS(1743), - [anon_sym_PIPE] = ACTIONS(1743), - [anon_sym_LT] = ACTIONS(1743), - [anon_sym_DOT_DOT] = ACTIONS(1743), - [anon_sym_COLON_COLON] = ACTIONS(1743), - [anon_sym_POUND] = ACTIONS(1743), - [anon_sym_SQUOTE] = ACTIONS(1745), - [anon_sym_async] = ACTIONS(1745), - [anon_sym_break] = ACTIONS(1745), - [anon_sym_const] = ACTIONS(1745), - [anon_sym_continue] = ACTIONS(1745), - [anon_sym_default] = ACTIONS(1745), - [anon_sym_enum] = ACTIONS(1745), - [anon_sym_fn] = ACTIONS(1745), - [anon_sym_for] = ACTIONS(1745), - [anon_sym_gen] = ACTIONS(1745), - [anon_sym_if] = ACTIONS(1745), - [anon_sym_impl] = ACTIONS(1745), - [anon_sym_let] = ACTIONS(1745), - [anon_sym_loop] = ACTIONS(1745), - [anon_sym_match] = ACTIONS(1745), - [anon_sym_mod] = ACTIONS(1745), - [anon_sym_pub] = ACTIONS(1745), - [anon_sym_return] = ACTIONS(1745), - [anon_sym_static] = ACTIONS(1745), - [anon_sym_struct] = ACTIONS(1745), - [anon_sym_trait] = ACTIONS(1745), - [anon_sym_type] = ACTIONS(1745), - [anon_sym_union] = ACTIONS(1745), - [anon_sym_unsafe] = ACTIONS(1745), - [anon_sym_use] = ACTIONS(1745), - [anon_sym_while] = ACTIONS(1745), - [anon_sym_extern] = ACTIONS(1745), - [anon_sym_yield] = ACTIONS(1745), - [anon_sym_move] = ACTIONS(1745), - [anon_sym_try] = ACTIONS(1745), - [sym_integer_literal] = ACTIONS(1743), - [aux_sym_string_literal_token1] = ACTIONS(1743), - [sym_char_literal] = ACTIONS(1743), - [anon_sym_true] = ACTIONS(1745), - [anon_sym_false] = ACTIONS(1745), + [aux_sym_mod_item_repeat1] = STATE(2187), + [aux_sym_declaration_list_repeat1] = STATE(496), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(1699), + [anon_sym_SEMI] = ACTIONS(1701), + [anon_sym_macro_rules_BANG] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(1839), + [anon_sym_u8] = ACTIONS(1707), + [anon_sym_i8] = ACTIONS(1707), + [anon_sym_u16] = ACTIONS(1707), + [anon_sym_i16] = ACTIONS(1707), + [anon_sym_u32] = ACTIONS(1707), + [anon_sym_i32] = ACTIONS(1707), + [anon_sym_u64] = ACTIONS(1707), + [anon_sym_i64] = ACTIONS(1707), + [anon_sym_u128] = ACTIONS(1707), + [anon_sym_i128] = ACTIONS(1707), + [anon_sym_isize] = ACTIONS(1707), + [anon_sym_usize] = ACTIONS(1707), + [anon_sym_f32] = ACTIONS(1707), + [anon_sym_f64] = ACTIONS(1707), + [anon_sym_bool] = ACTIONS(1707), + [anon_sym_str] = ACTIONS(1707), + [anon_sym_char] = ACTIONS(1707), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1709), + [anon_sym_POUND] = ACTIONS(1711), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1715), + [anon_sym_enum] = ACTIONS(1717), + [anon_sym_fn] = ACTIONS(1719), + [anon_sym_gen] = ACTIONS(1721), + [anon_sym_impl] = ACTIONS(1723), + [anon_sym_let] = ACTIONS(1725), + [anon_sym_mod] = ACTIONS(1727), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_static] = ACTIONS(1729), + [anon_sym_struct] = ACTIONS(1731), + [anon_sym_trait] = ACTIONS(1733), + [anon_sym_type] = ACTIONS(1735), + [anon_sym_union] = ACTIONS(1737), + [anon_sym_unsafe] = ACTIONS(1739), + [anon_sym_use] = ACTIONS(1741), + [anon_sym_extern] = ACTIONS(1743), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1745), [sym_super] = ACTIONS(1745), - [sym_crate] = ACTIONS(1745), - [sym_metavariable] = ACTIONS(1743), - [sym__raw_string_literal_start] = ACTIONS(1743), - [sym_float_literal] = ACTIONS(1743), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), }, [499] = { + [sym_empty_statement] = STATE(1489), + [sym_macro_definition] = STATE(1489), + [sym_attribute_item] = STATE(2189), + [sym_inner_attribute_item] = STATE(1489), + [sym_mod_item] = STATE(1489), + [sym_foreign_mod_item] = STATE(1489), + [sym_struct_item] = STATE(1489), + [sym_union_item] = STATE(1489), + [sym_enum_item] = STATE(1489), + [sym_extern_crate_declaration] = STATE(1489), + [sym_const_item] = STATE(1489), + [sym_static_item] = STATE(1489), + [sym_type_item] = STATE(1489), + [sym_function_item] = STATE(1489), + [sym_function_signature_item] = STATE(1489), + [sym_function_modifiers] = STATE(4120), + [sym_impl_item] = STATE(1489), + [sym_trait_item] = STATE(1489), + [sym_associated_type] = STATE(1489), + [sym_let_declaration] = STATE(1489), + [sym_use_declaration] = STATE(1489), + [sym_extern_modifier] = STATE(2438), + [sym_visibility_modifier] = STATE(2225), + [sym_bracketed_type] = STATE(3786), + [sym_generic_type_with_turbofish] = STATE(3813), + [sym_macro_invocation] = STATE(1489), + [sym_scoped_identifier] = STATE(3610), [sym_line_comment] = STATE(499), [sym_block_comment] = STATE(499), - [ts_builtin_sym_end] = ACTIONS(1747), - [sym_identifier] = ACTIONS(1749), - [anon_sym_SEMI] = ACTIONS(1747), - [anon_sym_macro_rules_BANG] = ACTIONS(1747), - [anon_sym_LPAREN] = ACTIONS(1747), - [anon_sym_LBRACK] = ACTIONS(1747), - [anon_sym_LBRACE] = ACTIONS(1747), - [anon_sym_RBRACE] = ACTIONS(1747), - [anon_sym_STAR] = ACTIONS(1747), - [anon_sym_u8] = ACTIONS(1749), - [anon_sym_i8] = ACTIONS(1749), - [anon_sym_u16] = ACTIONS(1749), - [anon_sym_i16] = ACTIONS(1749), - [anon_sym_u32] = ACTIONS(1749), - [anon_sym_i32] = ACTIONS(1749), - [anon_sym_u64] = ACTIONS(1749), - [anon_sym_i64] = ACTIONS(1749), - [anon_sym_u128] = ACTIONS(1749), - [anon_sym_i128] = ACTIONS(1749), - [anon_sym_isize] = ACTIONS(1749), - [anon_sym_usize] = ACTIONS(1749), - [anon_sym_f32] = ACTIONS(1749), - [anon_sym_f64] = ACTIONS(1749), - [anon_sym_bool] = ACTIONS(1749), - [anon_sym_str] = ACTIONS(1749), - [anon_sym_char] = ACTIONS(1749), - [anon_sym_DASH] = ACTIONS(1747), - [anon_sym_BANG] = ACTIONS(1747), - [anon_sym_AMP] = ACTIONS(1747), - [anon_sym_PIPE] = ACTIONS(1747), - [anon_sym_LT] = ACTIONS(1747), - [anon_sym_DOT_DOT] = ACTIONS(1747), - [anon_sym_COLON_COLON] = ACTIONS(1747), - [anon_sym_POUND] = ACTIONS(1747), - [anon_sym_SQUOTE] = ACTIONS(1749), - [anon_sym_async] = ACTIONS(1749), - [anon_sym_break] = ACTIONS(1749), - [anon_sym_const] = ACTIONS(1749), - [anon_sym_continue] = ACTIONS(1749), - [anon_sym_default] = ACTIONS(1749), - [anon_sym_enum] = ACTIONS(1749), - [anon_sym_fn] = ACTIONS(1749), - [anon_sym_for] = ACTIONS(1749), - [anon_sym_gen] = ACTIONS(1749), - [anon_sym_if] = ACTIONS(1749), - [anon_sym_impl] = ACTIONS(1749), - [anon_sym_let] = ACTIONS(1749), - [anon_sym_loop] = ACTIONS(1749), - [anon_sym_match] = ACTIONS(1749), - [anon_sym_mod] = ACTIONS(1749), - [anon_sym_pub] = ACTIONS(1749), - [anon_sym_return] = ACTIONS(1749), - [anon_sym_static] = ACTIONS(1749), - [anon_sym_struct] = ACTIONS(1749), - [anon_sym_trait] = ACTIONS(1749), - [anon_sym_type] = ACTIONS(1749), - [anon_sym_union] = ACTIONS(1749), - [anon_sym_unsafe] = ACTIONS(1749), - [anon_sym_use] = ACTIONS(1749), - [anon_sym_while] = ACTIONS(1749), - [anon_sym_extern] = ACTIONS(1749), - [anon_sym_yield] = ACTIONS(1749), - [anon_sym_move] = ACTIONS(1749), - [anon_sym_try] = ACTIONS(1749), - [sym_integer_literal] = ACTIONS(1747), - [aux_sym_string_literal_token1] = ACTIONS(1747), - [sym_char_literal] = ACTIONS(1747), - [anon_sym_true] = ACTIONS(1749), - [anon_sym_false] = ACTIONS(1749), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1749), - [sym_super] = ACTIONS(1749), - [sym_crate] = ACTIONS(1749), - [sym_metavariable] = ACTIONS(1747), - [sym__raw_string_literal_start] = ACTIONS(1747), - [sym_float_literal] = ACTIONS(1747), + [aux_sym_mod_item_repeat1] = STATE(2187), + [aux_sym_declaration_list_repeat1] = STATE(495), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(1699), + [anon_sym_SEMI] = ACTIONS(1701), + [anon_sym_macro_rules_BANG] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(1841), + [anon_sym_u8] = ACTIONS(1707), + [anon_sym_i8] = ACTIONS(1707), + [anon_sym_u16] = ACTIONS(1707), + [anon_sym_i16] = ACTIONS(1707), + [anon_sym_u32] = ACTIONS(1707), + [anon_sym_i32] = ACTIONS(1707), + [anon_sym_u64] = ACTIONS(1707), + [anon_sym_i64] = ACTIONS(1707), + [anon_sym_u128] = ACTIONS(1707), + [anon_sym_i128] = ACTIONS(1707), + [anon_sym_isize] = ACTIONS(1707), + [anon_sym_usize] = ACTIONS(1707), + [anon_sym_f32] = ACTIONS(1707), + [anon_sym_f64] = ACTIONS(1707), + [anon_sym_bool] = ACTIONS(1707), + [anon_sym_str] = ACTIONS(1707), + [anon_sym_char] = ACTIONS(1707), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1709), + [anon_sym_POUND] = ACTIONS(1711), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1713), + [anon_sym_default] = ACTIONS(1715), + [anon_sym_enum] = ACTIONS(1717), + [anon_sym_fn] = ACTIONS(1719), + [anon_sym_gen] = ACTIONS(1721), + [anon_sym_impl] = ACTIONS(1723), + [anon_sym_let] = ACTIONS(1725), + [anon_sym_mod] = ACTIONS(1727), + [anon_sym_pub] = ACTIONS(69), + [anon_sym_static] = ACTIONS(1729), + [anon_sym_struct] = ACTIONS(1731), + [anon_sym_trait] = ACTIONS(1733), + [anon_sym_type] = ACTIONS(1735), + [anon_sym_union] = ACTIONS(1737), + [anon_sym_unsafe] = ACTIONS(1739), + [anon_sym_use] = ACTIONS(1741), + [anon_sym_extern] = ACTIONS(1743), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1745), + [sym_super] = ACTIONS(1745), + [sym_crate] = ACTIONS(1747), + [sym_metavariable] = ACTIONS(1749), }, [500] = { [sym_line_comment] = STATE(500), [sym_block_comment] = STATE(500), - [ts_builtin_sym_end] = ACTIONS(1751), - [sym_identifier] = ACTIONS(1753), - [anon_sym_SEMI] = ACTIONS(1751), - [anon_sym_macro_rules_BANG] = ACTIONS(1751), - [anon_sym_LPAREN] = ACTIONS(1751), - [anon_sym_LBRACK] = ACTIONS(1751), - [anon_sym_LBRACE] = ACTIONS(1751), - [anon_sym_RBRACE] = ACTIONS(1751), - [anon_sym_STAR] = ACTIONS(1751), - [anon_sym_u8] = ACTIONS(1753), - [anon_sym_i8] = ACTIONS(1753), - [anon_sym_u16] = ACTIONS(1753), - [anon_sym_i16] = ACTIONS(1753), - [anon_sym_u32] = ACTIONS(1753), - [anon_sym_i32] = ACTIONS(1753), - [anon_sym_u64] = ACTIONS(1753), - [anon_sym_i64] = ACTIONS(1753), - [anon_sym_u128] = ACTIONS(1753), - [anon_sym_i128] = ACTIONS(1753), - [anon_sym_isize] = ACTIONS(1753), - [anon_sym_usize] = ACTIONS(1753), - [anon_sym_f32] = ACTIONS(1753), - [anon_sym_f64] = ACTIONS(1753), - [anon_sym_bool] = ACTIONS(1753), - [anon_sym_str] = ACTIONS(1753), - [anon_sym_char] = ACTIONS(1753), - [anon_sym_DASH] = ACTIONS(1751), - [anon_sym_BANG] = ACTIONS(1751), - [anon_sym_AMP] = ACTIONS(1751), - [anon_sym_PIPE] = ACTIONS(1751), - [anon_sym_LT] = ACTIONS(1751), - [anon_sym_DOT_DOT] = ACTIONS(1751), - [anon_sym_COLON_COLON] = ACTIONS(1751), - [anon_sym_POUND] = ACTIONS(1751), - [anon_sym_SQUOTE] = ACTIONS(1753), - [anon_sym_async] = ACTIONS(1753), - [anon_sym_break] = ACTIONS(1753), - [anon_sym_const] = ACTIONS(1753), - [anon_sym_continue] = ACTIONS(1753), - [anon_sym_default] = ACTIONS(1753), - [anon_sym_enum] = ACTIONS(1753), - [anon_sym_fn] = ACTIONS(1753), - [anon_sym_for] = ACTIONS(1753), - [anon_sym_gen] = ACTIONS(1753), - [anon_sym_if] = ACTIONS(1753), - [anon_sym_impl] = ACTIONS(1753), - [anon_sym_let] = ACTIONS(1753), - [anon_sym_loop] = ACTIONS(1753), - [anon_sym_match] = ACTIONS(1753), - [anon_sym_mod] = ACTIONS(1753), - [anon_sym_pub] = ACTIONS(1753), - [anon_sym_return] = ACTIONS(1753), - [anon_sym_static] = ACTIONS(1753), - [anon_sym_struct] = ACTIONS(1753), - [anon_sym_trait] = ACTIONS(1753), - [anon_sym_type] = ACTIONS(1753), - [anon_sym_union] = ACTIONS(1753), - [anon_sym_unsafe] = ACTIONS(1753), - [anon_sym_use] = ACTIONS(1753), - [anon_sym_while] = ACTIONS(1753), - [anon_sym_extern] = ACTIONS(1753), - [anon_sym_yield] = ACTIONS(1753), - [anon_sym_move] = ACTIONS(1753), - [anon_sym_try] = ACTIONS(1753), - [sym_integer_literal] = ACTIONS(1751), - [aux_sym_string_literal_token1] = ACTIONS(1751), - [sym_char_literal] = ACTIONS(1751), - [anon_sym_true] = ACTIONS(1753), - [anon_sym_false] = ACTIONS(1753), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1753), - [sym_super] = ACTIONS(1753), - [sym_crate] = ACTIONS(1753), - [sym_metavariable] = ACTIONS(1751), - [sym__raw_string_literal_start] = ACTIONS(1751), - [sym_float_literal] = ACTIONS(1751), - }, - [501] = { - [sym_line_comment] = STATE(501), - [sym_block_comment] = STATE(501), - [ts_builtin_sym_end] = ACTIONS(1755), - [sym_identifier] = ACTIONS(1757), - [anon_sym_SEMI] = ACTIONS(1755), - [anon_sym_macro_rules_BANG] = ACTIONS(1755), - [anon_sym_LPAREN] = ACTIONS(1755), - [anon_sym_LBRACK] = ACTIONS(1755), - [anon_sym_LBRACE] = ACTIONS(1755), - [anon_sym_RBRACE] = ACTIONS(1755), - [anon_sym_STAR] = ACTIONS(1755), - [anon_sym_u8] = ACTIONS(1757), - [anon_sym_i8] = ACTIONS(1757), - [anon_sym_u16] = ACTIONS(1757), - [anon_sym_i16] = ACTIONS(1757), - [anon_sym_u32] = ACTIONS(1757), - [anon_sym_i32] = ACTIONS(1757), - [anon_sym_u64] = ACTIONS(1757), - [anon_sym_i64] = ACTIONS(1757), - [anon_sym_u128] = ACTIONS(1757), - [anon_sym_i128] = ACTIONS(1757), - [anon_sym_isize] = ACTIONS(1757), - [anon_sym_usize] = ACTIONS(1757), - [anon_sym_f32] = ACTIONS(1757), - [anon_sym_f64] = ACTIONS(1757), - [anon_sym_bool] = ACTIONS(1757), - [anon_sym_str] = ACTIONS(1757), - [anon_sym_char] = ACTIONS(1757), - [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_BANG] = ACTIONS(1755), - [anon_sym_AMP] = ACTIONS(1755), - [anon_sym_PIPE] = ACTIONS(1755), - [anon_sym_LT] = ACTIONS(1755), - [anon_sym_DOT_DOT] = ACTIONS(1755), - [anon_sym_COLON_COLON] = ACTIONS(1755), - [anon_sym_POUND] = ACTIONS(1755), - [anon_sym_SQUOTE] = ACTIONS(1757), - [anon_sym_async] = ACTIONS(1757), - [anon_sym_break] = ACTIONS(1757), - [anon_sym_const] = ACTIONS(1757), - [anon_sym_continue] = ACTIONS(1757), - [anon_sym_default] = ACTIONS(1757), - [anon_sym_enum] = ACTIONS(1757), - [anon_sym_fn] = ACTIONS(1757), - [anon_sym_for] = ACTIONS(1757), - [anon_sym_gen] = ACTIONS(1757), - [anon_sym_if] = ACTIONS(1757), - [anon_sym_impl] = ACTIONS(1757), - [anon_sym_let] = ACTIONS(1757), - [anon_sym_loop] = ACTIONS(1757), - [anon_sym_match] = ACTIONS(1757), - [anon_sym_mod] = ACTIONS(1757), - [anon_sym_pub] = ACTIONS(1757), - [anon_sym_return] = ACTIONS(1757), - [anon_sym_static] = ACTIONS(1757), - [anon_sym_struct] = ACTIONS(1757), - [anon_sym_trait] = ACTIONS(1757), - [anon_sym_type] = ACTIONS(1757), - [anon_sym_union] = ACTIONS(1757), - [anon_sym_unsafe] = ACTIONS(1757), - [anon_sym_use] = ACTIONS(1757), - [anon_sym_while] = ACTIONS(1757), - [anon_sym_extern] = ACTIONS(1757), - [anon_sym_yield] = ACTIONS(1757), - [anon_sym_move] = ACTIONS(1757), - [anon_sym_try] = ACTIONS(1757), - [sym_integer_literal] = ACTIONS(1755), - [aux_sym_string_literal_token1] = ACTIONS(1755), - [sym_char_literal] = ACTIONS(1755), - [anon_sym_true] = ACTIONS(1757), - [anon_sym_false] = ACTIONS(1757), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1757), - [sym_super] = ACTIONS(1757), - [sym_crate] = ACTIONS(1757), - [sym_metavariable] = ACTIONS(1755), - [sym__raw_string_literal_start] = ACTIONS(1755), - [sym_float_literal] = ACTIONS(1755), - }, - [502] = { - [sym_line_comment] = STATE(502), - [sym_block_comment] = STATE(502), - [ts_builtin_sym_end] = ACTIONS(1759), - [sym_identifier] = ACTIONS(1761), - [anon_sym_SEMI] = ACTIONS(1759), - [anon_sym_macro_rules_BANG] = ACTIONS(1759), - [anon_sym_LPAREN] = ACTIONS(1759), - [anon_sym_LBRACK] = ACTIONS(1759), - [anon_sym_LBRACE] = ACTIONS(1759), - [anon_sym_RBRACE] = ACTIONS(1759), - [anon_sym_STAR] = ACTIONS(1759), - [anon_sym_u8] = ACTIONS(1761), - [anon_sym_i8] = ACTIONS(1761), - [anon_sym_u16] = ACTIONS(1761), - [anon_sym_i16] = ACTIONS(1761), - [anon_sym_u32] = ACTIONS(1761), - [anon_sym_i32] = ACTIONS(1761), - [anon_sym_u64] = ACTIONS(1761), - [anon_sym_i64] = ACTIONS(1761), - [anon_sym_u128] = ACTIONS(1761), - [anon_sym_i128] = ACTIONS(1761), - [anon_sym_isize] = ACTIONS(1761), - [anon_sym_usize] = ACTIONS(1761), - [anon_sym_f32] = ACTIONS(1761), - [anon_sym_f64] = ACTIONS(1761), - [anon_sym_bool] = ACTIONS(1761), - [anon_sym_str] = ACTIONS(1761), - [anon_sym_char] = ACTIONS(1761), - [anon_sym_DASH] = ACTIONS(1759), - [anon_sym_BANG] = ACTIONS(1759), - [anon_sym_AMP] = ACTIONS(1759), - [anon_sym_PIPE] = ACTIONS(1759), - [anon_sym_LT] = ACTIONS(1759), - [anon_sym_DOT_DOT] = ACTIONS(1759), - [anon_sym_COLON_COLON] = ACTIONS(1759), - [anon_sym_POUND] = ACTIONS(1759), - [anon_sym_SQUOTE] = ACTIONS(1761), - [anon_sym_async] = ACTIONS(1761), - [anon_sym_break] = ACTIONS(1761), - [anon_sym_const] = ACTIONS(1761), - [anon_sym_continue] = ACTIONS(1761), - [anon_sym_default] = ACTIONS(1761), - [anon_sym_enum] = ACTIONS(1761), - [anon_sym_fn] = ACTIONS(1761), - [anon_sym_for] = ACTIONS(1761), - [anon_sym_gen] = ACTIONS(1761), - [anon_sym_if] = ACTIONS(1761), - [anon_sym_impl] = ACTIONS(1761), - [anon_sym_let] = ACTIONS(1761), - [anon_sym_loop] = ACTIONS(1761), - [anon_sym_match] = ACTIONS(1761), - [anon_sym_mod] = ACTIONS(1761), - [anon_sym_pub] = ACTIONS(1761), - [anon_sym_return] = ACTIONS(1761), - [anon_sym_static] = ACTIONS(1761), - [anon_sym_struct] = ACTIONS(1761), - [anon_sym_trait] = ACTIONS(1761), - [anon_sym_type] = ACTIONS(1761), - [anon_sym_union] = ACTIONS(1761), - [anon_sym_unsafe] = ACTIONS(1761), - [anon_sym_use] = ACTIONS(1761), - [anon_sym_while] = ACTIONS(1761), - [anon_sym_extern] = ACTIONS(1761), - [anon_sym_yield] = ACTIONS(1761), - [anon_sym_move] = ACTIONS(1761), - [anon_sym_try] = ACTIONS(1761), - [sym_integer_literal] = ACTIONS(1759), - [aux_sym_string_literal_token1] = ACTIONS(1759), - [sym_char_literal] = ACTIONS(1759), - [anon_sym_true] = ACTIONS(1761), - [anon_sym_false] = ACTIONS(1761), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1761), - [sym_super] = ACTIONS(1761), - [sym_crate] = ACTIONS(1761), - [sym_metavariable] = ACTIONS(1759), - [sym__raw_string_literal_start] = ACTIONS(1759), - [sym_float_literal] = ACTIONS(1759), - }, - [503] = { - [sym_line_comment] = STATE(503), - [sym_block_comment] = STATE(503), - [ts_builtin_sym_end] = ACTIONS(1763), - [sym_identifier] = ACTIONS(1765), - [anon_sym_SEMI] = ACTIONS(1763), - [anon_sym_macro_rules_BANG] = ACTIONS(1763), - [anon_sym_LPAREN] = ACTIONS(1763), - [anon_sym_LBRACK] = ACTIONS(1763), - [anon_sym_LBRACE] = ACTIONS(1763), - [anon_sym_RBRACE] = ACTIONS(1763), - [anon_sym_STAR] = ACTIONS(1763), - [anon_sym_u8] = ACTIONS(1765), - [anon_sym_i8] = ACTIONS(1765), - [anon_sym_u16] = ACTIONS(1765), - [anon_sym_i16] = ACTIONS(1765), - [anon_sym_u32] = ACTIONS(1765), - [anon_sym_i32] = ACTIONS(1765), - [anon_sym_u64] = ACTIONS(1765), - [anon_sym_i64] = ACTIONS(1765), - [anon_sym_u128] = ACTIONS(1765), - [anon_sym_i128] = ACTIONS(1765), - [anon_sym_isize] = ACTIONS(1765), - [anon_sym_usize] = ACTIONS(1765), - [anon_sym_f32] = ACTIONS(1765), - [anon_sym_f64] = ACTIONS(1765), - [anon_sym_bool] = ACTIONS(1765), - [anon_sym_str] = ACTIONS(1765), - [anon_sym_char] = ACTIONS(1765), - [anon_sym_DASH] = ACTIONS(1763), - [anon_sym_BANG] = ACTIONS(1763), - [anon_sym_AMP] = ACTIONS(1763), - [anon_sym_PIPE] = ACTIONS(1763), - [anon_sym_LT] = ACTIONS(1763), - [anon_sym_DOT_DOT] = ACTIONS(1763), - [anon_sym_COLON_COLON] = ACTIONS(1763), - [anon_sym_POUND] = ACTIONS(1763), - [anon_sym_SQUOTE] = ACTIONS(1765), - [anon_sym_async] = ACTIONS(1765), - [anon_sym_break] = ACTIONS(1765), - [anon_sym_const] = ACTIONS(1765), - [anon_sym_continue] = ACTIONS(1765), - [anon_sym_default] = ACTIONS(1765), - [anon_sym_enum] = ACTIONS(1765), - [anon_sym_fn] = ACTIONS(1765), - [anon_sym_for] = ACTIONS(1765), - [anon_sym_gen] = ACTIONS(1765), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_impl] = ACTIONS(1765), - [anon_sym_let] = ACTIONS(1765), - [anon_sym_loop] = ACTIONS(1765), - [anon_sym_match] = ACTIONS(1765), - [anon_sym_mod] = ACTIONS(1765), - [anon_sym_pub] = ACTIONS(1765), - [anon_sym_return] = ACTIONS(1765), - [anon_sym_static] = ACTIONS(1765), - [anon_sym_struct] = ACTIONS(1765), - [anon_sym_trait] = ACTIONS(1765), - [anon_sym_type] = ACTIONS(1765), - [anon_sym_union] = ACTIONS(1765), - [anon_sym_unsafe] = ACTIONS(1765), - [anon_sym_use] = ACTIONS(1765), - [anon_sym_while] = ACTIONS(1765), - [anon_sym_extern] = ACTIONS(1765), - [anon_sym_yield] = ACTIONS(1765), - [anon_sym_move] = ACTIONS(1765), - [anon_sym_try] = ACTIONS(1765), - [sym_integer_literal] = ACTIONS(1763), - [aux_sym_string_literal_token1] = ACTIONS(1763), - [sym_char_literal] = ACTIONS(1763), - [anon_sym_true] = ACTIONS(1765), - [anon_sym_false] = ACTIONS(1765), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1765), - [sym_super] = ACTIONS(1765), - [sym_crate] = ACTIONS(1765), - [sym_metavariable] = ACTIONS(1763), - [sym__raw_string_literal_start] = ACTIONS(1763), - [sym_float_literal] = ACTIONS(1763), - }, - [504] = { - [sym_line_comment] = STATE(504), - [sym_block_comment] = STATE(504), - [ts_builtin_sym_end] = ACTIONS(1767), - [sym_identifier] = ACTIONS(1769), - [anon_sym_SEMI] = ACTIONS(1767), - [anon_sym_macro_rules_BANG] = ACTIONS(1767), - [anon_sym_LPAREN] = ACTIONS(1767), - [anon_sym_LBRACK] = ACTIONS(1767), - [anon_sym_LBRACE] = ACTIONS(1767), - [anon_sym_RBRACE] = ACTIONS(1767), - [anon_sym_STAR] = ACTIONS(1767), - [anon_sym_u8] = ACTIONS(1769), - [anon_sym_i8] = ACTIONS(1769), - [anon_sym_u16] = ACTIONS(1769), - [anon_sym_i16] = ACTIONS(1769), - [anon_sym_u32] = ACTIONS(1769), - [anon_sym_i32] = ACTIONS(1769), - [anon_sym_u64] = ACTIONS(1769), - [anon_sym_i64] = ACTIONS(1769), - [anon_sym_u128] = ACTIONS(1769), - [anon_sym_i128] = ACTIONS(1769), - [anon_sym_isize] = ACTIONS(1769), - [anon_sym_usize] = ACTIONS(1769), - [anon_sym_f32] = ACTIONS(1769), - [anon_sym_f64] = ACTIONS(1769), - [anon_sym_bool] = ACTIONS(1769), - [anon_sym_str] = ACTIONS(1769), - [anon_sym_char] = ACTIONS(1769), - [anon_sym_DASH] = ACTIONS(1767), - [anon_sym_BANG] = ACTIONS(1767), - [anon_sym_AMP] = ACTIONS(1767), - [anon_sym_PIPE] = ACTIONS(1767), - [anon_sym_LT] = ACTIONS(1767), - [anon_sym_DOT_DOT] = ACTIONS(1767), - [anon_sym_COLON_COLON] = ACTIONS(1767), - [anon_sym_POUND] = ACTIONS(1767), - [anon_sym_SQUOTE] = ACTIONS(1769), - [anon_sym_async] = ACTIONS(1769), - [anon_sym_break] = ACTIONS(1769), - [anon_sym_const] = ACTIONS(1769), - [anon_sym_continue] = ACTIONS(1769), - [anon_sym_default] = ACTIONS(1769), - [anon_sym_enum] = ACTIONS(1769), - [anon_sym_fn] = ACTIONS(1769), - [anon_sym_for] = ACTIONS(1769), - [anon_sym_gen] = ACTIONS(1769), - [anon_sym_if] = ACTIONS(1769), - [anon_sym_impl] = ACTIONS(1769), - [anon_sym_let] = ACTIONS(1769), - [anon_sym_loop] = ACTIONS(1769), - [anon_sym_match] = ACTIONS(1769), - [anon_sym_mod] = ACTIONS(1769), - [anon_sym_pub] = ACTIONS(1769), - [anon_sym_return] = ACTIONS(1769), - [anon_sym_static] = ACTIONS(1769), - [anon_sym_struct] = ACTIONS(1769), - [anon_sym_trait] = ACTIONS(1769), - [anon_sym_type] = ACTIONS(1769), - [anon_sym_union] = ACTIONS(1769), - [anon_sym_unsafe] = ACTIONS(1769), - [anon_sym_use] = ACTIONS(1769), - [anon_sym_while] = ACTIONS(1769), - [anon_sym_extern] = ACTIONS(1769), - [anon_sym_yield] = ACTIONS(1769), - [anon_sym_move] = ACTIONS(1769), - [anon_sym_try] = ACTIONS(1769), - [sym_integer_literal] = ACTIONS(1767), - [aux_sym_string_literal_token1] = ACTIONS(1767), - [sym_char_literal] = ACTIONS(1767), - [anon_sym_true] = ACTIONS(1769), - [anon_sym_false] = ACTIONS(1769), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1769), - [sym_super] = ACTIONS(1769), - [sym_crate] = ACTIONS(1769), - [sym_metavariable] = ACTIONS(1767), - [sym__raw_string_literal_start] = ACTIONS(1767), - [sym_float_literal] = ACTIONS(1767), - }, - [505] = { - [sym_line_comment] = STATE(505), - [sym_block_comment] = STATE(505), - [ts_builtin_sym_end] = ACTIONS(1771), - [sym_identifier] = ACTIONS(1773), - [anon_sym_SEMI] = ACTIONS(1771), - [anon_sym_macro_rules_BANG] = ACTIONS(1771), - [anon_sym_LPAREN] = ACTIONS(1771), - [anon_sym_LBRACK] = ACTIONS(1771), - [anon_sym_LBRACE] = ACTIONS(1771), - [anon_sym_RBRACE] = ACTIONS(1771), - [anon_sym_STAR] = ACTIONS(1771), - [anon_sym_u8] = ACTIONS(1773), - [anon_sym_i8] = ACTIONS(1773), - [anon_sym_u16] = ACTIONS(1773), - [anon_sym_i16] = ACTIONS(1773), - [anon_sym_u32] = ACTIONS(1773), - [anon_sym_i32] = ACTIONS(1773), - [anon_sym_u64] = ACTIONS(1773), - [anon_sym_i64] = ACTIONS(1773), - [anon_sym_u128] = ACTIONS(1773), - [anon_sym_i128] = ACTIONS(1773), - [anon_sym_isize] = ACTIONS(1773), - [anon_sym_usize] = ACTIONS(1773), - [anon_sym_f32] = ACTIONS(1773), - [anon_sym_f64] = ACTIONS(1773), - [anon_sym_bool] = ACTIONS(1773), - [anon_sym_str] = ACTIONS(1773), - [anon_sym_char] = ACTIONS(1773), - [anon_sym_DASH] = ACTIONS(1771), - [anon_sym_BANG] = ACTIONS(1771), - [anon_sym_AMP] = ACTIONS(1771), - [anon_sym_PIPE] = ACTIONS(1771), - [anon_sym_LT] = ACTIONS(1771), - [anon_sym_DOT_DOT] = ACTIONS(1771), - [anon_sym_COLON_COLON] = ACTIONS(1771), - [anon_sym_POUND] = ACTIONS(1771), - [anon_sym_SQUOTE] = ACTIONS(1773), - [anon_sym_async] = ACTIONS(1773), - [anon_sym_break] = ACTIONS(1773), - [anon_sym_const] = ACTIONS(1773), - [anon_sym_continue] = ACTIONS(1773), - [anon_sym_default] = ACTIONS(1773), - [anon_sym_enum] = ACTIONS(1773), - [anon_sym_fn] = ACTIONS(1773), - [anon_sym_for] = ACTIONS(1773), - [anon_sym_gen] = ACTIONS(1773), - [anon_sym_if] = ACTIONS(1773), - [anon_sym_impl] = ACTIONS(1773), - [anon_sym_let] = ACTIONS(1773), - [anon_sym_loop] = ACTIONS(1773), - [anon_sym_match] = ACTIONS(1773), - [anon_sym_mod] = ACTIONS(1773), - [anon_sym_pub] = ACTIONS(1773), - [anon_sym_return] = ACTIONS(1773), - [anon_sym_static] = ACTIONS(1773), - [anon_sym_struct] = ACTIONS(1773), - [anon_sym_trait] = ACTIONS(1773), - [anon_sym_type] = ACTIONS(1773), - [anon_sym_union] = ACTIONS(1773), - [anon_sym_unsafe] = ACTIONS(1773), - [anon_sym_use] = ACTIONS(1773), - [anon_sym_while] = ACTIONS(1773), - [anon_sym_extern] = ACTIONS(1773), - [anon_sym_yield] = ACTIONS(1773), - [anon_sym_move] = ACTIONS(1773), - [anon_sym_try] = ACTIONS(1773), - [sym_integer_literal] = ACTIONS(1771), - [aux_sym_string_literal_token1] = ACTIONS(1771), - [sym_char_literal] = ACTIONS(1771), - [anon_sym_true] = ACTIONS(1773), - [anon_sym_false] = ACTIONS(1773), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1773), - [sym_super] = ACTIONS(1773), - [sym_crate] = ACTIONS(1773), - [sym_metavariable] = ACTIONS(1771), - [sym__raw_string_literal_start] = ACTIONS(1771), - [sym_float_literal] = ACTIONS(1771), - }, - [506] = { - [sym_line_comment] = STATE(506), - [sym_block_comment] = STATE(506), - [ts_builtin_sym_end] = ACTIONS(1775), - [sym_identifier] = ACTIONS(1777), - [anon_sym_SEMI] = ACTIONS(1775), - [anon_sym_macro_rules_BANG] = ACTIONS(1775), - [anon_sym_LPAREN] = ACTIONS(1775), - [anon_sym_LBRACK] = ACTIONS(1775), - [anon_sym_LBRACE] = ACTIONS(1775), - [anon_sym_RBRACE] = ACTIONS(1775), - [anon_sym_STAR] = ACTIONS(1775), - [anon_sym_u8] = ACTIONS(1777), - [anon_sym_i8] = ACTIONS(1777), - [anon_sym_u16] = ACTIONS(1777), - [anon_sym_i16] = ACTIONS(1777), - [anon_sym_u32] = ACTIONS(1777), - [anon_sym_i32] = ACTIONS(1777), - [anon_sym_u64] = ACTIONS(1777), - [anon_sym_i64] = ACTIONS(1777), - [anon_sym_u128] = ACTIONS(1777), - [anon_sym_i128] = ACTIONS(1777), - [anon_sym_isize] = ACTIONS(1777), - [anon_sym_usize] = ACTIONS(1777), - [anon_sym_f32] = ACTIONS(1777), - [anon_sym_f64] = ACTIONS(1777), - [anon_sym_bool] = ACTIONS(1777), - [anon_sym_str] = ACTIONS(1777), - [anon_sym_char] = ACTIONS(1777), - [anon_sym_DASH] = ACTIONS(1775), - [anon_sym_BANG] = ACTIONS(1775), - [anon_sym_AMP] = ACTIONS(1775), - [anon_sym_PIPE] = ACTIONS(1775), - [anon_sym_LT] = ACTIONS(1775), - [anon_sym_DOT_DOT] = ACTIONS(1775), - [anon_sym_COLON_COLON] = ACTIONS(1775), - [anon_sym_POUND] = ACTIONS(1775), - [anon_sym_SQUOTE] = ACTIONS(1777), - [anon_sym_async] = ACTIONS(1777), - [anon_sym_break] = ACTIONS(1777), - [anon_sym_const] = ACTIONS(1777), - [anon_sym_continue] = ACTIONS(1777), - [anon_sym_default] = ACTIONS(1777), - [anon_sym_enum] = ACTIONS(1777), - [anon_sym_fn] = ACTIONS(1777), - [anon_sym_for] = ACTIONS(1777), - [anon_sym_gen] = ACTIONS(1777), - [anon_sym_if] = ACTIONS(1777), - [anon_sym_impl] = ACTIONS(1777), - [anon_sym_let] = ACTIONS(1777), - [anon_sym_loop] = ACTIONS(1777), - [anon_sym_match] = ACTIONS(1777), - [anon_sym_mod] = ACTIONS(1777), - [anon_sym_pub] = ACTIONS(1777), - [anon_sym_return] = ACTIONS(1777), - [anon_sym_static] = ACTIONS(1777), - [anon_sym_struct] = ACTIONS(1777), - [anon_sym_trait] = ACTIONS(1777), - [anon_sym_type] = ACTIONS(1777), - [anon_sym_union] = ACTIONS(1777), - [anon_sym_unsafe] = ACTIONS(1777), - [anon_sym_use] = ACTIONS(1777), - [anon_sym_while] = ACTIONS(1777), - [anon_sym_extern] = ACTIONS(1777), - [anon_sym_yield] = ACTIONS(1777), - [anon_sym_move] = ACTIONS(1777), - [anon_sym_try] = ACTIONS(1777), - [sym_integer_literal] = ACTIONS(1775), - [aux_sym_string_literal_token1] = ACTIONS(1775), - [sym_char_literal] = ACTIONS(1775), - [anon_sym_true] = ACTIONS(1777), - [anon_sym_false] = ACTIONS(1777), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1777), - [sym_super] = ACTIONS(1777), - [sym_crate] = ACTIONS(1777), - [sym_metavariable] = ACTIONS(1775), - [sym__raw_string_literal_start] = ACTIONS(1775), - [sym_float_literal] = ACTIONS(1775), - }, - [507] = { - [sym_line_comment] = STATE(507), - [sym_block_comment] = STATE(507), - [ts_builtin_sym_end] = ACTIONS(1779), - [sym_identifier] = ACTIONS(1781), - [anon_sym_SEMI] = ACTIONS(1779), - [anon_sym_macro_rules_BANG] = ACTIONS(1779), - [anon_sym_LPAREN] = ACTIONS(1779), - [anon_sym_LBRACK] = ACTIONS(1779), - [anon_sym_LBRACE] = ACTIONS(1779), - [anon_sym_RBRACE] = ACTIONS(1779), - [anon_sym_STAR] = ACTIONS(1779), - [anon_sym_u8] = ACTIONS(1781), - [anon_sym_i8] = ACTIONS(1781), - [anon_sym_u16] = ACTIONS(1781), - [anon_sym_i16] = ACTIONS(1781), - [anon_sym_u32] = ACTIONS(1781), - [anon_sym_i32] = ACTIONS(1781), - [anon_sym_u64] = ACTIONS(1781), - [anon_sym_i64] = ACTIONS(1781), - [anon_sym_u128] = ACTIONS(1781), - [anon_sym_i128] = ACTIONS(1781), - [anon_sym_isize] = ACTIONS(1781), - [anon_sym_usize] = ACTIONS(1781), - [anon_sym_f32] = ACTIONS(1781), - [anon_sym_f64] = ACTIONS(1781), - [anon_sym_bool] = ACTIONS(1781), - [anon_sym_str] = ACTIONS(1781), - [anon_sym_char] = ACTIONS(1781), - [anon_sym_DASH] = ACTIONS(1779), - [anon_sym_BANG] = ACTIONS(1779), - [anon_sym_AMP] = ACTIONS(1779), - [anon_sym_PIPE] = ACTIONS(1779), - [anon_sym_LT] = ACTIONS(1779), - [anon_sym_DOT_DOT] = ACTIONS(1779), - [anon_sym_COLON_COLON] = ACTIONS(1779), - [anon_sym_POUND] = ACTIONS(1779), - [anon_sym_SQUOTE] = ACTIONS(1781), - [anon_sym_async] = ACTIONS(1781), - [anon_sym_break] = ACTIONS(1781), - [anon_sym_const] = ACTIONS(1781), - [anon_sym_continue] = ACTIONS(1781), - [anon_sym_default] = ACTIONS(1781), - [anon_sym_enum] = ACTIONS(1781), - [anon_sym_fn] = ACTIONS(1781), - [anon_sym_for] = ACTIONS(1781), - [anon_sym_gen] = ACTIONS(1781), - [anon_sym_if] = ACTIONS(1781), - [anon_sym_impl] = ACTIONS(1781), - [anon_sym_let] = ACTIONS(1781), - [anon_sym_loop] = ACTIONS(1781), - [anon_sym_match] = ACTIONS(1781), - [anon_sym_mod] = ACTIONS(1781), - [anon_sym_pub] = ACTIONS(1781), - [anon_sym_return] = ACTIONS(1781), - [anon_sym_static] = ACTIONS(1781), - [anon_sym_struct] = ACTIONS(1781), - [anon_sym_trait] = ACTIONS(1781), - [anon_sym_type] = ACTIONS(1781), - [anon_sym_union] = ACTIONS(1781), - [anon_sym_unsafe] = ACTIONS(1781), - [anon_sym_use] = ACTIONS(1781), - [anon_sym_while] = ACTIONS(1781), - [anon_sym_extern] = ACTIONS(1781), - [anon_sym_yield] = ACTIONS(1781), - [anon_sym_move] = ACTIONS(1781), - [anon_sym_try] = ACTIONS(1781), - [sym_integer_literal] = ACTIONS(1779), - [aux_sym_string_literal_token1] = ACTIONS(1779), - [sym_char_literal] = ACTIONS(1779), - [anon_sym_true] = ACTIONS(1781), - [anon_sym_false] = ACTIONS(1781), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1781), - [sym_super] = ACTIONS(1781), - [sym_crate] = ACTIONS(1781), - [sym_metavariable] = ACTIONS(1779), - [sym__raw_string_literal_start] = ACTIONS(1779), - [sym_float_literal] = ACTIONS(1779), - }, - [508] = { - [sym_line_comment] = STATE(508), - [sym_block_comment] = STATE(508), - [ts_builtin_sym_end] = ACTIONS(1783), - [sym_identifier] = ACTIONS(1785), - [anon_sym_SEMI] = ACTIONS(1783), - [anon_sym_macro_rules_BANG] = ACTIONS(1783), - [anon_sym_LPAREN] = ACTIONS(1783), - [anon_sym_LBRACK] = ACTIONS(1783), - [anon_sym_LBRACE] = ACTIONS(1783), - [anon_sym_RBRACE] = ACTIONS(1783), - [anon_sym_STAR] = ACTIONS(1783), - [anon_sym_u8] = ACTIONS(1785), - [anon_sym_i8] = ACTIONS(1785), - [anon_sym_u16] = ACTIONS(1785), - [anon_sym_i16] = ACTIONS(1785), - [anon_sym_u32] = ACTIONS(1785), - [anon_sym_i32] = ACTIONS(1785), - [anon_sym_u64] = ACTIONS(1785), - [anon_sym_i64] = ACTIONS(1785), - [anon_sym_u128] = ACTIONS(1785), - [anon_sym_i128] = ACTIONS(1785), - [anon_sym_isize] = ACTIONS(1785), - [anon_sym_usize] = ACTIONS(1785), - [anon_sym_f32] = ACTIONS(1785), - [anon_sym_f64] = ACTIONS(1785), - [anon_sym_bool] = ACTIONS(1785), - [anon_sym_str] = ACTIONS(1785), - [anon_sym_char] = ACTIONS(1785), - [anon_sym_DASH] = ACTIONS(1783), - [anon_sym_BANG] = ACTIONS(1783), - [anon_sym_AMP] = ACTIONS(1783), - [anon_sym_PIPE] = ACTIONS(1783), - [anon_sym_LT] = ACTIONS(1783), - [anon_sym_DOT_DOT] = ACTIONS(1783), - [anon_sym_COLON_COLON] = ACTIONS(1783), - [anon_sym_POUND] = ACTIONS(1783), - [anon_sym_SQUOTE] = ACTIONS(1785), - [anon_sym_async] = ACTIONS(1785), - [anon_sym_break] = ACTIONS(1785), - [anon_sym_const] = ACTIONS(1785), - [anon_sym_continue] = ACTIONS(1785), - [anon_sym_default] = ACTIONS(1785), - [anon_sym_enum] = ACTIONS(1785), - [anon_sym_fn] = ACTIONS(1785), - [anon_sym_for] = ACTIONS(1785), - [anon_sym_gen] = ACTIONS(1785), - [anon_sym_if] = ACTIONS(1785), - [anon_sym_impl] = ACTIONS(1785), - [anon_sym_let] = ACTIONS(1785), - [anon_sym_loop] = ACTIONS(1785), - [anon_sym_match] = ACTIONS(1785), - [anon_sym_mod] = ACTIONS(1785), - [anon_sym_pub] = ACTIONS(1785), - [anon_sym_return] = ACTIONS(1785), - [anon_sym_static] = ACTIONS(1785), - [anon_sym_struct] = ACTIONS(1785), - [anon_sym_trait] = ACTIONS(1785), - [anon_sym_type] = ACTIONS(1785), - [anon_sym_union] = ACTIONS(1785), - [anon_sym_unsafe] = ACTIONS(1785), - [anon_sym_use] = ACTIONS(1785), - [anon_sym_while] = ACTIONS(1785), - [anon_sym_extern] = ACTIONS(1785), - [anon_sym_yield] = ACTIONS(1785), - [anon_sym_move] = ACTIONS(1785), - [anon_sym_try] = ACTIONS(1785), - [sym_integer_literal] = ACTIONS(1783), - [aux_sym_string_literal_token1] = ACTIONS(1783), - [sym_char_literal] = ACTIONS(1783), - [anon_sym_true] = ACTIONS(1785), - [anon_sym_false] = ACTIONS(1785), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1785), - [sym_super] = ACTIONS(1785), - [sym_crate] = ACTIONS(1785), - [sym_metavariable] = ACTIONS(1783), - [sym__raw_string_literal_start] = ACTIONS(1783), - [sym_float_literal] = ACTIONS(1783), - }, - [509] = { - [sym_line_comment] = STATE(509), - [sym_block_comment] = STATE(509), - [ts_builtin_sym_end] = ACTIONS(1787), - [sym_identifier] = ACTIONS(1789), - [anon_sym_SEMI] = ACTIONS(1787), - [anon_sym_macro_rules_BANG] = ACTIONS(1787), - [anon_sym_LPAREN] = ACTIONS(1787), - [anon_sym_LBRACK] = ACTIONS(1787), - [anon_sym_LBRACE] = ACTIONS(1787), - [anon_sym_RBRACE] = ACTIONS(1787), - [anon_sym_STAR] = ACTIONS(1787), - [anon_sym_u8] = ACTIONS(1789), - [anon_sym_i8] = ACTIONS(1789), - [anon_sym_u16] = ACTIONS(1789), - [anon_sym_i16] = ACTIONS(1789), - [anon_sym_u32] = ACTIONS(1789), - [anon_sym_i32] = ACTIONS(1789), - [anon_sym_u64] = ACTIONS(1789), - [anon_sym_i64] = ACTIONS(1789), - [anon_sym_u128] = ACTIONS(1789), - [anon_sym_i128] = ACTIONS(1789), - [anon_sym_isize] = ACTIONS(1789), - [anon_sym_usize] = ACTIONS(1789), - [anon_sym_f32] = ACTIONS(1789), - [anon_sym_f64] = ACTIONS(1789), - [anon_sym_bool] = ACTIONS(1789), - [anon_sym_str] = ACTIONS(1789), - [anon_sym_char] = ACTIONS(1789), - [anon_sym_DASH] = ACTIONS(1787), - [anon_sym_BANG] = ACTIONS(1787), - [anon_sym_AMP] = ACTIONS(1787), - [anon_sym_PIPE] = ACTIONS(1787), - [anon_sym_LT] = ACTIONS(1787), - [anon_sym_DOT_DOT] = ACTIONS(1787), - [anon_sym_COLON_COLON] = ACTIONS(1787), - [anon_sym_POUND] = ACTIONS(1787), - [anon_sym_SQUOTE] = ACTIONS(1789), - [anon_sym_async] = ACTIONS(1789), - [anon_sym_break] = ACTIONS(1789), - [anon_sym_const] = ACTIONS(1789), - [anon_sym_continue] = ACTIONS(1789), - [anon_sym_default] = ACTIONS(1789), - [anon_sym_enum] = ACTIONS(1789), - [anon_sym_fn] = ACTIONS(1789), - [anon_sym_for] = ACTIONS(1789), - [anon_sym_gen] = ACTIONS(1789), - [anon_sym_if] = ACTIONS(1789), - [anon_sym_impl] = ACTIONS(1789), - [anon_sym_let] = ACTIONS(1789), - [anon_sym_loop] = ACTIONS(1789), - [anon_sym_match] = ACTIONS(1789), - [anon_sym_mod] = ACTIONS(1789), - [anon_sym_pub] = ACTIONS(1789), - [anon_sym_return] = ACTIONS(1789), - [anon_sym_static] = ACTIONS(1789), - [anon_sym_struct] = ACTIONS(1789), - [anon_sym_trait] = ACTIONS(1789), - [anon_sym_type] = ACTIONS(1789), - [anon_sym_union] = ACTIONS(1789), - [anon_sym_unsafe] = ACTIONS(1789), - [anon_sym_use] = ACTIONS(1789), - [anon_sym_while] = ACTIONS(1789), - [anon_sym_extern] = ACTIONS(1789), - [anon_sym_yield] = ACTIONS(1789), - [anon_sym_move] = ACTIONS(1789), - [anon_sym_try] = ACTIONS(1789), - [sym_integer_literal] = ACTIONS(1787), - [aux_sym_string_literal_token1] = ACTIONS(1787), - [sym_char_literal] = ACTIONS(1787), - [anon_sym_true] = ACTIONS(1789), - [anon_sym_false] = ACTIONS(1789), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1789), - [sym_super] = ACTIONS(1789), - [sym_crate] = ACTIONS(1789), - [sym_metavariable] = ACTIONS(1787), - [sym__raw_string_literal_start] = ACTIONS(1787), - [sym_float_literal] = ACTIONS(1787), - }, - [510] = { - [sym_line_comment] = STATE(510), - [sym_block_comment] = STATE(510), - [ts_builtin_sym_end] = ACTIONS(1791), - [sym_identifier] = ACTIONS(1793), - [anon_sym_SEMI] = ACTIONS(1791), - [anon_sym_macro_rules_BANG] = ACTIONS(1791), - [anon_sym_LPAREN] = ACTIONS(1791), - [anon_sym_LBRACK] = ACTIONS(1791), - [anon_sym_LBRACE] = ACTIONS(1791), - [anon_sym_RBRACE] = ACTIONS(1791), - [anon_sym_STAR] = ACTIONS(1791), - [anon_sym_u8] = ACTIONS(1793), - [anon_sym_i8] = ACTIONS(1793), - [anon_sym_u16] = ACTIONS(1793), - [anon_sym_i16] = ACTIONS(1793), - [anon_sym_u32] = ACTIONS(1793), - [anon_sym_i32] = ACTIONS(1793), - [anon_sym_u64] = ACTIONS(1793), - [anon_sym_i64] = ACTIONS(1793), - [anon_sym_u128] = ACTIONS(1793), - [anon_sym_i128] = ACTIONS(1793), - [anon_sym_isize] = ACTIONS(1793), - [anon_sym_usize] = ACTIONS(1793), - [anon_sym_f32] = ACTIONS(1793), - [anon_sym_f64] = ACTIONS(1793), - [anon_sym_bool] = ACTIONS(1793), - [anon_sym_str] = ACTIONS(1793), - [anon_sym_char] = ACTIONS(1793), - [anon_sym_DASH] = ACTIONS(1791), - [anon_sym_BANG] = ACTIONS(1791), - [anon_sym_AMP] = ACTIONS(1791), - [anon_sym_PIPE] = ACTIONS(1791), - [anon_sym_LT] = ACTIONS(1791), - [anon_sym_DOT_DOT] = ACTIONS(1791), - [anon_sym_COLON_COLON] = ACTIONS(1791), - [anon_sym_POUND] = ACTIONS(1791), - [anon_sym_SQUOTE] = ACTIONS(1793), - [anon_sym_async] = ACTIONS(1793), - [anon_sym_break] = ACTIONS(1793), - [anon_sym_const] = ACTIONS(1793), - [anon_sym_continue] = ACTIONS(1793), - [anon_sym_default] = ACTIONS(1793), - [anon_sym_enum] = ACTIONS(1793), - [anon_sym_fn] = ACTIONS(1793), - [anon_sym_for] = ACTIONS(1793), - [anon_sym_gen] = ACTIONS(1793), - [anon_sym_if] = ACTIONS(1793), - [anon_sym_impl] = ACTIONS(1793), - [anon_sym_let] = ACTIONS(1793), - [anon_sym_loop] = ACTIONS(1793), - [anon_sym_match] = ACTIONS(1793), - [anon_sym_mod] = ACTIONS(1793), - [anon_sym_pub] = ACTIONS(1793), - [anon_sym_return] = ACTIONS(1793), - [anon_sym_static] = ACTIONS(1793), - [anon_sym_struct] = ACTIONS(1793), - [anon_sym_trait] = ACTIONS(1793), - [anon_sym_type] = ACTIONS(1793), - [anon_sym_union] = ACTIONS(1793), - [anon_sym_unsafe] = ACTIONS(1793), - [anon_sym_use] = ACTIONS(1793), - [anon_sym_while] = ACTIONS(1793), - [anon_sym_extern] = ACTIONS(1793), - [anon_sym_yield] = ACTIONS(1793), - [anon_sym_move] = ACTIONS(1793), - [anon_sym_try] = ACTIONS(1793), - [sym_integer_literal] = ACTIONS(1791), - [aux_sym_string_literal_token1] = ACTIONS(1791), - [sym_char_literal] = ACTIONS(1791), - [anon_sym_true] = ACTIONS(1793), - [anon_sym_false] = ACTIONS(1793), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1793), - [sym_super] = ACTIONS(1793), - [sym_crate] = ACTIONS(1793), - [sym_metavariable] = ACTIONS(1791), - [sym__raw_string_literal_start] = ACTIONS(1791), - [sym_float_literal] = ACTIONS(1791), - }, - [511] = { - [sym_line_comment] = STATE(511), - [sym_block_comment] = STATE(511), - [ts_builtin_sym_end] = ACTIONS(1795), - [sym_identifier] = ACTIONS(1797), - [anon_sym_SEMI] = ACTIONS(1795), - [anon_sym_macro_rules_BANG] = ACTIONS(1795), - [anon_sym_LPAREN] = ACTIONS(1795), - [anon_sym_LBRACK] = ACTIONS(1795), - [anon_sym_LBRACE] = ACTIONS(1795), - [anon_sym_RBRACE] = ACTIONS(1795), - [anon_sym_STAR] = ACTIONS(1795), - [anon_sym_u8] = ACTIONS(1797), - [anon_sym_i8] = ACTIONS(1797), - [anon_sym_u16] = ACTIONS(1797), - [anon_sym_i16] = ACTIONS(1797), - [anon_sym_u32] = ACTIONS(1797), - [anon_sym_i32] = ACTIONS(1797), - [anon_sym_u64] = ACTIONS(1797), - [anon_sym_i64] = ACTIONS(1797), - [anon_sym_u128] = ACTIONS(1797), - [anon_sym_i128] = ACTIONS(1797), - [anon_sym_isize] = ACTIONS(1797), - [anon_sym_usize] = ACTIONS(1797), - [anon_sym_f32] = ACTIONS(1797), - [anon_sym_f64] = ACTIONS(1797), - [anon_sym_bool] = ACTIONS(1797), - [anon_sym_str] = ACTIONS(1797), - [anon_sym_char] = ACTIONS(1797), - [anon_sym_DASH] = ACTIONS(1795), - [anon_sym_BANG] = ACTIONS(1795), - [anon_sym_AMP] = ACTIONS(1795), - [anon_sym_PIPE] = ACTIONS(1795), - [anon_sym_LT] = ACTIONS(1795), - [anon_sym_DOT_DOT] = ACTIONS(1795), - [anon_sym_COLON_COLON] = ACTIONS(1795), - [anon_sym_POUND] = ACTIONS(1795), - [anon_sym_SQUOTE] = ACTIONS(1797), - [anon_sym_async] = ACTIONS(1797), - [anon_sym_break] = ACTIONS(1797), - [anon_sym_const] = ACTIONS(1797), - [anon_sym_continue] = ACTIONS(1797), - [anon_sym_default] = ACTIONS(1797), - [anon_sym_enum] = ACTIONS(1797), - [anon_sym_fn] = ACTIONS(1797), - [anon_sym_for] = ACTIONS(1797), - [anon_sym_gen] = ACTIONS(1797), - [anon_sym_if] = ACTIONS(1797), - [anon_sym_impl] = ACTIONS(1797), - [anon_sym_let] = ACTIONS(1797), - [anon_sym_loop] = ACTIONS(1797), - [anon_sym_match] = ACTIONS(1797), - [anon_sym_mod] = ACTIONS(1797), - [anon_sym_pub] = ACTIONS(1797), - [anon_sym_return] = ACTIONS(1797), - [anon_sym_static] = ACTIONS(1797), - [anon_sym_struct] = ACTIONS(1797), - [anon_sym_trait] = ACTIONS(1797), - [anon_sym_type] = ACTIONS(1797), - [anon_sym_union] = ACTIONS(1797), - [anon_sym_unsafe] = ACTIONS(1797), - [anon_sym_use] = ACTIONS(1797), - [anon_sym_while] = ACTIONS(1797), - [anon_sym_extern] = ACTIONS(1797), - [anon_sym_yield] = ACTIONS(1797), - [anon_sym_move] = ACTIONS(1797), - [anon_sym_try] = ACTIONS(1797), - [sym_integer_literal] = ACTIONS(1795), - [aux_sym_string_literal_token1] = ACTIONS(1795), - [sym_char_literal] = ACTIONS(1795), - [anon_sym_true] = ACTIONS(1797), - [anon_sym_false] = ACTIONS(1797), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1797), - [sym_super] = ACTIONS(1797), - [sym_crate] = ACTIONS(1797), - [sym_metavariable] = ACTIONS(1795), - [sym__raw_string_literal_start] = ACTIONS(1795), - [sym_float_literal] = ACTIONS(1795), - }, - [512] = { - [sym_line_comment] = STATE(512), - [sym_block_comment] = STATE(512), - [ts_builtin_sym_end] = ACTIONS(1799), - [sym_identifier] = ACTIONS(1801), - [anon_sym_SEMI] = ACTIONS(1799), - [anon_sym_macro_rules_BANG] = ACTIONS(1799), - [anon_sym_LPAREN] = ACTIONS(1799), - [anon_sym_LBRACK] = ACTIONS(1799), - [anon_sym_LBRACE] = ACTIONS(1799), - [anon_sym_RBRACE] = ACTIONS(1799), - [anon_sym_STAR] = ACTIONS(1799), - [anon_sym_u8] = ACTIONS(1801), - [anon_sym_i8] = ACTIONS(1801), - [anon_sym_u16] = ACTIONS(1801), - [anon_sym_i16] = ACTIONS(1801), - [anon_sym_u32] = ACTIONS(1801), - [anon_sym_i32] = ACTIONS(1801), - [anon_sym_u64] = ACTIONS(1801), - [anon_sym_i64] = ACTIONS(1801), - [anon_sym_u128] = ACTIONS(1801), - [anon_sym_i128] = ACTIONS(1801), - [anon_sym_isize] = ACTIONS(1801), - [anon_sym_usize] = ACTIONS(1801), - [anon_sym_f32] = ACTIONS(1801), - [anon_sym_f64] = ACTIONS(1801), - [anon_sym_bool] = ACTIONS(1801), - [anon_sym_str] = ACTIONS(1801), - [anon_sym_char] = ACTIONS(1801), - [anon_sym_DASH] = ACTIONS(1799), - [anon_sym_BANG] = ACTIONS(1799), - [anon_sym_AMP] = ACTIONS(1799), - [anon_sym_PIPE] = ACTIONS(1799), - [anon_sym_LT] = ACTIONS(1799), - [anon_sym_DOT_DOT] = ACTIONS(1799), - [anon_sym_COLON_COLON] = ACTIONS(1799), - [anon_sym_POUND] = ACTIONS(1799), - [anon_sym_SQUOTE] = ACTIONS(1801), - [anon_sym_async] = ACTIONS(1801), - [anon_sym_break] = ACTIONS(1801), - [anon_sym_const] = ACTIONS(1801), - [anon_sym_continue] = ACTIONS(1801), - [anon_sym_default] = ACTIONS(1801), - [anon_sym_enum] = ACTIONS(1801), - [anon_sym_fn] = ACTIONS(1801), - [anon_sym_for] = ACTIONS(1801), - [anon_sym_gen] = ACTIONS(1801), - [anon_sym_if] = ACTIONS(1801), - [anon_sym_impl] = ACTIONS(1801), - [anon_sym_let] = ACTIONS(1801), - [anon_sym_loop] = ACTIONS(1801), - [anon_sym_match] = ACTIONS(1801), - [anon_sym_mod] = ACTIONS(1801), - [anon_sym_pub] = ACTIONS(1801), - [anon_sym_return] = ACTIONS(1801), - [anon_sym_static] = ACTIONS(1801), - [anon_sym_struct] = ACTIONS(1801), - [anon_sym_trait] = ACTIONS(1801), - [anon_sym_type] = ACTIONS(1801), - [anon_sym_union] = ACTIONS(1801), - [anon_sym_unsafe] = ACTIONS(1801), - [anon_sym_use] = ACTIONS(1801), - [anon_sym_while] = ACTIONS(1801), - [anon_sym_extern] = ACTIONS(1801), - [anon_sym_yield] = ACTIONS(1801), - [anon_sym_move] = ACTIONS(1801), - [anon_sym_try] = ACTIONS(1801), - [sym_integer_literal] = ACTIONS(1799), - [aux_sym_string_literal_token1] = ACTIONS(1799), - [sym_char_literal] = ACTIONS(1799), - [anon_sym_true] = ACTIONS(1801), - [anon_sym_false] = ACTIONS(1801), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1801), - [sym_super] = ACTIONS(1801), - [sym_crate] = ACTIONS(1801), - [sym_metavariable] = ACTIONS(1799), - [sym__raw_string_literal_start] = ACTIONS(1799), - [sym_float_literal] = ACTIONS(1799), - }, - [513] = { - [sym_line_comment] = STATE(513), - [sym_block_comment] = STATE(513), - [ts_builtin_sym_end] = ACTIONS(1803), - [sym_identifier] = ACTIONS(1805), - [anon_sym_SEMI] = ACTIONS(1803), - [anon_sym_macro_rules_BANG] = ACTIONS(1803), - [anon_sym_LPAREN] = ACTIONS(1803), - [anon_sym_LBRACK] = ACTIONS(1803), - [anon_sym_LBRACE] = ACTIONS(1803), - [anon_sym_RBRACE] = ACTIONS(1803), - [anon_sym_STAR] = ACTIONS(1803), - [anon_sym_u8] = ACTIONS(1805), - [anon_sym_i8] = ACTIONS(1805), - [anon_sym_u16] = ACTIONS(1805), - [anon_sym_i16] = ACTIONS(1805), - [anon_sym_u32] = ACTIONS(1805), - [anon_sym_i32] = ACTIONS(1805), - [anon_sym_u64] = ACTIONS(1805), - [anon_sym_i64] = ACTIONS(1805), - [anon_sym_u128] = ACTIONS(1805), - [anon_sym_i128] = ACTIONS(1805), - [anon_sym_isize] = ACTIONS(1805), - [anon_sym_usize] = ACTIONS(1805), - [anon_sym_f32] = ACTIONS(1805), - [anon_sym_f64] = ACTIONS(1805), - [anon_sym_bool] = ACTIONS(1805), - [anon_sym_str] = ACTIONS(1805), - [anon_sym_char] = ACTIONS(1805), - [anon_sym_DASH] = ACTIONS(1803), - [anon_sym_BANG] = ACTIONS(1803), - [anon_sym_AMP] = ACTIONS(1803), - [anon_sym_PIPE] = ACTIONS(1803), - [anon_sym_LT] = ACTIONS(1803), - [anon_sym_DOT_DOT] = ACTIONS(1803), - [anon_sym_COLON_COLON] = ACTIONS(1803), - [anon_sym_POUND] = ACTIONS(1803), - [anon_sym_SQUOTE] = ACTIONS(1805), - [anon_sym_async] = ACTIONS(1805), - [anon_sym_break] = ACTIONS(1805), - [anon_sym_const] = ACTIONS(1805), - [anon_sym_continue] = ACTIONS(1805), - [anon_sym_default] = ACTIONS(1805), - [anon_sym_enum] = ACTIONS(1805), - [anon_sym_fn] = ACTIONS(1805), - [anon_sym_for] = ACTIONS(1805), - [anon_sym_gen] = ACTIONS(1805), - [anon_sym_if] = ACTIONS(1805), - [anon_sym_impl] = ACTIONS(1805), - [anon_sym_let] = ACTIONS(1805), - [anon_sym_loop] = ACTIONS(1805), - [anon_sym_match] = ACTIONS(1805), - [anon_sym_mod] = ACTIONS(1805), - [anon_sym_pub] = ACTIONS(1805), - [anon_sym_return] = ACTIONS(1805), - [anon_sym_static] = ACTIONS(1805), - [anon_sym_struct] = ACTIONS(1805), - [anon_sym_trait] = ACTIONS(1805), - [anon_sym_type] = ACTIONS(1805), - [anon_sym_union] = ACTIONS(1805), - [anon_sym_unsafe] = ACTIONS(1805), - [anon_sym_use] = ACTIONS(1805), - [anon_sym_while] = ACTIONS(1805), - [anon_sym_extern] = ACTIONS(1805), - [anon_sym_yield] = ACTIONS(1805), - [anon_sym_move] = ACTIONS(1805), - [anon_sym_try] = ACTIONS(1805), - [sym_integer_literal] = ACTIONS(1803), - [aux_sym_string_literal_token1] = ACTIONS(1803), - [sym_char_literal] = ACTIONS(1803), - [anon_sym_true] = ACTIONS(1805), - [anon_sym_false] = ACTIONS(1805), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1805), - [sym_super] = ACTIONS(1805), - [sym_crate] = ACTIONS(1805), - [sym_metavariable] = ACTIONS(1803), - [sym__raw_string_literal_start] = ACTIONS(1803), - [sym_float_literal] = ACTIONS(1803), - }, - [514] = { - [sym_line_comment] = STATE(514), - [sym_block_comment] = STATE(514), - [ts_builtin_sym_end] = ACTIONS(1807), - [sym_identifier] = ACTIONS(1809), - [anon_sym_SEMI] = ACTIONS(1807), - [anon_sym_macro_rules_BANG] = ACTIONS(1807), - [anon_sym_LPAREN] = ACTIONS(1807), - [anon_sym_LBRACK] = ACTIONS(1807), - [anon_sym_LBRACE] = ACTIONS(1807), - [anon_sym_RBRACE] = ACTIONS(1807), - [anon_sym_STAR] = ACTIONS(1807), - [anon_sym_u8] = ACTIONS(1809), - [anon_sym_i8] = ACTIONS(1809), - [anon_sym_u16] = ACTIONS(1809), - [anon_sym_i16] = ACTIONS(1809), - [anon_sym_u32] = ACTIONS(1809), - [anon_sym_i32] = ACTIONS(1809), - [anon_sym_u64] = ACTIONS(1809), - [anon_sym_i64] = ACTIONS(1809), - [anon_sym_u128] = ACTIONS(1809), - [anon_sym_i128] = ACTIONS(1809), - [anon_sym_isize] = ACTIONS(1809), - [anon_sym_usize] = ACTIONS(1809), - [anon_sym_f32] = ACTIONS(1809), - [anon_sym_f64] = ACTIONS(1809), - [anon_sym_bool] = ACTIONS(1809), - [anon_sym_str] = ACTIONS(1809), - [anon_sym_char] = ACTIONS(1809), - [anon_sym_DASH] = ACTIONS(1807), - [anon_sym_BANG] = ACTIONS(1807), - [anon_sym_AMP] = ACTIONS(1807), - [anon_sym_PIPE] = ACTIONS(1807), - [anon_sym_LT] = ACTIONS(1807), - [anon_sym_DOT_DOT] = ACTIONS(1807), - [anon_sym_COLON_COLON] = ACTIONS(1807), - [anon_sym_POUND] = ACTIONS(1807), - [anon_sym_SQUOTE] = ACTIONS(1809), - [anon_sym_async] = ACTIONS(1809), - [anon_sym_break] = ACTIONS(1809), - [anon_sym_const] = ACTIONS(1809), - [anon_sym_continue] = ACTIONS(1809), - [anon_sym_default] = ACTIONS(1809), - [anon_sym_enum] = ACTIONS(1809), - [anon_sym_fn] = ACTIONS(1809), - [anon_sym_for] = ACTIONS(1809), - [anon_sym_gen] = ACTIONS(1809), - [anon_sym_if] = ACTIONS(1809), - [anon_sym_impl] = ACTIONS(1809), - [anon_sym_let] = ACTIONS(1809), - [anon_sym_loop] = ACTIONS(1809), - [anon_sym_match] = ACTIONS(1809), - [anon_sym_mod] = ACTIONS(1809), - [anon_sym_pub] = ACTIONS(1809), - [anon_sym_return] = ACTIONS(1809), - [anon_sym_static] = ACTIONS(1809), - [anon_sym_struct] = ACTIONS(1809), - [anon_sym_trait] = ACTIONS(1809), - [anon_sym_type] = ACTIONS(1809), - [anon_sym_union] = ACTIONS(1809), - [anon_sym_unsafe] = ACTIONS(1809), - [anon_sym_use] = ACTIONS(1809), - [anon_sym_while] = ACTIONS(1809), - [anon_sym_extern] = ACTIONS(1809), - [anon_sym_yield] = ACTIONS(1809), - [anon_sym_move] = ACTIONS(1809), - [anon_sym_try] = ACTIONS(1809), - [sym_integer_literal] = ACTIONS(1807), - [aux_sym_string_literal_token1] = ACTIONS(1807), - [sym_char_literal] = ACTIONS(1807), - [anon_sym_true] = ACTIONS(1809), - [anon_sym_false] = ACTIONS(1809), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1809), - [sym_super] = ACTIONS(1809), - [sym_crate] = ACTIONS(1809), - [sym_metavariable] = ACTIONS(1807), - [sym__raw_string_literal_start] = ACTIONS(1807), - [sym_float_literal] = ACTIONS(1807), - }, - [515] = { - [sym_line_comment] = STATE(515), - [sym_block_comment] = STATE(515), - [ts_builtin_sym_end] = ACTIONS(1811), - [sym_identifier] = ACTIONS(1813), - [anon_sym_SEMI] = ACTIONS(1811), - [anon_sym_macro_rules_BANG] = ACTIONS(1811), - [anon_sym_LPAREN] = ACTIONS(1811), - [anon_sym_LBRACK] = ACTIONS(1811), - [anon_sym_LBRACE] = ACTIONS(1811), - [anon_sym_RBRACE] = ACTIONS(1811), - [anon_sym_STAR] = ACTIONS(1811), - [anon_sym_u8] = ACTIONS(1813), - [anon_sym_i8] = ACTIONS(1813), - [anon_sym_u16] = ACTIONS(1813), - [anon_sym_i16] = ACTIONS(1813), - [anon_sym_u32] = ACTIONS(1813), - [anon_sym_i32] = ACTIONS(1813), - [anon_sym_u64] = ACTIONS(1813), - [anon_sym_i64] = ACTIONS(1813), - [anon_sym_u128] = ACTIONS(1813), - [anon_sym_i128] = ACTIONS(1813), - [anon_sym_isize] = ACTIONS(1813), - [anon_sym_usize] = ACTIONS(1813), - [anon_sym_f32] = ACTIONS(1813), - [anon_sym_f64] = ACTIONS(1813), - [anon_sym_bool] = ACTIONS(1813), - [anon_sym_str] = ACTIONS(1813), - [anon_sym_char] = ACTIONS(1813), - [anon_sym_DASH] = ACTIONS(1811), - [anon_sym_BANG] = ACTIONS(1811), - [anon_sym_AMP] = ACTIONS(1811), - [anon_sym_PIPE] = ACTIONS(1811), - [anon_sym_LT] = ACTIONS(1811), - [anon_sym_DOT_DOT] = ACTIONS(1811), - [anon_sym_COLON_COLON] = ACTIONS(1811), - [anon_sym_POUND] = ACTIONS(1811), - [anon_sym_SQUOTE] = ACTIONS(1813), - [anon_sym_async] = ACTIONS(1813), - [anon_sym_break] = ACTIONS(1813), - [anon_sym_const] = ACTIONS(1813), - [anon_sym_continue] = ACTIONS(1813), - [anon_sym_default] = ACTIONS(1813), - [anon_sym_enum] = ACTIONS(1813), - [anon_sym_fn] = ACTIONS(1813), - [anon_sym_for] = ACTIONS(1813), - [anon_sym_gen] = ACTIONS(1813), - [anon_sym_if] = ACTIONS(1813), - [anon_sym_impl] = ACTIONS(1813), - [anon_sym_let] = ACTIONS(1813), - [anon_sym_loop] = ACTIONS(1813), - [anon_sym_match] = ACTIONS(1813), - [anon_sym_mod] = ACTIONS(1813), - [anon_sym_pub] = ACTIONS(1813), - [anon_sym_return] = ACTIONS(1813), - [anon_sym_static] = ACTIONS(1813), - [anon_sym_struct] = ACTIONS(1813), - [anon_sym_trait] = ACTIONS(1813), - [anon_sym_type] = ACTIONS(1813), - [anon_sym_union] = ACTIONS(1813), - [anon_sym_unsafe] = ACTIONS(1813), - [anon_sym_use] = ACTIONS(1813), - [anon_sym_while] = ACTIONS(1813), - [anon_sym_extern] = ACTIONS(1813), - [anon_sym_yield] = ACTIONS(1813), - [anon_sym_move] = ACTIONS(1813), - [anon_sym_try] = ACTIONS(1813), - [sym_integer_literal] = ACTIONS(1811), - [aux_sym_string_literal_token1] = ACTIONS(1811), - [sym_char_literal] = ACTIONS(1811), - [anon_sym_true] = ACTIONS(1813), - [anon_sym_false] = ACTIONS(1813), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1813), - [sym_super] = ACTIONS(1813), - [sym_crate] = ACTIONS(1813), - [sym_metavariable] = ACTIONS(1811), - [sym__raw_string_literal_start] = ACTIONS(1811), - [sym_float_literal] = ACTIONS(1811), - }, - [516] = { - [sym_line_comment] = STATE(516), - [sym_block_comment] = STATE(516), - [ts_builtin_sym_end] = ACTIONS(1815), - [sym_identifier] = ACTIONS(1817), - [anon_sym_SEMI] = ACTIONS(1815), - [anon_sym_macro_rules_BANG] = ACTIONS(1815), - [anon_sym_LPAREN] = ACTIONS(1815), - [anon_sym_LBRACK] = ACTIONS(1815), - [anon_sym_LBRACE] = ACTIONS(1815), - [anon_sym_RBRACE] = ACTIONS(1815), - [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_u8] = ACTIONS(1817), - [anon_sym_i8] = ACTIONS(1817), - [anon_sym_u16] = ACTIONS(1817), - [anon_sym_i16] = ACTIONS(1817), - [anon_sym_u32] = ACTIONS(1817), - [anon_sym_i32] = ACTIONS(1817), - [anon_sym_u64] = ACTIONS(1817), - [anon_sym_i64] = ACTIONS(1817), - [anon_sym_u128] = ACTIONS(1817), - [anon_sym_i128] = ACTIONS(1817), - [anon_sym_isize] = ACTIONS(1817), - [anon_sym_usize] = ACTIONS(1817), - [anon_sym_f32] = ACTIONS(1817), - [anon_sym_f64] = ACTIONS(1817), - [anon_sym_bool] = ACTIONS(1817), - [anon_sym_str] = ACTIONS(1817), - [anon_sym_char] = ACTIONS(1817), - [anon_sym_DASH] = ACTIONS(1815), - [anon_sym_BANG] = ACTIONS(1815), - [anon_sym_AMP] = ACTIONS(1815), - [anon_sym_PIPE] = ACTIONS(1815), - [anon_sym_LT] = ACTIONS(1815), - [anon_sym_DOT_DOT] = ACTIONS(1815), - [anon_sym_COLON_COLON] = ACTIONS(1815), - [anon_sym_POUND] = ACTIONS(1815), - [anon_sym_SQUOTE] = ACTIONS(1817), - [anon_sym_async] = ACTIONS(1817), - [anon_sym_break] = ACTIONS(1817), - [anon_sym_const] = ACTIONS(1817), - [anon_sym_continue] = ACTIONS(1817), - [anon_sym_default] = ACTIONS(1817), - [anon_sym_enum] = ACTIONS(1817), - [anon_sym_fn] = ACTIONS(1817), - [anon_sym_for] = ACTIONS(1817), - [anon_sym_gen] = ACTIONS(1817), - [anon_sym_if] = ACTIONS(1817), - [anon_sym_impl] = ACTIONS(1817), - [anon_sym_let] = ACTIONS(1817), - [anon_sym_loop] = ACTIONS(1817), - [anon_sym_match] = ACTIONS(1817), - [anon_sym_mod] = ACTIONS(1817), - [anon_sym_pub] = ACTIONS(1817), - [anon_sym_return] = ACTIONS(1817), - [anon_sym_static] = ACTIONS(1817), - [anon_sym_struct] = ACTIONS(1817), - [anon_sym_trait] = ACTIONS(1817), - [anon_sym_type] = ACTIONS(1817), - [anon_sym_union] = ACTIONS(1817), - [anon_sym_unsafe] = ACTIONS(1817), - [anon_sym_use] = ACTIONS(1817), - [anon_sym_while] = ACTIONS(1817), - [anon_sym_extern] = ACTIONS(1817), - [anon_sym_yield] = ACTIONS(1817), - [anon_sym_move] = ACTIONS(1817), - [anon_sym_try] = ACTIONS(1817), - [sym_integer_literal] = ACTIONS(1815), - [aux_sym_string_literal_token1] = ACTIONS(1815), - [sym_char_literal] = ACTIONS(1815), - [anon_sym_true] = ACTIONS(1817), - [anon_sym_false] = ACTIONS(1817), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1817), - [sym_super] = ACTIONS(1817), - [sym_crate] = ACTIONS(1817), - [sym_metavariable] = ACTIONS(1815), - [sym__raw_string_literal_start] = ACTIONS(1815), - [sym_float_literal] = ACTIONS(1815), - }, - [517] = { - [sym_line_comment] = STATE(517), - [sym_block_comment] = STATE(517), - [ts_builtin_sym_end] = ACTIONS(1819), - [sym_identifier] = ACTIONS(1821), - [anon_sym_SEMI] = ACTIONS(1819), - [anon_sym_macro_rules_BANG] = ACTIONS(1819), - [anon_sym_LPAREN] = ACTIONS(1819), - [anon_sym_LBRACK] = ACTIONS(1819), - [anon_sym_LBRACE] = ACTIONS(1819), - [anon_sym_RBRACE] = ACTIONS(1819), - [anon_sym_STAR] = ACTIONS(1819), - [anon_sym_u8] = ACTIONS(1821), - [anon_sym_i8] = ACTIONS(1821), - [anon_sym_u16] = ACTIONS(1821), - [anon_sym_i16] = ACTIONS(1821), - [anon_sym_u32] = ACTIONS(1821), - [anon_sym_i32] = ACTIONS(1821), - [anon_sym_u64] = ACTIONS(1821), - [anon_sym_i64] = ACTIONS(1821), - [anon_sym_u128] = ACTIONS(1821), - [anon_sym_i128] = ACTIONS(1821), - [anon_sym_isize] = ACTIONS(1821), - [anon_sym_usize] = ACTIONS(1821), - [anon_sym_f32] = ACTIONS(1821), - [anon_sym_f64] = ACTIONS(1821), - [anon_sym_bool] = ACTIONS(1821), - [anon_sym_str] = ACTIONS(1821), - [anon_sym_char] = ACTIONS(1821), - [anon_sym_DASH] = ACTIONS(1819), - [anon_sym_BANG] = ACTIONS(1819), - [anon_sym_AMP] = ACTIONS(1819), - [anon_sym_PIPE] = ACTIONS(1819), - [anon_sym_LT] = ACTIONS(1819), - [anon_sym_DOT_DOT] = ACTIONS(1819), - [anon_sym_COLON_COLON] = ACTIONS(1819), - [anon_sym_POUND] = ACTIONS(1819), - [anon_sym_SQUOTE] = ACTIONS(1821), - [anon_sym_async] = ACTIONS(1821), - [anon_sym_break] = ACTIONS(1821), - [anon_sym_const] = ACTIONS(1821), - [anon_sym_continue] = ACTIONS(1821), - [anon_sym_default] = ACTIONS(1821), - [anon_sym_enum] = ACTIONS(1821), - [anon_sym_fn] = ACTIONS(1821), - [anon_sym_for] = ACTIONS(1821), - [anon_sym_gen] = ACTIONS(1821), - [anon_sym_if] = ACTIONS(1821), - [anon_sym_impl] = ACTIONS(1821), - [anon_sym_let] = ACTIONS(1821), - [anon_sym_loop] = ACTIONS(1821), - [anon_sym_match] = ACTIONS(1821), - [anon_sym_mod] = ACTIONS(1821), - [anon_sym_pub] = ACTIONS(1821), - [anon_sym_return] = ACTIONS(1821), - [anon_sym_static] = ACTIONS(1821), - [anon_sym_struct] = ACTIONS(1821), - [anon_sym_trait] = ACTIONS(1821), - [anon_sym_type] = ACTIONS(1821), - [anon_sym_union] = ACTIONS(1821), - [anon_sym_unsafe] = ACTIONS(1821), - [anon_sym_use] = ACTIONS(1821), - [anon_sym_while] = ACTIONS(1821), - [anon_sym_extern] = ACTIONS(1821), - [anon_sym_yield] = ACTIONS(1821), - [anon_sym_move] = ACTIONS(1821), - [anon_sym_try] = ACTIONS(1821), - [sym_integer_literal] = ACTIONS(1819), - [aux_sym_string_literal_token1] = ACTIONS(1819), - [sym_char_literal] = ACTIONS(1819), - [anon_sym_true] = ACTIONS(1821), - [anon_sym_false] = ACTIONS(1821), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1821), - [sym_super] = ACTIONS(1821), - [sym_crate] = ACTIONS(1821), - [sym_metavariable] = ACTIONS(1819), - [sym__raw_string_literal_start] = ACTIONS(1819), - [sym_float_literal] = ACTIONS(1819), - }, - [518] = { - [sym_line_comment] = STATE(518), - [sym_block_comment] = STATE(518), - [ts_builtin_sym_end] = ACTIONS(1823), - [sym_identifier] = ACTIONS(1825), - [anon_sym_SEMI] = ACTIONS(1823), - [anon_sym_macro_rules_BANG] = ACTIONS(1823), - [anon_sym_LPAREN] = ACTIONS(1823), - [anon_sym_LBRACK] = ACTIONS(1823), - [anon_sym_LBRACE] = ACTIONS(1823), - [anon_sym_RBRACE] = ACTIONS(1823), - [anon_sym_STAR] = ACTIONS(1823), - [anon_sym_u8] = ACTIONS(1825), - [anon_sym_i8] = ACTIONS(1825), - [anon_sym_u16] = ACTIONS(1825), - [anon_sym_i16] = ACTIONS(1825), - [anon_sym_u32] = ACTIONS(1825), - [anon_sym_i32] = ACTIONS(1825), - [anon_sym_u64] = ACTIONS(1825), - [anon_sym_i64] = ACTIONS(1825), - [anon_sym_u128] = ACTIONS(1825), - [anon_sym_i128] = ACTIONS(1825), - [anon_sym_isize] = ACTIONS(1825), - [anon_sym_usize] = ACTIONS(1825), - [anon_sym_f32] = ACTIONS(1825), - [anon_sym_f64] = ACTIONS(1825), - [anon_sym_bool] = ACTIONS(1825), - [anon_sym_str] = ACTIONS(1825), - [anon_sym_char] = ACTIONS(1825), - [anon_sym_DASH] = ACTIONS(1823), - [anon_sym_BANG] = ACTIONS(1823), - [anon_sym_AMP] = ACTIONS(1823), - [anon_sym_PIPE] = ACTIONS(1823), - [anon_sym_LT] = ACTIONS(1823), - [anon_sym_DOT_DOT] = ACTIONS(1823), - [anon_sym_COLON_COLON] = ACTIONS(1823), - [anon_sym_POUND] = ACTIONS(1823), - [anon_sym_SQUOTE] = ACTIONS(1825), - [anon_sym_async] = ACTIONS(1825), - [anon_sym_break] = ACTIONS(1825), - [anon_sym_const] = ACTIONS(1825), - [anon_sym_continue] = ACTIONS(1825), - [anon_sym_default] = ACTIONS(1825), - [anon_sym_enum] = ACTIONS(1825), - [anon_sym_fn] = ACTIONS(1825), - [anon_sym_for] = ACTIONS(1825), - [anon_sym_gen] = ACTIONS(1825), - [anon_sym_if] = ACTIONS(1825), - [anon_sym_impl] = ACTIONS(1825), - [anon_sym_let] = ACTIONS(1825), - [anon_sym_loop] = ACTIONS(1825), - [anon_sym_match] = ACTIONS(1825), - [anon_sym_mod] = ACTIONS(1825), - [anon_sym_pub] = ACTIONS(1825), - [anon_sym_return] = ACTIONS(1825), - [anon_sym_static] = ACTIONS(1825), - [anon_sym_struct] = ACTIONS(1825), - [anon_sym_trait] = ACTIONS(1825), - [anon_sym_type] = ACTIONS(1825), - [anon_sym_union] = ACTIONS(1825), - [anon_sym_unsafe] = ACTIONS(1825), - [anon_sym_use] = ACTIONS(1825), - [anon_sym_while] = ACTIONS(1825), - [anon_sym_extern] = ACTIONS(1825), - [anon_sym_yield] = ACTIONS(1825), - [anon_sym_move] = ACTIONS(1825), - [anon_sym_try] = ACTIONS(1825), - [sym_integer_literal] = ACTIONS(1823), - [aux_sym_string_literal_token1] = ACTIONS(1823), - [sym_char_literal] = ACTIONS(1823), - [anon_sym_true] = ACTIONS(1825), - [anon_sym_false] = ACTIONS(1825), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1825), - [sym_super] = ACTIONS(1825), - [sym_crate] = ACTIONS(1825), - [sym_metavariable] = ACTIONS(1823), - [sym__raw_string_literal_start] = ACTIONS(1823), - [sym_float_literal] = ACTIONS(1823), - }, - [519] = { - [sym_line_comment] = STATE(519), - [sym_block_comment] = STATE(519), - [ts_builtin_sym_end] = ACTIONS(1827), - [sym_identifier] = ACTIONS(1829), - [anon_sym_SEMI] = ACTIONS(1827), - [anon_sym_macro_rules_BANG] = ACTIONS(1827), - [anon_sym_LPAREN] = ACTIONS(1827), - [anon_sym_LBRACK] = ACTIONS(1827), - [anon_sym_LBRACE] = ACTIONS(1827), - [anon_sym_RBRACE] = ACTIONS(1827), - [anon_sym_STAR] = ACTIONS(1827), - [anon_sym_u8] = ACTIONS(1829), - [anon_sym_i8] = ACTIONS(1829), - [anon_sym_u16] = ACTIONS(1829), - [anon_sym_i16] = ACTIONS(1829), - [anon_sym_u32] = ACTIONS(1829), - [anon_sym_i32] = ACTIONS(1829), - [anon_sym_u64] = ACTIONS(1829), - [anon_sym_i64] = ACTIONS(1829), - [anon_sym_u128] = ACTIONS(1829), - [anon_sym_i128] = ACTIONS(1829), - [anon_sym_isize] = ACTIONS(1829), - [anon_sym_usize] = ACTIONS(1829), - [anon_sym_f32] = ACTIONS(1829), - [anon_sym_f64] = ACTIONS(1829), - [anon_sym_bool] = ACTIONS(1829), - [anon_sym_str] = ACTIONS(1829), - [anon_sym_char] = ACTIONS(1829), - [anon_sym_DASH] = ACTIONS(1827), - [anon_sym_BANG] = ACTIONS(1827), - [anon_sym_AMP] = ACTIONS(1827), - [anon_sym_PIPE] = ACTIONS(1827), - [anon_sym_LT] = ACTIONS(1827), - [anon_sym_DOT_DOT] = ACTIONS(1827), - [anon_sym_COLON_COLON] = ACTIONS(1827), - [anon_sym_POUND] = ACTIONS(1827), - [anon_sym_SQUOTE] = ACTIONS(1829), - [anon_sym_async] = ACTIONS(1829), - [anon_sym_break] = ACTIONS(1829), - [anon_sym_const] = ACTIONS(1829), - [anon_sym_continue] = ACTIONS(1829), - [anon_sym_default] = ACTIONS(1829), - [anon_sym_enum] = ACTIONS(1829), - [anon_sym_fn] = ACTIONS(1829), - [anon_sym_for] = ACTIONS(1829), - [anon_sym_gen] = ACTIONS(1829), - [anon_sym_if] = ACTIONS(1829), - [anon_sym_impl] = ACTIONS(1829), - [anon_sym_let] = ACTIONS(1829), - [anon_sym_loop] = ACTIONS(1829), - [anon_sym_match] = ACTIONS(1829), - [anon_sym_mod] = ACTIONS(1829), - [anon_sym_pub] = ACTIONS(1829), - [anon_sym_return] = ACTIONS(1829), - [anon_sym_static] = ACTIONS(1829), - [anon_sym_struct] = ACTIONS(1829), - [anon_sym_trait] = ACTIONS(1829), - [anon_sym_type] = ACTIONS(1829), - [anon_sym_union] = ACTIONS(1829), - [anon_sym_unsafe] = ACTIONS(1829), - [anon_sym_use] = ACTIONS(1829), - [anon_sym_while] = ACTIONS(1829), - [anon_sym_extern] = ACTIONS(1829), - [anon_sym_yield] = ACTIONS(1829), - [anon_sym_move] = ACTIONS(1829), - [anon_sym_try] = ACTIONS(1829), - [sym_integer_literal] = ACTIONS(1827), - [aux_sym_string_literal_token1] = ACTIONS(1827), - [sym_char_literal] = ACTIONS(1827), - [anon_sym_true] = ACTIONS(1829), - [anon_sym_false] = ACTIONS(1829), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1829), - [sym_super] = ACTIONS(1829), - [sym_crate] = ACTIONS(1829), - [sym_metavariable] = ACTIONS(1827), - [sym__raw_string_literal_start] = ACTIONS(1827), - [sym_float_literal] = ACTIONS(1827), - }, - [520] = { - [sym_line_comment] = STATE(520), - [sym_block_comment] = STATE(520), - [ts_builtin_sym_end] = ACTIONS(1831), - [sym_identifier] = ACTIONS(1833), - [anon_sym_SEMI] = ACTIONS(1831), - [anon_sym_macro_rules_BANG] = ACTIONS(1831), - [anon_sym_LPAREN] = ACTIONS(1831), - [anon_sym_LBRACK] = ACTIONS(1831), - [anon_sym_LBRACE] = ACTIONS(1831), - [anon_sym_RBRACE] = ACTIONS(1831), - [anon_sym_STAR] = ACTIONS(1831), - [anon_sym_u8] = ACTIONS(1833), - [anon_sym_i8] = ACTIONS(1833), - [anon_sym_u16] = ACTIONS(1833), - [anon_sym_i16] = ACTIONS(1833), - [anon_sym_u32] = ACTIONS(1833), - [anon_sym_i32] = ACTIONS(1833), - [anon_sym_u64] = ACTIONS(1833), - [anon_sym_i64] = ACTIONS(1833), - [anon_sym_u128] = ACTIONS(1833), - [anon_sym_i128] = ACTIONS(1833), - [anon_sym_isize] = ACTIONS(1833), - [anon_sym_usize] = ACTIONS(1833), - [anon_sym_f32] = ACTIONS(1833), - [anon_sym_f64] = ACTIONS(1833), - [anon_sym_bool] = ACTIONS(1833), - [anon_sym_str] = ACTIONS(1833), - [anon_sym_char] = ACTIONS(1833), - [anon_sym_DASH] = ACTIONS(1831), - [anon_sym_BANG] = ACTIONS(1831), - [anon_sym_AMP] = ACTIONS(1831), - [anon_sym_PIPE] = ACTIONS(1831), - [anon_sym_LT] = ACTIONS(1831), - [anon_sym_DOT_DOT] = ACTIONS(1831), - [anon_sym_COLON_COLON] = ACTIONS(1831), - [anon_sym_POUND] = ACTIONS(1831), - [anon_sym_SQUOTE] = ACTIONS(1833), - [anon_sym_async] = ACTIONS(1833), - [anon_sym_break] = ACTIONS(1833), - [anon_sym_const] = ACTIONS(1833), - [anon_sym_continue] = ACTIONS(1833), - [anon_sym_default] = ACTIONS(1833), - [anon_sym_enum] = ACTIONS(1833), - [anon_sym_fn] = ACTIONS(1833), - [anon_sym_for] = ACTIONS(1833), - [anon_sym_gen] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(1833), - [anon_sym_impl] = ACTIONS(1833), - [anon_sym_let] = ACTIONS(1833), - [anon_sym_loop] = ACTIONS(1833), - [anon_sym_match] = ACTIONS(1833), - [anon_sym_mod] = ACTIONS(1833), - [anon_sym_pub] = ACTIONS(1833), - [anon_sym_return] = ACTIONS(1833), - [anon_sym_static] = ACTIONS(1833), - [anon_sym_struct] = ACTIONS(1833), - [anon_sym_trait] = ACTIONS(1833), - [anon_sym_type] = ACTIONS(1833), - [anon_sym_union] = ACTIONS(1833), - [anon_sym_unsafe] = ACTIONS(1833), - [anon_sym_use] = ACTIONS(1833), - [anon_sym_while] = ACTIONS(1833), - [anon_sym_extern] = ACTIONS(1833), - [anon_sym_yield] = ACTIONS(1833), - [anon_sym_move] = ACTIONS(1833), - [anon_sym_try] = ACTIONS(1833), - [sym_integer_literal] = ACTIONS(1831), - [aux_sym_string_literal_token1] = ACTIONS(1831), - [sym_char_literal] = ACTIONS(1831), - [anon_sym_true] = ACTIONS(1833), - [anon_sym_false] = ACTIONS(1833), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1833), - [sym_super] = ACTIONS(1833), - [sym_crate] = ACTIONS(1833), - [sym_metavariable] = ACTIONS(1831), - [sym__raw_string_literal_start] = ACTIONS(1831), - [sym_float_literal] = ACTIONS(1831), - }, - [521] = { - [sym_line_comment] = STATE(521), - [sym_block_comment] = STATE(521), - [ts_builtin_sym_end] = ACTIONS(1835), - [sym_identifier] = ACTIONS(1837), - [anon_sym_SEMI] = ACTIONS(1835), - [anon_sym_macro_rules_BANG] = ACTIONS(1835), - [anon_sym_LPAREN] = ACTIONS(1835), - [anon_sym_LBRACK] = ACTIONS(1835), - [anon_sym_LBRACE] = ACTIONS(1835), - [anon_sym_RBRACE] = ACTIONS(1835), - [anon_sym_STAR] = ACTIONS(1835), - [anon_sym_u8] = ACTIONS(1837), - [anon_sym_i8] = ACTIONS(1837), - [anon_sym_u16] = ACTIONS(1837), - [anon_sym_i16] = ACTIONS(1837), - [anon_sym_u32] = ACTIONS(1837), - [anon_sym_i32] = ACTIONS(1837), - [anon_sym_u64] = ACTIONS(1837), - [anon_sym_i64] = ACTIONS(1837), - [anon_sym_u128] = ACTIONS(1837), - [anon_sym_i128] = ACTIONS(1837), - [anon_sym_isize] = ACTIONS(1837), - [anon_sym_usize] = ACTIONS(1837), - [anon_sym_f32] = ACTIONS(1837), - [anon_sym_f64] = ACTIONS(1837), - [anon_sym_bool] = ACTIONS(1837), - [anon_sym_str] = ACTIONS(1837), - [anon_sym_char] = ACTIONS(1837), - [anon_sym_DASH] = ACTIONS(1835), - [anon_sym_BANG] = ACTIONS(1835), - [anon_sym_AMP] = ACTIONS(1835), - [anon_sym_PIPE] = ACTIONS(1835), - [anon_sym_LT] = ACTIONS(1835), - [anon_sym_DOT_DOT] = ACTIONS(1835), - [anon_sym_COLON_COLON] = ACTIONS(1835), - [anon_sym_POUND] = ACTIONS(1835), - [anon_sym_SQUOTE] = ACTIONS(1837), - [anon_sym_async] = ACTIONS(1837), - [anon_sym_break] = ACTIONS(1837), - [anon_sym_const] = ACTIONS(1837), - [anon_sym_continue] = ACTIONS(1837), - [anon_sym_default] = ACTIONS(1837), - [anon_sym_enum] = ACTIONS(1837), - [anon_sym_fn] = ACTIONS(1837), - [anon_sym_for] = ACTIONS(1837), - [anon_sym_gen] = ACTIONS(1837), - [anon_sym_if] = ACTIONS(1837), - [anon_sym_impl] = ACTIONS(1837), - [anon_sym_let] = ACTIONS(1837), - [anon_sym_loop] = ACTIONS(1837), - [anon_sym_match] = ACTIONS(1837), - [anon_sym_mod] = ACTIONS(1837), - [anon_sym_pub] = ACTIONS(1837), - [anon_sym_return] = ACTIONS(1837), - [anon_sym_static] = ACTIONS(1837), - [anon_sym_struct] = ACTIONS(1837), - [anon_sym_trait] = ACTIONS(1837), - [anon_sym_type] = ACTIONS(1837), - [anon_sym_union] = ACTIONS(1837), - [anon_sym_unsafe] = ACTIONS(1837), - [anon_sym_use] = ACTIONS(1837), - [anon_sym_while] = ACTIONS(1837), - [anon_sym_extern] = ACTIONS(1837), - [anon_sym_yield] = ACTIONS(1837), - [anon_sym_move] = ACTIONS(1837), - [anon_sym_try] = ACTIONS(1837), - [sym_integer_literal] = ACTIONS(1835), - [aux_sym_string_literal_token1] = ACTIONS(1835), - [sym_char_literal] = ACTIONS(1835), - [anon_sym_true] = ACTIONS(1837), - [anon_sym_false] = ACTIONS(1837), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1837), - [sym_super] = ACTIONS(1837), - [sym_crate] = ACTIONS(1837), - [sym_metavariable] = ACTIONS(1835), - [sym__raw_string_literal_start] = ACTIONS(1835), - [sym_float_literal] = ACTIONS(1835), - }, - [522] = { - [sym_line_comment] = STATE(522), - [sym_block_comment] = STATE(522), - [ts_builtin_sym_end] = ACTIONS(1839), - [sym_identifier] = ACTIONS(1841), - [anon_sym_SEMI] = ACTIONS(1839), - [anon_sym_macro_rules_BANG] = ACTIONS(1839), - [anon_sym_LPAREN] = ACTIONS(1839), - [anon_sym_LBRACK] = ACTIONS(1839), - [anon_sym_LBRACE] = ACTIONS(1839), - [anon_sym_RBRACE] = ACTIONS(1839), - [anon_sym_STAR] = ACTIONS(1839), - [anon_sym_u8] = ACTIONS(1841), - [anon_sym_i8] = ACTIONS(1841), - [anon_sym_u16] = ACTIONS(1841), - [anon_sym_i16] = ACTIONS(1841), - [anon_sym_u32] = ACTIONS(1841), - [anon_sym_i32] = ACTIONS(1841), - [anon_sym_u64] = ACTIONS(1841), - [anon_sym_i64] = ACTIONS(1841), - [anon_sym_u128] = ACTIONS(1841), - [anon_sym_i128] = ACTIONS(1841), - [anon_sym_isize] = ACTIONS(1841), - [anon_sym_usize] = ACTIONS(1841), - [anon_sym_f32] = ACTIONS(1841), - [anon_sym_f64] = ACTIONS(1841), - [anon_sym_bool] = ACTIONS(1841), - [anon_sym_str] = ACTIONS(1841), - [anon_sym_char] = ACTIONS(1841), - [anon_sym_DASH] = ACTIONS(1839), - [anon_sym_BANG] = ACTIONS(1839), - [anon_sym_AMP] = ACTIONS(1839), - [anon_sym_PIPE] = ACTIONS(1839), - [anon_sym_LT] = ACTIONS(1839), - [anon_sym_DOT_DOT] = ACTIONS(1839), - [anon_sym_COLON_COLON] = ACTIONS(1839), - [anon_sym_POUND] = ACTIONS(1839), - [anon_sym_SQUOTE] = ACTIONS(1841), - [anon_sym_async] = ACTIONS(1841), - [anon_sym_break] = ACTIONS(1841), - [anon_sym_const] = ACTIONS(1841), - [anon_sym_continue] = ACTIONS(1841), - [anon_sym_default] = ACTIONS(1841), - [anon_sym_enum] = ACTIONS(1841), - [anon_sym_fn] = ACTIONS(1841), - [anon_sym_for] = ACTIONS(1841), - [anon_sym_gen] = ACTIONS(1841), - [anon_sym_if] = ACTIONS(1841), - [anon_sym_impl] = ACTIONS(1841), - [anon_sym_let] = ACTIONS(1841), - [anon_sym_loop] = ACTIONS(1841), - [anon_sym_match] = ACTIONS(1841), - [anon_sym_mod] = ACTIONS(1841), - [anon_sym_pub] = ACTIONS(1841), - [anon_sym_return] = ACTIONS(1841), - [anon_sym_static] = ACTIONS(1841), - [anon_sym_struct] = ACTIONS(1841), - [anon_sym_trait] = ACTIONS(1841), - [anon_sym_type] = ACTIONS(1841), - [anon_sym_union] = ACTIONS(1841), - [anon_sym_unsafe] = ACTIONS(1841), - [anon_sym_use] = ACTIONS(1841), - [anon_sym_while] = ACTIONS(1841), - [anon_sym_extern] = ACTIONS(1841), - [anon_sym_yield] = ACTIONS(1841), - [anon_sym_move] = ACTIONS(1841), - [anon_sym_try] = ACTIONS(1841), - [sym_integer_literal] = ACTIONS(1839), - [aux_sym_string_literal_token1] = ACTIONS(1839), - [sym_char_literal] = ACTIONS(1839), - [anon_sym_true] = ACTIONS(1841), - [anon_sym_false] = ACTIONS(1841), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1841), - [sym_super] = ACTIONS(1841), - [sym_crate] = ACTIONS(1841), - [sym_metavariable] = ACTIONS(1839), - [sym__raw_string_literal_start] = ACTIONS(1839), - [sym_float_literal] = ACTIONS(1839), - }, - [523] = { - [sym_line_comment] = STATE(523), - [sym_block_comment] = STATE(523), [ts_builtin_sym_end] = ACTIONS(1843), [sym_identifier] = ACTIONS(1845), [anon_sym_SEMI] = ACTIONS(1843), @@ -73197,9 +72950,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1843), [sym_float_literal] = ACTIONS(1843), }, - [524] = { - [sym_line_comment] = STATE(524), - [sym_block_comment] = STATE(524), + [501] = { + [sym_line_comment] = STATE(501), + [sym_block_comment] = STATE(501), [ts_builtin_sym_end] = ACTIONS(1847), [sym_identifier] = ACTIONS(1849), [anon_sym_SEMI] = ACTIONS(1847), @@ -73278,9 +73031,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1847), [sym_float_literal] = ACTIONS(1847), }, - [525] = { - [sym_line_comment] = STATE(525), - [sym_block_comment] = STATE(525), + [502] = { + [sym_line_comment] = STATE(502), + [sym_block_comment] = STATE(502), [ts_builtin_sym_end] = ACTIONS(1851), [sym_identifier] = ACTIONS(1853), [anon_sym_SEMI] = ACTIONS(1851), @@ -73359,9 +73112,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1851), [sym_float_literal] = ACTIONS(1851), }, - [526] = { - [sym_line_comment] = STATE(526), - [sym_block_comment] = STATE(526), + [503] = { + [sym_line_comment] = STATE(503), + [sym_block_comment] = STATE(503), [ts_builtin_sym_end] = ACTIONS(1855), [sym_identifier] = ACTIONS(1857), [anon_sym_SEMI] = ACTIONS(1855), @@ -73440,9 +73193,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1855), [sym_float_literal] = ACTIONS(1855), }, - [527] = { - [sym_line_comment] = STATE(527), - [sym_block_comment] = STATE(527), + [504] = { + [sym_line_comment] = STATE(504), + [sym_block_comment] = STATE(504), [ts_builtin_sym_end] = ACTIONS(1859), [sym_identifier] = ACTIONS(1861), [anon_sym_SEMI] = ACTIONS(1859), @@ -73521,9 +73274,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1859), [sym_float_literal] = ACTIONS(1859), }, - [528] = { - [sym_line_comment] = STATE(528), - [sym_block_comment] = STATE(528), + [505] = { + [sym_line_comment] = STATE(505), + [sym_block_comment] = STATE(505), [ts_builtin_sym_end] = ACTIONS(1863), [sym_identifier] = ACTIONS(1865), [anon_sym_SEMI] = ACTIONS(1863), @@ -73602,9 +73355,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1863), [sym_float_literal] = ACTIONS(1863), }, - [529] = { - [sym_line_comment] = STATE(529), - [sym_block_comment] = STATE(529), + [506] = { + [sym_line_comment] = STATE(506), + [sym_block_comment] = STATE(506), [ts_builtin_sym_end] = ACTIONS(1867), [sym_identifier] = ACTIONS(1869), [anon_sym_SEMI] = ACTIONS(1867), @@ -73683,9 +73436,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1867), [sym_float_literal] = ACTIONS(1867), }, - [530] = { - [sym_line_comment] = STATE(530), - [sym_block_comment] = STATE(530), + [507] = { + [sym_line_comment] = STATE(507), + [sym_block_comment] = STATE(507), [ts_builtin_sym_end] = ACTIONS(1871), [sym_identifier] = ACTIONS(1873), [anon_sym_SEMI] = ACTIONS(1871), @@ -73764,9 +73517,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1871), [sym_float_literal] = ACTIONS(1871), }, - [531] = { - [sym_line_comment] = STATE(531), - [sym_block_comment] = STATE(531), + [508] = { + [sym_line_comment] = STATE(508), + [sym_block_comment] = STATE(508), [ts_builtin_sym_end] = ACTIONS(1875), [sym_identifier] = ACTIONS(1877), [anon_sym_SEMI] = ACTIONS(1875), @@ -73845,9 +73598,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1875), [sym_float_literal] = ACTIONS(1875), }, - [532] = { - [sym_line_comment] = STATE(532), - [sym_block_comment] = STATE(532), + [509] = { + [sym_line_comment] = STATE(509), + [sym_block_comment] = STATE(509), [ts_builtin_sym_end] = ACTIONS(1879), [sym_identifier] = ACTIONS(1881), [anon_sym_SEMI] = ACTIONS(1879), @@ -73926,9 +73679,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1879), [sym_float_literal] = ACTIONS(1879), }, - [533] = { - [sym_line_comment] = STATE(533), - [sym_block_comment] = STATE(533), + [510] = { + [sym_line_comment] = STATE(510), + [sym_block_comment] = STATE(510), [ts_builtin_sym_end] = ACTIONS(1883), [sym_identifier] = ACTIONS(1885), [anon_sym_SEMI] = ACTIONS(1883), @@ -74007,9 +73760,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1883), [sym_float_literal] = ACTIONS(1883), }, - [534] = { - [sym_line_comment] = STATE(534), - [sym_block_comment] = STATE(534), + [511] = { + [sym_line_comment] = STATE(511), + [sym_block_comment] = STATE(511), [ts_builtin_sym_end] = ACTIONS(1887), [sym_identifier] = ACTIONS(1889), [anon_sym_SEMI] = ACTIONS(1887), @@ -74088,9 +73841,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1887), [sym_float_literal] = ACTIONS(1887), }, - [535] = { - [sym_line_comment] = STATE(535), - [sym_block_comment] = STATE(535), + [512] = { + [sym_line_comment] = STATE(512), + [sym_block_comment] = STATE(512), + [ts_builtin_sym_end] = ACTIONS(1261), + [sym_identifier] = ACTIONS(1263), + [anon_sym_SEMI] = ACTIONS(1261), + [anon_sym_macro_rules_BANG] = ACTIONS(1261), + [anon_sym_LPAREN] = ACTIONS(1261), + [anon_sym_LBRACK] = ACTIONS(1261), + [anon_sym_LBRACE] = ACTIONS(1261), + [anon_sym_RBRACE] = ACTIONS(1261), + [anon_sym_STAR] = ACTIONS(1261), + [anon_sym_u8] = ACTIONS(1263), + [anon_sym_i8] = ACTIONS(1263), + [anon_sym_u16] = ACTIONS(1263), + [anon_sym_i16] = ACTIONS(1263), + [anon_sym_u32] = ACTIONS(1263), + [anon_sym_i32] = ACTIONS(1263), + [anon_sym_u64] = ACTIONS(1263), + [anon_sym_i64] = ACTIONS(1263), + [anon_sym_u128] = ACTIONS(1263), + [anon_sym_i128] = ACTIONS(1263), + [anon_sym_isize] = ACTIONS(1263), + [anon_sym_usize] = ACTIONS(1263), + [anon_sym_f32] = ACTIONS(1263), + [anon_sym_f64] = ACTIONS(1263), + [anon_sym_bool] = ACTIONS(1263), + [anon_sym_str] = ACTIONS(1263), + [anon_sym_char] = ACTIONS(1263), + [anon_sym_DASH] = ACTIONS(1261), + [anon_sym_BANG] = ACTIONS(1261), + [anon_sym_AMP] = ACTIONS(1261), + [anon_sym_PIPE] = ACTIONS(1261), + [anon_sym_LT] = ACTIONS(1261), + [anon_sym_DOT_DOT] = ACTIONS(1261), + [anon_sym_COLON_COLON] = ACTIONS(1261), + [anon_sym_POUND] = ACTIONS(1261), + [anon_sym_SQUOTE] = ACTIONS(1263), + [anon_sym_async] = ACTIONS(1263), + [anon_sym_break] = ACTIONS(1263), + [anon_sym_const] = ACTIONS(1263), + [anon_sym_continue] = ACTIONS(1263), + [anon_sym_default] = ACTIONS(1263), + [anon_sym_enum] = ACTIONS(1263), + [anon_sym_fn] = ACTIONS(1263), + [anon_sym_for] = ACTIONS(1263), + [anon_sym_gen] = ACTIONS(1263), + [anon_sym_if] = ACTIONS(1263), + [anon_sym_impl] = ACTIONS(1263), + [anon_sym_let] = ACTIONS(1263), + [anon_sym_loop] = ACTIONS(1263), + [anon_sym_match] = ACTIONS(1263), + [anon_sym_mod] = ACTIONS(1263), + [anon_sym_pub] = ACTIONS(1263), + [anon_sym_return] = ACTIONS(1263), + [anon_sym_static] = ACTIONS(1263), + [anon_sym_struct] = ACTIONS(1263), + [anon_sym_trait] = ACTIONS(1263), + [anon_sym_type] = ACTIONS(1263), + [anon_sym_union] = ACTIONS(1263), + [anon_sym_unsafe] = ACTIONS(1263), + [anon_sym_use] = ACTIONS(1263), + [anon_sym_while] = ACTIONS(1263), + [anon_sym_extern] = ACTIONS(1263), + [anon_sym_yield] = ACTIONS(1263), + [anon_sym_move] = ACTIONS(1263), + [anon_sym_try] = ACTIONS(1263), + [sym_integer_literal] = ACTIONS(1261), + [aux_sym_string_literal_token1] = ACTIONS(1261), + [sym_char_literal] = ACTIONS(1261), + [anon_sym_true] = ACTIONS(1263), + [anon_sym_false] = ACTIONS(1263), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1263), + [sym_super] = ACTIONS(1263), + [sym_crate] = ACTIONS(1263), + [sym_metavariable] = ACTIONS(1261), + [sym__raw_string_literal_start] = ACTIONS(1261), + [sym_float_literal] = ACTIONS(1261), + }, + [513] = { + [sym_line_comment] = STATE(513), + [sym_block_comment] = STATE(513), [ts_builtin_sym_end] = ACTIONS(1891), [sym_identifier] = ACTIONS(1893), [anon_sym_SEMI] = ACTIONS(1891), @@ -74169,9 +74003,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1891), [sym_float_literal] = ACTIONS(1891), }, - [536] = { - [sym_line_comment] = STATE(536), - [sym_block_comment] = STATE(536), + [514] = { + [sym_line_comment] = STATE(514), + [sym_block_comment] = STATE(514), [ts_builtin_sym_end] = ACTIONS(1895), [sym_identifier] = ACTIONS(1897), [anon_sym_SEMI] = ACTIONS(1895), @@ -74250,9 +74084,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1895), [sym_float_literal] = ACTIONS(1895), }, - [537] = { - [sym_line_comment] = STATE(537), - [sym_block_comment] = STATE(537), + [515] = { + [sym_line_comment] = STATE(515), + [sym_block_comment] = STATE(515), [ts_builtin_sym_end] = ACTIONS(1899), [sym_identifier] = ACTIONS(1901), [anon_sym_SEMI] = ACTIONS(1899), @@ -74331,9 +74165,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1899), [sym_float_literal] = ACTIONS(1899), }, - [538] = { - [sym_line_comment] = STATE(538), - [sym_block_comment] = STATE(538), + [516] = { + [sym_line_comment] = STATE(516), + [sym_block_comment] = STATE(516), [ts_builtin_sym_end] = ACTIONS(1903), [sym_identifier] = ACTIONS(1905), [anon_sym_SEMI] = ACTIONS(1903), @@ -74412,9 +74246,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1903), [sym_float_literal] = ACTIONS(1903), }, - [539] = { - [sym_line_comment] = STATE(539), - [sym_block_comment] = STATE(539), + [517] = { + [sym_line_comment] = STATE(517), + [sym_block_comment] = STATE(517), [ts_builtin_sym_end] = ACTIONS(1907), [sym_identifier] = ACTIONS(1909), [anon_sym_SEMI] = ACTIONS(1907), @@ -74493,9 +74327,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1907), [sym_float_literal] = ACTIONS(1907), }, - [540] = { - [sym_line_comment] = STATE(540), - [sym_block_comment] = STATE(540), + [518] = { + [sym_line_comment] = STATE(518), + [sym_block_comment] = STATE(518), [ts_builtin_sym_end] = ACTIONS(1911), [sym_identifier] = ACTIONS(1913), [anon_sym_SEMI] = ACTIONS(1911), @@ -74574,9 +74408,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1911), [sym_float_literal] = ACTIONS(1911), }, - [541] = { - [sym_line_comment] = STATE(541), - [sym_block_comment] = STATE(541), + [519] = { + [sym_line_comment] = STATE(519), + [sym_block_comment] = STATE(519), [ts_builtin_sym_end] = ACTIONS(1915), [sym_identifier] = ACTIONS(1917), [anon_sym_SEMI] = ACTIONS(1915), @@ -74655,9 +74489,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1915), [sym_float_literal] = ACTIONS(1915), }, - [542] = { - [sym_line_comment] = STATE(542), - [sym_block_comment] = STATE(542), + [520] = { + [sym_line_comment] = STATE(520), + [sym_block_comment] = STATE(520), [ts_builtin_sym_end] = ACTIONS(1919), [sym_identifier] = ACTIONS(1921), [anon_sym_SEMI] = ACTIONS(1919), @@ -74736,9 +74570,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1919), [sym_float_literal] = ACTIONS(1919), }, - [543] = { - [sym_line_comment] = STATE(543), - [sym_block_comment] = STATE(543), + [521] = { + [sym_line_comment] = STATE(521), + [sym_block_comment] = STATE(521), [ts_builtin_sym_end] = ACTIONS(1923), [sym_identifier] = ACTIONS(1925), [anon_sym_SEMI] = ACTIONS(1923), @@ -74817,9 +74651,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1923), [sym_float_literal] = ACTIONS(1923), }, - [544] = { - [sym_line_comment] = STATE(544), - [sym_block_comment] = STATE(544), + [522] = { + [sym_line_comment] = STATE(522), + [sym_block_comment] = STATE(522), [ts_builtin_sym_end] = ACTIONS(1927), [sym_identifier] = ACTIONS(1929), [anon_sym_SEMI] = ACTIONS(1927), @@ -74898,9 +74732,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1927), [sym_float_literal] = ACTIONS(1927), }, - [545] = { - [sym_line_comment] = STATE(545), - [sym_block_comment] = STATE(545), + [523] = { + [sym_line_comment] = STATE(523), + [sym_block_comment] = STATE(523), [ts_builtin_sym_end] = ACTIONS(1931), [sym_identifier] = ACTIONS(1933), [anon_sym_SEMI] = ACTIONS(1931), @@ -74979,9 +74813,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1931), [sym_float_literal] = ACTIONS(1931), }, - [546] = { - [sym_line_comment] = STATE(546), - [sym_block_comment] = STATE(546), + [524] = { + [sym_line_comment] = STATE(524), + [sym_block_comment] = STATE(524), [ts_builtin_sym_end] = ACTIONS(1935), [sym_identifier] = ACTIONS(1937), [anon_sym_SEMI] = ACTIONS(1935), @@ -75060,9 +74894,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1935), [sym_float_literal] = ACTIONS(1935), }, - [547] = { - [sym_line_comment] = STATE(547), - [sym_block_comment] = STATE(547), + [525] = { + [sym_line_comment] = STATE(525), + [sym_block_comment] = STATE(525), [ts_builtin_sym_end] = ACTIONS(1939), [sym_identifier] = ACTIONS(1941), [anon_sym_SEMI] = ACTIONS(1939), @@ -75141,9 +74975,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1939), [sym_float_literal] = ACTIONS(1939), }, - [548] = { - [sym_line_comment] = STATE(548), - [sym_block_comment] = STATE(548), + [526] = { + [sym_line_comment] = STATE(526), + [sym_block_comment] = STATE(526), [ts_builtin_sym_end] = ACTIONS(1943), [sym_identifier] = ACTIONS(1945), [anon_sym_SEMI] = ACTIONS(1943), @@ -75222,9 +75056,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1943), [sym_float_literal] = ACTIONS(1943), }, - [549] = { - [sym_line_comment] = STATE(549), - [sym_block_comment] = STATE(549), + [527] = { + [sym_line_comment] = STATE(527), + [sym_block_comment] = STATE(527), [ts_builtin_sym_end] = ACTIONS(1947), [sym_identifier] = ACTIONS(1949), [anon_sym_SEMI] = ACTIONS(1947), @@ -75303,9 +75137,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1947), [sym_float_literal] = ACTIONS(1947), }, - [550] = { - [sym_line_comment] = STATE(550), - [sym_block_comment] = STATE(550), + [528] = { + [sym_line_comment] = STATE(528), + [sym_block_comment] = STATE(528), [ts_builtin_sym_end] = ACTIONS(1951), [sym_identifier] = ACTIONS(1953), [anon_sym_SEMI] = ACTIONS(1951), @@ -75384,9 +75218,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1951), [sym_float_literal] = ACTIONS(1951), }, - [551] = { - [sym_line_comment] = STATE(551), - [sym_block_comment] = STATE(551), + [529] = { + [sym_line_comment] = STATE(529), + [sym_block_comment] = STATE(529), [ts_builtin_sym_end] = ACTIONS(1955), [sym_identifier] = ACTIONS(1957), [anon_sym_SEMI] = ACTIONS(1955), @@ -75465,9 +75299,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1955), [sym_float_literal] = ACTIONS(1955), }, - [552] = { - [sym_line_comment] = STATE(552), - [sym_block_comment] = STATE(552), + [530] = { + [sym_line_comment] = STATE(530), + [sym_block_comment] = STATE(530), [ts_builtin_sym_end] = ACTIONS(1959), [sym_identifier] = ACTIONS(1961), [anon_sym_SEMI] = ACTIONS(1959), @@ -75546,9 +75380,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1959), [sym_float_literal] = ACTIONS(1959), }, - [553] = { - [sym_line_comment] = STATE(553), - [sym_block_comment] = STATE(553), + [531] = { + [sym_line_comment] = STATE(531), + [sym_block_comment] = STATE(531), [ts_builtin_sym_end] = ACTIONS(1963), [sym_identifier] = ACTIONS(1965), [anon_sym_SEMI] = ACTIONS(1963), @@ -75627,9 +75461,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1963), [sym_float_literal] = ACTIONS(1963), }, - [554] = { - [sym_line_comment] = STATE(554), - [sym_block_comment] = STATE(554), + [532] = { + [sym_line_comment] = STATE(532), + [sym_block_comment] = STATE(532), [ts_builtin_sym_end] = ACTIONS(1967), [sym_identifier] = ACTIONS(1969), [anon_sym_SEMI] = ACTIONS(1967), @@ -75708,9 +75542,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1967), [sym_float_literal] = ACTIONS(1967), }, - [555] = { - [sym_line_comment] = STATE(555), - [sym_block_comment] = STATE(555), + [533] = { + [sym_line_comment] = STATE(533), + [sym_block_comment] = STATE(533), [ts_builtin_sym_end] = ACTIONS(1971), [sym_identifier] = ACTIONS(1973), [anon_sym_SEMI] = ACTIONS(1971), @@ -75789,9 +75623,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1971), [sym_float_literal] = ACTIONS(1971), }, - [556] = { - [sym_line_comment] = STATE(556), - [sym_block_comment] = STATE(556), + [534] = { + [sym_line_comment] = STATE(534), + [sym_block_comment] = STATE(534), [ts_builtin_sym_end] = ACTIONS(1975), [sym_identifier] = ACTIONS(1977), [anon_sym_SEMI] = ACTIONS(1975), @@ -75870,9 +75704,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1975), [sym_float_literal] = ACTIONS(1975), }, - [557] = { - [sym_line_comment] = STATE(557), - [sym_block_comment] = STATE(557), + [535] = { + [sym_line_comment] = STATE(535), + [sym_block_comment] = STATE(535), [ts_builtin_sym_end] = ACTIONS(1979), [sym_identifier] = ACTIONS(1981), [anon_sym_SEMI] = ACTIONS(1979), @@ -75951,9 +75785,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1979), [sym_float_literal] = ACTIONS(1979), }, - [558] = { - [sym_line_comment] = STATE(558), - [sym_block_comment] = STATE(558), + [536] = { + [sym_line_comment] = STATE(536), + [sym_block_comment] = STATE(536), [ts_builtin_sym_end] = ACTIONS(1983), [sym_identifier] = ACTIONS(1985), [anon_sym_SEMI] = ACTIONS(1983), @@ -76032,9 +75866,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1983), [sym_float_literal] = ACTIONS(1983), }, - [559] = { - [sym_line_comment] = STATE(559), - [sym_block_comment] = STATE(559), + [537] = { + [sym_line_comment] = STATE(537), + [sym_block_comment] = STATE(537), [ts_builtin_sym_end] = ACTIONS(1987), [sym_identifier] = ACTIONS(1989), [anon_sym_SEMI] = ACTIONS(1987), @@ -76113,9 +75947,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1987), [sym_float_literal] = ACTIONS(1987), }, - [560] = { - [sym_line_comment] = STATE(560), - [sym_block_comment] = STATE(560), + [538] = { + [sym_line_comment] = STATE(538), + [sym_block_comment] = STATE(538), [ts_builtin_sym_end] = ACTIONS(1991), [sym_identifier] = ACTIONS(1993), [anon_sym_SEMI] = ACTIONS(1991), @@ -76194,9 +76028,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1991), [sym_float_literal] = ACTIONS(1991), }, - [561] = { - [sym_line_comment] = STATE(561), - [sym_block_comment] = STATE(561), + [539] = { + [sym_line_comment] = STATE(539), + [sym_block_comment] = STATE(539), [ts_builtin_sym_end] = ACTIONS(1995), [sym_identifier] = ACTIONS(1997), [anon_sym_SEMI] = ACTIONS(1995), @@ -76275,9 +76109,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1995), [sym_float_literal] = ACTIONS(1995), }, - [562] = { - [sym_line_comment] = STATE(562), - [sym_block_comment] = STATE(562), + [540] = { + [sym_line_comment] = STATE(540), + [sym_block_comment] = STATE(540), [ts_builtin_sym_end] = ACTIONS(1999), [sym_identifier] = ACTIONS(2001), [anon_sym_SEMI] = ACTIONS(1999), @@ -76356,6327 +76190,6975 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1999), [sym_float_literal] = ACTIONS(1999), }, + [541] = { + [sym_attribute_item] = STATE(1649), + [sym_inner_attribute_item] = STATE(1649), + [sym_bracketed_type] = STATE(4029), + [sym_generic_type] = STATE(3972), + [sym_generic_type_with_turbofish] = STATE(3589), + [sym_macro_invocation] = STATE(3205), + [sym_scoped_identifier] = STATE(2461), + [sym_scoped_type_identifier] = STATE(3294), + [sym_match_arm] = STATE(1654), + [sym_match_pattern] = STATE(3827), + [sym_const_block] = STATE(3205), + [sym__pattern] = STATE(3193), + [sym_tuple_pattern] = STATE(3205), + [sym_slice_pattern] = STATE(3205), + [sym_tuple_struct_pattern] = STATE(3205), + [sym_struct_pattern] = STATE(3205), + [sym_remaining_field_pattern] = STATE(3205), + [sym_mut_pattern] = STATE(3205), + [sym_range_pattern] = STATE(3205), + [sym_ref_pattern] = STATE(3205), + [sym_captured_pattern] = STATE(3205), + [sym_reference_pattern] = STATE(3205), + [sym_or_pattern] = STATE(3205), + [sym__literal_pattern] = STATE(2617), + [sym_negative_literal] = STATE(2620), + [sym_string_literal] = STATE(2620), + [sym_raw_string_literal] = STATE(2620), + [sym_boolean_literal] = STATE(2620), + [sym_line_comment] = STATE(541), + [sym_block_comment] = STATE(541), + [aux_sym_match_block_repeat1] = STATE(541), + [aux_sym_match_arm_repeat1] = STATE(877), + [sym_identifier] = ACTIONS(2003), + [anon_sym_LPAREN] = ACTIONS(2006), + [anon_sym_LBRACK] = ACTIONS(2009), + [anon_sym_u8] = ACTIONS(2012), + [anon_sym_i8] = ACTIONS(2012), + [anon_sym_u16] = ACTIONS(2012), + [anon_sym_i16] = ACTIONS(2012), + [anon_sym_u32] = ACTIONS(2012), + [anon_sym_i32] = ACTIONS(2012), + [anon_sym_u64] = ACTIONS(2012), + [anon_sym_i64] = ACTIONS(2012), + [anon_sym_u128] = ACTIONS(2012), + [anon_sym_i128] = ACTIONS(2012), + [anon_sym_isize] = ACTIONS(2012), + [anon_sym_usize] = ACTIONS(2012), + [anon_sym_f32] = ACTIONS(2012), + [anon_sym_f64] = ACTIONS(2012), + [anon_sym_bool] = ACTIONS(2012), + [anon_sym_str] = ACTIONS(2012), + [anon_sym_char] = ACTIONS(2012), + [anon_sym_DASH] = ACTIONS(2015), + [anon_sym_AMP] = ACTIONS(2018), + [anon_sym_PIPE] = ACTIONS(2021), + [anon_sym_LT] = ACTIONS(2024), + [anon_sym__] = ACTIONS(2027), + [anon_sym_DOT_DOT] = ACTIONS(2030), + [anon_sym_COLON_COLON] = ACTIONS(2033), + [anon_sym_POUND] = ACTIONS(2036), + [anon_sym_const] = ACTIONS(2039), + [anon_sym_default] = ACTIONS(2042), + [anon_sym_gen] = ACTIONS(2042), + [anon_sym_union] = ACTIONS(2042), + [anon_sym_ref] = ACTIONS(2045), + [sym_mutable_specifier] = ACTIONS(2048), + [sym_integer_literal] = ACTIONS(2051), + [aux_sym_string_literal_token1] = ACTIONS(2054), + [sym_char_literal] = ACTIONS(2051), + [anon_sym_true] = ACTIONS(2057), + [anon_sym_false] = ACTIONS(2057), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2060), + [sym_super] = ACTIONS(2060), + [sym_crate] = ACTIONS(2060), + [sym_metavariable] = ACTIONS(2063), + [sym__raw_string_literal_start] = ACTIONS(2066), + [sym_float_literal] = ACTIONS(2051), + }, + [542] = { + [sym_line_comment] = STATE(542), + [sym_block_comment] = STATE(542), + [ts_builtin_sym_end] = ACTIONS(2069), + [sym_identifier] = ACTIONS(2071), + [anon_sym_SEMI] = ACTIONS(2069), + [anon_sym_macro_rules_BANG] = ACTIONS(2069), + [anon_sym_LPAREN] = ACTIONS(2069), + [anon_sym_LBRACK] = ACTIONS(2069), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_RBRACE] = ACTIONS(2069), + [anon_sym_STAR] = ACTIONS(2069), + [anon_sym_u8] = ACTIONS(2071), + [anon_sym_i8] = ACTIONS(2071), + [anon_sym_u16] = ACTIONS(2071), + [anon_sym_i16] = ACTIONS(2071), + [anon_sym_u32] = ACTIONS(2071), + [anon_sym_i32] = ACTIONS(2071), + [anon_sym_u64] = ACTIONS(2071), + [anon_sym_i64] = ACTIONS(2071), + [anon_sym_u128] = ACTIONS(2071), + [anon_sym_i128] = ACTIONS(2071), + [anon_sym_isize] = ACTIONS(2071), + [anon_sym_usize] = ACTIONS(2071), + [anon_sym_f32] = ACTIONS(2071), + [anon_sym_f64] = ACTIONS(2071), + [anon_sym_bool] = ACTIONS(2071), + [anon_sym_str] = ACTIONS(2071), + [anon_sym_char] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2069), + [anon_sym_BANG] = ACTIONS(2069), + [anon_sym_AMP] = ACTIONS(2069), + [anon_sym_PIPE] = ACTIONS(2069), + [anon_sym_LT] = ACTIONS(2069), + [anon_sym_DOT_DOT] = ACTIONS(2069), + [anon_sym_COLON_COLON] = ACTIONS(2069), + [anon_sym_POUND] = ACTIONS(2069), + [anon_sym_SQUOTE] = ACTIONS(2071), + [anon_sym_async] = ACTIONS(2071), + [anon_sym_break] = ACTIONS(2071), + [anon_sym_const] = ACTIONS(2071), + [anon_sym_continue] = ACTIONS(2071), + [anon_sym_default] = ACTIONS(2071), + [anon_sym_enum] = ACTIONS(2071), + [anon_sym_fn] = ACTIONS(2071), + [anon_sym_for] = ACTIONS(2071), + [anon_sym_gen] = ACTIONS(2071), + [anon_sym_if] = ACTIONS(2071), + [anon_sym_impl] = ACTIONS(2071), + [anon_sym_let] = ACTIONS(2071), + [anon_sym_loop] = ACTIONS(2071), + [anon_sym_match] = ACTIONS(2071), + [anon_sym_mod] = ACTIONS(2071), + [anon_sym_pub] = ACTIONS(2071), + [anon_sym_return] = ACTIONS(2071), + [anon_sym_static] = ACTIONS(2071), + [anon_sym_struct] = ACTIONS(2071), + [anon_sym_trait] = ACTIONS(2071), + [anon_sym_type] = ACTIONS(2071), + [anon_sym_union] = ACTIONS(2071), + [anon_sym_unsafe] = ACTIONS(2071), + [anon_sym_use] = ACTIONS(2071), + [anon_sym_while] = ACTIONS(2071), + [anon_sym_extern] = ACTIONS(2071), + [anon_sym_yield] = ACTIONS(2071), + [anon_sym_move] = ACTIONS(2071), + [anon_sym_try] = ACTIONS(2071), + [sym_integer_literal] = ACTIONS(2069), + [aux_sym_string_literal_token1] = ACTIONS(2069), + [sym_char_literal] = ACTIONS(2069), + [anon_sym_true] = ACTIONS(2071), + [anon_sym_false] = ACTIONS(2071), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2071), + [sym_super] = ACTIONS(2071), + [sym_crate] = ACTIONS(2071), + [sym_metavariable] = ACTIONS(2069), + [sym__raw_string_literal_start] = ACTIONS(2069), + [sym_float_literal] = ACTIONS(2069), + }, + [543] = { + [sym_line_comment] = STATE(543), + [sym_block_comment] = STATE(543), + [ts_builtin_sym_end] = ACTIONS(2073), + [sym_identifier] = ACTIONS(2075), + [anon_sym_SEMI] = ACTIONS(2073), + [anon_sym_macro_rules_BANG] = ACTIONS(2073), + [anon_sym_LPAREN] = ACTIONS(2073), + [anon_sym_LBRACK] = ACTIONS(2073), + [anon_sym_LBRACE] = ACTIONS(2073), + [anon_sym_RBRACE] = ACTIONS(2073), + [anon_sym_STAR] = ACTIONS(2073), + [anon_sym_u8] = ACTIONS(2075), + [anon_sym_i8] = ACTIONS(2075), + [anon_sym_u16] = ACTIONS(2075), + [anon_sym_i16] = ACTIONS(2075), + [anon_sym_u32] = ACTIONS(2075), + [anon_sym_i32] = ACTIONS(2075), + [anon_sym_u64] = ACTIONS(2075), + [anon_sym_i64] = ACTIONS(2075), + [anon_sym_u128] = ACTIONS(2075), + [anon_sym_i128] = ACTIONS(2075), + [anon_sym_isize] = ACTIONS(2075), + [anon_sym_usize] = ACTIONS(2075), + [anon_sym_f32] = ACTIONS(2075), + [anon_sym_f64] = ACTIONS(2075), + [anon_sym_bool] = ACTIONS(2075), + [anon_sym_str] = ACTIONS(2075), + [anon_sym_char] = ACTIONS(2075), + [anon_sym_DASH] = ACTIONS(2073), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_AMP] = ACTIONS(2073), + [anon_sym_PIPE] = ACTIONS(2073), + [anon_sym_LT] = ACTIONS(2073), + [anon_sym_DOT_DOT] = ACTIONS(2073), + [anon_sym_COLON_COLON] = ACTIONS(2073), + [anon_sym_POUND] = ACTIONS(2073), + [anon_sym_SQUOTE] = ACTIONS(2075), + [anon_sym_async] = ACTIONS(2075), + [anon_sym_break] = ACTIONS(2075), + [anon_sym_const] = ACTIONS(2075), + [anon_sym_continue] = ACTIONS(2075), + [anon_sym_default] = ACTIONS(2075), + [anon_sym_enum] = ACTIONS(2075), + [anon_sym_fn] = ACTIONS(2075), + [anon_sym_for] = ACTIONS(2075), + [anon_sym_gen] = ACTIONS(2075), + [anon_sym_if] = ACTIONS(2075), + [anon_sym_impl] = ACTIONS(2075), + [anon_sym_let] = ACTIONS(2075), + [anon_sym_loop] = ACTIONS(2075), + [anon_sym_match] = ACTIONS(2075), + [anon_sym_mod] = ACTIONS(2075), + [anon_sym_pub] = ACTIONS(2075), + [anon_sym_return] = ACTIONS(2075), + [anon_sym_static] = ACTIONS(2075), + [anon_sym_struct] = ACTIONS(2075), + [anon_sym_trait] = ACTIONS(2075), + [anon_sym_type] = ACTIONS(2075), + [anon_sym_union] = ACTIONS(2075), + [anon_sym_unsafe] = ACTIONS(2075), + [anon_sym_use] = ACTIONS(2075), + [anon_sym_while] = ACTIONS(2075), + [anon_sym_extern] = ACTIONS(2075), + [anon_sym_yield] = ACTIONS(2075), + [anon_sym_move] = ACTIONS(2075), + [anon_sym_try] = ACTIONS(2075), + [sym_integer_literal] = ACTIONS(2073), + [aux_sym_string_literal_token1] = ACTIONS(2073), + [sym_char_literal] = ACTIONS(2073), + [anon_sym_true] = ACTIONS(2075), + [anon_sym_false] = ACTIONS(2075), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2075), + [sym_super] = ACTIONS(2075), + [sym_crate] = ACTIONS(2075), + [sym_metavariable] = ACTIONS(2073), + [sym__raw_string_literal_start] = ACTIONS(2073), + [sym_float_literal] = ACTIONS(2073), + }, + [544] = { + [sym_line_comment] = STATE(544), + [sym_block_comment] = STATE(544), + [ts_builtin_sym_end] = ACTIONS(2077), + [sym_identifier] = ACTIONS(2079), + [anon_sym_SEMI] = ACTIONS(2077), + [anon_sym_macro_rules_BANG] = ACTIONS(2077), + [anon_sym_LPAREN] = ACTIONS(2077), + [anon_sym_LBRACK] = ACTIONS(2077), + [anon_sym_LBRACE] = ACTIONS(2077), + [anon_sym_RBRACE] = ACTIONS(2077), + [anon_sym_STAR] = ACTIONS(2077), + [anon_sym_u8] = ACTIONS(2079), + [anon_sym_i8] = ACTIONS(2079), + [anon_sym_u16] = ACTIONS(2079), + [anon_sym_i16] = ACTIONS(2079), + [anon_sym_u32] = ACTIONS(2079), + [anon_sym_i32] = ACTIONS(2079), + [anon_sym_u64] = ACTIONS(2079), + [anon_sym_i64] = ACTIONS(2079), + [anon_sym_u128] = ACTIONS(2079), + [anon_sym_i128] = ACTIONS(2079), + [anon_sym_isize] = ACTIONS(2079), + [anon_sym_usize] = ACTIONS(2079), + [anon_sym_f32] = ACTIONS(2079), + [anon_sym_f64] = ACTIONS(2079), + [anon_sym_bool] = ACTIONS(2079), + [anon_sym_str] = ACTIONS(2079), + [anon_sym_char] = ACTIONS(2079), + [anon_sym_DASH] = ACTIONS(2077), + [anon_sym_BANG] = ACTIONS(2077), + [anon_sym_AMP] = ACTIONS(2077), + [anon_sym_PIPE] = ACTIONS(2077), + [anon_sym_LT] = ACTIONS(2077), + [anon_sym_DOT_DOT] = ACTIONS(2077), + [anon_sym_COLON_COLON] = ACTIONS(2077), + [anon_sym_POUND] = ACTIONS(2077), + [anon_sym_SQUOTE] = ACTIONS(2079), + [anon_sym_async] = ACTIONS(2079), + [anon_sym_break] = ACTIONS(2079), + [anon_sym_const] = ACTIONS(2079), + [anon_sym_continue] = ACTIONS(2079), + [anon_sym_default] = ACTIONS(2079), + [anon_sym_enum] = ACTIONS(2079), + [anon_sym_fn] = ACTIONS(2079), + [anon_sym_for] = ACTIONS(2079), + [anon_sym_gen] = ACTIONS(2079), + [anon_sym_if] = ACTIONS(2079), + [anon_sym_impl] = ACTIONS(2079), + [anon_sym_let] = ACTIONS(2079), + [anon_sym_loop] = ACTIONS(2079), + [anon_sym_match] = ACTIONS(2079), + [anon_sym_mod] = ACTIONS(2079), + [anon_sym_pub] = ACTIONS(2079), + [anon_sym_return] = ACTIONS(2079), + [anon_sym_static] = ACTIONS(2079), + [anon_sym_struct] = ACTIONS(2079), + [anon_sym_trait] = ACTIONS(2079), + [anon_sym_type] = ACTIONS(2079), + [anon_sym_union] = ACTIONS(2079), + [anon_sym_unsafe] = ACTIONS(2079), + [anon_sym_use] = ACTIONS(2079), + [anon_sym_while] = ACTIONS(2079), + [anon_sym_extern] = ACTIONS(2079), + [anon_sym_yield] = ACTIONS(2079), + [anon_sym_move] = ACTIONS(2079), + [anon_sym_try] = ACTIONS(2079), + [sym_integer_literal] = ACTIONS(2077), + [aux_sym_string_literal_token1] = ACTIONS(2077), + [sym_char_literal] = ACTIONS(2077), + [anon_sym_true] = ACTIONS(2079), + [anon_sym_false] = ACTIONS(2079), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2079), + [sym_super] = ACTIONS(2079), + [sym_crate] = ACTIONS(2079), + [sym_metavariable] = ACTIONS(2077), + [sym__raw_string_literal_start] = ACTIONS(2077), + [sym_float_literal] = ACTIONS(2077), + }, + [545] = { + [sym_line_comment] = STATE(545), + [sym_block_comment] = STATE(545), + [ts_builtin_sym_end] = ACTIONS(2081), + [sym_identifier] = ACTIONS(2083), + [anon_sym_SEMI] = ACTIONS(2081), + [anon_sym_macro_rules_BANG] = ACTIONS(2081), + [anon_sym_LPAREN] = ACTIONS(2081), + [anon_sym_LBRACK] = ACTIONS(2081), + [anon_sym_LBRACE] = ACTIONS(2081), + [anon_sym_RBRACE] = ACTIONS(2081), + [anon_sym_STAR] = ACTIONS(2081), + [anon_sym_u8] = ACTIONS(2083), + [anon_sym_i8] = ACTIONS(2083), + [anon_sym_u16] = ACTIONS(2083), + [anon_sym_i16] = ACTIONS(2083), + [anon_sym_u32] = ACTIONS(2083), + [anon_sym_i32] = ACTIONS(2083), + [anon_sym_u64] = ACTIONS(2083), + [anon_sym_i64] = ACTIONS(2083), + [anon_sym_u128] = ACTIONS(2083), + [anon_sym_i128] = ACTIONS(2083), + [anon_sym_isize] = ACTIONS(2083), + [anon_sym_usize] = ACTIONS(2083), + [anon_sym_f32] = ACTIONS(2083), + [anon_sym_f64] = ACTIONS(2083), + [anon_sym_bool] = ACTIONS(2083), + [anon_sym_str] = ACTIONS(2083), + [anon_sym_char] = ACTIONS(2083), + [anon_sym_DASH] = ACTIONS(2081), + [anon_sym_BANG] = ACTIONS(2081), + [anon_sym_AMP] = ACTIONS(2081), + [anon_sym_PIPE] = ACTIONS(2081), + [anon_sym_LT] = ACTIONS(2081), + [anon_sym_DOT_DOT] = ACTIONS(2081), + [anon_sym_COLON_COLON] = ACTIONS(2081), + [anon_sym_POUND] = ACTIONS(2081), + [anon_sym_SQUOTE] = ACTIONS(2083), + [anon_sym_async] = ACTIONS(2083), + [anon_sym_break] = ACTIONS(2083), + [anon_sym_const] = ACTIONS(2083), + [anon_sym_continue] = ACTIONS(2083), + [anon_sym_default] = ACTIONS(2083), + [anon_sym_enum] = ACTIONS(2083), + [anon_sym_fn] = ACTIONS(2083), + [anon_sym_for] = ACTIONS(2083), + [anon_sym_gen] = ACTIONS(2083), + [anon_sym_if] = ACTIONS(2083), + [anon_sym_impl] = ACTIONS(2083), + [anon_sym_let] = ACTIONS(2083), + [anon_sym_loop] = ACTIONS(2083), + [anon_sym_match] = ACTIONS(2083), + [anon_sym_mod] = ACTIONS(2083), + [anon_sym_pub] = ACTIONS(2083), + [anon_sym_return] = ACTIONS(2083), + [anon_sym_static] = ACTIONS(2083), + [anon_sym_struct] = ACTIONS(2083), + [anon_sym_trait] = ACTIONS(2083), + [anon_sym_type] = ACTIONS(2083), + [anon_sym_union] = ACTIONS(2083), + [anon_sym_unsafe] = ACTIONS(2083), + [anon_sym_use] = ACTIONS(2083), + [anon_sym_while] = ACTIONS(2083), + [anon_sym_extern] = ACTIONS(2083), + [anon_sym_yield] = ACTIONS(2083), + [anon_sym_move] = ACTIONS(2083), + [anon_sym_try] = ACTIONS(2083), + [sym_integer_literal] = ACTIONS(2081), + [aux_sym_string_literal_token1] = ACTIONS(2081), + [sym_char_literal] = ACTIONS(2081), + [anon_sym_true] = ACTIONS(2083), + [anon_sym_false] = ACTIONS(2083), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2083), + [sym_super] = ACTIONS(2083), + [sym_crate] = ACTIONS(2083), + [sym_metavariable] = ACTIONS(2081), + [sym__raw_string_literal_start] = ACTIONS(2081), + [sym_float_literal] = ACTIONS(2081), + }, + [546] = { + [sym_line_comment] = STATE(546), + [sym_block_comment] = STATE(546), + [ts_builtin_sym_end] = ACTIONS(2085), + [sym_identifier] = ACTIONS(2087), + [anon_sym_SEMI] = ACTIONS(2085), + [anon_sym_macro_rules_BANG] = ACTIONS(2085), + [anon_sym_LPAREN] = ACTIONS(2085), + [anon_sym_LBRACK] = ACTIONS(2085), + [anon_sym_LBRACE] = ACTIONS(2085), + [anon_sym_RBRACE] = ACTIONS(2085), + [anon_sym_STAR] = ACTIONS(2085), + [anon_sym_u8] = ACTIONS(2087), + [anon_sym_i8] = ACTIONS(2087), + [anon_sym_u16] = ACTIONS(2087), + [anon_sym_i16] = ACTIONS(2087), + [anon_sym_u32] = ACTIONS(2087), + [anon_sym_i32] = ACTIONS(2087), + [anon_sym_u64] = ACTIONS(2087), + [anon_sym_i64] = ACTIONS(2087), + [anon_sym_u128] = ACTIONS(2087), + [anon_sym_i128] = ACTIONS(2087), + [anon_sym_isize] = ACTIONS(2087), + [anon_sym_usize] = ACTIONS(2087), + [anon_sym_f32] = ACTIONS(2087), + [anon_sym_f64] = ACTIONS(2087), + [anon_sym_bool] = ACTIONS(2087), + [anon_sym_str] = ACTIONS(2087), + [anon_sym_char] = ACTIONS(2087), + [anon_sym_DASH] = ACTIONS(2085), + [anon_sym_BANG] = ACTIONS(2085), + [anon_sym_AMP] = ACTIONS(2085), + [anon_sym_PIPE] = ACTIONS(2085), + [anon_sym_LT] = ACTIONS(2085), + [anon_sym_DOT_DOT] = ACTIONS(2085), + [anon_sym_COLON_COLON] = ACTIONS(2085), + [anon_sym_POUND] = ACTIONS(2085), + [anon_sym_SQUOTE] = ACTIONS(2087), + [anon_sym_async] = ACTIONS(2087), + [anon_sym_break] = ACTIONS(2087), + [anon_sym_const] = ACTIONS(2087), + [anon_sym_continue] = ACTIONS(2087), + [anon_sym_default] = ACTIONS(2087), + [anon_sym_enum] = ACTIONS(2087), + [anon_sym_fn] = ACTIONS(2087), + [anon_sym_for] = ACTIONS(2087), + [anon_sym_gen] = ACTIONS(2087), + [anon_sym_if] = ACTIONS(2087), + [anon_sym_impl] = ACTIONS(2087), + [anon_sym_let] = ACTIONS(2087), + [anon_sym_loop] = ACTIONS(2087), + [anon_sym_match] = ACTIONS(2087), + [anon_sym_mod] = ACTIONS(2087), + [anon_sym_pub] = ACTIONS(2087), + [anon_sym_return] = ACTIONS(2087), + [anon_sym_static] = ACTIONS(2087), + [anon_sym_struct] = ACTIONS(2087), + [anon_sym_trait] = ACTIONS(2087), + [anon_sym_type] = ACTIONS(2087), + [anon_sym_union] = ACTIONS(2087), + [anon_sym_unsafe] = ACTIONS(2087), + [anon_sym_use] = ACTIONS(2087), + [anon_sym_while] = ACTIONS(2087), + [anon_sym_extern] = ACTIONS(2087), + [anon_sym_yield] = ACTIONS(2087), + [anon_sym_move] = ACTIONS(2087), + [anon_sym_try] = ACTIONS(2087), + [sym_integer_literal] = ACTIONS(2085), + [aux_sym_string_literal_token1] = ACTIONS(2085), + [sym_char_literal] = ACTIONS(2085), + [anon_sym_true] = ACTIONS(2087), + [anon_sym_false] = ACTIONS(2087), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2087), + [sym_super] = ACTIONS(2087), + [sym_crate] = ACTIONS(2087), + [sym_metavariable] = ACTIONS(2085), + [sym__raw_string_literal_start] = ACTIONS(2085), + [sym_float_literal] = ACTIONS(2085), + }, + [547] = { + [sym_line_comment] = STATE(547), + [sym_block_comment] = STATE(547), + [ts_builtin_sym_end] = ACTIONS(2089), + [sym_identifier] = ACTIONS(2091), + [anon_sym_SEMI] = ACTIONS(2089), + [anon_sym_macro_rules_BANG] = ACTIONS(2089), + [anon_sym_LPAREN] = ACTIONS(2089), + [anon_sym_LBRACK] = ACTIONS(2089), + [anon_sym_LBRACE] = ACTIONS(2089), + [anon_sym_RBRACE] = ACTIONS(2089), + [anon_sym_STAR] = ACTIONS(2089), + [anon_sym_u8] = ACTIONS(2091), + [anon_sym_i8] = ACTIONS(2091), + [anon_sym_u16] = ACTIONS(2091), + [anon_sym_i16] = ACTIONS(2091), + [anon_sym_u32] = ACTIONS(2091), + [anon_sym_i32] = ACTIONS(2091), + [anon_sym_u64] = ACTIONS(2091), + [anon_sym_i64] = ACTIONS(2091), + [anon_sym_u128] = ACTIONS(2091), + [anon_sym_i128] = ACTIONS(2091), + [anon_sym_isize] = ACTIONS(2091), + [anon_sym_usize] = ACTIONS(2091), + [anon_sym_f32] = ACTIONS(2091), + [anon_sym_f64] = ACTIONS(2091), + [anon_sym_bool] = ACTIONS(2091), + [anon_sym_str] = ACTIONS(2091), + [anon_sym_char] = ACTIONS(2091), + [anon_sym_DASH] = ACTIONS(2089), + [anon_sym_BANG] = ACTIONS(2089), + [anon_sym_AMP] = ACTIONS(2089), + [anon_sym_PIPE] = ACTIONS(2089), + [anon_sym_LT] = ACTIONS(2089), + [anon_sym_DOT_DOT] = ACTIONS(2089), + [anon_sym_COLON_COLON] = ACTIONS(2089), + [anon_sym_POUND] = ACTIONS(2089), + [anon_sym_SQUOTE] = ACTIONS(2091), + [anon_sym_async] = ACTIONS(2091), + [anon_sym_break] = ACTIONS(2091), + [anon_sym_const] = ACTIONS(2091), + [anon_sym_continue] = ACTIONS(2091), + [anon_sym_default] = ACTIONS(2091), + [anon_sym_enum] = ACTIONS(2091), + [anon_sym_fn] = ACTIONS(2091), + [anon_sym_for] = ACTIONS(2091), + [anon_sym_gen] = ACTIONS(2091), + [anon_sym_if] = ACTIONS(2091), + [anon_sym_impl] = ACTIONS(2091), + [anon_sym_let] = ACTIONS(2091), + [anon_sym_loop] = ACTIONS(2091), + [anon_sym_match] = ACTIONS(2091), + [anon_sym_mod] = ACTIONS(2091), + [anon_sym_pub] = ACTIONS(2091), + [anon_sym_return] = ACTIONS(2091), + [anon_sym_static] = ACTIONS(2091), + [anon_sym_struct] = ACTIONS(2091), + [anon_sym_trait] = ACTIONS(2091), + [anon_sym_type] = ACTIONS(2091), + [anon_sym_union] = ACTIONS(2091), + [anon_sym_unsafe] = ACTIONS(2091), + [anon_sym_use] = ACTIONS(2091), + [anon_sym_while] = ACTIONS(2091), + [anon_sym_extern] = ACTIONS(2091), + [anon_sym_yield] = ACTIONS(2091), + [anon_sym_move] = ACTIONS(2091), + [anon_sym_try] = ACTIONS(2091), + [sym_integer_literal] = ACTIONS(2089), + [aux_sym_string_literal_token1] = ACTIONS(2089), + [sym_char_literal] = ACTIONS(2089), + [anon_sym_true] = ACTIONS(2091), + [anon_sym_false] = ACTIONS(2091), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2091), + [sym_super] = ACTIONS(2091), + [sym_crate] = ACTIONS(2091), + [sym_metavariable] = ACTIONS(2089), + [sym__raw_string_literal_start] = ACTIONS(2089), + [sym_float_literal] = ACTIONS(2089), + }, + [548] = { + [sym_line_comment] = STATE(548), + [sym_block_comment] = STATE(548), + [ts_builtin_sym_end] = ACTIONS(2093), + [sym_identifier] = ACTIONS(2095), + [anon_sym_SEMI] = ACTIONS(2093), + [anon_sym_macro_rules_BANG] = ACTIONS(2093), + [anon_sym_LPAREN] = ACTIONS(2093), + [anon_sym_LBRACK] = ACTIONS(2093), + [anon_sym_LBRACE] = ACTIONS(2093), + [anon_sym_RBRACE] = ACTIONS(2093), + [anon_sym_STAR] = ACTIONS(2093), + [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), + [anon_sym_DASH] = ACTIONS(2093), + [anon_sym_BANG] = ACTIONS(2093), + [anon_sym_AMP] = ACTIONS(2093), + [anon_sym_PIPE] = ACTIONS(2093), + [anon_sym_LT] = ACTIONS(2093), + [anon_sym_DOT_DOT] = ACTIONS(2093), + [anon_sym_COLON_COLON] = ACTIONS(2093), + [anon_sym_POUND] = ACTIONS(2093), + [anon_sym_SQUOTE] = ACTIONS(2095), + [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2095), + [anon_sym_extern] = ACTIONS(2095), + [anon_sym_yield] = ACTIONS(2095), + [anon_sym_move] = ACTIONS(2095), + [anon_sym_try] = ACTIONS(2095), + [sym_integer_literal] = ACTIONS(2093), + [aux_sym_string_literal_token1] = ACTIONS(2093), + [sym_char_literal] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(2095), + [anon_sym_false] = ACTIONS(2095), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2095), + [sym_super] = ACTIONS(2095), + [sym_crate] = ACTIONS(2095), + [sym_metavariable] = ACTIONS(2093), + [sym__raw_string_literal_start] = ACTIONS(2093), + [sym_float_literal] = ACTIONS(2093), + }, + [549] = { + [sym_line_comment] = STATE(549), + [sym_block_comment] = STATE(549), + [ts_builtin_sym_end] = ACTIONS(1257), + [sym_identifier] = ACTIONS(1259), + [anon_sym_SEMI] = ACTIONS(1257), + [anon_sym_macro_rules_BANG] = ACTIONS(1257), + [anon_sym_LPAREN] = ACTIONS(1257), + [anon_sym_LBRACK] = ACTIONS(1257), + [anon_sym_LBRACE] = ACTIONS(1257), + [anon_sym_RBRACE] = ACTIONS(1257), + [anon_sym_STAR] = ACTIONS(1257), + [anon_sym_u8] = ACTIONS(1259), + [anon_sym_i8] = ACTIONS(1259), + [anon_sym_u16] = ACTIONS(1259), + [anon_sym_i16] = ACTIONS(1259), + [anon_sym_u32] = ACTIONS(1259), + [anon_sym_i32] = ACTIONS(1259), + [anon_sym_u64] = ACTIONS(1259), + [anon_sym_i64] = ACTIONS(1259), + [anon_sym_u128] = ACTIONS(1259), + [anon_sym_i128] = ACTIONS(1259), + [anon_sym_isize] = ACTIONS(1259), + [anon_sym_usize] = ACTIONS(1259), + [anon_sym_f32] = ACTIONS(1259), + [anon_sym_f64] = ACTIONS(1259), + [anon_sym_bool] = ACTIONS(1259), + [anon_sym_str] = ACTIONS(1259), + [anon_sym_char] = ACTIONS(1259), + [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_BANG] = ACTIONS(1257), + [anon_sym_AMP] = ACTIONS(1257), + [anon_sym_PIPE] = ACTIONS(1257), + [anon_sym_LT] = ACTIONS(1257), + [anon_sym_DOT_DOT] = ACTIONS(1257), + [anon_sym_COLON_COLON] = ACTIONS(1257), + [anon_sym_POUND] = ACTIONS(1257), + [anon_sym_SQUOTE] = ACTIONS(1259), + [anon_sym_async] = ACTIONS(1259), + [anon_sym_break] = ACTIONS(1259), + [anon_sym_const] = ACTIONS(1259), + [anon_sym_continue] = ACTIONS(1259), + [anon_sym_default] = ACTIONS(1259), + [anon_sym_enum] = ACTIONS(1259), + [anon_sym_fn] = ACTIONS(1259), + [anon_sym_for] = ACTIONS(1259), + [anon_sym_gen] = ACTIONS(1259), + [anon_sym_if] = ACTIONS(1259), + [anon_sym_impl] = ACTIONS(1259), + [anon_sym_let] = ACTIONS(1259), + [anon_sym_loop] = ACTIONS(1259), + [anon_sym_match] = ACTIONS(1259), + [anon_sym_mod] = ACTIONS(1259), + [anon_sym_pub] = ACTIONS(1259), + [anon_sym_return] = ACTIONS(1259), + [anon_sym_static] = ACTIONS(1259), + [anon_sym_struct] = ACTIONS(1259), + [anon_sym_trait] = ACTIONS(1259), + [anon_sym_type] = ACTIONS(1259), + [anon_sym_union] = ACTIONS(1259), + [anon_sym_unsafe] = ACTIONS(1259), + [anon_sym_use] = ACTIONS(1259), + [anon_sym_while] = ACTIONS(1259), + [anon_sym_extern] = ACTIONS(1259), + [anon_sym_yield] = ACTIONS(1259), + [anon_sym_move] = ACTIONS(1259), + [anon_sym_try] = ACTIONS(1259), + [sym_integer_literal] = ACTIONS(1257), + [aux_sym_string_literal_token1] = ACTIONS(1257), + [sym_char_literal] = ACTIONS(1257), + [anon_sym_true] = ACTIONS(1259), + [anon_sym_false] = ACTIONS(1259), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1259), + [sym_super] = ACTIONS(1259), + [sym_crate] = ACTIONS(1259), + [sym_metavariable] = ACTIONS(1257), + [sym__raw_string_literal_start] = ACTIONS(1257), + [sym_float_literal] = ACTIONS(1257), + }, + [550] = { + [sym_line_comment] = STATE(550), + [sym_block_comment] = STATE(550), + [ts_builtin_sym_end] = ACTIONS(1269), + [sym_identifier] = ACTIONS(1271), + [anon_sym_SEMI] = ACTIONS(1269), + [anon_sym_macro_rules_BANG] = ACTIONS(1269), + [anon_sym_LPAREN] = ACTIONS(1269), + [anon_sym_LBRACK] = ACTIONS(1269), + [anon_sym_LBRACE] = ACTIONS(1269), + [anon_sym_RBRACE] = ACTIONS(1269), + [anon_sym_STAR] = ACTIONS(1269), + [anon_sym_u8] = ACTIONS(1271), + [anon_sym_i8] = ACTIONS(1271), + [anon_sym_u16] = ACTIONS(1271), + [anon_sym_i16] = ACTIONS(1271), + [anon_sym_u32] = ACTIONS(1271), + [anon_sym_i32] = ACTIONS(1271), + [anon_sym_u64] = ACTIONS(1271), + [anon_sym_i64] = ACTIONS(1271), + [anon_sym_u128] = ACTIONS(1271), + [anon_sym_i128] = ACTIONS(1271), + [anon_sym_isize] = ACTIONS(1271), + [anon_sym_usize] = ACTIONS(1271), + [anon_sym_f32] = ACTIONS(1271), + [anon_sym_f64] = ACTIONS(1271), + [anon_sym_bool] = ACTIONS(1271), + [anon_sym_str] = ACTIONS(1271), + [anon_sym_char] = ACTIONS(1271), + [anon_sym_DASH] = ACTIONS(1269), + [anon_sym_BANG] = ACTIONS(1269), + [anon_sym_AMP] = ACTIONS(1269), + [anon_sym_PIPE] = ACTIONS(1269), + [anon_sym_LT] = ACTIONS(1269), + [anon_sym_DOT_DOT] = ACTIONS(1269), + [anon_sym_COLON_COLON] = ACTIONS(1269), + [anon_sym_POUND] = ACTIONS(1269), + [anon_sym_SQUOTE] = ACTIONS(1271), + [anon_sym_async] = ACTIONS(1271), + [anon_sym_break] = ACTIONS(1271), + [anon_sym_const] = ACTIONS(1271), + [anon_sym_continue] = ACTIONS(1271), + [anon_sym_default] = ACTIONS(1271), + [anon_sym_enum] = ACTIONS(1271), + [anon_sym_fn] = ACTIONS(1271), + [anon_sym_for] = ACTIONS(1271), + [anon_sym_gen] = ACTIONS(1271), + [anon_sym_if] = ACTIONS(1271), + [anon_sym_impl] = ACTIONS(1271), + [anon_sym_let] = ACTIONS(1271), + [anon_sym_loop] = ACTIONS(1271), + [anon_sym_match] = ACTIONS(1271), + [anon_sym_mod] = ACTIONS(1271), + [anon_sym_pub] = ACTIONS(1271), + [anon_sym_return] = ACTIONS(1271), + [anon_sym_static] = ACTIONS(1271), + [anon_sym_struct] = ACTIONS(1271), + [anon_sym_trait] = ACTIONS(1271), + [anon_sym_type] = ACTIONS(1271), + [anon_sym_union] = ACTIONS(1271), + [anon_sym_unsafe] = ACTIONS(1271), + [anon_sym_use] = ACTIONS(1271), + [anon_sym_while] = ACTIONS(1271), + [anon_sym_extern] = ACTIONS(1271), + [anon_sym_yield] = ACTIONS(1271), + [anon_sym_move] = ACTIONS(1271), + [anon_sym_try] = ACTIONS(1271), + [sym_integer_literal] = ACTIONS(1269), + [aux_sym_string_literal_token1] = ACTIONS(1269), + [sym_char_literal] = ACTIONS(1269), + [anon_sym_true] = ACTIONS(1271), + [anon_sym_false] = ACTIONS(1271), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1271), + [sym_super] = ACTIONS(1271), + [sym_crate] = ACTIONS(1271), + [sym_metavariable] = ACTIONS(1269), + [sym__raw_string_literal_start] = ACTIONS(1269), + [sym_float_literal] = ACTIONS(1269), + }, + [551] = { + [sym_line_comment] = STATE(551), + [sym_block_comment] = STATE(551), + [ts_builtin_sym_end] = ACTIONS(2097), + [sym_identifier] = ACTIONS(2099), + [anon_sym_SEMI] = ACTIONS(2097), + [anon_sym_macro_rules_BANG] = ACTIONS(2097), + [anon_sym_LPAREN] = ACTIONS(2097), + [anon_sym_LBRACK] = ACTIONS(2097), + [anon_sym_LBRACE] = ACTIONS(2097), + [anon_sym_RBRACE] = ACTIONS(2097), + [anon_sym_STAR] = ACTIONS(2097), + [anon_sym_u8] = ACTIONS(2099), + [anon_sym_i8] = ACTIONS(2099), + [anon_sym_u16] = ACTIONS(2099), + [anon_sym_i16] = ACTIONS(2099), + [anon_sym_u32] = ACTIONS(2099), + [anon_sym_i32] = ACTIONS(2099), + [anon_sym_u64] = ACTIONS(2099), + [anon_sym_i64] = ACTIONS(2099), + [anon_sym_u128] = ACTIONS(2099), + [anon_sym_i128] = ACTIONS(2099), + [anon_sym_isize] = ACTIONS(2099), + [anon_sym_usize] = ACTIONS(2099), + [anon_sym_f32] = ACTIONS(2099), + [anon_sym_f64] = ACTIONS(2099), + [anon_sym_bool] = ACTIONS(2099), + [anon_sym_str] = ACTIONS(2099), + [anon_sym_char] = ACTIONS(2099), + [anon_sym_DASH] = ACTIONS(2097), + [anon_sym_BANG] = ACTIONS(2097), + [anon_sym_AMP] = ACTIONS(2097), + [anon_sym_PIPE] = ACTIONS(2097), + [anon_sym_LT] = ACTIONS(2097), + [anon_sym_DOT_DOT] = ACTIONS(2097), + [anon_sym_COLON_COLON] = ACTIONS(2097), + [anon_sym_POUND] = ACTIONS(2097), + [anon_sym_SQUOTE] = ACTIONS(2099), + [anon_sym_async] = ACTIONS(2099), + [anon_sym_break] = ACTIONS(2099), + [anon_sym_const] = ACTIONS(2099), + [anon_sym_continue] = ACTIONS(2099), + [anon_sym_default] = ACTIONS(2099), + [anon_sym_enum] = ACTIONS(2099), + [anon_sym_fn] = ACTIONS(2099), + [anon_sym_for] = ACTIONS(2099), + [anon_sym_gen] = ACTIONS(2099), + [anon_sym_if] = ACTIONS(2099), + [anon_sym_impl] = ACTIONS(2099), + [anon_sym_let] = ACTIONS(2099), + [anon_sym_loop] = ACTIONS(2099), + [anon_sym_match] = ACTIONS(2099), + [anon_sym_mod] = ACTIONS(2099), + [anon_sym_pub] = ACTIONS(2099), + [anon_sym_return] = ACTIONS(2099), + [anon_sym_static] = ACTIONS(2099), + [anon_sym_struct] = ACTIONS(2099), + [anon_sym_trait] = ACTIONS(2099), + [anon_sym_type] = ACTIONS(2099), + [anon_sym_union] = ACTIONS(2099), + [anon_sym_unsafe] = ACTIONS(2099), + [anon_sym_use] = ACTIONS(2099), + [anon_sym_while] = ACTIONS(2099), + [anon_sym_extern] = ACTIONS(2099), + [anon_sym_yield] = ACTIONS(2099), + [anon_sym_move] = ACTIONS(2099), + [anon_sym_try] = ACTIONS(2099), + [sym_integer_literal] = ACTIONS(2097), + [aux_sym_string_literal_token1] = ACTIONS(2097), + [sym_char_literal] = ACTIONS(2097), + [anon_sym_true] = ACTIONS(2099), + [anon_sym_false] = ACTIONS(2099), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2099), + [sym_super] = ACTIONS(2099), + [sym_crate] = ACTIONS(2099), + [sym_metavariable] = ACTIONS(2097), + [sym__raw_string_literal_start] = ACTIONS(2097), + [sym_float_literal] = ACTIONS(2097), + }, + [552] = { + [sym_line_comment] = STATE(552), + [sym_block_comment] = STATE(552), + [ts_builtin_sym_end] = ACTIONS(2101), + [sym_identifier] = ACTIONS(2103), + [anon_sym_SEMI] = ACTIONS(2101), + [anon_sym_macro_rules_BANG] = ACTIONS(2101), + [anon_sym_LPAREN] = ACTIONS(2101), + [anon_sym_LBRACK] = ACTIONS(2101), + [anon_sym_LBRACE] = ACTIONS(2101), + [anon_sym_RBRACE] = ACTIONS(2101), + [anon_sym_STAR] = ACTIONS(2101), + [anon_sym_u8] = ACTIONS(2103), + [anon_sym_i8] = ACTIONS(2103), + [anon_sym_u16] = ACTIONS(2103), + [anon_sym_i16] = ACTIONS(2103), + [anon_sym_u32] = ACTIONS(2103), + [anon_sym_i32] = ACTIONS(2103), + [anon_sym_u64] = ACTIONS(2103), + [anon_sym_i64] = ACTIONS(2103), + [anon_sym_u128] = ACTIONS(2103), + [anon_sym_i128] = ACTIONS(2103), + [anon_sym_isize] = ACTIONS(2103), + [anon_sym_usize] = ACTIONS(2103), + [anon_sym_f32] = ACTIONS(2103), + [anon_sym_f64] = ACTIONS(2103), + [anon_sym_bool] = ACTIONS(2103), + [anon_sym_str] = ACTIONS(2103), + [anon_sym_char] = ACTIONS(2103), + [anon_sym_DASH] = ACTIONS(2101), + [anon_sym_BANG] = ACTIONS(2101), + [anon_sym_AMP] = ACTIONS(2101), + [anon_sym_PIPE] = ACTIONS(2101), + [anon_sym_LT] = ACTIONS(2101), + [anon_sym_DOT_DOT] = ACTIONS(2101), + [anon_sym_COLON_COLON] = ACTIONS(2101), + [anon_sym_POUND] = ACTIONS(2101), + [anon_sym_SQUOTE] = ACTIONS(2103), + [anon_sym_async] = ACTIONS(2103), + [anon_sym_break] = ACTIONS(2103), + [anon_sym_const] = ACTIONS(2103), + [anon_sym_continue] = ACTIONS(2103), + [anon_sym_default] = ACTIONS(2103), + [anon_sym_enum] = ACTIONS(2103), + [anon_sym_fn] = ACTIONS(2103), + [anon_sym_for] = ACTIONS(2103), + [anon_sym_gen] = ACTIONS(2103), + [anon_sym_if] = ACTIONS(2103), + [anon_sym_impl] = ACTIONS(2103), + [anon_sym_let] = ACTIONS(2103), + [anon_sym_loop] = ACTIONS(2103), + [anon_sym_match] = ACTIONS(2103), + [anon_sym_mod] = ACTIONS(2103), + [anon_sym_pub] = ACTIONS(2103), + [anon_sym_return] = ACTIONS(2103), + [anon_sym_static] = ACTIONS(2103), + [anon_sym_struct] = ACTIONS(2103), + [anon_sym_trait] = ACTIONS(2103), + [anon_sym_type] = ACTIONS(2103), + [anon_sym_union] = ACTIONS(2103), + [anon_sym_unsafe] = ACTIONS(2103), + [anon_sym_use] = ACTIONS(2103), + [anon_sym_while] = ACTIONS(2103), + [anon_sym_extern] = ACTIONS(2103), + [anon_sym_yield] = ACTIONS(2103), + [anon_sym_move] = ACTIONS(2103), + [anon_sym_try] = ACTIONS(2103), + [sym_integer_literal] = ACTIONS(2101), + [aux_sym_string_literal_token1] = ACTIONS(2101), + [sym_char_literal] = ACTIONS(2101), + [anon_sym_true] = ACTIONS(2103), + [anon_sym_false] = ACTIONS(2103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2103), + [sym_super] = ACTIONS(2103), + [sym_crate] = ACTIONS(2103), + [sym_metavariable] = ACTIONS(2101), + [sym__raw_string_literal_start] = ACTIONS(2101), + [sym_float_literal] = ACTIONS(2101), + }, + [553] = { + [sym_line_comment] = STATE(553), + [sym_block_comment] = STATE(553), + [ts_builtin_sym_end] = ACTIONS(2105), + [sym_identifier] = ACTIONS(2107), + [anon_sym_SEMI] = ACTIONS(2105), + [anon_sym_macro_rules_BANG] = ACTIONS(2105), + [anon_sym_LPAREN] = ACTIONS(2105), + [anon_sym_LBRACK] = ACTIONS(2105), + [anon_sym_LBRACE] = ACTIONS(2105), + [anon_sym_RBRACE] = ACTIONS(2105), + [anon_sym_STAR] = ACTIONS(2105), + [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), + [anon_sym_DASH] = ACTIONS(2105), + [anon_sym_BANG] = ACTIONS(2105), + [anon_sym_AMP] = ACTIONS(2105), + [anon_sym_PIPE] = ACTIONS(2105), + [anon_sym_LT] = ACTIONS(2105), + [anon_sym_DOT_DOT] = ACTIONS(2105), + [anon_sym_COLON_COLON] = ACTIONS(2105), + [anon_sym_POUND] = ACTIONS(2105), + [anon_sym_SQUOTE] = ACTIONS(2107), + [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2107), + [anon_sym_extern] = ACTIONS(2107), + [anon_sym_yield] = ACTIONS(2107), + [anon_sym_move] = ACTIONS(2107), + [anon_sym_try] = ACTIONS(2107), + [sym_integer_literal] = ACTIONS(2105), + [aux_sym_string_literal_token1] = ACTIONS(2105), + [sym_char_literal] = ACTIONS(2105), + [anon_sym_true] = ACTIONS(2107), + [anon_sym_false] = ACTIONS(2107), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2107), + [sym_super] = ACTIONS(2107), + [sym_crate] = ACTIONS(2107), + [sym_metavariable] = ACTIONS(2105), + [sym__raw_string_literal_start] = ACTIONS(2105), + [sym_float_literal] = ACTIONS(2105), + }, + [554] = { + [sym_line_comment] = STATE(554), + [sym_block_comment] = STATE(554), + [ts_builtin_sym_end] = ACTIONS(2109), + [sym_identifier] = ACTIONS(2111), + [anon_sym_SEMI] = ACTIONS(2109), + [anon_sym_macro_rules_BANG] = ACTIONS(2109), + [anon_sym_LPAREN] = ACTIONS(2109), + [anon_sym_LBRACK] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2109), + [anon_sym_RBRACE] = ACTIONS(2109), + [anon_sym_STAR] = ACTIONS(2109), + [anon_sym_u8] = ACTIONS(2111), + [anon_sym_i8] = ACTIONS(2111), + [anon_sym_u16] = ACTIONS(2111), + [anon_sym_i16] = ACTIONS(2111), + [anon_sym_u32] = ACTIONS(2111), + [anon_sym_i32] = ACTIONS(2111), + [anon_sym_u64] = ACTIONS(2111), + [anon_sym_i64] = ACTIONS(2111), + [anon_sym_u128] = ACTIONS(2111), + [anon_sym_i128] = ACTIONS(2111), + [anon_sym_isize] = ACTIONS(2111), + [anon_sym_usize] = ACTIONS(2111), + [anon_sym_f32] = ACTIONS(2111), + [anon_sym_f64] = ACTIONS(2111), + [anon_sym_bool] = ACTIONS(2111), + [anon_sym_str] = ACTIONS(2111), + [anon_sym_char] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2109), + [anon_sym_BANG] = ACTIONS(2109), + [anon_sym_AMP] = ACTIONS(2109), + [anon_sym_PIPE] = ACTIONS(2109), + [anon_sym_LT] = ACTIONS(2109), + [anon_sym_DOT_DOT] = ACTIONS(2109), + [anon_sym_COLON_COLON] = ACTIONS(2109), + [anon_sym_POUND] = ACTIONS(2109), + [anon_sym_SQUOTE] = ACTIONS(2111), + [anon_sym_async] = ACTIONS(2111), + [anon_sym_break] = ACTIONS(2111), + [anon_sym_const] = ACTIONS(2111), + [anon_sym_continue] = ACTIONS(2111), + [anon_sym_default] = ACTIONS(2111), + [anon_sym_enum] = ACTIONS(2111), + [anon_sym_fn] = ACTIONS(2111), + [anon_sym_for] = ACTIONS(2111), + [anon_sym_gen] = ACTIONS(2111), + [anon_sym_if] = ACTIONS(2111), + [anon_sym_impl] = ACTIONS(2111), + [anon_sym_let] = ACTIONS(2111), + [anon_sym_loop] = ACTIONS(2111), + [anon_sym_match] = ACTIONS(2111), + [anon_sym_mod] = ACTIONS(2111), + [anon_sym_pub] = ACTIONS(2111), + [anon_sym_return] = ACTIONS(2111), + [anon_sym_static] = ACTIONS(2111), + [anon_sym_struct] = ACTIONS(2111), + [anon_sym_trait] = ACTIONS(2111), + [anon_sym_type] = ACTIONS(2111), + [anon_sym_union] = ACTIONS(2111), + [anon_sym_unsafe] = ACTIONS(2111), + [anon_sym_use] = ACTIONS(2111), + [anon_sym_while] = ACTIONS(2111), + [anon_sym_extern] = ACTIONS(2111), + [anon_sym_yield] = ACTIONS(2111), + [anon_sym_move] = ACTIONS(2111), + [anon_sym_try] = ACTIONS(2111), + [sym_integer_literal] = ACTIONS(2109), + [aux_sym_string_literal_token1] = ACTIONS(2109), + [sym_char_literal] = ACTIONS(2109), + [anon_sym_true] = ACTIONS(2111), + [anon_sym_false] = ACTIONS(2111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2111), + [sym_super] = ACTIONS(2111), + [sym_crate] = ACTIONS(2111), + [sym_metavariable] = ACTIONS(2109), + [sym__raw_string_literal_start] = ACTIONS(2109), + [sym_float_literal] = ACTIONS(2109), + }, + [555] = { + [sym_line_comment] = STATE(555), + [sym_block_comment] = STATE(555), + [ts_builtin_sym_end] = ACTIONS(2113), + [sym_identifier] = ACTIONS(2115), + [anon_sym_SEMI] = ACTIONS(2113), + [anon_sym_macro_rules_BANG] = ACTIONS(2113), + [anon_sym_LPAREN] = ACTIONS(2113), + [anon_sym_LBRACK] = ACTIONS(2113), + [anon_sym_LBRACE] = ACTIONS(2113), + [anon_sym_RBRACE] = ACTIONS(2113), + [anon_sym_STAR] = ACTIONS(2113), + [anon_sym_u8] = ACTIONS(2115), + [anon_sym_i8] = ACTIONS(2115), + [anon_sym_u16] = ACTIONS(2115), + [anon_sym_i16] = ACTIONS(2115), + [anon_sym_u32] = ACTIONS(2115), + [anon_sym_i32] = ACTIONS(2115), + [anon_sym_u64] = ACTIONS(2115), + [anon_sym_i64] = ACTIONS(2115), + [anon_sym_u128] = ACTIONS(2115), + [anon_sym_i128] = ACTIONS(2115), + [anon_sym_isize] = ACTIONS(2115), + [anon_sym_usize] = ACTIONS(2115), + [anon_sym_f32] = ACTIONS(2115), + [anon_sym_f64] = ACTIONS(2115), + [anon_sym_bool] = ACTIONS(2115), + [anon_sym_str] = ACTIONS(2115), + [anon_sym_char] = ACTIONS(2115), + [anon_sym_DASH] = ACTIONS(2113), + [anon_sym_BANG] = ACTIONS(2113), + [anon_sym_AMP] = ACTIONS(2113), + [anon_sym_PIPE] = ACTIONS(2113), + [anon_sym_LT] = ACTIONS(2113), + [anon_sym_DOT_DOT] = ACTIONS(2113), + [anon_sym_COLON_COLON] = ACTIONS(2113), + [anon_sym_POUND] = ACTIONS(2113), + [anon_sym_SQUOTE] = ACTIONS(2115), + [anon_sym_async] = ACTIONS(2115), + [anon_sym_break] = ACTIONS(2115), + [anon_sym_const] = ACTIONS(2115), + [anon_sym_continue] = ACTIONS(2115), + [anon_sym_default] = ACTIONS(2115), + [anon_sym_enum] = ACTIONS(2115), + [anon_sym_fn] = ACTIONS(2115), + [anon_sym_for] = ACTIONS(2115), + [anon_sym_gen] = ACTIONS(2115), + [anon_sym_if] = ACTIONS(2115), + [anon_sym_impl] = ACTIONS(2115), + [anon_sym_let] = ACTIONS(2115), + [anon_sym_loop] = ACTIONS(2115), + [anon_sym_match] = ACTIONS(2115), + [anon_sym_mod] = ACTIONS(2115), + [anon_sym_pub] = ACTIONS(2115), + [anon_sym_return] = ACTIONS(2115), + [anon_sym_static] = ACTIONS(2115), + [anon_sym_struct] = ACTIONS(2115), + [anon_sym_trait] = ACTIONS(2115), + [anon_sym_type] = ACTIONS(2115), + [anon_sym_union] = ACTIONS(2115), + [anon_sym_unsafe] = ACTIONS(2115), + [anon_sym_use] = ACTIONS(2115), + [anon_sym_while] = ACTIONS(2115), + [anon_sym_extern] = ACTIONS(2115), + [anon_sym_yield] = ACTIONS(2115), + [anon_sym_move] = ACTIONS(2115), + [anon_sym_try] = ACTIONS(2115), + [sym_integer_literal] = ACTIONS(2113), + [aux_sym_string_literal_token1] = ACTIONS(2113), + [sym_char_literal] = ACTIONS(2113), + [anon_sym_true] = ACTIONS(2115), + [anon_sym_false] = ACTIONS(2115), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2115), + [sym_super] = ACTIONS(2115), + [sym_crate] = ACTIONS(2115), + [sym_metavariable] = ACTIONS(2113), + [sym__raw_string_literal_start] = ACTIONS(2113), + [sym_float_literal] = ACTIONS(2113), + }, + [556] = { + [sym_line_comment] = STATE(556), + [sym_block_comment] = STATE(556), + [ts_builtin_sym_end] = ACTIONS(2117), + [sym_identifier] = ACTIONS(2119), + [anon_sym_SEMI] = ACTIONS(2117), + [anon_sym_macro_rules_BANG] = ACTIONS(2117), + [anon_sym_LPAREN] = ACTIONS(2117), + [anon_sym_LBRACK] = ACTIONS(2117), + [anon_sym_LBRACE] = ACTIONS(2117), + [anon_sym_RBRACE] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2117), + [anon_sym_u8] = ACTIONS(2119), + [anon_sym_i8] = ACTIONS(2119), + [anon_sym_u16] = ACTIONS(2119), + [anon_sym_i16] = ACTIONS(2119), + [anon_sym_u32] = ACTIONS(2119), + [anon_sym_i32] = ACTIONS(2119), + [anon_sym_u64] = ACTIONS(2119), + [anon_sym_i64] = ACTIONS(2119), + [anon_sym_u128] = ACTIONS(2119), + [anon_sym_i128] = ACTIONS(2119), + [anon_sym_isize] = ACTIONS(2119), + [anon_sym_usize] = ACTIONS(2119), + [anon_sym_f32] = ACTIONS(2119), + [anon_sym_f64] = ACTIONS(2119), + [anon_sym_bool] = ACTIONS(2119), + [anon_sym_str] = ACTIONS(2119), + [anon_sym_char] = ACTIONS(2119), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_BANG] = ACTIONS(2117), + [anon_sym_AMP] = ACTIONS(2117), + [anon_sym_PIPE] = ACTIONS(2117), + [anon_sym_LT] = ACTIONS(2117), + [anon_sym_DOT_DOT] = ACTIONS(2117), + [anon_sym_COLON_COLON] = ACTIONS(2117), + [anon_sym_POUND] = ACTIONS(2117), + [anon_sym_SQUOTE] = ACTIONS(2119), + [anon_sym_async] = ACTIONS(2119), + [anon_sym_break] = ACTIONS(2119), + [anon_sym_const] = ACTIONS(2119), + [anon_sym_continue] = ACTIONS(2119), + [anon_sym_default] = ACTIONS(2119), + [anon_sym_enum] = ACTIONS(2119), + [anon_sym_fn] = ACTIONS(2119), + [anon_sym_for] = ACTIONS(2119), + [anon_sym_gen] = ACTIONS(2119), + [anon_sym_if] = ACTIONS(2119), + [anon_sym_impl] = ACTIONS(2119), + [anon_sym_let] = ACTIONS(2119), + [anon_sym_loop] = ACTIONS(2119), + [anon_sym_match] = ACTIONS(2119), + [anon_sym_mod] = ACTIONS(2119), + [anon_sym_pub] = ACTIONS(2119), + [anon_sym_return] = ACTIONS(2119), + [anon_sym_static] = ACTIONS(2119), + [anon_sym_struct] = ACTIONS(2119), + [anon_sym_trait] = ACTIONS(2119), + [anon_sym_type] = ACTIONS(2119), + [anon_sym_union] = ACTIONS(2119), + [anon_sym_unsafe] = ACTIONS(2119), + [anon_sym_use] = ACTIONS(2119), + [anon_sym_while] = ACTIONS(2119), + [anon_sym_extern] = ACTIONS(2119), + [anon_sym_yield] = ACTIONS(2119), + [anon_sym_move] = ACTIONS(2119), + [anon_sym_try] = ACTIONS(2119), + [sym_integer_literal] = ACTIONS(2117), + [aux_sym_string_literal_token1] = ACTIONS(2117), + [sym_char_literal] = ACTIONS(2117), + [anon_sym_true] = ACTIONS(2119), + [anon_sym_false] = ACTIONS(2119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2119), + [sym_super] = ACTIONS(2119), + [sym_crate] = ACTIONS(2119), + [sym_metavariable] = ACTIONS(2117), + [sym__raw_string_literal_start] = ACTIONS(2117), + [sym_float_literal] = ACTIONS(2117), + }, + [557] = { + [sym_line_comment] = STATE(557), + [sym_block_comment] = STATE(557), + [ts_builtin_sym_end] = ACTIONS(2121), + [sym_identifier] = ACTIONS(2123), + [anon_sym_SEMI] = ACTIONS(2121), + [anon_sym_macro_rules_BANG] = ACTIONS(2121), + [anon_sym_LPAREN] = ACTIONS(2121), + [anon_sym_LBRACK] = ACTIONS(2121), + [anon_sym_LBRACE] = ACTIONS(2121), + [anon_sym_RBRACE] = ACTIONS(2121), + [anon_sym_STAR] = ACTIONS(2121), + [anon_sym_u8] = ACTIONS(2123), + [anon_sym_i8] = ACTIONS(2123), + [anon_sym_u16] = ACTIONS(2123), + [anon_sym_i16] = ACTIONS(2123), + [anon_sym_u32] = ACTIONS(2123), + [anon_sym_i32] = ACTIONS(2123), + [anon_sym_u64] = ACTIONS(2123), + [anon_sym_i64] = ACTIONS(2123), + [anon_sym_u128] = ACTIONS(2123), + [anon_sym_i128] = ACTIONS(2123), + [anon_sym_isize] = ACTIONS(2123), + [anon_sym_usize] = ACTIONS(2123), + [anon_sym_f32] = ACTIONS(2123), + [anon_sym_f64] = ACTIONS(2123), + [anon_sym_bool] = ACTIONS(2123), + [anon_sym_str] = ACTIONS(2123), + [anon_sym_char] = ACTIONS(2123), + [anon_sym_DASH] = ACTIONS(2121), + [anon_sym_BANG] = ACTIONS(2121), + [anon_sym_AMP] = ACTIONS(2121), + [anon_sym_PIPE] = ACTIONS(2121), + [anon_sym_LT] = ACTIONS(2121), + [anon_sym_DOT_DOT] = ACTIONS(2121), + [anon_sym_COLON_COLON] = ACTIONS(2121), + [anon_sym_POUND] = ACTIONS(2121), + [anon_sym_SQUOTE] = ACTIONS(2123), + [anon_sym_async] = ACTIONS(2123), + [anon_sym_break] = ACTIONS(2123), + [anon_sym_const] = ACTIONS(2123), + [anon_sym_continue] = ACTIONS(2123), + [anon_sym_default] = ACTIONS(2123), + [anon_sym_enum] = ACTIONS(2123), + [anon_sym_fn] = ACTIONS(2123), + [anon_sym_for] = ACTIONS(2123), + [anon_sym_gen] = ACTIONS(2123), + [anon_sym_if] = ACTIONS(2123), + [anon_sym_impl] = ACTIONS(2123), + [anon_sym_let] = ACTIONS(2123), + [anon_sym_loop] = ACTIONS(2123), + [anon_sym_match] = ACTIONS(2123), + [anon_sym_mod] = ACTIONS(2123), + [anon_sym_pub] = ACTIONS(2123), + [anon_sym_return] = ACTIONS(2123), + [anon_sym_static] = ACTIONS(2123), + [anon_sym_struct] = ACTIONS(2123), + [anon_sym_trait] = ACTIONS(2123), + [anon_sym_type] = ACTIONS(2123), + [anon_sym_union] = ACTIONS(2123), + [anon_sym_unsafe] = ACTIONS(2123), + [anon_sym_use] = ACTIONS(2123), + [anon_sym_while] = ACTIONS(2123), + [anon_sym_extern] = ACTIONS(2123), + [anon_sym_yield] = ACTIONS(2123), + [anon_sym_move] = ACTIONS(2123), + [anon_sym_try] = ACTIONS(2123), + [sym_integer_literal] = ACTIONS(2121), + [aux_sym_string_literal_token1] = ACTIONS(2121), + [sym_char_literal] = ACTIONS(2121), + [anon_sym_true] = ACTIONS(2123), + [anon_sym_false] = ACTIONS(2123), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2123), + [sym_super] = ACTIONS(2123), + [sym_crate] = ACTIONS(2123), + [sym_metavariable] = ACTIONS(2121), + [sym__raw_string_literal_start] = ACTIONS(2121), + [sym_float_literal] = ACTIONS(2121), + }, + [558] = { + [sym_line_comment] = STATE(558), + [sym_block_comment] = STATE(558), + [ts_builtin_sym_end] = ACTIONS(1273), + [sym_identifier] = ACTIONS(1275), + [anon_sym_SEMI] = ACTIONS(1273), + [anon_sym_macro_rules_BANG] = ACTIONS(1273), + [anon_sym_LPAREN] = ACTIONS(1273), + [anon_sym_LBRACK] = ACTIONS(1273), + [anon_sym_LBRACE] = ACTIONS(1273), + [anon_sym_RBRACE] = ACTIONS(1273), + [anon_sym_STAR] = ACTIONS(1273), + [anon_sym_u8] = ACTIONS(1275), + [anon_sym_i8] = ACTIONS(1275), + [anon_sym_u16] = ACTIONS(1275), + [anon_sym_i16] = ACTIONS(1275), + [anon_sym_u32] = ACTIONS(1275), + [anon_sym_i32] = ACTIONS(1275), + [anon_sym_u64] = ACTIONS(1275), + [anon_sym_i64] = ACTIONS(1275), + [anon_sym_u128] = ACTIONS(1275), + [anon_sym_i128] = ACTIONS(1275), + [anon_sym_isize] = ACTIONS(1275), + [anon_sym_usize] = ACTIONS(1275), + [anon_sym_f32] = ACTIONS(1275), + [anon_sym_f64] = ACTIONS(1275), + [anon_sym_bool] = ACTIONS(1275), + [anon_sym_str] = ACTIONS(1275), + [anon_sym_char] = ACTIONS(1275), + [anon_sym_DASH] = ACTIONS(1273), + [anon_sym_BANG] = ACTIONS(1273), + [anon_sym_AMP] = ACTIONS(1273), + [anon_sym_PIPE] = ACTIONS(1273), + [anon_sym_LT] = ACTIONS(1273), + [anon_sym_DOT_DOT] = ACTIONS(1273), + [anon_sym_COLON_COLON] = ACTIONS(1273), + [anon_sym_POUND] = ACTIONS(1273), + [anon_sym_SQUOTE] = ACTIONS(1275), + [anon_sym_async] = ACTIONS(1275), + [anon_sym_break] = ACTIONS(1275), + [anon_sym_const] = ACTIONS(1275), + [anon_sym_continue] = ACTIONS(1275), + [anon_sym_default] = ACTIONS(1275), + [anon_sym_enum] = ACTIONS(1275), + [anon_sym_fn] = ACTIONS(1275), + [anon_sym_for] = ACTIONS(1275), + [anon_sym_gen] = ACTIONS(1275), + [anon_sym_if] = ACTIONS(1275), + [anon_sym_impl] = ACTIONS(1275), + [anon_sym_let] = ACTIONS(1275), + [anon_sym_loop] = ACTIONS(1275), + [anon_sym_match] = ACTIONS(1275), + [anon_sym_mod] = ACTIONS(1275), + [anon_sym_pub] = ACTIONS(1275), + [anon_sym_return] = ACTIONS(1275), + [anon_sym_static] = ACTIONS(1275), + [anon_sym_struct] = ACTIONS(1275), + [anon_sym_trait] = ACTIONS(1275), + [anon_sym_type] = ACTIONS(1275), + [anon_sym_union] = ACTIONS(1275), + [anon_sym_unsafe] = ACTIONS(1275), + [anon_sym_use] = ACTIONS(1275), + [anon_sym_while] = ACTIONS(1275), + [anon_sym_extern] = ACTIONS(1275), + [anon_sym_yield] = ACTIONS(1275), + [anon_sym_move] = ACTIONS(1275), + [anon_sym_try] = ACTIONS(1275), + [sym_integer_literal] = ACTIONS(1273), + [aux_sym_string_literal_token1] = ACTIONS(1273), + [sym_char_literal] = ACTIONS(1273), + [anon_sym_true] = ACTIONS(1275), + [anon_sym_false] = ACTIONS(1275), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1275), + [sym_super] = ACTIONS(1275), + [sym_crate] = ACTIONS(1275), + [sym_metavariable] = ACTIONS(1273), + [sym__raw_string_literal_start] = ACTIONS(1273), + [sym_float_literal] = ACTIONS(1273), + }, + [559] = { + [sym_line_comment] = STATE(559), + [sym_block_comment] = STATE(559), + [ts_builtin_sym_end] = ACTIONS(2125), + [sym_identifier] = ACTIONS(2127), + [anon_sym_SEMI] = ACTIONS(2125), + [anon_sym_macro_rules_BANG] = ACTIONS(2125), + [anon_sym_LPAREN] = ACTIONS(2125), + [anon_sym_LBRACK] = ACTIONS(2125), + [anon_sym_LBRACE] = ACTIONS(2125), + [anon_sym_RBRACE] = ACTIONS(2125), + [anon_sym_STAR] = ACTIONS(2125), + [anon_sym_u8] = ACTIONS(2127), + [anon_sym_i8] = ACTIONS(2127), + [anon_sym_u16] = ACTIONS(2127), + [anon_sym_i16] = ACTIONS(2127), + [anon_sym_u32] = ACTIONS(2127), + [anon_sym_i32] = ACTIONS(2127), + [anon_sym_u64] = ACTIONS(2127), + [anon_sym_i64] = ACTIONS(2127), + [anon_sym_u128] = ACTIONS(2127), + [anon_sym_i128] = ACTIONS(2127), + [anon_sym_isize] = ACTIONS(2127), + [anon_sym_usize] = ACTIONS(2127), + [anon_sym_f32] = ACTIONS(2127), + [anon_sym_f64] = ACTIONS(2127), + [anon_sym_bool] = ACTIONS(2127), + [anon_sym_str] = ACTIONS(2127), + [anon_sym_char] = ACTIONS(2127), + [anon_sym_DASH] = ACTIONS(2125), + [anon_sym_BANG] = ACTIONS(2125), + [anon_sym_AMP] = ACTIONS(2125), + [anon_sym_PIPE] = ACTIONS(2125), + [anon_sym_LT] = ACTIONS(2125), + [anon_sym_DOT_DOT] = ACTIONS(2125), + [anon_sym_COLON_COLON] = ACTIONS(2125), + [anon_sym_POUND] = ACTIONS(2125), + [anon_sym_SQUOTE] = ACTIONS(2127), + [anon_sym_async] = ACTIONS(2127), + [anon_sym_break] = ACTIONS(2127), + [anon_sym_const] = ACTIONS(2127), + [anon_sym_continue] = ACTIONS(2127), + [anon_sym_default] = ACTIONS(2127), + [anon_sym_enum] = ACTIONS(2127), + [anon_sym_fn] = ACTIONS(2127), + [anon_sym_for] = ACTIONS(2127), + [anon_sym_gen] = ACTIONS(2127), + [anon_sym_if] = ACTIONS(2127), + [anon_sym_impl] = ACTIONS(2127), + [anon_sym_let] = ACTIONS(2127), + [anon_sym_loop] = ACTIONS(2127), + [anon_sym_match] = ACTIONS(2127), + [anon_sym_mod] = ACTIONS(2127), + [anon_sym_pub] = ACTIONS(2127), + [anon_sym_return] = ACTIONS(2127), + [anon_sym_static] = ACTIONS(2127), + [anon_sym_struct] = ACTIONS(2127), + [anon_sym_trait] = ACTIONS(2127), + [anon_sym_type] = ACTIONS(2127), + [anon_sym_union] = ACTIONS(2127), + [anon_sym_unsafe] = ACTIONS(2127), + [anon_sym_use] = ACTIONS(2127), + [anon_sym_while] = ACTIONS(2127), + [anon_sym_extern] = ACTIONS(2127), + [anon_sym_yield] = ACTIONS(2127), + [anon_sym_move] = ACTIONS(2127), + [anon_sym_try] = ACTIONS(2127), + [sym_integer_literal] = ACTIONS(2125), + [aux_sym_string_literal_token1] = ACTIONS(2125), + [sym_char_literal] = ACTIONS(2125), + [anon_sym_true] = ACTIONS(2127), + [anon_sym_false] = ACTIONS(2127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2127), + [sym_super] = ACTIONS(2127), + [sym_crate] = ACTIONS(2127), + [sym_metavariable] = ACTIONS(2125), + [sym__raw_string_literal_start] = ACTIONS(2125), + [sym_float_literal] = ACTIONS(2125), + }, + [560] = { + [sym_line_comment] = STATE(560), + [sym_block_comment] = STATE(560), + [ts_builtin_sym_end] = ACTIONS(2129), + [sym_identifier] = ACTIONS(2131), + [anon_sym_SEMI] = ACTIONS(2129), + [anon_sym_macro_rules_BANG] = ACTIONS(2129), + [anon_sym_LPAREN] = ACTIONS(2129), + [anon_sym_LBRACK] = ACTIONS(2129), + [anon_sym_LBRACE] = ACTIONS(2129), + [anon_sym_RBRACE] = ACTIONS(2129), + [anon_sym_STAR] = ACTIONS(2129), + [anon_sym_u8] = ACTIONS(2131), + [anon_sym_i8] = ACTIONS(2131), + [anon_sym_u16] = ACTIONS(2131), + [anon_sym_i16] = ACTIONS(2131), + [anon_sym_u32] = ACTIONS(2131), + [anon_sym_i32] = ACTIONS(2131), + [anon_sym_u64] = ACTIONS(2131), + [anon_sym_i64] = ACTIONS(2131), + [anon_sym_u128] = ACTIONS(2131), + [anon_sym_i128] = ACTIONS(2131), + [anon_sym_isize] = ACTIONS(2131), + [anon_sym_usize] = ACTIONS(2131), + [anon_sym_f32] = ACTIONS(2131), + [anon_sym_f64] = ACTIONS(2131), + [anon_sym_bool] = ACTIONS(2131), + [anon_sym_str] = ACTIONS(2131), + [anon_sym_char] = ACTIONS(2131), + [anon_sym_DASH] = ACTIONS(2129), + [anon_sym_BANG] = ACTIONS(2129), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_PIPE] = ACTIONS(2129), + [anon_sym_LT] = ACTIONS(2129), + [anon_sym_DOT_DOT] = ACTIONS(2129), + [anon_sym_COLON_COLON] = ACTIONS(2129), + [anon_sym_POUND] = ACTIONS(2129), + [anon_sym_SQUOTE] = ACTIONS(2131), + [anon_sym_async] = ACTIONS(2131), + [anon_sym_break] = ACTIONS(2131), + [anon_sym_const] = ACTIONS(2131), + [anon_sym_continue] = ACTIONS(2131), + [anon_sym_default] = ACTIONS(2131), + [anon_sym_enum] = ACTIONS(2131), + [anon_sym_fn] = ACTIONS(2131), + [anon_sym_for] = ACTIONS(2131), + [anon_sym_gen] = ACTIONS(2131), + [anon_sym_if] = ACTIONS(2131), + [anon_sym_impl] = ACTIONS(2131), + [anon_sym_let] = ACTIONS(2131), + [anon_sym_loop] = ACTIONS(2131), + [anon_sym_match] = ACTIONS(2131), + [anon_sym_mod] = ACTIONS(2131), + [anon_sym_pub] = ACTIONS(2131), + [anon_sym_return] = ACTIONS(2131), + [anon_sym_static] = ACTIONS(2131), + [anon_sym_struct] = ACTIONS(2131), + [anon_sym_trait] = ACTIONS(2131), + [anon_sym_type] = ACTIONS(2131), + [anon_sym_union] = ACTIONS(2131), + [anon_sym_unsafe] = ACTIONS(2131), + [anon_sym_use] = ACTIONS(2131), + [anon_sym_while] = ACTIONS(2131), + [anon_sym_extern] = ACTIONS(2131), + [anon_sym_yield] = ACTIONS(2131), + [anon_sym_move] = ACTIONS(2131), + [anon_sym_try] = ACTIONS(2131), + [sym_integer_literal] = ACTIONS(2129), + [aux_sym_string_literal_token1] = ACTIONS(2129), + [sym_char_literal] = ACTIONS(2129), + [anon_sym_true] = ACTIONS(2131), + [anon_sym_false] = ACTIONS(2131), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2131), + [sym_super] = ACTIONS(2131), + [sym_crate] = ACTIONS(2131), + [sym_metavariable] = ACTIONS(2129), + [sym__raw_string_literal_start] = ACTIONS(2129), + [sym_float_literal] = ACTIONS(2129), + }, + [561] = { + [sym_line_comment] = STATE(561), + [sym_block_comment] = STATE(561), + [ts_builtin_sym_end] = ACTIONS(2133), + [sym_identifier] = ACTIONS(2135), + [anon_sym_SEMI] = ACTIONS(2133), + [anon_sym_macro_rules_BANG] = ACTIONS(2133), + [anon_sym_LPAREN] = ACTIONS(2133), + [anon_sym_LBRACK] = ACTIONS(2133), + [anon_sym_LBRACE] = ACTIONS(2133), + [anon_sym_RBRACE] = ACTIONS(2133), + [anon_sym_STAR] = ACTIONS(2133), + [anon_sym_u8] = ACTIONS(2135), + [anon_sym_i8] = ACTIONS(2135), + [anon_sym_u16] = ACTIONS(2135), + [anon_sym_i16] = ACTIONS(2135), + [anon_sym_u32] = ACTIONS(2135), + [anon_sym_i32] = ACTIONS(2135), + [anon_sym_u64] = ACTIONS(2135), + [anon_sym_i64] = ACTIONS(2135), + [anon_sym_u128] = ACTIONS(2135), + [anon_sym_i128] = ACTIONS(2135), + [anon_sym_isize] = ACTIONS(2135), + [anon_sym_usize] = ACTIONS(2135), + [anon_sym_f32] = ACTIONS(2135), + [anon_sym_f64] = ACTIONS(2135), + [anon_sym_bool] = ACTIONS(2135), + [anon_sym_str] = ACTIONS(2135), + [anon_sym_char] = ACTIONS(2135), + [anon_sym_DASH] = ACTIONS(2133), + [anon_sym_BANG] = ACTIONS(2133), + [anon_sym_AMP] = ACTIONS(2133), + [anon_sym_PIPE] = ACTIONS(2133), + [anon_sym_LT] = ACTIONS(2133), + [anon_sym_DOT_DOT] = ACTIONS(2133), + [anon_sym_COLON_COLON] = ACTIONS(2133), + [anon_sym_POUND] = ACTIONS(2133), + [anon_sym_SQUOTE] = ACTIONS(2135), + [anon_sym_async] = ACTIONS(2135), + [anon_sym_break] = ACTIONS(2135), + [anon_sym_const] = ACTIONS(2135), + [anon_sym_continue] = ACTIONS(2135), + [anon_sym_default] = ACTIONS(2135), + [anon_sym_enum] = ACTIONS(2135), + [anon_sym_fn] = ACTIONS(2135), + [anon_sym_for] = ACTIONS(2135), + [anon_sym_gen] = ACTIONS(2135), + [anon_sym_if] = ACTIONS(2135), + [anon_sym_impl] = ACTIONS(2135), + [anon_sym_let] = ACTIONS(2135), + [anon_sym_loop] = ACTIONS(2135), + [anon_sym_match] = ACTIONS(2135), + [anon_sym_mod] = ACTIONS(2135), + [anon_sym_pub] = ACTIONS(2135), + [anon_sym_return] = ACTIONS(2135), + [anon_sym_static] = ACTIONS(2135), + [anon_sym_struct] = ACTIONS(2135), + [anon_sym_trait] = ACTIONS(2135), + [anon_sym_type] = ACTIONS(2135), + [anon_sym_union] = ACTIONS(2135), + [anon_sym_unsafe] = ACTIONS(2135), + [anon_sym_use] = ACTIONS(2135), + [anon_sym_while] = ACTIONS(2135), + [anon_sym_extern] = ACTIONS(2135), + [anon_sym_yield] = ACTIONS(2135), + [anon_sym_move] = ACTIONS(2135), + [anon_sym_try] = ACTIONS(2135), + [sym_integer_literal] = ACTIONS(2133), + [aux_sym_string_literal_token1] = ACTIONS(2133), + [sym_char_literal] = ACTIONS(2133), + [anon_sym_true] = ACTIONS(2135), + [anon_sym_false] = ACTIONS(2135), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2135), + [sym_super] = ACTIONS(2135), + [sym_crate] = ACTIONS(2135), + [sym_metavariable] = ACTIONS(2133), + [sym__raw_string_literal_start] = ACTIONS(2133), + [sym_float_literal] = ACTIONS(2133), + }, + [562] = { + [sym_line_comment] = STATE(562), + [sym_block_comment] = STATE(562), + [ts_builtin_sym_end] = ACTIONS(2137), + [sym_identifier] = ACTIONS(2139), + [anon_sym_SEMI] = ACTIONS(2137), + [anon_sym_macro_rules_BANG] = ACTIONS(2137), + [anon_sym_LPAREN] = ACTIONS(2137), + [anon_sym_LBRACK] = ACTIONS(2137), + [anon_sym_LBRACE] = ACTIONS(2137), + [anon_sym_RBRACE] = ACTIONS(2137), + [anon_sym_STAR] = ACTIONS(2137), + [anon_sym_u8] = ACTIONS(2139), + [anon_sym_i8] = ACTIONS(2139), + [anon_sym_u16] = ACTIONS(2139), + [anon_sym_i16] = ACTIONS(2139), + [anon_sym_u32] = ACTIONS(2139), + [anon_sym_i32] = ACTIONS(2139), + [anon_sym_u64] = ACTIONS(2139), + [anon_sym_i64] = ACTIONS(2139), + [anon_sym_u128] = ACTIONS(2139), + [anon_sym_i128] = ACTIONS(2139), + [anon_sym_isize] = ACTIONS(2139), + [anon_sym_usize] = ACTIONS(2139), + [anon_sym_f32] = ACTIONS(2139), + [anon_sym_f64] = ACTIONS(2139), + [anon_sym_bool] = ACTIONS(2139), + [anon_sym_str] = ACTIONS(2139), + [anon_sym_char] = ACTIONS(2139), + [anon_sym_DASH] = ACTIONS(2137), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_AMP] = ACTIONS(2137), + [anon_sym_PIPE] = ACTIONS(2137), + [anon_sym_LT] = ACTIONS(2137), + [anon_sym_DOT_DOT] = ACTIONS(2137), + [anon_sym_COLON_COLON] = ACTIONS(2137), + [anon_sym_POUND] = ACTIONS(2137), + [anon_sym_SQUOTE] = ACTIONS(2139), + [anon_sym_async] = ACTIONS(2139), + [anon_sym_break] = ACTIONS(2139), + [anon_sym_const] = ACTIONS(2139), + [anon_sym_continue] = ACTIONS(2139), + [anon_sym_default] = ACTIONS(2139), + [anon_sym_enum] = ACTIONS(2139), + [anon_sym_fn] = ACTIONS(2139), + [anon_sym_for] = ACTIONS(2139), + [anon_sym_gen] = ACTIONS(2139), + [anon_sym_if] = ACTIONS(2139), + [anon_sym_impl] = ACTIONS(2139), + [anon_sym_let] = ACTIONS(2139), + [anon_sym_loop] = ACTIONS(2139), + [anon_sym_match] = ACTIONS(2139), + [anon_sym_mod] = ACTIONS(2139), + [anon_sym_pub] = ACTIONS(2139), + [anon_sym_return] = ACTIONS(2139), + [anon_sym_static] = ACTIONS(2139), + [anon_sym_struct] = ACTIONS(2139), + [anon_sym_trait] = ACTIONS(2139), + [anon_sym_type] = ACTIONS(2139), + [anon_sym_union] = ACTIONS(2139), + [anon_sym_unsafe] = ACTIONS(2139), + [anon_sym_use] = ACTIONS(2139), + [anon_sym_while] = ACTIONS(2139), + [anon_sym_extern] = ACTIONS(2139), + [anon_sym_yield] = ACTIONS(2139), + [anon_sym_move] = ACTIONS(2139), + [anon_sym_try] = ACTIONS(2139), + [sym_integer_literal] = ACTIONS(2137), + [aux_sym_string_literal_token1] = ACTIONS(2137), + [sym_char_literal] = ACTIONS(2137), + [anon_sym_true] = ACTIONS(2139), + [anon_sym_false] = ACTIONS(2139), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2139), + [sym_super] = ACTIONS(2139), + [sym_crate] = ACTIONS(2139), + [sym_metavariable] = ACTIONS(2137), + [sym__raw_string_literal_start] = ACTIONS(2137), + [sym_float_literal] = ACTIONS(2137), + }, [563] = { [sym_line_comment] = STATE(563), [sym_block_comment] = STATE(563), - [ts_builtin_sym_end] = ACTIONS(2003), - [sym_identifier] = ACTIONS(2005), - [anon_sym_SEMI] = ACTIONS(2003), - [anon_sym_macro_rules_BANG] = ACTIONS(2003), - [anon_sym_LPAREN] = ACTIONS(2003), - [anon_sym_LBRACK] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(2003), - [anon_sym_RBRACE] = ACTIONS(2003), - [anon_sym_STAR] = ACTIONS(2003), - [anon_sym_u8] = ACTIONS(2005), - [anon_sym_i8] = ACTIONS(2005), - [anon_sym_u16] = ACTIONS(2005), - [anon_sym_i16] = ACTIONS(2005), - [anon_sym_u32] = ACTIONS(2005), - [anon_sym_i32] = ACTIONS(2005), - [anon_sym_u64] = ACTIONS(2005), - [anon_sym_i64] = ACTIONS(2005), - [anon_sym_u128] = ACTIONS(2005), - [anon_sym_i128] = ACTIONS(2005), - [anon_sym_isize] = ACTIONS(2005), - [anon_sym_usize] = ACTIONS(2005), - [anon_sym_f32] = ACTIONS(2005), - [anon_sym_f64] = ACTIONS(2005), - [anon_sym_bool] = ACTIONS(2005), - [anon_sym_str] = ACTIONS(2005), - [anon_sym_char] = ACTIONS(2005), - [anon_sym_DASH] = ACTIONS(2003), - [anon_sym_BANG] = ACTIONS(2003), - [anon_sym_AMP] = ACTIONS(2003), - [anon_sym_PIPE] = ACTIONS(2003), - [anon_sym_LT] = ACTIONS(2003), - [anon_sym_DOT_DOT] = ACTIONS(2003), - [anon_sym_COLON_COLON] = ACTIONS(2003), - [anon_sym_POUND] = ACTIONS(2003), - [anon_sym_SQUOTE] = ACTIONS(2005), - [anon_sym_async] = ACTIONS(2005), - [anon_sym_break] = ACTIONS(2005), - [anon_sym_const] = ACTIONS(2005), - [anon_sym_continue] = ACTIONS(2005), - [anon_sym_default] = ACTIONS(2005), - [anon_sym_enum] = ACTIONS(2005), - [anon_sym_fn] = ACTIONS(2005), - [anon_sym_for] = ACTIONS(2005), - [anon_sym_gen] = ACTIONS(2005), - [anon_sym_if] = ACTIONS(2005), - [anon_sym_impl] = ACTIONS(2005), - [anon_sym_let] = ACTIONS(2005), - [anon_sym_loop] = ACTIONS(2005), - [anon_sym_match] = ACTIONS(2005), - [anon_sym_mod] = ACTIONS(2005), - [anon_sym_pub] = ACTIONS(2005), - [anon_sym_return] = ACTIONS(2005), - [anon_sym_static] = ACTIONS(2005), - [anon_sym_struct] = ACTIONS(2005), - [anon_sym_trait] = ACTIONS(2005), - [anon_sym_type] = ACTIONS(2005), - [anon_sym_union] = ACTIONS(2005), - [anon_sym_unsafe] = ACTIONS(2005), - [anon_sym_use] = ACTIONS(2005), - [anon_sym_while] = ACTIONS(2005), - [anon_sym_extern] = ACTIONS(2005), - [anon_sym_yield] = ACTIONS(2005), - [anon_sym_move] = ACTIONS(2005), - [anon_sym_try] = ACTIONS(2005), - [sym_integer_literal] = ACTIONS(2003), - [aux_sym_string_literal_token1] = ACTIONS(2003), - [sym_char_literal] = ACTIONS(2003), - [anon_sym_true] = ACTIONS(2005), - [anon_sym_false] = ACTIONS(2005), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2005), - [sym_super] = ACTIONS(2005), - [sym_crate] = ACTIONS(2005), - [sym_metavariable] = ACTIONS(2003), - [sym__raw_string_literal_start] = ACTIONS(2003), - [sym_float_literal] = ACTIONS(2003), + [ts_builtin_sym_end] = ACTIONS(2141), + [sym_identifier] = ACTIONS(2143), + [anon_sym_SEMI] = ACTIONS(2141), + [anon_sym_macro_rules_BANG] = ACTIONS(2141), + [anon_sym_LPAREN] = ACTIONS(2141), + [anon_sym_LBRACK] = ACTIONS(2141), + [anon_sym_LBRACE] = ACTIONS(2141), + [anon_sym_RBRACE] = ACTIONS(2141), + [anon_sym_STAR] = ACTIONS(2141), + [anon_sym_u8] = ACTIONS(2143), + [anon_sym_i8] = ACTIONS(2143), + [anon_sym_u16] = ACTIONS(2143), + [anon_sym_i16] = ACTIONS(2143), + [anon_sym_u32] = ACTIONS(2143), + [anon_sym_i32] = ACTIONS(2143), + [anon_sym_u64] = ACTIONS(2143), + [anon_sym_i64] = ACTIONS(2143), + [anon_sym_u128] = ACTIONS(2143), + [anon_sym_i128] = ACTIONS(2143), + [anon_sym_isize] = ACTIONS(2143), + [anon_sym_usize] = ACTIONS(2143), + [anon_sym_f32] = ACTIONS(2143), + [anon_sym_f64] = ACTIONS(2143), + [anon_sym_bool] = ACTIONS(2143), + [anon_sym_str] = ACTIONS(2143), + [anon_sym_char] = ACTIONS(2143), + [anon_sym_DASH] = ACTIONS(2141), + [anon_sym_BANG] = ACTIONS(2141), + [anon_sym_AMP] = ACTIONS(2141), + [anon_sym_PIPE] = ACTIONS(2141), + [anon_sym_LT] = ACTIONS(2141), + [anon_sym_DOT_DOT] = ACTIONS(2141), + [anon_sym_COLON_COLON] = ACTIONS(2141), + [anon_sym_POUND] = ACTIONS(2141), + [anon_sym_SQUOTE] = ACTIONS(2143), + [anon_sym_async] = ACTIONS(2143), + [anon_sym_break] = ACTIONS(2143), + [anon_sym_const] = ACTIONS(2143), + [anon_sym_continue] = ACTIONS(2143), + [anon_sym_default] = ACTIONS(2143), + [anon_sym_enum] = ACTIONS(2143), + [anon_sym_fn] = ACTIONS(2143), + [anon_sym_for] = ACTIONS(2143), + [anon_sym_gen] = ACTIONS(2143), + [anon_sym_if] = ACTIONS(2143), + [anon_sym_impl] = ACTIONS(2143), + [anon_sym_let] = ACTIONS(2143), + [anon_sym_loop] = ACTIONS(2143), + [anon_sym_match] = ACTIONS(2143), + [anon_sym_mod] = ACTIONS(2143), + [anon_sym_pub] = ACTIONS(2143), + [anon_sym_return] = ACTIONS(2143), + [anon_sym_static] = ACTIONS(2143), + [anon_sym_struct] = ACTIONS(2143), + [anon_sym_trait] = ACTIONS(2143), + [anon_sym_type] = ACTIONS(2143), + [anon_sym_union] = ACTIONS(2143), + [anon_sym_unsafe] = ACTIONS(2143), + [anon_sym_use] = ACTIONS(2143), + [anon_sym_while] = ACTIONS(2143), + [anon_sym_extern] = ACTIONS(2143), + [anon_sym_yield] = ACTIONS(2143), + [anon_sym_move] = ACTIONS(2143), + [anon_sym_try] = ACTIONS(2143), + [sym_integer_literal] = ACTIONS(2141), + [aux_sym_string_literal_token1] = ACTIONS(2141), + [sym_char_literal] = ACTIONS(2141), + [anon_sym_true] = ACTIONS(2143), + [anon_sym_false] = ACTIONS(2143), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2143), + [sym_super] = ACTIONS(2143), + [sym_crate] = ACTIONS(2143), + [sym_metavariable] = ACTIONS(2141), + [sym__raw_string_literal_start] = ACTIONS(2141), + [sym_float_literal] = ACTIONS(2141), }, [564] = { [sym_line_comment] = STATE(564), [sym_block_comment] = STATE(564), - [ts_builtin_sym_end] = ACTIONS(2007), - [sym_identifier] = ACTIONS(2009), - [anon_sym_SEMI] = ACTIONS(2007), - [anon_sym_macro_rules_BANG] = ACTIONS(2007), - [anon_sym_LPAREN] = ACTIONS(2007), - [anon_sym_LBRACK] = ACTIONS(2007), - [anon_sym_LBRACE] = ACTIONS(2007), - [anon_sym_RBRACE] = ACTIONS(2007), - [anon_sym_STAR] = ACTIONS(2007), - [anon_sym_u8] = ACTIONS(2009), - [anon_sym_i8] = ACTIONS(2009), - [anon_sym_u16] = ACTIONS(2009), - [anon_sym_i16] = ACTIONS(2009), - [anon_sym_u32] = ACTIONS(2009), - [anon_sym_i32] = ACTIONS(2009), - [anon_sym_u64] = ACTIONS(2009), - [anon_sym_i64] = ACTIONS(2009), - [anon_sym_u128] = ACTIONS(2009), - [anon_sym_i128] = ACTIONS(2009), - [anon_sym_isize] = ACTIONS(2009), - [anon_sym_usize] = ACTIONS(2009), - [anon_sym_f32] = ACTIONS(2009), - [anon_sym_f64] = ACTIONS(2009), - [anon_sym_bool] = ACTIONS(2009), - [anon_sym_str] = ACTIONS(2009), - [anon_sym_char] = ACTIONS(2009), - [anon_sym_DASH] = ACTIONS(2007), - [anon_sym_BANG] = ACTIONS(2007), - [anon_sym_AMP] = ACTIONS(2007), - [anon_sym_PIPE] = ACTIONS(2007), - [anon_sym_LT] = ACTIONS(2007), - [anon_sym_DOT_DOT] = ACTIONS(2007), - [anon_sym_COLON_COLON] = ACTIONS(2007), - [anon_sym_POUND] = ACTIONS(2007), - [anon_sym_SQUOTE] = ACTIONS(2009), - [anon_sym_async] = ACTIONS(2009), - [anon_sym_break] = ACTIONS(2009), - [anon_sym_const] = ACTIONS(2009), - [anon_sym_continue] = ACTIONS(2009), - [anon_sym_default] = ACTIONS(2009), - [anon_sym_enum] = ACTIONS(2009), - [anon_sym_fn] = ACTIONS(2009), - [anon_sym_for] = ACTIONS(2009), - [anon_sym_gen] = ACTIONS(2009), - [anon_sym_if] = ACTIONS(2009), - [anon_sym_impl] = ACTIONS(2009), - [anon_sym_let] = ACTIONS(2009), - [anon_sym_loop] = ACTIONS(2009), - [anon_sym_match] = ACTIONS(2009), - [anon_sym_mod] = ACTIONS(2009), - [anon_sym_pub] = ACTIONS(2009), - [anon_sym_return] = ACTIONS(2009), - [anon_sym_static] = ACTIONS(2009), - [anon_sym_struct] = ACTIONS(2009), - [anon_sym_trait] = ACTIONS(2009), - [anon_sym_type] = ACTIONS(2009), - [anon_sym_union] = ACTIONS(2009), - [anon_sym_unsafe] = ACTIONS(2009), - [anon_sym_use] = ACTIONS(2009), - [anon_sym_while] = ACTIONS(2009), - [anon_sym_extern] = ACTIONS(2009), - [anon_sym_yield] = ACTIONS(2009), - [anon_sym_move] = ACTIONS(2009), - [anon_sym_try] = ACTIONS(2009), - [sym_integer_literal] = ACTIONS(2007), - [aux_sym_string_literal_token1] = ACTIONS(2007), - [sym_char_literal] = ACTIONS(2007), - [anon_sym_true] = ACTIONS(2009), - [anon_sym_false] = ACTIONS(2009), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2009), - [sym_super] = ACTIONS(2009), - [sym_crate] = ACTIONS(2009), - [sym_metavariable] = ACTIONS(2007), - [sym__raw_string_literal_start] = ACTIONS(2007), - [sym_float_literal] = ACTIONS(2007), + [ts_builtin_sym_end] = ACTIONS(2145), + [sym_identifier] = ACTIONS(2147), + [anon_sym_SEMI] = ACTIONS(2145), + [anon_sym_macro_rules_BANG] = ACTIONS(2145), + [anon_sym_LPAREN] = ACTIONS(2145), + [anon_sym_LBRACK] = ACTIONS(2145), + [anon_sym_LBRACE] = ACTIONS(2145), + [anon_sym_RBRACE] = ACTIONS(2145), + [anon_sym_STAR] = ACTIONS(2145), + [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), + [anon_sym_DASH] = ACTIONS(2145), + [anon_sym_BANG] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(2145), + [anon_sym_PIPE] = ACTIONS(2145), + [anon_sym_LT] = ACTIONS(2145), + [anon_sym_DOT_DOT] = ACTIONS(2145), + [anon_sym_COLON_COLON] = ACTIONS(2145), + [anon_sym_POUND] = ACTIONS(2145), + [anon_sym_SQUOTE] = ACTIONS(2147), + [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2147), + [anon_sym_extern] = ACTIONS(2147), + [anon_sym_yield] = ACTIONS(2147), + [anon_sym_move] = ACTIONS(2147), + [anon_sym_try] = ACTIONS(2147), + [sym_integer_literal] = ACTIONS(2145), + [aux_sym_string_literal_token1] = ACTIONS(2145), + [sym_char_literal] = ACTIONS(2145), + [anon_sym_true] = ACTIONS(2147), + [anon_sym_false] = ACTIONS(2147), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2147), + [sym_super] = ACTIONS(2147), + [sym_crate] = ACTIONS(2147), + [sym_metavariable] = ACTIONS(2145), + [sym__raw_string_literal_start] = ACTIONS(2145), + [sym_float_literal] = ACTIONS(2145), }, [565] = { [sym_line_comment] = STATE(565), [sym_block_comment] = STATE(565), - [ts_builtin_sym_end] = ACTIONS(2011), - [sym_identifier] = ACTIONS(2013), - [anon_sym_SEMI] = ACTIONS(2011), - [anon_sym_macro_rules_BANG] = ACTIONS(2011), - [anon_sym_LPAREN] = ACTIONS(2011), - [anon_sym_LBRACK] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(2011), - [anon_sym_RBRACE] = ACTIONS(2011), - [anon_sym_STAR] = ACTIONS(2011), - [anon_sym_u8] = ACTIONS(2013), - [anon_sym_i8] = ACTIONS(2013), - [anon_sym_u16] = ACTIONS(2013), - [anon_sym_i16] = ACTIONS(2013), - [anon_sym_u32] = ACTIONS(2013), - [anon_sym_i32] = ACTIONS(2013), - [anon_sym_u64] = ACTIONS(2013), - [anon_sym_i64] = ACTIONS(2013), - [anon_sym_u128] = ACTIONS(2013), - [anon_sym_i128] = ACTIONS(2013), - [anon_sym_isize] = ACTIONS(2013), - [anon_sym_usize] = ACTIONS(2013), - [anon_sym_f32] = ACTIONS(2013), - [anon_sym_f64] = ACTIONS(2013), - [anon_sym_bool] = ACTIONS(2013), - [anon_sym_str] = ACTIONS(2013), - [anon_sym_char] = ACTIONS(2013), - [anon_sym_DASH] = ACTIONS(2011), - [anon_sym_BANG] = ACTIONS(2011), - [anon_sym_AMP] = ACTIONS(2011), - [anon_sym_PIPE] = ACTIONS(2011), - [anon_sym_LT] = ACTIONS(2011), - [anon_sym_DOT_DOT] = ACTIONS(2011), - [anon_sym_COLON_COLON] = ACTIONS(2011), - [anon_sym_POUND] = ACTIONS(2011), - [anon_sym_SQUOTE] = ACTIONS(2013), - [anon_sym_async] = ACTIONS(2013), - [anon_sym_break] = ACTIONS(2013), - [anon_sym_const] = ACTIONS(2013), - [anon_sym_continue] = ACTIONS(2013), - [anon_sym_default] = ACTIONS(2013), - [anon_sym_enum] = ACTIONS(2013), - [anon_sym_fn] = ACTIONS(2013), - [anon_sym_for] = ACTIONS(2013), - [anon_sym_gen] = ACTIONS(2013), - [anon_sym_if] = ACTIONS(2013), - [anon_sym_impl] = ACTIONS(2013), - [anon_sym_let] = ACTIONS(2013), - [anon_sym_loop] = ACTIONS(2013), - [anon_sym_match] = ACTIONS(2013), - [anon_sym_mod] = ACTIONS(2013), - [anon_sym_pub] = ACTIONS(2013), - [anon_sym_return] = ACTIONS(2013), - [anon_sym_static] = ACTIONS(2013), - [anon_sym_struct] = ACTIONS(2013), - [anon_sym_trait] = ACTIONS(2013), - [anon_sym_type] = ACTIONS(2013), - [anon_sym_union] = ACTIONS(2013), - [anon_sym_unsafe] = ACTIONS(2013), - [anon_sym_use] = ACTIONS(2013), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_extern] = ACTIONS(2013), - [anon_sym_yield] = ACTIONS(2013), - [anon_sym_move] = ACTIONS(2013), - [anon_sym_try] = ACTIONS(2013), - [sym_integer_literal] = ACTIONS(2011), - [aux_sym_string_literal_token1] = ACTIONS(2011), - [sym_char_literal] = ACTIONS(2011), - [anon_sym_true] = ACTIONS(2013), - [anon_sym_false] = ACTIONS(2013), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2013), - [sym_super] = ACTIONS(2013), - [sym_crate] = ACTIONS(2013), - [sym_metavariable] = ACTIONS(2011), - [sym__raw_string_literal_start] = ACTIONS(2011), - [sym_float_literal] = ACTIONS(2011), + [ts_builtin_sym_end] = ACTIONS(2149), + [sym_identifier] = ACTIONS(2151), + [anon_sym_SEMI] = ACTIONS(2149), + [anon_sym_macro_rules_BANG] = ACTIONS(2149), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_LBRACK] = ACTIONS(2149), + [anon_sym_LBRACE] = ACTIONS(2149), + [anon_sym_RBRACE] = ACTIONS(2149), + [anon_sym_STAR] = ACTIONS(2149), + [anon_sym_u8] = ACTIONS(2151), + [anon_sym_i8] = ACTIONS(2151), + [anon_sym_u16] = ACTIONS(2151), + [anon_sym_i16] = ACTIONS(2151), + [anon_sym_u32] = ACTIONS(2151), + [anon_sym_i32] = ACTIONS(2151), + [anon_sym_u64] = ACTIONS(2151), + [anon_sym_i64] = ACTIONS(2151), + [anon_sym_u128] = ACTIONS(2151), + [anon_sym_i128] = ACTIONS(2151), + [anon_sym_isize] = ACTIONS(2151), + [anon_sym_usize] = ACTIONS(2151), + [anon_sym_f32] = ACTIONS(2151), + [anon_sym_f64] = ACTIONS(2151), + [anon_sym_bool] = ACTIONS(2151), + [anon_sym_str] = ACTIONS(2151), + [anon_sym_char] = ACTIONS(2151), + [anon_sym_DASH] = ACTIONS(2149), + [anon_sym_BANG] = ACTIONS(2149), + [anon_sym_AMP] = ACTIONS(2149), + [anon_sym_PIPE] = ACTIONS(2149), + [anon_sym_LT] = ACTIONS(2149), + [anon_sym_DOT_DOT] = ACTIONS(2149), + [anon_sym_COLON_COLON] = ACTIONS(2149), + [anon_sym_POUND] = ACTIONS(2149), + [anon_sym_SQUOTE] = ACTIONS(2151), + [anon_sym_async] = ACTIONS(2151), + [anon_sym_break] = ACTIONS(2151), + [anon_sym_const] = ACTIONS(2151), + [anon_sym_continue] = ACTIONS(2151), + [anon_sym_default] = ACTIONS(2151), + [anon_sym_enum] = ACTIONS(2151), + [anon_sym_fn] = ACTIONS(2151), + [anon_sym_for] = ACTIONS(2151), + [anon_sym_gen] = ACTIONS(2151), + [anon_sym_if] = ACTIONS(2151), + [anon_sym_impl] = ACTIONS(2151), + [anon_sym_let] = ACTIONS(2151), + [anon_sym_loop] = ACTIONS(2151), + [anon_sym_match] = ACTIONS(2151), + [anon_sym_mod] = ACTIONS(2151), + [anon_sym_pub] = ACTIONS(2151), + [anon_sym_return] = ACTIONS(2151), + [anon_sym_static] = ACTIONS(2151), + [anon_sym_struct] = ACTIONS(2151), + [anon_sym_trait] = ACTIONS(2151), + [anon_sym_type] = ACTIONS(2151), + [anon_sym_union] = ACTIONS(2151), + [anon_sym_unsafe] = ACTIONS(2151), + [anon_sym_use] = ACTIONS(2151), + [anon_sym_while] = ACTIONS(2151), + [anon_sym_extern] = ACTIONS(2151), + [anon_sym_yield] = ACTIONS(2151), + [anon_sym_move] = ACTIONS(2151), + [anon_sym_try] = ACTIONS(2151), + [sym_integer_literal] = ACTIONS(2149), + [aux_sym_string_literal_token1] = ACTIONS(2149), + [sym_char_literal] = ACTIONS(2149), + [anon_sym_true] = ACTIONS(2151), + [anon_sym_false] = ACTIONS(2151), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2151), + [sym_super] = ACTIONS(2151), + [sym_crate] = ACTIONS(2151), + [sym_metavariable] = ACTIONS(2149), + [sym__raw_string_literal_start] = ACTIONS(2149), + [sym_float_literal] = ACTIONS(2149), }, [566] = { [sym_line_comment] = STATE(566), [sym_block_comment] = STATE(566), - [ts_builtin_sym_end] = ACTIONS(2015), - [sym_identifier] = ACTIONS(2017), - [anon_sym_SEMI] = ACTIONS(2015), - [anon_sym_macro_rules_BANG] = ACTIONS(2015), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_LBRACK] = ACTIONS(2015), - [anon_sym_LBRACE] = ACTIONS(2015), - [anon_sym_RBRACE] = ACTIONS(2015), - [anon_sym_STAR] = ACTIONS(2015), - [anon_sym_u8] = ACTIONS(2017), - [anon_sym_i8] = ACTIONS(2017), - [anon_sym_u16] = ACTIONS(2017), - [anon_sym_i16] = ACTIONS(2017), - [anon_sym_u32] = ACTIONS(2017), - [anon_sym_i32] = ACTIONS(2017), - [anon_sym_u64] = ACTIONS(2017), - [anon_sym_i64] = ACTIONS(2017), - [anon_sym_u128] = ACTIONS(2017), - [anon_sym_i128] = ACTIONS(2017), - [anon_sym_isize] = ACTIONS(2017), - [anon_sym_usize] = ACTIONS(2017), - [anon_sym_f32] = ACTIONS(2017), - [anon_sym_f64] = ACTIONS(2017), - [anon_sym_bool] = ACTIONS(2017), - [anon_sym_str] = ACTIONS(2017), - [anon_sym_char] = ACTIONS(2017), - [anon_sym_DASH] = ACTIONS(2015), - [anon_sym_BANG] = ACTIONS(2015), - [anon_sym_AMP] = ACTIONS(2015), - [anon_sym_PIPE] = ACTIONS(2015), - [anon_sym_LT] = ACTIONS(2015), - [anon_sym_DOT_DOT] = ACTIONS(2015), - [anon_sym_COLON_COLON] = ACTIONS(2015), - [anon_sym_POUND] = ACTIONS(2015), - [anon_sym_SQUOTE] = ACTIONS(2017), - [anon_sym_async] = ACTIONS(2017), - [anon_sym_break] = ACTIONS(2017), - [anon_sym_const] = ACTIONS(2017), - [anon_sym_continue] = ACTIONS(2017), - [anon_sym_default] = ACTIONS(2017), - [anon_sym_enum] = ACTIONS(2017), - [anon_sym_fn] = ACTIONS(2017), - [anon_sym_for] = ACTIONS(2017), - [anon_sym_gen] = ACTIONS(2017), - [anon_sym_if] = ACTIONS(2017), - [anon_sym_impl] = ACTIONS(2017), - [anon_sym_let] = ACTIONS(2017), - [anon_sym_loop] = ACTIONS(2017), - [anon_sym_match] = ACTIONS(2017), - [anon_sym_mod] = ACTIONS(2017), - [anon_sym_pub] = ACTIONS(2017), - [anon_sym_return] = ACTIONS(2017), - [anon_sym_static] = ACTIONS(2017), - [anon_sym_struct] = ACTIONS(2017), - [anon_sym_trait] = ACTIONS(2017), - [anon_sym_type] = ACTIONS(2017), - [anon_sym_union] = ACTIONS(2017), - [anon_sym_unsafe] = ACTIONS(2017), - [anon_sym_use] = ACTIONS(2017), - [anon_sym_while] = ACTIONS(2017), - [anon_sym_extern] = ACTIONS(2017), - [anon_sym_yield] = ACTIONS(2017), - [anon_sym_move] = ACTIONS(2017), - [anon_sym_try] = ACTIONS(2017), - [sym_integer_literal] = ACTIONS(2015), - [aux_sym_string_literal_token1] = ACTIONS(2015), - [sym_char_literal] = ACTIONS(2015), - [anon_sym_true] = ACTIONS(2017), - [anon_sym_false] = ACTIONS(2017), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2017), - [sym_super] = ACTIONS(2017), - [sym_crate] = ACTIONS(2017), - [sym_metavariable] = ACTIONS(2015), - [sym__raw_string_literal_start] = ACTIONS(2015), - [sym_float_literal] = ACTIONS(2015), + [ts_builtin_sym_end] = ACTIONS(2153), + [sym_identifier] = ACTIONS(2155), + [anon_sym_SEMI] = ACTIONS(2153), + [anon_sym_macro_rules_BANG] = ACTIONS(2153), + [anon_sym_LPAREN] = ACTIONS(2153), + [anon_sym_LBRACK] = ACTIONS(2153), + [anon_sym_LBRACE] = ACTIONS(2153), + [anon_sym_RBRACE] = ACTIONS(2153), + [anon_sym_STAR] = ACTIONS(2153), + [anon_sym_u8] = ACTIONS(2155), + [anon_sym_i8] = ACTIONS(2155), + [anon_sym_u16] = ACTIONS(2155), + [anon_sym_i16] = ACTIONS(2155), + [anon_sym_u32] = ACTIONS(2155), + [anon_sym_i32] = ACTIONS(2155), + [anon_sym_u64] = ACTIONS(2155), + [anon_sym_i64] = ACTIONS(2155), + [anon_sym_u128] = ACTIONS(2155), + [anon_sym_i128] = ACTIONS(2155), + [anon_sym_isize] = ACTIONS(2155), + [anon_sym_usize] = ACTIONS(2155), + [anon_sym_f32] = ACTIONS(2155), + [anon_sym_f64] = ACTIONS(2155), + [anon_sym_bool] = ACTIONS(2155), + [anon_sym_str] = ACTIONS(2155), + [anon_sym_char] = ACTIONS(2155), + [anon_sym_DASH] = ACTIONS(2153), + [anon_sym_BANG] = ACTIONS(2153), + [anon_sym_AMP] = ACTIONS(2153), + [anon_sym_PIPE] = ACTIONS(2153), + [anon_sym_LT] = ACTIONS(2153), + [anon_sym_DOT_DOT] = ACTIONS(2153), + [anon_sym_COLON_COLON] = ACTIONS(2153), + [anon_sym_POUND] = ACTIONS(2153), + [anon_sym_SQUOTE] = ACTIONS(2155), + [anon_sym_async] = ACTIONS(2155), + [anon_sym_break] = ACTIONS(2155), + [anon_sym_const] = ACTIONS(2155), + [anon_sym_continue] = ACTIONS(2155), + [anon_sym_default] = ACTIONS(2155), + [anon_sym_enum] = ACTIONS(2155), + [anon_sym_fn] = ACTIONS(2155), + [anon_sym_for] = ACTIONS(2155), + [anon_sym_gen] = ACTIONS(2155), + [anon_sym_if] = ACTIONS(2155), + [anon_sym_impl] = ACTIONS(2155), + [anon_sym_let] = ACTIONS(2155), + [anon_sym_loop] = ACTIONS(2155), + [anon_sym_match] = ACTIONS(2155), + [anon_sym_mod] = ACTIONS(2155), + [anon_sym_pub] = ACTIONS(2155), + [anon_sym_return] = ACTIONS(2155), + [anon_sym_static] = ACTIONS(2155), + [anon_sym_struct] = ACTIONS(2155), + [anon_sym_trait] = ACTIONS(2155), + [anon_sym_type] = ACTIONS(2155), + [anon_sym_union] = ACTIONS(2155), + [anon_sym_unsafe] = ACTIONS(2155), + [anon_sym_use] = ACTIONS(2155), + [anon_sym_while] = ACTIONS(2155), + [anon_sym_extern] = ACTIONS(2155), + [anon_sym_yield] = ACTIONS(2155), + [anon_sym_move] = ACTIONS(2155), + [anon_sym_try] = ACTIONS(2155), + [sym_integer_literal] = ACTIONS(2153), + [aux_sym_string_literal_token1] = ACTIONS(2153), + [sym_char_literal] = ACTIONS(2153), + [anon_sym_true] = ACTIONS(2155), + [anon_sym_false] = ACTIONS(2155), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2155), + [sym_super] = ACTIONS(2155), + [sym_crate] = ACTIONS(2155), + [sym_metavariable] = ACTIONS(2153), + [sym__raw_string_literal_start] = ACTIONS(2153), + [sym_float_literal] = ACTIONS(2153), }, [567] = { [sym_line_comment] = STATE(567), [sym_block_comment] = STATE(567), - [ts_builtin_sym_end] = ACTIONS(2019), - [sym_identifier] = ACTIONS(2021), - [anon_sym_SEMI] = ACTIONS(2019), - [anon_sym_macro_rules_BANG] = ACTIONS(2019), - [anon_sym_LPAREN] = ACTIONS(2019), - [anon_sym_LBRACK] = ACTIONS(2019), - [anon_sym_LBRACE] = ACTIONS(2019), - [anon_sym_RBRACE] = ACTIONS(2019), - [anon_sym_STAR] = ACTIONS(2019), - [anon_sym_u8] = ACTIONS(2021), - [anon_sym_i8] = ACTIONS(2021), - [anon_sym_u16] = ACTIONS(2021), - [anon_sym_i16] = ACTIONS(2021), - [anon_sym_u32] = ACTIONS(2021), - [anon_sym_i32] = ACTIONS(2021), - [anon_sym_u64] = ACTIONS(2021), - [anon_sym_i64] = ACTIONS(2021), - [anon_sym_u128] = ACTIONS(2021), - [anon_sym_i128] = ACTIONS(2021), - [anon_sym_isize] = ACTIONS(2021), - [anon_sym_usize] = ACTIONS(2021), - [anon_sym_f32] = ACTIONS(2021), - [anon_sym_f64] = ACTIONS(2021), - [anon_sym_bool] = ACTIONS(2021), - [anon_sym_str] = ACTIONS(2021), - [anon_sym_char] = ACTIONS(2021), - [anon_sym_DASH] = ACTIONS(2019), - [anon_sym_BANG] = ACTIONS(2019), - [anon_sym_AMP] = ACTIONS(2019), - [anon_sym_PIPE] = ACTIONS(2019), - [anon_sym_LT] = ACTIONS(2019), - [anon_sym_DOT_DOT] = ACTIONS(2019), - [anon_sym_COLON_COLON] = ACTIONS(2019), - [anon_sym_POUND] = ACTIONS(2019), - [anon_sym_SQUOTE] = ACTIONS(2021), - [anon_sym_async] = ACTIONS(2021), - [anon_sym_break] = ACTIONS(2021), - [anon_sym_const] = ACTIONS(2021), - [anon_sym_continue] = ACTIONS(2021), - [anon_sym_default] = ACTIONS(2021), - [anon_sym_enum] = ACTIONS(2021), - [anon_sym_fn] = ACTIONS(2021), - [anon_sym_for] = ACTIONS(2021), - [anon_sym_gen] = ACTIONS(2021), - [anon_sym_if] = ACTIONS(2021), - [anon_sym_impl] = ACTIONS(2021), - [anon_sym_let] = ACTIONS(2021), - [anon_sym_loop] = ACTIONS(2021), - [anon_sym_match] = ACTIONS(2021), - [anon_sym_mod] = ACTIONS(2021), - [anon_sym_pub] = ACTIONS(2021), - [anon_sym_return] = ACTIONS(2021), - [anon_sym_static] = ACTIONS(2021), - [anon_sym_struct] = ACTIONS(2021), - [anon_sym_trait] = ACTIONS(2021), - [anon_sym_type] = ACTIONS(2021), - [anon_sym_union] = ACTIONS(2021), - [anon_sym_unsafe] = ACTIONS(2021), - [anon_sym_use] = ACTIONS(2021), - [anon_sym_while] = ACTIONS(2021), - [anon_sym_extern] = ACTIONS(2021), - [anon_sym_yield] = ACTIONS(2021), - [anon_sym_move] = ACTIONS(2021), - [anon_sym_try] = ACTIONS(2021), - [sym_integer_literal] = ACTIONS(2019), - [aux_sym_string_literal_token1] = ACTIONS(2019), - [sym_char_literal] = ACTIONS(2019), - [anon_sym_true] = ACTIONS(2021), - [anon_sym_false] = ACTIONS(2021), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2021), - [sym_super] = ACTIONS(2021), - [sym_crate] = ACTIONS(2021), - [sym_metavariable] = ACTIONS(2019), - [sym__raw_string_literal_start] = ACTIONS(2019), - [sym_float_literal] = ACTIONS(2019), + [ts_builtin_sym_end] = ACTIONS(2157), + [sym_identifier] = ACTIONS(2159), + [anon_sym_SEMI] = ACTIONS(2157), + [anon_sym_macro_rules_BANG] = ACTIONS(2157), + [anon_sym_LPAREN] = ACTIONS(2157), + [anon_sym_LBRACK] = ACTIONS(2157), + [anon_sym_LBRACE] = ACTIONS(2157), + [anon_sym_RBRACE] = ACTIONS(2157), + [anon_sym_STAR] = ACTIONS(2157), + [anon_sym_u8] = ACTIONS(2159), + [anon_sym_i8] = ACTIONS(2159), + [anon_sym_u16] = ACTIONS(2159), + [anon_sym_i16] = ACTIONS(2159), + [anon_sym_u32] = ACTIONS(2159), + [anon_sym_i32] = ACTIONS(2159), + [anon_sym_u64] = ACTIONS(2159), + [anon_sym_i64] = ACTIONS(2159), + [anon_sym_u128] = ACTIONS(2159), + [anon_sym_i128] = ACTIONS(2159), + [anon_sym_isize] = ACTIONS(2159), + [anon_sym_usize] = ACTIONS(2159), + [anon_sym_f32] = ACTIONS(2159), + [anon_sym_f64] = ACTIONS(2159), + [anon_sym_bool] = ACTIONS(2159), + [anon_sym_str] = ACTIONS(2159), + [anon_sym_char] = ACTIONS(2159), + [anon_sym_DASH] = ACTIONS(2157), + [anon_sym_BANG] = ACTIONS(2157), + [anon_sym_AMP] = ACTIONS(2157), + [anon_sym_PIPE] = ACTIONS(2157), + [anon_sym_LT] = ACTIONS(2157), + [anon_sym_DOT_DOT] = ACTIONS(2157), + [anon_sym_COLON_COLON] = ACTIONS(2157), + [anon_sym_POUND] = ACTIONS(2157), + [anon_sym_SQUOTE] = ACTIONS(2159), + [anon_sym_async] = ACTIONS(2159), + [anon_sym_break] = ACTIONS(2159), + [anon_sym_const] = ACTIONS(2159), + [anon_sym_continue] = ACTIONS(2159), + [anon_sym_default] = ACTIONS(2159), + [anon_sym_enum] = ACTIONS(2159), + [anon_sym_fn] = ACTIONS(2159), + [anon_sym_for] = ACTIONS(2159), + [anon_sym_gen] = ACTIONS(2159), + [anon_sym_if] = ACTIONS(2159), + [anon_sym_impl] = ACTIONS(2159), + [anon_sym_let] = ACTIONS(2159), + [anon_sym_loop] = ACTIONS(2159), + [anon_sym_match] = ACTIONS(2159), + [anon_sym_mod] = ACTIONS(2159), + [anon_sym_pub] = ACTIONS(2159), + [anon_sym_return] = ACTIONS(2159), + [anon_sym_static] = ACTIONS(2159), + [anon_sym_struct] = ACTIONS(2159), + [anon_sym_trait] = ACTIONS(2159), + [anon_sym_type] = ACTIONS(2159), + [anon_sym_union] = ACTIONS(2159), + [anon_sym_unsafe] = ACTIONS(2159), + [anon_sym_use] = ACTIONS(2159), + [anon_sym_while] = ACTIONS(2159), + [anon_sym_extern] = ACTIONS(2159), + [anon_sym_yield] = ACTIONS(2159), + [anon_sym_move] = ACTIONS(2159), + [anon_sym_try] = ACTIONS(2159), + [sym_integer_literal] = ACTIONS(2157), + [aux_sym_string_literal_token1] = ACTIONS(2157), + [sym_char_literal] = ACTIONS(2157), + [anon_sym_true] = ACTIONS(2159), + [anon_sym_false] = ACTIONS(2159), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2159), + [sym_super] = ACTIONS(2159), + [sym_crate] = ACTIONS(2159), + [sym_metavariable] = ACTIONS(2157), + [sym__raw_string_literal_start] = ACTIONS(2157), + [sym_float_literal] = ACTIONS(2157), }, [568] = { [sym_line_comment] = STATE(568), [sym_block_comment] = STATE(568), - [ts_builtin_sym_end] = ACTIONS(2023), - [sym_identifier] = ACTIONS(2025), - [anon_sym_SEMI] = ACTIONS(2023), - [anon_sym_macro_rules_BANG] = ACTIONS(2023), - [anon_sym_LPAREN] = ACTIONS(2023), - [anon_sym_LBRACK] = ACTIONS(2023), - [anon_sym_LBRACE] = ACTIONS(2023), - [anon_sym_RBRACE] = ACTIONS(2023), - [anon_sym_STAR] = ACTIONS(2023), - [anon_sym_u8] = ACTIONS(2025), - [anon_sym_i8] = ACTIONS(2025), - [anon_sym_u16] = ACTIONS(2025), - [anon_sym_i16] = ACTIONS(2025), - [anon_sym_u32] = ACTIONS(2025), - [anon_sym_i32] = ACTIONS(2025), - [anon_sym_u64] = ACTIONS(2025), - [anon_sym_i64] = ACTIONS(2025), - [anon_sym_u128] = ACTIONS(2025), - [anon_sym_i128] = ACTIONS(2025), - [anon_sym_isize] = ACTIONS(2025), - [anon_sym_usize] = ACTIONS(2025), - [anon_sym_f32] = ACTIONS(2025), - [anon_sym_f64] = ACTIONS(2025), - [anon_sym_bool] = ACTIONS(2025), - [anon_sym_str] = ACTIONS(2025), - [anon_sym_char] = ACTIONS(2025), - [anon_sym_DASH] = ACTIONS(2023), - [anon_sym_BANG] = ACTIONS(2023), - [anon_sym_AMP] = ACTIONS(2023), - [anon_sym_PIPE] = ACTIONS(2023), - [anon_sym_LT] = ACTIONS(2023), - [anon_sym_DOT_DOT] = ACTIONS(2023), - [anon_sym_COLON_COLON] = ACTIONS(2023), - [anon_sym_POUND] = ACTIONS(2023), - [anon_sym_SQUOTE] = ACTIONS(2025), - [anon_sym_async] = ACTIONS(2025), - [anon_sym_break] = ACTIONS(2025), - [anon_sym_const] = ACTIONS(2025), - [anon_sym_continue] = ACTIONS(2025), - [anon_sym_default] = ACTIONS(2025), - [anon_sym_enum] = ACTIONS(2025), - [anon_sym_fn] = ACTIONS(2025), - [anon_sym_for] = ACTIONS(2025), - [anon_sym_gen] = ACTIONS(2025), - [anon_sym_if] = ACTIONS(2025), - [anon_sym_impl] = ACTIONS(2025), - [anon_sym_let] = ACTIONS(2025), - [anon_sym_loop] = ACTIONS(2025), - [anon_sym_match] = ACTIONS(2025), - [anon_sym_mod] = ACTIONS(2025), - [anon_sym_pub] = ACTIONS(2025), - [anon_sym_return] = ACTIONS(2025), - [anon_sym_static] = ACTIONS(2025), - [anon_sym_struct] = ACTIONS(2025), - [anon_sym_trait] = ACTIONS(2025), - [anon_sym_type] = ACTIONS(2025), - [anon_sym_union] = ACTIONS(2025), - [anon_sym_unsafe] = ACTIONS(2025), - [anon_sym_use] = ACTIONS(2025), - [anon_sym_while] = ACTIONS(2025), - [anon_sym_extern] = ACTIONS(2025), - [anon_sym_yield] = ACTIONS(2025), - [anon_sym_move] = ACTIONS(2025), - [anon_sym_try] = ACTIONS(2025), - [sym_integer_literal] = ACTIONS(2023), - [aux_sym_string_literal_token1] = ACTIONS(2023), - [sym_char_literal] = ACTIONS(2023), - [anon_sym_true] = ACTIONS(2025), - [anon_sym_false] = ACTIONS(2025), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2025), - [sym_super] = ACTIONS(2025), - [sym_crate] = ACTIONS(2025), - [sym_metavariable] = ACTIONS(2023), - [sym__raw_string_literal_start] = ACTIONS(2023), - [sym_float_literal] = ACTIONS(2023), + [ts_builtin_sym_end] = ACTIONS(2161), + [sym_identifier] = ACTIONS(2163), + [anon_sym_SEMI] = ACTIONS(2161), + [anon_sym_macro_rules_BANG] = ACTIONS(2161), + [anon_sym_LPAREN] = ACTIONS(2161), + [anon_sym_LBRACK] = ACTIONS(2161), + [anon_sym_LBRACE] = ACTIONS(2161), + [anon_sym_RBRACE] = ACTIONS(2161), + [anon_sym_STAR] = ACTIONS(2161), + [anon_sym_u8] = ACTIONS(2163), + [anon_sym_i8] = ACTIONS(2163), + [anon_sym_u16] = ACTIONS(2163), + [anon_sym_i16] = ACTIONS(2163), + [anon_sym_u32] = ACTIONS(2163), + [anon_sym_i32] = ACTIONS(2163), + [anon_sym_u64] = ACTIONS(2163), + [anon_sym_i64] = ACTIONS(2163), + [anon_sym_u128] = ACTIONS(2163), + [anon_sym_i128] = ACTIONS(2163), + [anon_sym_isize] = ACTIONS(2163), + [anon_sym_usize] = ACTIONS(2163), + [anon_sym_f32] = ACTIONS(2163), + [anon_sym_f64] = ACTIONS(2163), + [anon_sym_bool] = ACTIONS(2163), + [anon_sym_str] = ACTIONS(2163), + [anon_sym_char] = ACTIONS(2163), + [anon_sym_DASH] = ACTIONS(2161), + [anon_sym_BANG] = ACTIONS(2161), + [anon_sym_AMP] = ACTIONS(2161), + [anon_sym_PIPE] = ACTIONS(2161), + [anon_sym_LT] = ACTIONS(2161), + [anon_sym_DOT_DOT] = ACTIONS(2161), + [anon_sym_COLON_COLON] = ACTIONS(2161), + [anon_sym_POUND] = ACTIONS(2161), + [anon_sym_SQUOTE] = ACTIONS(2163), + [anon_sym_async] = ACTIONS(2163), + [anon_sym_break] = ACTIONS(2163), + [anon_sym_const] = ACTIONS(2163), + [anon_sym_continue] = ACTIONS(2163), + [anon_sym_default] = ACTIONS(2163), + [anon_sym_enum] = ACTIONS(2163), + [anon_sym_fn] = ACTIONS(2163), + [anon_sym_for] = ACTIONS(2163), + [anon_sym_gen] = ACTIONS(2163), + [anon_sym_if] = ACTIONS(2163), + [anon_sym_impl] = ACTIONS(2163), + [anon_sym_let] = ACTIONS(2163), + [anon_sym_loop] = ACTIONS(2163), + [anon_sym_match] = ACTIONS(2163), + [anon_sym_mod] = ACTIONS(2163), + [anon_sym_pub] = ACTIONS(2163), + [anon_sym_return] = ACTIONS(2163), + [anon_sym_static] = ACTIONS(2163), + [anon_sym_struct] = ACTIONS(2163), + [anon_sym_trait] = ACTIONS(2163), + [anon_sym_type] = ACTIONS(2163), + [anon_sym_union] = ACTIONS(2163), + [anon_sym_unsafe] = ACTIONS(2163), + [anon_sym_use] = ACTIONS(2163), + [anon_sym_while] = ACTIONS(2163), + [anon_sym_extern] = ACTIONS(2163), + [anon_sym_yield] = ACTIONS(2163), + [anon_sym_move] = ACTIONS(2163), + [anon_sym_try] = ACTIONS(2163), + [sym_integer_literal] = ACTIONS(2161), + [aux_sym_string_literal_token1] = ACTIONS(2161), + [sym_char_literal] = ACTIONS(2161), + [anon_sym_true] = ACTIONS(2163), + [anon_sym_false] = ACTIONS(2163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2163), + [sym_super] = ACTIONS(2163), + [sym_crate] = ACTIONS(2163), + [sym_metavariable] = ACTIONS(2161), + [sym__raw_string_literal_start] = ACTIONS(2161), + [sym_float_literal] = ACTIONS(2161), }, [569] = { [sym_line_comment] = STATE(569), [sym_block_comment] = STATE(569), - [ts_builtin_sym_end] = ACTIONS(2027), - [sym_identifier] = ACTIONS(2029), - [anon_sym_SEMI] = ACTIONS(2027), - [anon_sym_macro_rules_BANG] = ACTIONS(2027), - [anon_sym_LPAREN] = ACTIONS(2027), - [anon_sym_LBRACK] = ACTIONS(2027), - [anon_sym_LBRACE] = ACTIONS(2027), - [anon_sym_RBRACE] = ACTIONS(2027), - [anon_sym_STAR] = ACTIONS(2027), - [anon_sym_u8] = ACTIONS(2029), - [anon_sym_i8] = ACTIONS(2029), - [anon_sym_u16] = ACTIONS(2029), - [anon_sym_i16] = ACTIONS(2029), - [anon_sym_u32] = ACTIONS(2029), - [anon_sym_i32] = ACTIONS(2029), - [anon_sym_u64] = ACTIONS(2029), - [anon_sym_i64] = ACTIONS(2029), - [anon_sym_u128] = ACTIONS(2029), - [anon_sym_i128] = ACTIONS(2029), - [anon_sym_isize] = ACTIONS(2029), - [anon_sym_usize] = ACTIONS(2029), - [anon_sym_f32] = ACTIONS(2029), - [anon_sym_f64] = ACTIONS(2029), - [anon_sym_bool] = ACTIONS(2029), - [anon_sym_str] = ACTIONS(2029), - [anon_sym_char] = ACTIONS(2029), - [anon_sym_DASH] = ACTIONS(2027), - [anon_sym_BANG] = ACTIONS(2027), - [anon_sym_AMP] = ACTIONS(2027), - [anon_sym_PIPE] = ACTIONS(2027), - [anon_sym_LT] = ACTIONS(2027), - [anon_sym_DOT_DOT] = ACTIONS(2027), - [anon_sym_COLON_COLON] = ACTIONS(2027), - [anon_sym_POUND] = ACTIONS(2027), - [anon_sym_SQUOTE] = ACTIONS(2029), - [anon_sym_async] = ACTIONS(2029), - [anon_sym_break] = ACTIONS(2029), - [anon_sym_const] = ACTIONS(2029), - [anon_sym_continue] = ACTIONS(2029), - [anon_sym_default] = ACTIONS(2029), - [anon_sym_enum] = ACTIONS(2029), - [anon_sym_fn] = ACTIONS(2029), - [anon_sym_for] = ACTIONS(2029), - [anon_sym_gen] = ACTIONS(2029), - [anon_sym_if] = ACTIONS(2029), - [anon_sym_impl] = ACTIONS(2029), - [anon_sym_let] = ACTIONS(2029), - [anon_sym_loop] = ACTIONS(2029), - [anon_sym_match] = ACTIONS(2029), - [anon_sym_mod] = ACTIONS(2029), - [anon_sym_pub] = ACTIONS(2029), - [anon_sym_return] = ACTIONS(2029), - [anon_sym_static] = ACTIONS(2029), - [anon_sym_struct] = ACTIONS(2029), - [anon_sym_trait] = ACTIONS(2029), - [anon_sym_type] = ACTIONS(2029), - [anon_sym_union] = ACTIONS(2029), - [anon_sym_unsafe] = ACTIONS(2029), - [anon_sym_use] = ACTIONS(2029), - [anon_sym_while] = ACTIONS(2029), - [anon_sym_extern] = ACTIONS(2029), - [anon_sym_yield] = ACTIONS(2029), - [anon_sym_move] = ACTIONS(2029), - [anon_sym_try] = ACTIONS(2029), - [sym_integer_literal] = ACTIONS(2027), - [aux_sym_string_literal_token1] = ACTIONS(2027), - [sym_char_literal] = ACTIONS(2027), - [anon_sym_true] = ACTIONS(2029), - [anon_sym_false] = ACTIONS(2029), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2029), - [sym_super] = ACTIONS(2029), - [sym_crate] = ACTIONS(2029), - [sym_metavariable] = ACTIONS(2027), - [sym__raw_string_literal_start] = ACTIONS(2027), - [sym_float_literal] = ACTIONS(2027), + [ts_builtin_sym_end] = ACTIONS(2165), + [sym_identifier] = ACTIONS(2167), + [anon_sym_SEMI] = ACTIONS(2165), + [anon_sym_macro_rules_BANG] = ACTIONS(2165), + [anon_sym_LPAREN] = ACTIONS(2165), + [anon_sym_LBRACK] = ACTIONS(2165), + [anon_sym_LBRACE] = ACTIONS(2165), + [anon_sym_RBRACE] = ACTIONS(2165), + [anon_sym_STAR] = ACTIONS(2165), + [anon_sym_u8] = ACTIONS(2167), + [anon_sym_i8] = ACTIONS(2167), + [anon_sym_u16] = ACTIONS(2167), + [anon_sym_i16] = ACTIONS(2167), + [anon_sym_u32] = ACTIONS(2167), + [anon_sym_i32] = ACTIONS(2167), + [anon_sym_u64] = ACTIONS(2167), + [anon_sym_i64] = ACTIONS(2167), + [anon_sym_u128] = ACTIONS(2167), + [anon_sym_i128] = ACTIONS(2167), + [anon_sym_isize] = ACTIONS(2167), + [anon_sym_usize] = ACTIONS(2167), + [anon_sym_f32] = ACTIONS(2167), + [anon_sym_f64] = ACTIONS(2167), + [anon_sym_bool] = ACTIONS(2167), + [anon_sym_str] = ACTIONS(2167), + [anon_sym_char] = ACTIONS(2167), + [anon_sym_DASH] = ACTIONS(2165), + [anon_sym_BANG] = ACTIONS(2165), + [anon_sym_AMP] = ACTIONS(2165), + [anon_sym_PIPE] = ACTIONS(2165), + [anon_sym_LT] = ACTIONS(2165), + [anon_sym_DOT_DOT] = ACTIONS(2165), + [anon_sym_COLON_COLON] = ACTIONS(2165), + [anon_sym_POUND] = ACTIONS(2165), + [anon_sym_SQUOTE] = ACTIONS(2167), + [anon_sym_async] = ACTIONS(2167), + [anon_sym_break] = ACTIONS(2167), + [anon_sym_const] = ACTIONS(2167), + [anon_sym_continue] = ACTIONS(2167), + [anon_sym_default] = ACTIONS(2167), + [anon_sym_enum] = ACTIONS(2167), + [anon_sym_fn] = ACTIONS(2167), + [anon_sym_for] = ACTIONS(2167), + [anon_sym_gen] = ACTIONS(2167), + [anon_sym_if] = ACTIONS(2167), + [anon_sym_impl] = ACTIONS(2167), + [anon_sym_let] = ACTIONS(2167), + [anon_sym_loop] = ACTIONS(2167), + [anon_sym_match] = ACTIONS(2167), + [anon_sym_mod] = ACTIONS(2167), + [anon_sym_pub] = ACTIONS(2167), + [anon_sym_return] = ACTIONS(2167), + [anon_sym_static] = ACTIONS(2167), + [anon_sym_struct] = ACTIONS(2167), + [anon_sym_trait] = ACTIONS(2167), + [anon_sym_type] = ACTIONS(2167), + [anon_sym_union] = ACTIONS(2167), + [anon_sym_unsafe] = ACTIONS(2167), + [anon_sym_use] = ACTIONS(2167), + [anon_sym_while] = ACTIONS(2167), + [anon_sym_extern] = ACTIONS(2167), + [anon_sym_yield] = ACTIONS(2167), + [anon_sym_move] = ACTIONS(2167), + [anon_sym_try] = ACTIONS(2167), + [sym_integer_literal] = ACTIONS(2165), + [aux_sym_string_literal_token1] = ACTIONS(2165), + [sym_char_literal] = ACTIONS(2165), + [anon_sym_true] = ACTIONS(2167), + [anon_sym_false] = ACTIONS(2167), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2167), + [sym_super] = ACTIONS(2167), + [sym_crate] = ACTIONS(2167), + [sym_metavariable] = ACTIONS(2165), + [sym__raw_string_literal_start] = ACTIONS(2165), + [sym_float_literal] = ACTIONS(2165), }, [570] = { [sym_line_comment] = STATE(570), [sym_block_comment] = STATE(570), - [ts_builtin_sym_end] = ACTIONS(2031), - [sym_identifier] = ACTIONS(2033), - [anon_sym_SEMI] = ACTIONS(2031), - [anon_sym_macro_rules_BANG] = ACTIONS(2031), - [anon_sym_LPAREN] = ACTIONS(2031), - [anon_sym_LBRACK] = ACTIONS(2031), - [anon_sym_LBRACE] = ACTIONS(2031), - [anon_sym_RBRACE] = ACTIONS(2031), - [anon_sym_STAR] = ACTIONS(2031), - [anon_sym_u8] = ACTIONS(2033), - [anon_sym_i8] = ACTIONS(2033), - [anon_sym_u16] = ACTIONS(2033), - [anon_sym_i16] = ACTIONS(2033), - [anon_sym_u32] = ACTIONS(2033), - [anon_sym_i32] = ACTIONS(2033), - [anon_sym_u64] = ACTIONS(2033), - [anon_sym_i64] = ACTIONS(2033), - [anon_sym_u128] = ACTIONS(2033), - [anon_sym_i128] = ACTIONS(2033), - [anon_sym_isize] = ACTIONS(2033), - [anon_sym_usize] = ACTIONS(2033), - [anon_sym_f32] = ACTIONS(2033), - [anon_sym_f64] = ACTIONS(2033), - [anon_sym_bool] = ACTIONS(2033), - [anon_sym_str] = ACTIONS(2033), - [anon_sym_char] = ACTIONS(2033), - [anon_sym_DASH] = ACTIONS(2031), - [anon_sym_BANG] = ACTIONS(2031), - [anon_sym_AMP] = ACTIONS(2031), - [anon_sym_PIPE] = ACTIONS(2031), - [anon_sym_LT] = ACTIONS(2031), - [anon_sym_DOT_DOT] = ACTIONS(2031), - [anon_sym_COLON_COLON] = ACTIONS(2031), - [anon_sym_POUND] = ACTIONS(2031), - [anon_sym_SQUOTE] = ACTIONS(2033), - [anon_sym_async] = ACTIONS(2033), - [anon_sym_break] = ACTIONS(2033), - [anon_sym_const] = ACTIONS(2033), - [anon_sym_continue] = ACTIONS(2033), - [anon_sym_default] = ACTIONS(2033), - [anon_sym_enum] = ACTIONS(2033), - [anon_sym_fn] = ACTIONS(2033), - [anon_sym_for] = ACTIONS(2033), - [anon_sym_gen] = ACTIONS(2033), - [anon_sym_if] = ACTIONS(2033), - [anon_sym_impl] = ACTIONS(2033), - [anon_sym_let] = ACTIONS(2033), - [anon_sym_loop] = ACTIONS(2033), - [anon_sym_match] = ACTIONS(2033), - [anon_sym_mod] = ACTIONS(2033), - [anon_sym_pub] = ACTIONS(2033), - [anon_sym_return] = ACTIONS(2033), - [anon_sym_static] = ACTIONS(2033), - [anon_sym_struct] = ACTIONS(2033), - [anon_sym_trait] = ACTIONS(2033), - [anon_sym_type] = ACTIONS(2033), - [anon_sym_union] = ACTIONS(2033), - [anon_sym_unsafe] = ACTIONS(2033), - [anon_sym_use] = ACTIONS(2033), - [anon_sym_while] = ACTIONS(2033), - [anon_sym_extern] = ACTIONS(2033), - [anon_sym_yield] = ACTIONS(2033), - [anon_sym_move] = ACTIONS(2033), - [anon_sym_try] = ACTIONS(2033), - [sym_integer_literal] = ACTIONS(2031), - [aux_sym_string_literal_token1] = ACTIONS(2031), - [sym_char_literal] = ACTIONS(2031), - [anon_sym_true] = ACTIONS(2033), - [anon_sym_false] = ACTIONS(2033), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2033), - [sym_super] = ACTIONS(2033), - [sym_crate] = ACTIONS(2033), - [sym_metavariable] = ACTIONS(2031), - [sym__raw_string_literal_start] = ACTIONS(2031), - [sym_float_literal] = ACTIONS(2031), + [ts_builtin_sym_end] = ACTIONS(2169), + [sym_identifier] = ACTIONS(2171), + [anon_sym_SEMI] = ACTIONS(2169), + [anon_sym_macro_rules_BANG] = ACTIONS(2169), + [anon_sym_LPAREN] = ACTIONS(2169), + [anon_sym_LBRACK] = ACTIONS(2169), + [anon_sym_LBRACE] = ACTIONS(2169), + [anon_sym_RBRACE] = ACTIONS(2169), + [anon_sym_STAR] = ACTIONS(2169), + [anon_sym_u8] = ACTIONS(2171), + [anon_sym_i8] = ACTIONS(2171), + [anon_sym_u16] = ACTIONS(2171), + [anon_sym_i16] = ACTIONS(2171), + [anon_sym_u32] = ACTIONS(2171), + [anon_sym_i32] = ACTIONS(2171), + [anon_sym_u64] = ACTIONS(2171), + [anon_sym_i64] = ACTIONS(2171), + [anon_sym_u128] = ACTIONS(2171), + [anon_sym_i128] = ACTIONS(2171), + [anon_sym_isize] = ACTIONS(2171), + [anon_sym_usize] = ACTIONS(2171), + [anon_sym_f32] = ACTIONS(2171), + [anon_sym_f64] = ACTIONS(2171), + [anon_sym_bool] = ACTIONS(2171), + [anon_sym_str] = ACTIONS(2171), + [anon_sym_char] = ACTIONS(2171), + [anon_sym_DASH] = ACTIONS(2169), + [anon_sym_BANG] = ACTIONS(2169), + [anon_sym_AMP] = ACTIONS(2169), + [anon_sym_PIPE] = ACTIONS(2169), + [anon_sym_LT] = ACTIONS(2169), + [anon_sym_DOT_DOT] = ACTIONS(2169), + [anon_sym_COLON_COLON] = ACTIONS(2169), + [anon_sym_POUND] = ACTIONS(2169), + [anon_sym_SQUOTE] = ACTIONS(2171), + [anon_sym_async] = ACTIONS(2171), + [anon_sym_break] = ACTIONS(2171), + [anon_sym_const] = ACTIONS(2171), + [anon_sym_continue] = ACTIONS(2171), + [anon_sym_default] = ACTIONS(2171), + [anon_sym_enum] = ACTIONS(2171), + [anon_sym_fn] = ACTIONS(2171), + [anon_sym_for] = ACTIONS(2171), + [anon_sym_gen] = ACTIONS(2171), + [anon_sym_if] = ACTIONS(2171), + [anon_sym_impl] = ACTIONS(2171), + [anon_sym_let] = ACTIONS(2171), + [anon_sym_loop] = ACTIONS(2171), + [anon_sym_match] = ACTIONS(2171), + [anon_sym_mod] = ACTIONS(2171), + [anon_sym_pub] = ACTIONS(2171), + [anon_sym_return] = ACTIONS(2171), + [anon_sym_static] = ACTIONS(2171), + [anon_sym_struct] = ACTIONS(2171), + [anon_sym_trait] = ACTIONS(2171), + [anon_sym_type] = ACTIONS(2171), + [anon_sym_union] = ACTIONS(2171), + [anon_sym_unsafe] = ACTIONS(2171), + [anon_sym_use] = ACTIONS(2171), + [anon_sym_while] = ACTIONS(2171), + [anon_sym_extern] = ACTIONS(2171), + [anon_sym_yield] = ACTIONS(2171), + [anon_sym_move] = ACTIONS(2171), + [anon_sym_try] = ACTIONS(2171), + [sym_integer_literal] = ACTIONS(2169), + [aux_sym_string_literal_token1] = ACTIONS(2169), + [sym_char_literal] = ACTIONS(2169), + [anon_sym_true] = ACTIONS(2171), + [anon_sym_false] = ACTIONS(2171), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2171), + [sym_super] = ACTIONS(2171), + [sym_crate] = ACTIONS(2171), + [sym_metavariable] = ACTIONS(2169), + [sym__raw_string_literal_start] = ACTIONS(2169), + [sym_float_literal] = ACTIONS(2169), }, [571] = { [sym_line_comment] = STATE(571), [sym_block_comment] = STATE(571), - [ts_builtin_sym_end] = ACTIONS(2035), - [sym_identifier] = ACTIONS(2037), - [anon_sym_SEMI] = ACTIONS(2035), - [anon_sym_macro_rules_BANG] = ACTIONS(2035), - [anon_sym_LPAREN] = ACTIONS(2035), - [anon_sym_LBRACK] = ACTIONS(2035), - [anon_sym_LBRACE] = ACTIONS(2035), - [anon_sym_RBRACE] = ACTIONS(2035), - [anon_sym_STAR] = ACTIONS(2035), - [anon_sym_u8] = ACTIONS(2037), - [anon_sym_i8] = ACTIONS(2037), - [anon_sym_u16] = ACTIONS(2037), - [anon_sym_i16] = ACTIONS(2037), - [anon_sym_u32] = ACTIONS(2037), - [anon_sym_i32] = ACTIONS(2037), - [anon_sym_u64] = ACTIONS(2037), - [anon_sym_i64] = ACTIONS(2037), - [anon_sym_u128] = ACTIONS(2037), - [anon_sym_i128] = ACTIONS(2037), - [anon_sym_isize] = ACTIONS(2037), - [anon_sym_usize] = ACTIONS(2037), - [anon_sym_f32] = ACTIONS(2037), - [anon_sym_f64] = ACTIONS(2037), - [anon_sym_bool] = ACTIONS(2037), - [anon_sym_str] = ACTIONS(2037), - [anon_sym_char] = ACTIONS(2037), - [anon_sym_DASH] = ACTIONS(2035), - [anon_sym_BANG] = ACTIONS(2035), - [anon_sym_AMP] = ACTIONS(2035), - [anon_sym_PIPE] = ACTIONS(2035), - [anon_sym_LT] = ACTIONS(2035), - [anon_sym_DOT_DOT] = ACTIONS(2035), - [anon_sym_COLON_COLON] = ACTIONS(2035), - [anon_sym_POUND] = ACTIONS(2035), - [anon_sym_SQUOTE] = ACTIONS(2037), - [anon_sym_async] = ACTIONS(2037), - [anon_sym_break] = ACTIONS(2037), - [anon_sym_const] = ACTIONS(2037), - [anon_sym_continue] = ACTIONS(2037), - [anon_sym_default] = ACTIONS(2037), - [anon_sym_enum] = ACTIONS(2037), - [anon_sym_fn] = ACTIONS(2037), - [anon_sym_for] = ACTIONS(2037), - [anon_sym_gen] = ACTIONS(2037), - [anon_sym_if] = ACTIONS(2037), - [anon_sym_impl] = ACTIONS(2037), - [anon_sym_let] = ACTIONS(2037), - [anon_sym_loop] = ACTIONS(2037), - [anon_sym_match] = ACTIONS(2037), - [anon_sym_mod] = ACTIONS(2037), - [anon_sym_pub] = ACTIONS(2037), - [anon_sym_return] = ACTIONS(2037), - [anon_sym_static] = ACTIONS(2037), - [anon_sym_struct] = ACTIONS(2037), - [anon_sym_trait] = ACTIONS(2037), - [anon_sym_type] = ACTIONS(2037), - [anon_sym_union] = ACTIONS(2037), - [anon_sym_unsafe] = ACTIONS(2037), - [anon_sym_use] = ACTIONS(2037), - [anon_sym_while] = ACTIONS(2037), - [anon_sym_extern] = ACTIONS(2037), - [anon_sym_yield] = ACTIONS(2037), - [anon_sym_move] = ACTIONS(2037), - [anon_sym_try] = ACTIONS(2037), - [sym_integer_literal] = ACTIONS(2035), - [aux_sym_string_literal_token1] = ACTIONS(2035), - [sym_char_literal] = ACTIONS(2035), - [anon_sym_true] = ACTIONS(2037), - [anon_sym_false] = ACTIONS(2037), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2037), - [sym_super] = ACTIONS(2037), - [sym_crate] = ACTIONS(2037), - [sym_metavariable] = ACTIONS(2035), - [sym__raw_string_literal_start] = ACTIONS(2035), - [sym_float_literal] = ACTIONS(2035), + [ts_builtin_sym_end] = ACTIONS(2173), + [sym_identifier] = ACTIONS(2175), + [anon_sym_SEMI] = ACTIONS(2173), + [anon_sym_macro_rules_BANG] = ACTIONS(2173), + [anon_sym_LPAREN] = ACTIONS(2173), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_LBRACE] = ACTIONS(2173), + [anon_sym_RBRACE] = ACTIONS(2173), + [anon_sym_STAR] = ACTIONS(2173), + [anon_sym_u8] = ACTIONS(2175), + [anon_sym_i8] = ACTIONS(2175), + [anon_sym_u16] = ACTIONS(2175), + [anon_sym_i16] = ACTIONS(2175), + [anon_sym_u32] = ACTIONS(2175), + [anon_sym_i32] = ACTIONS(2175), + [anon_sym_u64] = ACTIONS(2175), + [anon_sym_i64] = ACTIONS(2175), + [anon_sym_u128] = ACTIONS(2175), + [anon_sym_i128] = ACTIONS(2175), + [anon_sym_isize] = ACTIONS(2175), + [anon_sym_usize] = ACTIONS(2175), + [anon_sym_f32] = ACTIONS(2175), + [anon_sym_f64] = ACTIONS(2175), + [anon_sym_bool] = ACTIONS(2175), + [anon_sym_str] = ACTIONS(2175), + [anon_sym_char] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2173), + [anon_sym_BANG] = ACTIONS(2173), + [anon_sym_AMP] = ACTIONS(2173), + [anon_sym_PIPE] = ACTIONS(2173), + [anon_sym_LT] = ACTIONS(2173), + [anon_sym_DOT_DOT] = ACTIONS(2173), + [anon_sym_COLON_COLON] = ACTIONS(2173), + [anon_sym_POUND] = ACTIONS(2173), + [anon_sym_SQUOTE] = ACTIONS(2175), + [anon_sym_async] = ACTIONS(2175), + [anon_sym_break] = ACTIONS(2175), + [anon_sym_const] = ACTIONS(2175), + [anon_sym_continue] = ACTIONS(2175), + [anon_sym_default] = ACTIONS(2175), + [anon_sym_enum] = ACTIONS(2175), + [anon_sym_fn] = ACTIONS(2175), + [anon_sym_for] = ACTIONS(2175), + [anon_sym_gen] = ACTIONS(2175), + [anon_sym_if] = ACTIONS(2175), + [anon_sym_impl] = ACTIONS(2175), + [anon_sym_let] = ACTIONS(2175), + [anon_sym_loop] = ACTIONS(2175), + [anon_sym_match] = ACTIONS(2175), + [anon_sym_mod] = ACTIONS(2175), + [anon_sym_pub] = ACTIONS(2175), + [anon_sym_return] = ACTIONS(2175), + [anon_sym_static] = ACTIONS(2175), + [anon_sym_struct] = ACTIONS(2175), + [anon_sym_trait] = ACTIONS(2175), + [anon_sym_type] = ACTIONS(2175), + [anon_sym_union] = ACTIONS(2175), + [anon_sym_unsafe] = ACTIONS(2175), + [anon_sym_use] = ACTIONS(2175), + [anon_sym_while] = ACTIONS(2175), + [anon_sym_extern] = ACTIONS(2175), + [anon_sym_yield] = ACTIONS(2175), + [anon_sym_move] = ACTIONS(2175), + [anon_sym_try] = ACTIONS(2175), + [sym_integer_literal] = ACTIONS(2173), + [aux_sym_string_literal_token1] = ACTIONS(2173), + [sym_char_literal] = ACTIONS(2173), + [anon_sym_true] = ACTIONS(2175), + [anon_sym_false] = ACTIONS(2175), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2175), + [sym_super] = ACTIONS(2175), + [sym_crate] = ACTIONS(2175), + [sym_metavariable] = ACTIONS(2173), + [sym__raw_string_literal_start] = ACTIONS(2173), + [sym_float_literal] = ACTIONS(2173), }, [572] = { [sym_line_comment] = STATE(572), [sym_block_comment] = STATE(572), - [ts_builtin_sym_end] = ACTIONS(2039), - [sym_identifier] = ACTIONS(2041), - [anon_sym_SEMI] = ACTIONS(2039), - [anon_sym_macro_rules_BANG] = ACTIONS(2039), - [anon_sym_LPAREN] = ACTIONS(2039), - [anon_sym_LBRACK] = ACTIONS(2039), - [anon_sym_LBRACE] = ACTIONS(2039), - [anon_sym_RBRACE] = ACTIONS(2039), - [anon_sym_STAR] = ACTIONS(2039), - [anon_sym_u8] = ACTIONS(2041), - [anon_sym_i8] = ACTIONS(2041), - [anon_sym_u16] = ACTIONS(2041), - [anon_sym_i16] = ACTIONS(2041), - [anon_sym_u32] = ACTIONS(2041), - [anon_sym_i32] = ACTIONS(2041), - [anon_sym_u64] = ACTIONS(2041), - [anon_sym_i64] = ACTIONS(2041), - [anon_sym_u128] = ACTIONS(2041), - [anon_sym_i128] = ACTIONS(2041), - [anon_sym_isize] = ACTIONS(2041), - [anon_sym_usize] = ACTIONS(2041), - [anon_sym_f32] = ACTIONS(2041), - [anon_sym_f64] = ACTIONS(2041), - [anon_sym_bool] = ACTIONS(2041), - [anon_sym_str] = ACTIONS(2041), - [anon_sym_char] = ACTIONS(2041), - [anon_sym_DASH] = ACTIONS(2039), - [anon_sym_BANG] = ACTIONS(2039), - [anon_sym_AMP] = ACTIONS(2039), - [anon_sym_PIPE] = ACTIONS(2039), - [anon_sym_LT] = ACTIONS(2039), - [anon_sym_DOT_DOT] = ACTIONS(2039), - [anon_sym_COLON_COLON] = ACTIONS(2039), - [anon_sym_POUND] = ACTIONS(2039), - [anon_sym_SQUOTE] = ACTIONS(2041), - [anon_sym_async] = ACTIONS(2041), - [anon_sym_break] = ACTIONS(2041), - [anon_sym_const] = ACTIONS(2041), - [anon_sym_continue] = ACTIONS(2041), - [anon_sym_default] = ACTIONS(2041), - [anon_sym_enum] = ACTIONS(2041), - [anon_sym_fn] = ACTIONS(2041), - [anon_sym_for] = ACTIONS(2041), - [anon_sym_gen] = ACTIONS(2041), - [anon_sym_if] = ACTIONS(2041), - [anon_sym_impl] = ACTIONS(2041), - [anon_sym_let] = ACTIONS(2041), - [anon_sym_loop] = ACTIONS(2041), - [anon_sym_match] = ACTIONS(2041), - [anon_sym_mod] = ACTIONS(2041), - [anon_sym_pub] = ACTIONS(2041), - [anon_sym_return] = ACTIONS(2041), - [anon_sym_static] = ACTIONS(2041), - [anon_sym_struct] = ACTIONS(2041), - [anon_sym_trait] = ACTIONS(2041), - [anon_sym_type] = ACTIONS(2041), - [anon_sym_union] = ACTIONS(2041), - [anon_sym_unsafe] = ACTIONS(2041), - [anon_sym_use] = ACTIONS(2041), - [anon_sym_while] = ACTIONS(2041), - [anon_sym_extern] = ACTIONS(2041), - [anon_sym_yield] = ACTIONS(2041), - [anon_sym_move] = ACTIONS(2041), - [anon_sym_try] = ACTIONS(2041), - [sym_integer_literal] = ACTIONS(2039), - [aux_sym_string_literal_token1] = ACTIONS(2039), - [sym_char_literal] = ACTIONS(2039), - [anon_sym_true] = ACTIONS(2041), - [anon_sym_false] = ACTIONS(2041), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2041), - [sym_super] = ACTIONS(2041), - [sym_crate] = ACTIONS(2041), - [sym_metavariable] = ACTIONS(2039), - [sym__raw_string_literal_start] = ACTIONS(2039), - [sym_float_literal] = ACTIONS(2039), + [ts_builtin_sym_end] = ACTIONS(2177), + [sym_identifier] = ACTIONS(2179), + [anon_sym_SEMI] = ACTIONS(2177), + [anon_sym_macro_rules_BANG] = ACTIONS(2177), + [anon_sym_LPAREN] = ACTIONS(2177), + [anon_sym_LBRACK] = ACTIONS(2177), + [anon_sym_LBRACE] = ACTIONS(2177), + [anon_sym_RBRACE] = ACTIONS(2177), + [anon_sym_STAR] = ACTIONS(2177), + [anon_sym_u8] = ACTIONS(2179), + [anon_sym_i8] = ACTIONS(2179), + [anon_sym_u16] = ACTIONS(2179), + [anon_sym_i16] = ACTIONS(2179), + [anon_sym_u32] = ACTIONS(2179), + [anon_sym_i32] = ACTIONS(2179), + [anon_sym_u64] = ACTIONS(2179), + [anon_sym_i64] = ACTIONS(2179), + [anon_sym_u128] = ACTIONS(2179), + [anon_sym_i128] = ACTIONS(2179), + [anon_sym_isize] = ACTIONS(2179), + [anon_sym_usize] = ACTIONS(2179), + [anon_sym_f32] = ACTIONS(2179), + [anon_sym_f64] = ACTIONS(2179), + [anon_sym_bool] = ACTIONS(2179), + [anon_sym_str] = ACTIONS(2179), + [anon_sym_char] = ACTIONS(2179), + [anon_sym_DASH] = ACTIONS(2177), + [anon_sym_BANG] = ACTIONS(2177), + [anon_sym_AMP] = ACTIONS(2177), + [anon_sym_PIPE] = ACTIONS(2177), + [anon_sym_LT] = ACTIONS(2177), + [anon_sym_DOT_DOT] = ACTIONS(2177), + [anon_sym_COLON_COLON] = ACTIONS(2177), + [anon_sym_POUND] = ACTIONS(2177), + [anon_sym_SQUOTE] = ACTIONS(2179), + [anon_sym_async] = ACTIONS(2179), + [anon_sym_break] = ACTIONS(2179), + [anon_sym_const] = ACTIONS(2179), + [anon_sym_continue] = ACTIONS(2179), + [anon_sym_default] = ACTIONS(2179), + [anon_sym_enum] = ACTIONS(2179), + [anon_sym_fn] = ACTIONS(2179), + [anon_sym_for] = ACTIONS(2179), + [anon_sym_gen] = ACTIONS(2179), + [anon_sym_if] = ACTIONS(2179), + [anon_sym_impl] = ACTIONS(2179), + [anon_sym_let] = ACTIONS(2179), + [anon_sym_loop] = ACTIONS(2179), + [anon_sym_match] = ACTIONS(2179), + [anon_sym_mod] = ACTIONS(2179), + [anon_sym_pub] = ACTIONS(2179), + [anon_sym_return] = ACTIONS(2179), + [anon_sym_static] = ACTIONS(2179), + [anon_sym_struct] = ACTIONS(2179), + [anon_sym_trait] = ACTIONS(2179), + [anon_sym_type] = ACTIONS(2179), + [anon_sym_union] = ACTIONS(2179), + [anon_sym_unsafe] = ACTIONS(2179), + [anon_sym_use] = ACTIONS(2179), + [anon_sym_while] = ACTIONS(2179), + [anon_sym_extern] = ACTIONS(2179), + [anon_sym_yield] = ACTIONS(2179), + [anon_sym_move] = ACTIONS(2179), + [anon_sym_try] = ACTIONS(2179), + [sym_integer_literal] = ACTIONS(2177), + [aux_sym_string_literal_token1] = ACTIONS(2177), + [sym_char_literal] = ACTIONS(2177), + [anon_sym_true] = ACTIONS(2179), + [anon_sym_false] = ACTIONS(2179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2179), + [sym_super] = ACTIONS(2179), + [sym_crate] = ACTIONS(2179), + [sym_metavariable] = ACTIONS(2177), + [sym__raw_string_literal_start] = ACTIONS(2177), + [sym_float_literal] = ACTIONS(2177), }, [573] = { [sym_line_comment] = STATE(573), [sym_block_comment] = STATE(573), - [ts_builtin_sym_end] = ACTIONS(2043), - [sym_identifier] = ACTIONS(2045), - [anon_sym_SEMI] = ACTIONS(2043), - [anon_sym_macro_rules_BANG] = ACTIONS(2043), - [anon_sym_LPAREN] = ACTIONS(2043), - [anon_sym_LBRACK] = ACTIONS(2043), - [anon_sym_LBRACE] = ACTIONS(2043), - [anon_sym_RBRACE] = ACTIONS(2043), - [anon_sym_STAR] = ACTIONS(2043), - [anon_sym_u8] = ACTIONS(2045), - [anon_sym_i8] = ACTIONS(2045), - [anon_sym_u16] = ACTIONS(2045), - [anon_sym_i16] = ACTIONS(2045), - [anon_sym_u32] = ACTIONS(2045), - [anon_sym_i32] = ACTIONS(2045), - [anon_sym_u64] = ACTIONS(2045), - [anon_sym_i64] = ACTIONS(2045), - [anon_sym_u128] = ACTIONS(2045), - [anon_sym_i128] = ACTIONS(2045), - [anon_sym_isize] = ACTIONS(2045), - [anon_sym_usize] = ACTIONS(2045), - [anon_sym_f32] = ACTIONS(2045), - [anon_sym_f64] = ACTIONS(2045), - [anon_sym_bool] = ACTIONS(2045), - [anon_sym_str] = ACTIONS(2045), - [anon_sym_char] = ACTIONS(2045), - [anon_sym_DASH] = ACTIONS(2043), - [anon_sym_BANG] = ACTIONS(2043), - [anon_sym_AMP] = ACTIONS(2043), - [anon_sym_PIPE] = ACTIONS(2043), - [anon_sym_LT] = ACTIONS(2043), - [anon_sym_DOT_DOT] = ACTIONS(2043), - [anon_sym_COLON_COLON] = ACTIONS(2043), - [anon_sym_POUND] = ACTIONS(2043), - [anon_sym_SQUOTE] = ACTIONS(2045), - [anon_sym_async] = ACTIONS(2045), - [anon_sym_break] = ACTIONS(2045), - [anon_sym_const] = ACTIONS(2045), - [anon_sym_continue] = ACTIONS(2045), - [anon_sym_default] = ACTIONS(2045), - [anon_sym_enum] = ACTIONS(2045), - [anon_sym_fn] = ACTIONS(2045), - [anon_sym_for] = ACTIONS(2045), - [anon_sym_gen] = ACTIONS(2045), - [anon_sym_if] = ACTIONS(2045), - [anon_sym_impl] = ACTIONS(2045), - [anon_sym_let] = ACTIONS(2045), - [anon_sym_loop] = ACTIONS(2045), - [anon_sym_match] = ACTIONS(2045), - [anon_sym_mod] = ACTIONS(2045), - [anon_sym_pub] = ACTIONS(2045), - [anon_sym_return] = ACTIONS(2045), - [anon_sym_static] = ACTIONS(2045), - [anon_sym_struct] = ACTIONS(2045), - [anon_sym_trait] = ACTIONS(2045), - [anon_sym_type] = ACTIONS(2045), - [anon_sym_union] = ACTIONS(2045), - [anon_sym_unsafe] = ACTIONS(2045), - [anon_sym_use] = ACTIONS(2045), - [anon_sym_while] = ACTIONS(2045), - [anon_sym_extern] = ACTIONS(2045), - [anon_sym_yield] = ACTIONS(2045), - [anon_sym_move] = ACTIONS(2045), - [anon_sym_try] = ACTIONS(2045), - [sym_integer_literal] = ACTIONS(2043), - [aux_sym_string_literal_token1] = ACTIONS(2043), - [sym_char_literal] = ACTIONS(2043), - [anon_sym_true] = ACTIONS(2045), - [anon_sym_false] = ACTIONS(2045), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2045), - [sym_super] = ACTIONS(2045), - [sym_crate] = ACTIONS(2045), - [sym_metavariable] = ACTIONS(2043), - [sym__raw_string_literal_start] = ACTIONS(2043), - [sym_float_literal] = ACTIONS(2043), + [ts_builtin_sym_end] = ACTIONS(2181), + [sym_identifier] = ACTIONS(2183), + [anon_sym_SEMI] = ACTIONS(2181), + [anon_sym_macro_rules_BANG] = ACTIONS(2181), + [anon_sym_LPAREN] = ACTIONS(2181), + [anon_sym_LBRACK] = ACTIONS(2181), + [anon_sym_LBRACE] = ACTIONS(2181), + [anon_sym_RBRACE] = ACTIONS(2181), + [anon_sym_STAR] = ACTIONS(2181), + [anon_sym_u8] = ACTIONS(2183), + [anon_sym_i8] = ACTIONS(2183), + [anon_sym_u16] = ACTIONS(2183), + [anon_sym_i16] = ACTIONS(2183), + [anon_sym_u32] = ACTIONS(2183), + [anon_sym_i32] = ACTIONS(2183), + [anon_sym_u64] = ACTIONS(2183), + [anon_sym_i64] = ACTIONS(2183), + [anon_sym_u128] = ACTIONS(2183), + [anon_sym_i128] = ACTIONS(2183), + [anon_sym_isize] = ACTIONS(2183), + [anon_sym_usize] = ACTIONS(2183), + [anon_sym_f32] = ACTIONS(2183), + [anon_sym_f64] = ACTIONS(2183), + [anon_sym_bool] = ACTIONS(2183), + [anon_sym_str] = ACTIONS(2183), + [anon_sym_char] = ACTIONS(2183), + [anon_sym_DASH] = ACTIONS(2181), + [anon_sym_BANG] = ACTIONS(2181), + [anon_sym_AMP] = ACTIONS(2181), + [anon_sym_PIPE] = ACTIONS(2181), + [anon_sym_LT] = ACTIONS(2181), + [anon_sym_DOT_DOT] = ACTIONS(2181), + [anon_sym_COLON_COLON] = ACTIONS(2181), + [anon_sym_POUND] = ACTIONS(2181), + [anon_sym_SQUOTE] = ACTIONS(2183), + [anon_sym_async] = ACTIONS(2183), + [anon_sym_break] = ACTIONS(2183), + [anon_sym_const] = ACTIONS(2183), + [anon_sym_continue] = ACTIONS(2183), + [anon_sym_default] = ACTIONS(2183), + [anon_sym_enum] = ACTIONS(2183), + [anon_sym_fn] = ACTIONS(2183), + [anon_sym_for] = ACTIONS(2183), + [anon_sym_gen] = ACTIONS(2183), + [anon_sym_if] = ACTIONS(2183), + [anon_sym_impl] = ACTIONS(2183), + [anon_sym_let] = ACTIONS(2183), + [anon_sym_loop] = ACTIONS(2183), + [anon_sym_match] = ACTIONS(2183), + [anon_sym_mod] = ACTIONS(2183), + [anon_sym_pub] = ACTIONS(2183), + [anon_sym_return] = ACTIONS(2183), + [anon_sym_static] = ACTIONS(2183), + [anon_sym_struct] = ACTIONS(2183), + [anon_sym_trait] = ACTIONS(2183), + [anon_sym_type] = ACTIONS(2183), + [anon_sym_union] = ACTIONS(2183), + [anon_sym_unsafe] = ACTIONS(2183), + [anon_sym_use] = ACTIONS(2183), + [anon_sym_while] = ACTIONS(2183), + [anon_sym_extern] = ACTIONS(2183), + [anon_sym_yield] = ACTIONS(2183), + [anon_sym_move] = ACTIONS(2183), + [anon_sym_try] = ACTIONS(2183), + [sym_integer_literal] = ACTIONS(2181), + [aux_sym_string_literal_token1] = ACTIONS(2181), + [sym_char_literal] = ACTIONS(2181), + [anon_sym_true] = ACTIONS(2183), + [anon_sym_false] = ACTIONS(2183), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2183), + [sym_super] = ACTIONS(2183), + [sym_crate] = ACTIONS(2183), + [sym_metavariable] = ACTIONS(2181), + [sym__raw_string_literal_start] = ACTIONS(2181), + [sym_float_literal] = ACTIONS(2181), }, [574] = { [sym_line_comment] = STATE(574), [sym_block_comment] = STATE(574), - [ts_builtin_sym_end] = ACTIONS(2047), - [sym_identifier] = ACTIONS(2049), - [anon_sym_SEMI] = ACTIONS(2047), - [anon_sym_macro_rules_BANG] = ACTIONS(2047), - [anon_sym_LPAREN] = ACTIONS(2047), - [anon_sym_LBRACK] = ACTIONS(2047), - [anon_sym_LBRACE] = ACTIONS(2047), - [anon_sym_RBRACE] = ACTIONS(2047), - [anon_sym_STAR] = ACTIONS(2047), - [anon_sym_u8] = ACTIONS(2049), - [anon_sym_i8] = ACTIONS(2049), - [anon_sym_u16] = ACTIONS(2049), - [anon_sym_i16] = ACTIONS(2049), - [anon_sym_u32] = ACTIONS(2049), - [anon_sym_i32] = ACTIONS(2049), - [anon_sym_u64] = ACTIONS(2049), - [anon_sym_i64] = ACTIONS(2049), - [anon_sym_u128] = ACTIONS(2049), - [anon_sym_i128] = ACTIONS(2049), - [anon_sym_isize] = ACTIONS(2049), - [anon_sym_usize] = ACTIONS(2049), - [anon_sym_f32] = ACTIONS(2049), - [anon_sym_f64] = ACTIONS(2049), - [anon_sym_bool] = ACTIONS(2049), - [anon_sym_str] = ACTIONS(2049), - [anon_sym_char] = ACTIONS(2049), - [anon_sym_DASH] = ACTIONS(2047), - [anon_sym_BANG] = ACTIONS(2047), - [anon_sym_AMP] = ACTIONS(2047), - [anon_sym_PIPE] = ACTIONS(2047), - [anon_sym_LT] = ACTIONS(2047), - [anon_sym_DOT_DOT] = ACTIONS(2047), - [anon_sym_COLON_COLON] = ACTIONS(2047), - [anon_sym_POUND] = ACTIONS(2047), - [anon_sym_SQUOTE] = ACTIONS(2049), - [anon_sym_async] = ACTIONS(2049), - [anon_sym_break] = ACTIONS(2049), - [anon_sym_const] = ACTIONS(2049), - [anon_sym_continue] = ACTIONS(2049), - [anon_sym_default] = ACTIONS(2049), - [anon_sym_enum] = ACTIONS(2049), - [anon_sym_fn] = ACTIONS(2049), - [anon_sym_for] = ACTIONS(2049), - [anon_sym_gen] = ACTIONS(2049), - [anon_sym_if] = ACTIONS(2049), - [anon_sym_impl] = ACTIONS(2049), - [anon_sym_let] = ACTIONS(2049), - [anon_sym_loop] = ACTIONS(2049), - [anon_sym_match] = ACTIONS(2049), - [anon_sym_mod] = ACTIONS(2049), - [anon_sym_pub] = ACTIONS(2049), - [anon_sym_return] = ACTIONS(2049), - [anon_sym_static] = ACTIONS(2049), - [anon_sym_struct] = ACTIONS(2049), - [anon_sym_trait] = ACTIONS(2049), - [anon_sym_type] = ACTIONS(2049), - [anon_sym_union] = ACTIONS(2049), - [anon_sym_unsafe] = ACTIONS(2049), - [anon_sym_use] = ACTIONS(2049), - [anon_sym_while] = ACTIONS(2049), - [anon_sym_extern] = ACTIONS(2049), - [anon_sym_yield] = ACTIONS(2049), - [anon_sym_move] = ACTIONS(2049), - [anon_sym_try] = ACTIONS(2049), - [sym_integer_literal] = ACTIONS(2047), - [aux_sym_string_literal_token1] = ACTIONS(2047), - [sym_char_literal] = ACTIONS(2047), - [anon_sym_true] = ACTIONS(2049), - [anon_sym_false] = ACTIONS(2049), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2049), - [sym_super] = ACTIONS(2049), - [sym_crate] = ACTIONS(2049), - [sym_metavariable] = ACTIONS(2047), - [sym__raw_string_literal_start] = ACTIONS(2047), - [sym_float_literal] = ACTIONS(2047), + [ts_builtin_sym_end] = ACTIONS(2185), + [sym_identifier] = ACTIONS(2187), + [anon_sym_SEMI] = ACTIONS(2185), + [anon_sym_macro_rules_BANG] = ACTIONS(2185), + [anon_sym_LPAREN] = ACTIONS(2185), + [anon_sym_LBRACK] = ACTIONS(2185), + [anon_sym_LBRACE] = ACTIONS(2185), + [anon_sym_RBRACE] = ACTIONS(2185), + [anon_sym_STAR] = ACTIONS(2185), + [anon_sym_u8] = ACTIONS(2187), + [anon_sym_i8] = ACTIONS(2187), + [anon_sym_u16] = ACTIONS(2187), + [anon_sym_i16] = ACTIONS(2187), + [anon_sym_u32] = ACTIONS(2187), + [anon_sym_i32] = ACTIONS(2187), + [anon_sym_u64] = ACTIONS(2187), + [anon_sym_i64] = ACTIONS(2187), + [anon_sym_u128] = ACTIONS(2187), + [anon_sym_i128] = ACTIONS(2187), + [anon_sym_isize] = ACTIONS(2187), + [anon_sym_usize] = ACTIONS(2187), + [anon_sym_f32] = ACTIONS(2187), + [anon_sym_f64] = ACTIONS(2187), + [anon_sym_bool] = ACTIONS(2187), + [anon_sym_str] = ACTIONS(2187), + [anon_sym_char] = ACTIONS(2187), + [anon_sym_DASH] = ACTIONS(2185), + [anon_sym_BANG] = ACTIONS(2185), + [anon_sym_AMP] = ACTIONS(2185), + [anon_sym_PIPE] = ACTIONS(2185), + [anon_sym_LT] = ACTIONS(2185), + [anon_sym_DOT_DOT] = ACTIONS(2185), + [anon_sym_COLON_COLON] = ACTIONS(2185), + [anon_sym_POUND] = ACTIONS(2185), + [anon_sym_SQUOTE] = ACTIONS(2187), + [anon_sym_async] = ACTIONS(2187), + [anon_sym_break] = ACTIONS(2187), + [anon_sym_const] = ACTIONS(2187), + [anon_sym_continue] = ACTIONS(2187), + [anon_sym_default] = ACTIONS(2187), + [anon_sym_enum] = ACTIONS(2187), + [anon_sym_fn] = ACTIONS(2187), + [anon_sym_for] = ACTIONS(2187), + [anon_sym_gen] = ACTIONS(2187), + [anon_sym_if] = ACTIONS(2187), + [anon_sym_impl] = ACTIONS(2187), + [anon_sym_let] = ACTIONS(2187), + [anon_sym_loop] = ACTIONS(2187), + [anon_sym_match] = ACTIONS(2187), + [anon_sym_mod] = ACTIONS(2187), + [anon_sym_pub] = ACTIONS(2187), + [anon_sym_return] = ACTIONS(2187), + [anon_sym_static] = ACTIONS(2187), + [anon_sym_struct] = ACTIONS(2187), + [anon_sym_trait] = ACTIONS(2187), + [anon_sym_type] = ACTIONS(2187), + [anon_sym_union] = ACTIONS(2187), + [anon_sym_unsafe] = ACTIONS(2187), + [anon_sym_use] = ACTIONS(2187), + [anon_sym_while] = ACTIONS(2187), + [anon_sym_extern] = ACTIONS(2187), + [anon_sym_yield] = ACTIONS(2187), + [anon_sym_move] = ACTIONS(2187), + [anon_sym_try] = ACTIONS(2187), + [sym_integer_literal] = ACTIONS(2185), + [aux_sym_string_literal_token1] = ACTIONS(2185), + [sym_char_literal] = ACTIONS(2185), + [anon_sym_true] = ACTIONS(2187), + [anon_sym_false] = ACTIONS(2187), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2187), + [sym_super] = ACTIONS(2187), + [sym_crate] = ACTIONS(2187), + [sym_metavariable] = ACTIONS(2185), + [sym__raw_string_literal_start] = ACTIONS(2185), + [sym_float_literal] = ACTIONS(2185), }, [575] = { [sym_line_comment] = STATE(575), [sym_block_comment] = STATE(575), - [ts_builtin_sym_end] = ACTIONS(2051), - [sym_identifier] = ACTIONS(2053), - [anon_sym_SEMI] = ACTIONS(2051), - [anon_sym_macro_rules_BANG] = ACTIONS(2051), - [anon_sym_LPAREN] = ACTIONS(2051), - [anon_sym_LBRACK] = ACTIONS(2051), - [anon_sym_LBRACE] = ACTIONS(2051), - [anon_sym_RBRACE] = ACTIONS(2051), - [anon_sym_STAR] = ACTIONS(2051), - [anon_sym_u8] = ACTIONS(2053), - [anon_sym_i8] = ACTIONS(2053), - [anon_sym_u16] = ACTIONS(2053), - [anon_sym_i16] = ACTIONS(2053), - [anon_sym_u32] = ACTIONS(2053), - [anon_sym_i32] = ACTIONS(2053), - [anon_sym_u64] = ACTIONS(2053), - [anon_sym_i64] = ACTIONS(2053), - [anon_sym_u128] = ACTIONS(2053), - [anon_sym_i128] = ACTIONS(2053), - [anon_sym_isize] = ACTIONS(2053), - [anon_sym_usize] = ACTIONS(2053), - [anon_sym_f32] = ACTIONS(2053), - [anon_sym_f64] = ACTIONS(2053), - [anon_sym_bool] = ACTIONS(2053), - [anon_sym_str] = ACTIONS(2053), - [anon_sym_char] = ACTIONS(2053), - [anon_sym_DASH] = ACTIONS(2051), - [anon_sym_BANG] = ACTIONS(2051), - [anon_sym_AMP] = ACTIONS(2051), - [anon_sym_PIPE] = ACTIONS(2051), - [anon_sym_LT] = ACTIONS(2051), - [anon_sym_DOT_DOT] = ACTIONS(2051), - [anon_sym_COLON_COLON] = ACTIONS(2051), - [anon_sym_POUND] = ACTIONS(2051), - [anon_sym_SQUOTE] = ACTIONS(2053), - [anon_sym_async] = ACTIONS(2053), - [anon_sym_break] = ACTIONS(2053), - [anon_sym_const] = ACTIONS(2053), - [anon_sym_continue] = ACTIONS(2053), - [anon_sym_default] = ACTIONS(2053), - [anon_sym_enum] = ACTIONS(2053), - [anon_sym_fn] = ACTIONS(2053), - [anon_sym_for] = ACTIONS(2053), - [anon_sym_gen] = ACTIONS(2053), - [anon_sym_if] = ACTIONS(2053), - [anon_sym_impl] = ACTIONS(2053), - [anon_sym_let] = ACTIONS(2053), - [anon_sym_loop] = ACTIONS(2053), - [anon_sym_match] = ACTIONS(2053), - [anon_sym_mod] = ACTIONS(2053), - [anon_sym_pub] = ACTIONS(2053), - [anon_sym_return] = ACTIONS(2053), - [anon_sym_static] = ACTIONS(2053), - [anon_sym_struct] = ACTIONS(2053), - [anon_sym_trait] = ACTIONS(2053), - [anon_sym_type] = ACTIONS(2053), - [anon_sym_union] = ACTIONS(2053), - [anon_sym_unsafe] = ACTIONS(2053), - [anon_sym_use] = ACTIONS(2053), - [anon_sym_while] = ACTIONS(2053), - [anon_sym_extern] = ACTIONS(2053), - [anon_sym_yield] = ACTIONS(2053), - [anon_sym_move] = ACTIONS(2053), - [anon_sym_try] = ACTIONS(2053), - [sym_integer_literal] = ACTIONS(2051), - [aux_sym_string_literal_token1] = ACTIONS(2051), - [sym_char_literal] = ACTIONS(2051), - [anon_sym_true] = ACTIONS(2053), - [anon_sym_false] = ACTIONS(2053), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2053), - [sym_super] = ACTIONS(2053), - [sym_crate] = ACTIONS(2053), - [sym_metavariable] = ACTIONS(2051), - [sym__raw_string_literal_start] = ACTIONS(2051), - [sym_float_literal] = ACTIONS(2051), + [ts_builtin_sym_end] = ACTIONS(2189), + [sym_identifier] = ACTIONS(2191), + [anon_sym_SEMI] = ACTIONS(2189), + [anon_sym_macro_rules_BANG] = ACTIONS(2189), + [anon_sym_LPAREN] = ACTIONS(2189), + [anon_sym_LBRACK] = ACTIONS(2189), + [anon_sym_LBRACE] = ACTIONS(2189), + [anon_sym_RBRACE] = ACTIONS(2189), + [anon_sym_STAR] = ACTIONS(2189), + [anon_sym_u8] = ACTIONS(2191), + [anon_sym_i8] = ACTIONS(2191), + [anon_sym_u16] = ACTIONS(2191), + [anon_sym_i16] = ACTIONS(2191), + [anon_sym_u32] = ACTIONS(2191), + [anon_sym_i32] = ACTIONS(2191), + [anon_sym_u64] = ACTIONS(2191), + [anon_sym_i64] = ACTIONS(2191), + [anon_sym_u128] = ACTIONS(2191), + [anon_sym_i128] = ACTIONS(2191), + [anon_sym_isize] = ACTIONS(2191), + [anon_sym_usize] = ACTIONS(2191), + [anon_sym_f32] = ACTIONS(2191), + [anon_sym_f64] = ACTIONS(2191), + [anon_sym_bool] = ACTIONS(2191), + [anon_sym_str] = ACTIONS(2191), + [anon_sym_char] = ACTIONS(2191), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2189), + [anon_sym_AMP] = ACTIONS(2189), + [anon_sym_PIPE] = ACTIONS(2189), + [anon_sym_LT] = ACTIONS(2189), + [anon_sym_DOT_DOT] = ACTIONS(2189), + [anon_sym_COLON_COLON] = ACTIONS(2189), + [anon_sym_POUND] = ACTIONS(2189), + [anon_sym_SQUOTE] = ACTIONS(2191), + [anon_sym_async] = ACTIONS(2191), + [anon_sym_break] = ACTIONS(2191), + [anon_sym_const] = ACTIONS(2191), + [anon_sym_continue] = ACTIONS(2191), + [anon_sym_default] = ACTIONS(2191), + [anon_sym_enum] = ACTIONS(2191), + [anon_sym_fn] = ACTIONS(2191), + [anon_sym_for] = ACTIONS(2191), + [anon_sym_gen] = ACTIONS(2191), + [anon_sym_if] = ACTIONS(2191), + [anon_sym_impl] = ACTIONS(2191), + [anon_sym_let] = ACTIONS(2191), + [anon_sym_loop] = ACTIONS(2191), + [anon_sym_match] = ACTIONS(2191), + [anon_sym_mod] = ACTIONS(2191), + [anon_sym_pub] = ACTIONS(2191), + [anon_sym_return] = ACTIONS(2191), + [anon_sym_static] = ACTIONS(2191), + [anon_sym_struct] = ACTIONS(2191), + [anon_sym_trait] = ACTIONS(2191), + [anon_sym_type] = ACTIONS(2191), + [anon_sym_union] = ACTIONS(2191), + [anon_sym_unsafe] = ACTIONS(2191), + [anon_sym_use] = ACTIONS(2191), + [anon_sym_while] = ACTIONS(2191), + [anon_sym_extern] = ACTIONS(2191), + [anon_sym_yield] = ACTIONS(2191), + [anon_sym_move] = ACTIONS(2191), + [anon_sym_try] = ACTIONS(2191), + [sym_integer_literal] = ACTIONS(2189), + [aux_sym_string_literal_token1] = ACTIONS(2189), + [sym_char_literal] = ACTIONS(2189), + [anon_sym_true] = ACTIONS(2191), + [anon_sym_false] = ACTIONS(2191), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2191), + [sym_super] = ACTIONS(2191), + [sym_crate] = ACTIONS(2191), + [sym_metavariable] = ACTIONS(2189), + [sym__raw_string_literal_start] = ACTIONS(2189), + [sym_float_literal] = ACTIONS(2189), }, [576] = { [sym_line_comment] = STATE(576), [sym_block_comment] = STATE(576), - [ts_builtin_sym_end] = ACTIONS(2055), - [sym_identifier] = ACTIONS(2057), - [anon_sym_SEMI] = ACTIONS(2055), - [anon_sym_macro_rules_BANG] = ACTIONS(2055), - [anon_sym_LPAREN] = ACTIONS(2055), - [anon_sym_LBRACK] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2055), - [anon_sym_RBRACE] = ACTIONS(2055), - [anon_sym_STAR] = ACTIONS(2055), - [anon_sym_u8] = ACTIONS(2057), - [anon_sym_i8] = ACTIONS(2057), - [anon_sym_u16] = ACTIONS(2057), - [anon_sym_i16] = ACTIONS(2057), - [anon_sym_u32] = ACTIONS(2057), - [anon_sym_i32] = ACTIONS(2057), - [anon_sym_u64] = ACTIONS(2057), - [anon_sym_i64] = ACTIONS(2057), - [anon_sym_u128] = ACTIONS(2057), - [anon_sym_i128] = ACTIONS(2057), - [anon_sym_isize] = ACTIONS(2057), - [anon_sym_usize] = ACTIONS(2057), - [anon_sym_f32] = ACTIONS(2057), - [anon_sym_f64] = ACTIONS(2057), - [anon_sym_bool] = ACTIONS(2057), - [anon_sym_str] = ACTIONS(2057), - [anon_sym_char] = ACTIONS(2057), - [anon_sym_DASH] = ACTIONS(2055), - [anon_sym_BANG] = ACTIONS(2055), - [anon_sym_AMP] = ACTIONS(2055), - [anon_sym_PIPE] = ACTIONS(2055), - [anon_sym_LT] = ACTIONS(2055), - [anon_sym_DOT_DOT] = ACTIONS(2055), - [anon_sym_COLON_COLON] = ACTIONS(2055), - [anon_sym_POUND] = ACTIONS(2055), - [anon_sym_SQUOTE] = ACTIONS(2057), - [anon_sym_async] = ACTIONS(2057), - [anon_sym_break] = ACTIONS(2057), - [anon_sym_const] = ACTIONS(2057), - [anon_sym_continue] = ACTIONS(2057), - [anon_sym_default] = ACTIONS(2057), - [anon_sym_enum] = ACTIONS(2057), - [anon_sym_fn] = ACTIONS(2057), - [anon_sym_for] = ACTIONS(2057), - [anon_sym_gen] = ACTIONS(2057), - [anon_sym_if] = ACTIONS(2057), - [anon_sym_impl] = ACTIONS(2057), - [anon_sym_let] = ACTIONS(2057), - [anon_sym_loop] = ACTIONS(2057), - [anon_sym_match] = ACTIONS(2057), - [anon_sym_mod] = ACTIONS(2057), - [anon_sym_pub] = ACTIONS(2057), - [anon_sym_return] = ACTIONS(2057), - [anon_sym_static] = ACTIONS(2057), - [anon_sym_struct] = ACTIONS(2057), - [anon_sym_trait] = ACTIONS(2057), - [anon_sym_type] = ACTIONS(2057), - [anon_sym_union] = ACTIONS(2057), - [anon_sym_unsafe] = ACTIONS(2057), - [anon_sym_use] = ACTIONS(2057), - [anon_sym_while] = ACTIONS(2057), - [anon_sym_extern] = ACTIONS(2057), - [anon_sym_yield] = ACTIONS(2057), - [anon_sym_move] = ACTIONS(2057), - [anon_sym_try] = ACTIONS(2057), - [sym_integer_literal] = ACTIONS(2055), - [aux_sym_string_literal_token1] = ACTIONS(2055), - [sym_char_literal] = ACTIONS(2055), - [anon_sym_true] = ACTIONS(2057), - [anon_sym_false] = ACTIONS(2057), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2057), - [sym_super] = ACTIONS(2057), - [sym_crate] = ACTIONS(2057), - [sym_metavariable] = ACTIONS(2055), - [sym__raw_string_literal_start] = ACTIONS(2055), - [sym_float_literal] = ACTIONS(2055), + [ts_builtin_sym_end] = ACTIONS(2193), + [sym_identifier] = ACTIONS(2195), + [anon_sym_SEMI] = ACTIONS(2193), + [anon_sym_macro_rules_BANG] = ACTIONS(2193), + [anon_sym_LPAREN] = ACTIONS(2193), + [anon_sym_LBRACK] = ACTIONS(2193), + [anon_sym_LBRACE] = ACTIONS(2193), + [anon_sym_RBRACE] = ACTIONS(2193), + [anon_sym_STAR] = ACTIONS(2193), + [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), + [anon_sym_DASH] = ACTIONS(2193), + [anon_sym_BANG] = ACTIONS(2193), + [anon_sym_AMP] = ACTIONS(2193), + [anon_sym_PIPE] = ACTIONS(2193), + [anon_sym_LT] = ACTIONS(2193), + [anon_sym_DOT_DOT] = ACTIONS(2193), + [anon_sym_COLON_COLON] = ACTIONS(2193), + [anon_sym_POUND] = ACTIONS(2193), + [anon_sym_SQUOTE] = ACTIONS(2195), + [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2195), + [anon_sym_extern] = ACTIONS(2195), + [anon_sym_yield] = ACTIONS(2195), + [anon_sym_move] = ACTIONS(2195), + [anon_sym_try] = ACTIONS(2195), + [sym_integer_literal] = ACTIONS(2193), + [aux_sym_string_literal_token1] = ACTIONS(2193), + [sym_char_literal] = ACTIONS(2193), + [anon_sym_true] = ACTIONS(2195), + [anon_sym_false] = ACTIONS(2195), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2195), + [sym_super] = ACTIONS(2195), + [sym_crate] = ACTIONS(2195), + [sym_metavariable] = ACTIONS(2193), + [sym__raw_string_literal_start] = ACTIONS(2193), + [sym_float_literal] = ACTIONS(2193), }, [577] = { [sym_line_comment] = STATE(577), [sym_block_comment] = STATE(577), - [ts_builtin_sym_end] = ACTIONS(2059), - [sym_identifier] = ACTIONS(2061), - [anon_sym_SEMI] = ACTIONS(2059), - [anon_sym_macro_rules_BANG] = ACTIONS(2059), - [anon_sym_LPAREN] = ACTIONS(2059), - [anon_sym_LBRACK] = ACTIONS(2059), - [anon_sym_LBRACE] = ACTIONS(2059), - [anon_sym_RBRACE] = ACTIONS(2059), - [anon_sym_STAR] = ACTIONS(2059), - [anon_sym_u8] = ACTIONS(2061), - [anon_sym_i8] = ACTIONS(2061), - [anon_sym_u16] = ACTIONS(2061), - [anon_sym_i16] = ACTIONS(2061), - [anon_sym_u32] = ACTIONS(2061), - [anon_sym_i32] = ACTIONS(2061), - [anon_sym_u64] = ACTIONS(2061), - [anon_sym_i64] = ACTIONS(2061), - [anon_sym_u128] = ACTIONS(2061), - [anon_sym_i128] = ACTIONS(2061), - [anon_sym_isize] = ACTIONS(2061), - [anon_sym_usize] = ACTIONS(2061), - [anon_sym_f32] = ACTIONS(2061), - [anon_sym_f64] = ACTIONS(2061), - [anon_sym_bool] = ACTIONS(2061), - [anon_sym_str] = ACTIONS(2061), - [anon_sym_char] = ACTIONS(2061), - [anon_sym_DASH] = ACTIONS(2059), - [anon_sym_BANG] = ACTIONS(2059), - [anon_sym_AMP] = ACTIONS(2059), - [anon_sym_PIPE] = ACTIONS(2059), - [anon_sym_LT] = ACTIONS(2059), - [anon_sym_DOT_DOT] = ACTIONS(2059), - [anon_sym_COLON_COLON] = ACTIONS(2059), - [anon_sym_POUND] = ACTIONS(2059), - [anon_sym_SQUOTE] = ACTIONS(2061), - [anon_sym_async] = ACTIONS(2061), - [anon_sym_break] = ACTIONS(2061), - [anon_sym_const] = ACTIONS(2061), - [anon_sym_continue] = ACTIONS(2061), - [anon_sym_default] = ACTIONS(2061), - [anon_sym_enum] = ACTIONS(2061), - [anon_sym_fn] = ACTIONS(2061), - [anon_sym_for] = ACTIONS(2061), - [anon_sym_gen] = ACTIONS(2061), - [anon_sym_if] = ACTIONS(2061), - [anon_sym_impl] = ACTIONS(2061), - [anon_sym_let] = ACTIONS(2061), - [anon_sym_loop] = ACTIONS(2061), - [anon_sym_match] = ACTIONS(2061), - [anon_sym_mod] = ACTIONS(2061), - [anon_sym_pub] = ACTIONS(2061), - [anon_sym_return] = ACTIONS(2061), - [anon_sym_static] = ACTIONS(2061), - [anon_sym_struct] = ACTIONS(2061), - [anon_sym_trait] = ACTIONS(2061), - [anon_sym_type] = ACTIONS(2061), - [anon_sym_union] = ACTIONS(2061), - [anon_sym_unsafe] = ACTIONS(2061), - [anon_sym_use] = ACTIONS(2061), - [anon_sym_while] = ACTIONS(2061), - [anon_sym_extern] = ACTIONS(2061), - [anon_sym_yield] = ACTIONS(2061), - [anon_sym_move] = ACTIONS(2061), - [anon_sym_try] = ACTIONS(2061), - [sym_integer_literal] = ACTIONS(2059), - [aux_sym_string_literal_token1] = ACTIONS(2059), - [sym_char_literal] = ACTIONS(2059), - [anon_sym_true] = ACTIONS(2061), - [anon_sym_false] = ACTIONS(2061), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2061), - [sym_super] = ACTIONS(2061), - [sym_crate] = ACTIONS(2061), - [sym_metavariable] = ACTIONS(2059), - [sym__raw_string_literal_start] = ACTIONS(2059), - [sym_float_literal] = ACTIONS(2059), + [ts_builtin_sym_end] = ACTIONS(2197), + [sym_identifier] = ACTIONS(2199), + [anon_sym_SEMI] = ACTIONS(2197), + [anon_sym_macro_rules_BANG] = ACTIONS(2197), + [anon_sym_LPAREN] = ACTIONS(2197), + [anon_sym_LBRACK] = ACTIONS(2197), + [anon_sym_LBRACE] = ACTIONS(2197), + [anon_sym_RBRACE] = ACTIONS(2197), + [anon_sym_STAR] = ACTIONS(2197), + [anon_sym_u8] = ACTIONS(2199), + [anon_sym_i8] = ACTIONS(2199), + [anon_sym_u16] = ACTIONS(2199), + [anon_sym_i16] = ACTIONS(2199), + [anon_sym_u32] = ACTIONS(2199), + [anon_sym_i32] = ACTIONS(2199), + [anon_sym_u64] = ACTIONS(2199), + [anon_sym_i64] = ACTIONS(2199), + [anon_sym_u128] = ACTIONS(2199), + [anon_sym_i128] = ACTIONS(2199), + [anon_sym_isize] = ACTIONS(2199), + [anon_sym_usize] = ACTIONS(2199), + [anon_sym_f32] = ACTIONS(2199), + [anon_sym_f64] = ACTIONS(2199), + [anon_sym_bool] = ACTIONS(2199), + [anon_sym_str] = ACTIONS(2199), + [anon_sym_char] = ACTIONS(2199), + [anon_sym_DASH] = ACTIONS(2197), + [anon_sym_BANG] = ACTIONS(2197), + [anon_sym_AMP] = ACTIONS(2197), + [anon_sym_PIPE] = ACTIONS(2197), + [anon_sym_LT] = ACTIONS(2197), + [anon_sym_DOT_DOT] = ACTIONS(2197), + [anon_sym_COLON_COLON] = ACTIONS(2197), + [anon_sym_POUND] = ACTIONS(2197), + [anon_sym_SQUOTE] = ACTIONS(2199), + [anon_sym_async] = ACTIONS(2199), + [anon_sym_break] = ACTIONS(2199), + [anon_sym_const] = ACTIONS(2199), + [anon_sym_continue] = ACTIONS(2199), + [anon_sym_default] = ACTIONS(2199), + [anon_sym_enum] = ACTIONS(2199), + [anon_sym_fn] = ACTIONS(2199), + [anon_sym_for] = ACTIONS(2199), + [anon_sym_gen] = ACTIONS(2199), + [anon_sym_if] = ACTIONS(2199), + [anon_sym_impl] = ACTIONS(2199), + [anon_sym_let] = ACTIONS(2199), + [anon_sym_loop] = ACTIONS(2199), + [anon_sym_match] = ACTIONS(2199), + [anon_sym_mod] = ACTIONS(2199), + [anon_sym_pub] = ACTIONS(2199), + [anon_sym_return] = ACTIONS(2199), + [anon_sym_static] = ACTIONS(2199), + [anon_sym_struct] = ACTIONS(2199), + [anon_sym_trait] = ACTIONS(2199), + [anon_sym_type] = ACTIONS(2199), + [anon_sym_union] = ACTIONS(2199), + [anon_sym_unsafe] = ACTIONS(2199), + [anon_sym_use] = ACTIONS(2199), + [anon_sym_while] = ACTIONS(2199), + [anon_sym_extern] = ACTIONS(2199), + [anon_sym_yield] = ACTIONS(2199), + [anon_sym_move] = ACTIONS(2199), + [anon_sym_try] = ACTIONS(2199), + [sym_integer_literal] = ACTIONS(2197), + [aux_sym_string_literal_token1] = ACTIONS(2197), + [sym_char_literal] = ACTIONS(2197), + [anon_sym_true] = ACTIONS(2199), + [anon_sym_false] = ACTIONS(2199), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2199), + [sym_super] = ACTIONS(2199), + [sym_crate] = ACTIONS(2199), + [sym_metavariable] = ACTIONS(2197), + [sym__raw_string_literal_start] = ACTIONS(2197), + [sym_float_literal] = ACTIONS(2197), }, [578] = { [sym_line_comment] = STATE(578), [sym_block_comment] = STATE(578), - [ts_builtin_sym_end] = ACTIONS(2063), - [sym_identifier] = ACTIONS(2065), - [anon_sym_SEMI] = ACTIONS(2063), - [anon_sym_macro_rules_BANG] = ACTIONS(2063), - [anon_sym_LPAREN] = ACTIONS(2063), - [anon_sym_LBRACK] = ACTIONS(2063), - [anon_sym_LBRACE] = ACTIONS(2063), - [anon_sym_RBRACE] = ACTIONS(2063), - [anon_sym_STAR] = ACTIONS(2063), - [anon_sym_u8] = ACTIONS(2065), - [anon_sym_i8] = ACTIONS(2065), - [anon_sym_u16] = ACTIONS(2065), - [anon_sym_i16] = ACTIONS(2065), - [anon_sym_u32] = ACTIONS(2065), - [anon_sym_i32] = ACTIONS(2065), - [anon_sym_u64] = ACTIONS(2065), - [anon_sym_i64] = ACTIONS(2065), - [anon_sym_u128] = ACTIONS(2065), - [anon_sym_i128] = ACTIONS(2065), - [anon_sym_isize] = ACTIONS(2065), - [anon_sym_usize] = ACTIONS(2065), - [anon_sym_f32] = ACTIONS(2065), - [anon_sym_f64] = ACTIONS(2065), - [anon_sym_bool] = ACTIONS(2065), - [anon_sym_str] = ACTIONS(2065), - [anon_sym_char] = ACTIONS(2065), - [anon_sym_DASH] = ACTIONS(2063), - [anon_sym_BANG] = ACTIONS(2063), - [anon_sym_AMP] = ACTIONS(2063), - [anon_sym_PIPE] = ACTIONS(2063), - [anon_sym_LT] = ACTIONS(2063), - [anon_sym_DOT_DOT] = ACTIONS(2063), - [anon_sym_COLON_COLON] = ACTIONS(2063), - [anon_sym_POUND] = ACTIONS(2063), - [anon_sym_SQUOTE] = ACTIONS(2065), - [anon_sym_async] = ACTIONS(2065), - [anon_sym_break] = ACTIONS(2065), - [anon_sym_const] = ACTIONS(2065), - [anon_sym_continue] = ACTIONS(2065), - [anon_sym_default] = ACTIONS(2065), - [anon_sym_enum] = ACTIONS(2065), - [anon_sym_fn] = ACTIONS(2065), - [anon_sym_for] = ACTIONS(2065), - [anon_sym_gen] = ACTIONS(2065), - [anon_sym_if] = ACTIONS(2065), - [anon_sym_impl] = ACTIONS(2065), - [anon_sym_let] = ACTIONS(2065), - [anon_sym_loop] = ACTIONS(2065), - [anon_sym_match] = ACTIONS(2065), - [anon_sym_mod] = ACTIONS(2065), - [anon_sym_pub] = ACTIONS(2065), - [anon_sym_return] = ACTIONS(2065), - [anon_sym_static] = ACTIONS(2065), - [anon_sym_struct] = ACTIONS(2065), - [anon_sym_trait] = ACTIONS(2065), - [anon_sym_type] = ACTIONS(2065), - [anon_sym_union] = ACTIONS(2065), - [anon_sym_unsafe] = ACTIONS(2065), - [anon_sym_use] = ACTIONS(2065), - [anon_sym_while] = ACTIONS(2065), - [anon_sym_extern] = ACTIONS(2065), - [anon_sym_yield] = ACTIONS(2065), - [anon_sym_move] = ACTIONS(2065), - [anon_sym_try] = ACTIONS(2065), - [sym_integer_literal] = ACTIONS(2063), - [aux_sym_string_literal_token1] = ACTIONS(2063), - [sym_char_literal] = ACTIONS(2063), - [anon_sym_true] = ACTIONS(2065), - [anon_sym_false] = ACTIONS(2065), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2065), - [sym_super] = ACTIONS(2065), - [sym_crate] = ACTIONS(2065), - [sym_metavariable] = ACTIONS(2063), - [sym__raw_string_literal_start] = ACTIONS(2063), - [sym_float_literal] = ACTIONS(2063), + [ts_builtin_sym_end] = ACTIONS(2201), + [sym_identifier] = ACTIONS(2203), + [anon_sym_SEMI] = ACTIONS(2201), + [anon_sym_macro_rules_BANG] = ACTIONS(2201), + [anon_sym_LPAREN] = ACTIONS(2201), + [anon_sym_LBRACK] = ACTIONS(2201), + [anon_sym_LBRACE] = ACTIONS(2201), + [anon_sym_RBRACE] = ACTIONS(2201), + [anon_sym_STAR] = ACTIONS(2201), + [anon_sym_u8] = ACTIONS(2203), + [anon_sym_i8] = ACTIONS(2203), + [anon_sym_u16] = ACTIONS(2203), + [anon_sym_i16] = ACTIONS(2203), + [anon_sym_u32] = ACTIONS(2203), + [anon_sym_i32] = ACTIONS(2203), + [anon_sym_u64] = ACTIONS(2203), + [anon_sym_i64] = ACTIONS(2203), + [anon_sym_u128] = ACTIONS(2203), + [anon_sym_i128] = ACTIONS(2203), + [anon_sym_isize] = ACTIONS(2203), + [anon_sym_usize] = ACTIONS(2203), + [anon_sym_f32] = ACTIONS(2203), + [anon_sym_f64] = ACTIONS(2203), + [anon_sym_bool] = ACTIONS(2203), + [anon_sym_str] = ACTIONS(2203), + [anon_sym_char] = ACTIONS(2203), + [anon_sym_DASH] = ACTIONS(2201), + [anon_sym_BANG] = ACTIONS(2201), + [anon_sym_AMP] = ACTIONS(2201), + [anon_sym_PIPE] = ACTIONS(2201), + [anon_sym_LT] = ACTIONS(2201), + [anon_sym_DOT_DOT] = ACTIONS(2201), + [anon_sym_COLON_COLON] = ACTIONS(2201), + [anon_sym_POUND] = ACTIONS(2201), + [anon_sym_SQUOTE] = ACTIONS(2203), + [anon_sym_async] = ACTIONS(2203), + [anon_sym_break] = ACTIONS(2203), + [anon_sym_const] = ACTIONS(2203), + [anon_sym_continue] = ACTIONS(2203), + [anon_sym_default] = ACTIONS(2203), + [anon_sym_enum] = ACTIONS(2203), + [anon_sym_fn] = ACTIONS(2203), + [anon_sym_for] = ACTIONS(2203), + [anon_sym_gen] = ACTIONS(2203), + [anon_sym_if] = ACTIONS(2203), + [anon_sym_impl] = ACTIONS(2203), + [anon_sym_let] = ACTIONS(2203), + [anon_sym_loop] = ACTIONS(2203), + [anon_sym_match] = ACTIONS(2203), + [anon_sym_mod] = ACTIONS(2203), + [anon_sym_pub] = ACTIONS(2203), + [anon_sym_return] = ACTIONS(2203), + [anon_sym_static] = ACTIONS(2203), + [anon_sym_struct] = ACTIONS(2203), + [anon_sym_trait] = ACTIONS(2203), + [anon_sym_type] = ACTIONS(2203), + [anon_sym_union] = ACTIONS(2203), + [anon_sym_unsafe] = ACTIONS(2203), + [anon_sym_use] = ACTIONS(2203), + [anon_sym_while] = ACTIONS(2203), + [anon_sym_extern] = ACTIONS(2203), + [anon_sym_yield] = ACTIONS(2203), + [anon_sym_move] = ACTIONS(2203), + [anon_sym_try] = ACTIONS(2203), + [sym_integer_literal] = ACTIONS(2201), + [aux_sym_string_literal_token1] = ACTIONS(2201), + [sym_char_literal] = ACTIONS(2201), + [anon_sym_true] = ACTIONS(2203), + [anon_sym_false] = ACTIONS(2203), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2203), + [sym_super] = ACTIONS(2203), + [sym_crate] = ACTIONS(2203), + [sym_metavariable] = ACTIONS(2201), + [sym__raw_string_literal_start] = ACTIONS(2201), + [sym_float_literal] = ACTIONS(2201), }, [579] = { [sym_line_comment] = STATE(579), [sym_block_comment] = STATE(579), - [ts_builtin_sym_end] = ACTIONS(2067), - [sym_identifier] = ACTIONS(2069), - [anon_sym_SEMI] = ACTIONS(2067), - [anon_sym_macro_rules_BANG] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2067), - [anon_sym_RBRACE] = ACTIONS(2067), - [anon_sym_STAR] = ACTIONS(2067), - [anon_sym_u8] = ACTIONS(2069), - [anon_sym_i8] = ACTIONS(2069), - [anon_sym_u16] = ACTIONS(2069), - [anon_sym_i16] = ACTIONS(2069), - [anon_sym_u32] = ACTIONS(2069), - [anon_sym_i32] = ACTIONS(2069), - [anon_sym_u64] = ACTIONS(2069), - [anon_sym_i64] = ACTIONS(2069), - [anon_sym_u128] = ACTIONS(2069), - [anon_sym_i128] = ACTIONS(2069), - [anon_sym_isize] = ACTIONS(2069), - [anon_sym_usize] = ACTIONS(2069), - [anon_sym_f32] = ACTIONS(2069), - [anon_sym_f64] = ACTIONS(2069), - [anon_sym_bool] = ACTIONS(2069), - [anon_sym_str] = ACTIONS(2069), - [anon_sym_char] = ACTIONS(2069), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_BANG] = ACTIONS(2067), - [anon_sym_AMP] = ACTIONS(2067), - [anon_sym_PIPE] = ACTIONS(2067), - [anon_sym_LT] = ACTIONS(2067), - [anon_sym_DOT_DOT] = ACTIONS(2067), - [anon_sym_COLON_COLON] = ACTIONS(2067), - [anon_sym_POUND] = ACTIONS(2067), - [anon_sym_SQUOTE] = ACTIONS(2069), - [anon_sym_async] = ACTIONS(2069), - [anon_sym_break] = ACTIONS(2069), - [anon_sym_const] = ACTIONS(2069), - [anon_sym_continue] = ACTIONS(2069), - [anon_sym_default] = ACTIONS(2069), - [anon_sym_enum] = ACTIONS(2069), - [anon_sym_fn] = ACTIONS(2069), - [anon_sym_for] = ACTIONS(2069), - [anon_sym_gen] = ACTIONS(2069), - [anon_sym_if] = ACTIONS(2069), - [anon_sym_impl] = ACTIONS(2069), - [anon_sym_let] = ACTIONS(2069), - [anon_sym_loop] = ACTIONS(2069), - [anon_sym_match] = ACTIONS(2069), - [anon_sym_mod] = ACTIONS(2069), - [anon_sym_pub] = ACTIONS(2069), - [anon_sym_return] = ACTIONS(2069), - [anon_sym_static] = ACTIONS(2069), - [anon_sym_struct] = ACTIONS(2069), - [anon_sym_trait] = ACTIONS(2069), - [anon_sym_type] = ACTIONS(2069), - [anon_sym_union] = ACTIONS(2069), - [anon_sym_unsafe] = ACTIONS(2069), - [anon_sym_use] = ACTIONS(2069), - [anon_sym_while] = ACTIONS(2069), - [anon_sym_extern] = ACTIONS(2069), - [anon_sym_yield] = ACTIONS(2069), - [anon_sym_move] = ACTIONS(2069), - [anon_sym_try] = ACTIONS(2069), - [sym_integer_literal] = ACTIONS(2067), - [aux_sym_string_literal_token1] = ACTIONS(2067), - [sym_char_literal] = ACTIONS(2067), - [anon_sym_true] = ACTIONS(2069), - [anon_sym_false] = ACTIONS(2069), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2069), - [sym_super] = ACTIONS(2069), - [sym_crate] = ACTIONS(2069), - [sym_metavariable] = ACTIONS(2067), - [sym__raw_string_literal_start] = ACTIONS(2067), - [sym_float_literal] = ACTIONS(2067), + [ts_builtin_sym_end] = ACTIONS(2205), + [sym_identifier] = ACTIONS(2207), + [anon_sym_SEMI] = ACTIONS(2205), + [anon_sym_macro_rules_BANG] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(2205), + [anon_sym_LBRACK] = ACTIONS(2205), + [anon_sym_LBRACE] = ACTIONS(2205), + [anon_sym_RBRACE] = ACTIONS(2205), + [anon_sym_STAR] = ACTIONS(2205), + [anon_sym_u8] = ACTIONS(2207), + [anon_sym_i8] = ACTIONS(2207), + [anon_sym_u16] = ACTIONS(2207), + [anon_sym_i16] = ACTIONS(2207), + [anon_sym_u32] = ACTIONS(2207), + [anon_sym_i32] = ACTIONS(2207), + [anon_sym_u64] = ACTIONS(2207), + [anon_sym_i64] = ACTIONS(2207), + [anon_sym_u128] = ACTIONS(2207), + [anon_sym_i128] = ACTIONS(2207), + [anon_sym_isize] = ACTIONS(2207), + [anon_sym_usize] = ACTIONS(2207), + [anon_sym_f32] = ACTIONS(2207), + [anon_sym_f64] = ACTIONS(2207), + [anon_sym_bool] = ACTIONS(2207), + [anon_sym_str] = ACTIONS(2207), + [anon_sym_char] = ACTIONS(2207), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_BANG] = ACTIONS(2205), + [anon_sym_AMP] = ACTIONS(2205), + [anon_sym_PIPE] = ACTIONS(2205), + [anon_sym_LT] = ACTIONS(2205), + [anon_sym_DOT_DOT] = ACTIONS(2205), + [anon_sym_COLON_COLON] = ACTIONS(2205), + [anon_sym_POUND] = ACTIONS(2205), + [anon_sym_SQUOTE] = ACTIONS(2207), + [anon_sym_async] = ACTIONS(2207), + [anon_sym_break] = ACTIONS(2207), + [anon_sym_const] = ACTIONS(2207), + [anon_sym_continue] = ACTIONS(2207), + [anon_sym_default] = ACTIONS(2207), + [anon_sym_enum] = ACTIONS(2207), + [anon_sym_fn] = ACTIONS(2207), + [anon_sym_for] = ACTIONS(2207), + [anon_sym_gen] = ACTIONS(2207), + [anon_sym_if] = ACTIONS(2207), + [anon_sym_impl] = ACTIONS(2207), + [anon_sym_let] = ACTIONS(2207), + [anon_sym_loop] = ACTIONS(2207), + [anon_sym_match] = ACTIONS(2207), + [anon_sym_mod] = ACTIONS(2207), + [anon_sym_pub] = ACTIONS(2207), + [anon_sym_return] = ACTIONS(2207), + [anon_sym_static] = ACTIONS(2207), + [anon_sym_struct] = ACTIONS(2207), + [anon_sym_trait] = ACTIONS(2207), + [anon_sym_type] = ACTIONS(2207), + [anon_sym_union] = ACTIONS(2207), + [anon_sym_unsafe] = ACTIONS(2207), + [anon_sym_use] = ACTIONS(2207), + [anon_sym_while] = ACTIONS(2207), + [anon_sym_extern] = ACTIONS(2207), + [anon_sym_yield] = ACTIONS(2207), + [anon_sym_move] = ACTIONS(2207), + [anon_sym_try] = ACTIONS(2207), + [sym_integer_literal] = ACTIONS(2205), + [aux_sym_string_literal_token1] = ACTIONS(2205), + [sym_char_literal] = ACTIONS(2205), + [anon_sym_true] = ACTIONS(2207), + [anon_sym_false] = ACTIONS(2207), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2207), + [sym_super] = ACTIONS(2207), + [sym_crate] = ACTIONS(2207), + [sym_metavariable] = ACTIONS(2205), + [sym__raw_string_literal_start] = ACTIONS(2205), + [sym_float_literal] = ACTIONS(2205), }, [580] = { [sym_line_comment] = STATE(580), [sym_block_comment] = STATE(580), - [ts_builtin_sym_end] = ACTIONS(2071), - [sym_identifier] = ACTIONS(2073), - [anon_sym_SEMI] = ACTIONS(2071), - [anon_sym_macro_rules_BANG] = ACTIONS(2071), - [anon_sym_LPAREN] = ACTIONS(2071), - [anon_sym_LBRACK] = ACTIONS(2071), - [anon_sym_LBRACE] = ACTIONS(2071), - [anon_sym_RBRACE] = ACTIONS(2071), - [anon_sym_STAR] = ACTIONS(2071), - [anon_sym_u8] = ACTIONS(2073), - [anon_sym_i8] = ACTIONS(2073), - [anon_sym_u16] = ACTIONS(2073), - [anon_sym_i16] = ACTIONS(2073), - [anon_sym_u32] = ACTIONS(2073), - [anon_sym_i32] = ACTIONS(2073), - [anon_sym_u64] = ACTIONS(2073), - [anon_sym_i64] = ACTIONS(2073), - [anon_sym_u128] = ACTIONS(2073), - [anon_sym_i128] = ACTIONS(2073), - [anon_sym_isize] = ACTIONS(2073), - [anon_sym_usize] = ACTIONS(2073), - [anon_sym_f32] = ACTIONS(2073), - [anon_sym_f64] = ACTIONS(2073), - [anon_sym_bool] = ACTIONS(2073), - [anon_sym_str] = ACTIONS(2073), - [anon_sym_char] = ACTIONS(2073), - [anon_sym_DASH] = ACTIONS(2071), - [anon_sym_BANG] = ACTIONS(2071), - [anon_sym_AMP] = ACTIONS(2071), - [anon_sym_PIPE] = ACTIONS(2071), - [anon_sym_LT] = ACTIONS(2071), - [anon_sym_DOT_DOT] = ACTIONS(2071), - [anon_sym_COLON_COLON] = ACTIONS(2071), - [anon_sym_POUND] = ACTIONS(2071), - [anon_sym_SQUOTE] = ACTIONS(2073), - [anon_sym_async] = ACTIONS(2073), - [anon_sym_break] = ACTIONS(2073), - [anon_sym_const] = ACTIONS(2073), - [anon_sym_continue] = ACTIONS(2073), - [anon_sym_default] = ACTIONS(2073), - [anon_sym_enum] = ACTIONS(2073), - [anon_sym_fn] = ACTIONS(2073), - [anon_sym_for] = ACTIONS(2073), - [anon_sym_gen] = ACTIONS(2073), - [anon_sym_if] = ACTIONS(2073), - [anon_sym_impl] = ACTIONS(2073), - [anon_sym_let] = ACTIONS(2073), - [anon_sym_loop] = ACTIONS(2073), - [anon_sym_match] = ACTIONS(2073), - [anon_sym_mod] = ACTIONS(2073), - [anon_sym_pub] = ACTIONS(2073), - [anon_sym_return] = ACTIONS(2073), - [anon_sym_static] = ACTIONS(2073), - [anon_sym_struct] = ACTIONS(2073), - [anon_sym_trait] = ACTIONS(2073), - [anon_sym_type] = ACTIONS(2073), - [anon_sym_union] = ACTIONS(2073), - [anon_sym_unsafe] = ACTIONS(2073), - [anon_sym_use] = ACTIONS(2073), - [anon_sym_while] = ACTIONS(2073), - [anon_sym_extern] = ACTIONS(2073), - [anon_sym_yield] = ACTIONS(2073), - [anon_sym_move] = ACTIONS(2073), - [anon_sym_try] = ACTIONS(2073), - [sym_integer_literal] = ACTIONS(2071), - [aux_sym_string_literal_token1] = ACTIONS(2071), - [sym_char_literal] = ACTIONS(2071), - [anon_sym_true] = ACTIONS(2073), - [anon_sym_false] = ACTIONS(2073), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2073), - [sym_super] = ACTIONS(2073), - [sym_crate] = ACTIONS(2073), - [sym_metavariable] = ACTIONS(2071), - [sym__raw_string_literal_start] = ACTIONS(2071), - [sym_float_literal] = ACTIONS(2071), + [ts_builtin_sym_end] = ACTIONS(2209), + [sym_identifier] = ACTIONS(2211), + [anon_sym_SEMI] = ACTIONS(2209), + [anon_sym_macro_rules_BANG] = ACTIONS(2209), + [anon_sym_LPAREN] = ACTIONS(2209), + [anon_sym_LBRACK] = ACTIONS(2209), + [anon_sym_LBRACE] = ACTIONS(2209), + [anon_sym_RBRACE] = ACTIONS(2209), + [anon_sym_STAR] = ACTIONS(2209), + [anon_sym_u8] = ACTIONS(2211), + [anon_sym_i8] = ACTIONS(2211), + [anon_sym_u16] = ACTIONS(2211), + [anon_sym_i16] = ACTIONS(2211), + [anon_sym_u32] = ACTIONS(2211), + [anon_sym_i32] = ACTIONS(2211), + [anon_sym_u64] = ACTIONS(2211), + [anon_sym_i64] = ACTIONS(2211), + [anon_sym_u128] = ACTIONS(2211), + [anon_sym_i128] = ACTIONS(2211), + [anon_sym_isize] = ACTIONS(2211), + [anon_sym_usize] = ACTIONS(2211), + [anon_sym_f32] = ACTIONS(2211), + [anon_sym_f64] = ACTIONS(2211), + [anon_sym_bool] = ACTIONS(2211), + [anon_sym_str] = ACTIONS(2211), + [anon_sym_char] = ACTIONS(2211), + [anon_sym_DASH] = ACTIONS(2209), + [anon_sym_BANG] = ACTIONS(2209), + [anon_sym_AMP] = ACTIONS(2209), + [anon_sym_PIPE] = ACTIONS(2209), + [anon_sym_LT] = ACTIONS(2209), + [anon_sym_DOT_DOT] = ACTIONS(2209), + [anon_sym_COLON_COLON] = ACTIONS(2209), + [anon_sym_POUND] = ACTIONS(2209), + [anon_sym_SQUOTE] = ACTIONS(2211), + [anon_sym_async] = ACTIONS(2211), + [anon_sym_break] = ACTIONS(2211), + [anon_sym_const] = ACTIONS(2211), + [anon_sym_continue] = ACTIONS(2211), + [anon_sym_default] = ACTIONS(2211), + [anon_sym_enum] = ACTIONS(2211), + [anon_sym_fn] = ACTIONS(2211), + [anon_sym_for] = ACTIONS(2211), + [anon_sym_gen] = ACTIONS(2211), + [anon_sym_if] = ACTIONS(2211), + [anon_sym_impl] = ACTIONS(2211), + [anon_sym_let] = ACTIONS(2211), + [anon_sym_loop] = ACTIONS(2211), + [anon_sym_match] = ACTIONS(2211), + [anon_sym_mod] = ACTIONS(2211), + [anon_sym_pub] = ACTIONS(2211), + [anon_sym_return] = ACTIONS(2211), + [anon_sym_static] = ACTIONS(2211), + [anon_sym_struct] = ACTIONS(2211), + [anon_sym_trait] = ACTIONS(2211), + [anon_sym_type] = ACTIONS(2211), + [anon_sym_union] = ACTIONS(2211), + [anon_sym_unsafe] = ACTIONS(2211), + [anon_sym_use] = ACTIONS(2211), + [anon_sym_while] = ACTIONS(2211), + [anon_sym_extern] = ACTIONS(2211), + [anon_sym_yield] = ACTIONS(2211), + [anon_sym_move] = ACTIONS(2211), + [anon_sym_try] = ACTIONS(2211), + [sym_integer_literal] = ACTIONS(2209), + [aux_sym_string_literal_token1] = ACTIONS(2209), + [sym_char_literal] = ACTIONS(2209), + [anon_sym_true] = ACTIONS(2211), + [anon_sym_false] = ACTIONS(2211), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2211), + [sym_super] = ACTIONS(2211), + [sym_crate] = ACTIONS(2211), + [sym_metavariable] = ACTIONS(2209), + [sym__raw_string_literal_start] = ACTIONS(2209), + [sym_float_literal] = ACTIONS(2209), }, [581] = { [sym_line_comment] = STATE(581), [sym_block_comment] = STATE(581), - [ts_builtin_sym_end] = ACTIONS(2075), - [sym_identifier] = ACTIONS(2077), - [anon_sym_SEMI] = ACTIONS(2075), - [anon_sym_macro_rules_BANG] = ACTIONS(2075), - [anon_sym_LPAREN] = ACTIONS(2075), - [anon_sym_LBRACK] = ACTIONS(2075), - [anon_sym_LBRACE] = ACTIONS(2075), - [anon_sym_RBRACE] = ACTIONS(2075), - [anon_sym_STAR] = ACTIONS(2075), - [anon_sym_u8] = ACTIONS(2077), - [anon_sym_i8] = ACTIONS(2077), - [anon_sym_u16] = ACTIONS(2077), - [anon_sym_i16] = ACTIONS(2077), - [anon_sym_u32] = ACTIONS(2077), - [anon_sym_i32] = ACTIONS(2077), - [anon_sym_u64] = ACTIONS(2077), - [anon_sym_i64] = ACTIONS(2077), - [anon_sym_u128] = ACTIONS(2077), - [anon_sym_i128] = ACTIONS(2077), - [anon_sym_isize] = ACTIONS(2077), - [anon_sym_usize] = ACTIONS(2077), - [anon_sym_f32] = ACTIONS(2077), - [anon_sym_f64] = ACTIONS(2077), - [anon_sym_bool] = ACTIONS(2077), - [anon_sym_str] = ACTIONS(2077), - [anon_sym_char] = ACTIONS(2077), - [anon_sym_DASH] = ACTIONS(2075), - [anon_sym_BANG] = ACTIONS(2075), - [anon_sym_AMP] = ACTIONS(2075), - [anon_sym_PIPE] = ACTIONS(2075), - [anon_sym_LT] = ACTIONS(2075), - [anon_sym_DOT_DOT] = ACTIONS(2075), - [anon_sym_COLON_COLON] = ACTIONS(2075), - [anon_sym_POUND] = ACTIONS(2075), - [anon_sym_SQUOTE] = ACTIONS(2077), - [anon_sym_async] = ACTIONS(2077), - [anon_sym_break] = ACTIONS(2077), - [anon_sym_const] = ACTIONS(2077), - [anon_sym_continue] = ACTIONS(2077), - [anon_sym_default] = ACTIONS(2077), - [anon_sym_enum] = ACTIONS(2077), - [anon_sym_fn] = ACTIONS(2077), - [anon_sym_for] = ACTIONS(2077), - [anon_sym_gen] = ACTIONS(2077), - [anon_sym_if] = ACTIONS(2077), - [anon_sym_impl] = ACTIONS(2077), - [anon_sym_let] = ACTIONS(2077), - [anon_sym_loop] = ACTIONS(2077), - [anon_sym_match] = ACTIONS(2077), - [anon_sym_mod] = ACTIONS(2077), - [anon_sym_pub] = ACTIONS(2077), - [anon_sym_return] = ACTIONS(2077), - [anon_sym_static] = ACTIONS(2077), - [anon_sym_struct] = ACTIONS(2077), - [anon_sym_trait] = ACTIONS(2077), - [anon_sym_type] = ACTIONS(2077), - [anon_sym_union] = ACTIONS(2077), - [anon_sym_unsafe] = ACTIONS(2077), - [anon_sym_use] = ACTIONS(2077), - [anon_sym_while] = ACTIONS(2077), - [anon_sym_extern] = ACTIONS(2077), - [anon_sym_yield] = ACTIONS(2077), - [anon_sym_move] = ACTIONS(2077), - [anon_sym_try] = ACTIONS(2077), - [sym_integer_literal] = ACTIONS(2075), - [aux_sym_string_literal_token1] = ACTIONS(2075), - [sym_char_literal] = ACTIONS(2075), - [anon_sym_true] = ACTIONS(2077), - [anon_sym_false] = ACTIONS(2077), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2077), - [sym_super] = ACTIONS(2077), - [sym_crate] = ACTIONS(2077), - [sym_metavariable] = ACTIONS(2075), - [sym__raw_string_literal_start] = ACTIONS(2075), - [sym_float_literal] = ACTIONS(2075), + [ts_builtin_sym_end] = ACTIONS(2213), + [sym_identifier] = ACTIONS(2215), + [anon_sym_SEMI] = ACTIONS(2213), + [anon_sym_macro_rules_BANG] = ACTIONS(2213), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_LBRACK] = ACTIONS(2213), + [anon_sym_LBRACE] = ACTIONS(2213), + [anon_sym_RBRACE] = ACTIONS(2213), + [anon_sym_STAR] = ACTIONS(2213), + [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), + [anon_sym_DASH] = ACTIONS(2213), + [anon_sym_BANG] = ACTIONS(2213), + [anon_sym_AMP] = ACTIONS(2213), + [anon_sym_PIPE] = ACTIONS(2213), + [anon_sym_LT] = ACTIONS(2213), + [anon_sym_DOT_DOT] = ACTIONS(2213), + [anon_sym_COLON_COLON] = ACTIONS(2213), + [anon_sym_POUND] = ACTIONS(2213), + [anon_sym_SQUOTE] = ACTIONS(2215), + [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2215), + [anon_sym_extern] = ACTIONS(2215), + [anon_sym_yield] = ACTIONS(2215), + [anon_sym_move] = ACTIONS(2215), + [anon_sym_try] = ACTIONS(2215), + [sym_integer_literal] = ACTIONS(2213), + [aux_sym_string_literal_token1] = ACTIONS(2213), + [sym_char_literal] = ACTIONS(2213), + [anon_sym_true] = ACTIONS(2215), + [anon_sym_false] = ACTIONS(2215), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2215), + [sym_super] = ACTIONS(2215), + [sym_crate] = ACTIONS(2215), + [sym_metavariable] = ACTIONS(2213), + [sym__raw_string_literal_start] = ACTIONS(2213), + [sym_float_literal] = ACTIONS(2213), }, [582] = { [sym_line_comment] = STATE(582), [sym_block_comment] = STATE(582), - [ts_builtin_sym_end] = ACTIONS(2079), - [sym_identifier] = ACTIONS(2081), - [anon_sym_SEMI] = ACTIONS(2079), - [anon_sym_macro_rules_BANG] = ACTIONS(2079), - [anon_sym_LPAREN] = ACTIONS(2079), - [anon_sym_LBRACK] = ACTIONS(2079), - [anon_sym_LBRACE] = ACTIONS(2079), - [anon_sym_RBRACE] = ACTIONS(2079), - [anon_sym_STAR] = ACTIONS(2079), - [anon_sym_u8] = ACTIONS(2081), - [anon_sym_i8] = ACTIONS(2081), - [anon_sym_u16] = ACTIONS(2081), - [anon_sym_i16] = ACTIONS(2081), - [anon_sym_u32] = ACTIONS(2081), - [anon_sym_i32] = ACTIONS(2081), - [anon_sym_u64] = ACTIONS(2081), - [anon_sym_i64] = ACTIONS(2081), - [anon_sym_u128] = ACTIONS(2081), - [anon_sym_i128] = ACTIONS(2081), - [anon_sym_isize] = ACTIONS(2081), - [anon_sym_usize] = ACTIONS(2081), - [anon_sym_f32] = ACTIONS(2081), - [anon_sym_f64] = ACTIONS(2081), - [anon_sym_bool] = ACTIONS(2081), - [anon_sym_str] = ACTIONS(2081), - [anon_sym_char] = ACTIONS(2081), - [anon_sym_DASH] = ACTIONS(2079), - [anon_sym_BANG] = ACTIONS(2079), - [anon_sym_AMP] = ACTIONS(2079), - [anon_sym_PIPE] = ACTIONS(2079), - [anon_sym_LT] = ACTIONS(2079), - [anon_sym_DOT_DOT] = ACTIONS(2079), - [anon_sym_COLON_COLON] = ACTIONS(2079), - [anon_sym_POUND] = ACTIONS(2079), - [anon_sym_SQUOTE] = ACTIONS(2081), - [anon_sym_async] = ACTIONS(2081), - [anon_sym_break] = ACTIONS(2081), - [anon_sym_const] = ACTIONS(2081), - [anon_sym_continue] = ACTIONS(2081), - [anon_sym_default] = ACTIONS(2081), - [anon_sym_enum] = ACTIONS(2081), - [anon_sym_fn] = ACTIONS(2081), - [anon_sym_for] = ACTIONS(2081), - [anon_sym_gen] = ACTIONS(2081), - [anon_sym_if] = ACTIONS(2081), - [anon_sym_impl] = ACTIONS(2081), - [anon_sym_let] = ACTIONS(2081), - [anon_sym_loop] = ACTIONS(2081), - [anon_sym_match] = ACTIONS(2081), - [anon_sym_mod] = ACTIONS(2081), - [anon_sym_pub] = ACTIONS(2081), - [anon_sym_return] = ACTIONS(2081), - [anon_sym_static] = ACTIONS(2081), - [anon_sym_struct] = ACTIONS(2081), - [anon_sym_trait] = ACTIONS(2081), - [anon_sym_type] = ACTIONS(2081), - [anon_sym_union] = ACTIONS(2081), - [anon_sym_unsafe] = ACTIONS(2081), - [anon_sym_use] = ACTIONS(2081), - [anon_sym_while] = ACTIONS(2081), - [anon_sym_extern] = ACTIONS(2081), - [anon_sym_yield] = ACTIONS(2081), - [anon_sym_move] = ACTIONS(2081), - [anon_sym_try] = ACTIONS(2081), - [sym_integer_literal] = ACTIONS(2079), - [aux_sym_string_literal_token1] = ACTIONS(2079), - [sym_char_literal] = ACTIONS(2079), - [anon_sym_true] = ACTIONS(2081), - [anon_sym_false] = ACTIONS(2081), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2081), - [sym_super] = ACTIONS(2081), - [sym_crate] = ACTIONS(2081), - [sym_metavariable] = ACTIONS(2079), - [sym__raw_string_literal_start] = ACTIONS(2079), - [sym_float_literal] = ACTIONS(2079), + [ts_builtin_sym_end] = ACTIONS(2217), + [sym_identifier] = ACTIONS(2219), + [anon_sym_SEMI] = ACTIONS(2217), + [anon_sym_macro_rules_BANG] = ACTIONS(2217), + [anon_sym_LPAREN] = ACTIONS(2217), + [anon_sym_LBRACK] = ACTIONS(2217), + [anon_sym_LBRACE] = ACTIONS(2217), + [anon_sym_RBRACE] = ACTIONS(2217), + [anon_sym_STAR] = ACTIONS(2217), + [anon_sym_u8] = ACTIONS(2219), + [anon_sym_i8] = ACTIONS(2219), + [anon_sym_u16] = ACTIONS(2219), + [anon_sym_i16] = ACTIONS(2219), + [anon_sym_u32] = ACTIONS(2219), + [anon_sym_i32] = ACTIONS(2219), + [anon_sym_u64] = ACTIONS(2219), + [anon_sym_i64] = ACTIONS(2219), + [anon_sym_u128] = ACTIONS(2219), + [anon_sym_i128] = ACTIONS(2219), + [anon_sym_isize] = ACTIONS(2219), + [anon_sym_usize] = ACTIONS(2219), + [anon_sym_f32] = ACTIONS(2219), + [anon_sym_f64] = ACTIONS(2219), + [anon_sym_bool] = ACTIONS(2219), + [anon_sym_str] = ACTIONS(2219), + [anon_sym_char] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2217), + [anon_sym_BANG] = ACTIONS(2217), + [anon_sym_AMP] = ACTIONS(2217), + [anon_sym_PIPE] = ACTIONS(2217), + [anon_sym_LT] = ACTIONS(2217), + [anon_sym_DOT_DOT] = ACTIONS(2217), + [anon_sym_COLON_COLON] = ACTIONS(2217), + [anon_sym_POUND] = ACTIONS(2217), + [anon_sym_SQUOTE] = ACTIONS(2219), + [anon_sym_async] = ACTIONS(2219), + [anon_sym_break] = ACTIONS(2219), + [anon_sym_const] = ACTIONS(2219), + [anon_sym_continue] = ACTIONS(2219), + [anon_sym_default] = ACTIONS(2219), + [anon_sym_enum] = ACTIONS(2219), + [anon_sym_fn] = ACTIONS(2219), + [anon_sym_for] = ACTIONS(2219), + [anon_sym_gen] = ACTIONS(2219), + [anon_sym_if] = ACTIONS(2219), + [anon_sym_impl] = ACTIONS(2219), + [anon_sym_let] = ACTIONS(2219), + [anon_sym_loop] = ACTIONS(2219), + [anon_sym_match] = ACTIONS(2219), + [anon_sym_mod] = ACTIONS(2219), + [anon_sym_pub] = ACTIONS(2219), + [anon_sym_return] = ACTIONS(2219), + [anon_sym_static] = ACTIONS(2219), + [anon_sym_struct] = ACTIONS(2219), + [anon_sym_trait] = ACTIONS(2219), + [anon_sym_type] = ACTIONS(2219), + [anon_sym_union] = ACTIONS(2219), + [anon_sym_unsafe] = ACTIONS(2219), + [anon_sym_use] = ACTIONS(2219), + [anon_sym_while] = ACTIONS(2219), + [anon_sym_extern] = ACTIONS(2219), + [anon_sym_yield] = ACTIONS(2219), + [anon_sym_move] = ACTIONS(2219), + [anon_sym_try] = ACTIONS(2219), + [sym_integer_literal] = ACTIONS(2217), + [aux_sym_string_literal_token1] = ACTIONS(2217), + [sym_char_literal] = ACTIONS(2217), + [anon_sym_true] = ACTIONS(2219), + [anon_sym_false] = ACTIONS(2219), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2219), + [sym_super] = ACTIONS(2219), + [sym_crate] = ACTIONS(2219), + [sym_metavariable] = ACTIONS(2217), + [sym__raw_string_literal_start] = ACTIONS(2217), + [sym_float_literal] = ACTIONS(2217), }, [583] = { [sym_line_comment] = STATE(583), [sym_block_comment] = STATE(583), - [ts_builtin_sym_end] = ACTIONS(2083), - [sym_identifier] = ACTIONS(2085), - [anon_sym_SEMI] = ACTIONS(2083), - [anon_sym_macro_rules_BANG] = ACTIONS(2083), - [anon_sym_LPAREN] = ACTIONS(2083), - [anon_sym_LBRACK] = ACTIONS(2083), - [anon_sym_LBRACE] = ACTIONS(2083), - [anon_sym_RBRACE] = ACTIONS(2083), - [anon_sym_STAR] = ACTIONS(2083), - [anon_sym_u8] = ACTIONS(2085), - [anon_sym_i8] = ACTIONS(2085), - [anon_sym_u16] = ACTIONS(2085), - [anon_sym_i16] = ACTIONS(2085), - [anon_sym_u32] = ACTIONS(2085), - [anon_sym_i32] = ACTIONS(2085), - [anon_sym_u64] = ACTIONS(2085), - [anon_sym_i64] = ACTIONS(2085), - [anon_sym_u128] = ACTIONS(2085), - [anon_sym_i128] = ACTIONS(2085), - [anon_sym_isize] = ACTIONS(2085), - [anon_sym_usize] = ACTIONS(2085), - [anon_sym_f32] = ACTIONS(2085), - [anon_sym_f64] = ACTIONS(2085), - [anon_sym_bool] = ACTIONS(2085), - [anon_sym_str] = ACTIONS(2085), - [anon_sym_char] = ACTIONS(2085), - [anon_sym_DASH] = ACTIONS(2083), - [anon_sym_BANG] = ACTIONS(2083), - [anon_sym_AMP] = ACTIONS(2083), - [anon_sym_PIPE] = ACTIONS(2083), - [anon_sym_LT] = ACTIONS(2083), - [anon_sym_DOT_DOT] = ACTIONS(2083), - [anon_sym_COLON_COLON] = ACTIONS(2083), - [anon_sym_POUND] = ACTIONS(2083), - [anon_sym_SQUOTE] = ACTIONS(2085), - [anon_sym_async] = ACTIONS(2085), - [anon_sym_break] = ACTIONS(2085), - [anon_sym_const] = ACTIONS(2085), - [anon_sym_continue] = ACTIONS(2085), - [anon_sym_default] = ACTIONS(2085), - [anon_sym_enum] = ACTIONS(2085), - [anon_sym_fn] = ACTIONS(2085), - [anon_sym_for] = ACTIONS(2085), - [anon_sym_gen] = ACTIONS(2085), - [anon_sym_if] = ACTIONS(2085), - [anon_sym_impl] = ACTIONS(2085), - [anon_sym_let] = ACTIONS(2085), - [anon_sym_loop] = ACTIONS(2085), - [anon_sym_match] = ACTIONS(2085), - [anon_sym_mod] = ACTIONS(2085), - [anon_sym_pub] = ACTIONS(2085), - [anon_sym_return] = ACTIONS(2085), - [anon_sym_static] = ACTIONS(2085), - [anon_sym_struct] = ACTIONS(2085), - [anon_sym_trait] = ACTIONS(2085), - [anon_sym_type] = ACTIONS(2085), - [anon_sym_union] = ACTIONS(2085), - [anon_sym_unsafe] = ACTIONS(2085), - [anon_sym_use] = ACTIONS(2085), - [anon_sym_while] = ACTIONS(2085), - [anon_sym_extern] = ACTIONS(2085), - [anon_sym_yield] = ACTIONS(2085), - [anon_sym_move] = ACTIONS(2085), - [anon_sym_try] = ACTIONS(2085), - [sym_integer_literal] = ACTIONS(2083), - [aux_sym_string_literal_token1] = ACTIONS(2083), - [sym_char_literal] = ACTIONS(2083), - [anon_sym_true] = ACTIONS(2085), - [anon_sym_false] = ACTIONS(2085), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2085), - [sym_super] = ACTIONS(2085), - [sym_crate] = ACTIONS(2085), - [sym_metavariable] = ACTIONS(2083), - [sym__raw_string_literal_start] = ACTIONS(2083), - [sym_float_literal] = ACTIONS(2083), + [ts_builtin_sym_end] = ACTIONS(2221), + [sym_identifier] = ACTIONS(2223), + [anon_sym_SEMI] = ACTIONS(2221), + [anon_sym_macro_rules_BANG] = ACTIONS(2221), + [anon_sym_LPAREN] = ACTIONS(2221), + [anon_sym_LBRACK] = ACTIONS(2221), + [anon_sym_LBRACE] = ACTIONS(2221), + [anon_sym_RBRACE] = ACTIONS(2221), + [anon_sym_STAR] = ACTIONS(2221), + [anon_sym_u8] = ACTIONS(2223), + [anon_sym_i8] = ACTIONS(2223), + [anon_sym_u16] = ACTIONS(2223), + [anon_sym_i16] = ACTIONS(2223), + [anon_sym_u32] = ACTIONS(2223), + [anon_sym_i32] = ACTIONS(2223), + [anon_sym_u64] = ACTIONS(2223), + [anon_sym_i64] = ACTIONS(2223), + [anon_sym_u128] = ACTIONS(2223), + [anon_sym_i128] = ACTIONS(2223), + [anon_sym_isize] = ACTIONS(2223), + [anon_sym_usize] = ACTIONS(2223), + [anon_sym_f32] = ACTIONS(2223), + [anon_sym_f64] = ACTIONS(2223), + [anon_sym_bool] = ACTIONS(2223), + [anon_sym_str] = ACTIONS(2223), + [anon_sym_char] = ACTIONS(2223), + [anon_sym_DASH] = ACTIONS(2221), + [anon_sym_BANG] = ACTIONS(2221), + [anon_sym_AMP] = ACTIONS(2221), + [anon_sym_PIPE] = ACTIONS(2221), + [anon_sym_LT] = ACTIONS(2221), + [anon_sym_DOT_DOT] = ACTIONS(2221), + [anon_sym_COLON_COLON] = ACTIONS(2221), + [anon_sym_POUND] = ACTIONS(2221), + [anon_sym_SQUOTE] = ACTIONS(2223), + [anon_sym_async] = ACTIONS(2223), + [anon_sym_break] = ACTIONS(2223), + [anon_sym_const] = ACTIONS(2223), + [anon_sym_continue] = ACTIONS(2223), + [anon_sym_default] = ACTIONS(2223), + [anon_sym_enum] = ACTIONS(2223), + [anon_sym_fn] = ACTIONS(2223), + [anon_sym_for] = ACTIONS(2223), + [anon_sym_gen] = ACTIONS(2223), + [anon_sym_if] = ACTIONS(2223), + [anon_sym_impl] = ACTIONS(2223), + [anon_sym_let] = ACTIONS(2223), + [anon_sym_loop] = ACTIONS(2223), + [anon_sym_match] = ACTIONS(2223), + [anon_sym_mod] = ACTIONS(2223), + [anon_sym_pub] = ACTIONS(2223), + [anon_sym_return] = ACTIONS(2223), + [anon_sym_static] = ACTIONS(2223), + [anon_sym_struct] = ACTIONS(2223), + [anon_sym_trait] = ACTIONS(2223), + [anon_sym_type] = ACTIONS(2223), + [anon_sym_union] = ACTIONS(2223), + [anon_sym_unsafe] = ACTIONS(2223), + [anon_sym_use] = ACTIONS(2223), + [anon_sym_while] = ACTIONS(2223), + [anon_sym_extern] = ACTIONS(2223), + [anon_sym_yield] = ACTIONS(2223), + [anon_sym_move] = ACTIONS(2223), + [anon_sym_try] = ACTIONS(2223), + [sym_integer_literal] = ACTIONS(2221), + [aux_sym_string_literal_token1] = ACTIONS(2221), + [sym_char_literal] = ACTIONS(2221), + [anon_sym_true] = ACTIONS(2223), + [anon_sym_false] = ACTIONS(2223), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2223), + [sym_super] = ACTIONS(2223), + [sym_crate] = ACTIONS(2223), + [sym_metavariable] = ACTIONS(2221), + [sym__raw_string_literal_start] = ACTIONS(2221), + [sym_float_literal] = ACTIONS(2221), }, [584] = { [sym_line_comment] = STATE(584), [sym_block_comment] = STATE(584), - [ts_builtin_sym_end] = ACTIONS(2087), - [sym_identifier] = ACTIONS(2089), - [anon_sym_SEMI] = ACTIONS(2087), - [anon_sym_macro_rules_BANG] = ACTIONS(2087), - [anon_sym_LPAREN] = ACTIONS(2087), - [anon_sym_LBRACK] = ACTIONS(2087), - [anon_sym_LBRACE] = ACTIONS(2087), - [anon_sym_RBRACE] = ACTIONS(2087), - [anon_sym_STAR] = ACTIONS(2087), - [anon_sym_u8] = ACTIONS(2089), - [anon_sym_i8] = ACTIONS(2089), - [anon_sym_u16] = ACTIONS(2089), - [anon_sym_i16] = ACTIONS(2089), - [anon_sym_u32] = ACTIONS(2089), - [anon_sym_i32] = ACTIONS(2089), - [anon_sym_u64] = ACTIONS(2089), - [anon_sym_i64] = ACTIONS(2089), - [anon_sym_u128] = ACTIONS(2089), - [anon_sym_i128] = ACTIONS(2089), - [anon_sym_isize] = ACTIONS(2089), - [anon_sym_usize] = ACTIONS(2089), - [anon_sym_f32] = ACTIONS(2089), - [anon_sym_f64] = ACTIONS(2089), - [anon_sym_bool] = ACTIONS(2089), - [anon_sym_str] = ACTIONS(2089), - [anon_sym_char] = ACTIONS(2089), - [anon_sym_DASH] = ACTIONS(2087), - [anon_sym_BANG] = ACTIONS(2087), - [anon_sym_AMP] = ACTIONS(2087), - [anon_sym_PIPE] = ACTIONS(2087), - [anon_sym_LT] = ACTIONS(2087), - [anon_sym_DOT_DOT] = ACTIONS(2087), - [anon_sym_COLON_COLON] = ACTIONS(2087), - [anon_sym_POUND] = ACTIONS(2087), - [anon_sym_SQUOTE] = ACTIONS(2089), - [anon_sym_async] = ACTIONS(2089), - [anon_sym_break] = ACTIONS(2089), - [anon_sym_const] = ACTIONS(2089), - [anon_sym_continue] = ACTIONS(2089), - [anon_sym_default] = ACTIONS(2089), - [anon_sym_enum] = ACTIONS(2089), - [anon_sym_fn] = ACTIONS(2089), - [anon_sym_for] = ACTIONS(2089), - [anon_sym_gen] = ACTIONS(2089), - [anon_sym_if] = ACTIONS(2089), - [anon_sym_impl] = ACTIONS(2089), - [anon_sym_let] = ACTIONS(2089), - [anon_sym_loop] = ACTIONS(2089), - [anon_sym_match] = ACTIONS(2089), - [anon_sym_mod] = ACTIONS(2089), - [anon_sym_pub] = ACTIONS(2089), - [anon_sym_return] = ACTIONS(2089), - [anon_sym_static] = ACTIONS(2089), - [anon_sym_struct] = ACTIONS(2089), - [anon_sym_trait] = ACTIONS(2089), - [anon_sym_type] = ACTIONS(2089), - [anon_sym_union] = ACTIONS(2089), - [anon_sym_unsafe] = ACTIONS(2089), - [anon_sym_use] = ACTIONS(2089), - [anon_sym_while] = ACTIONS(2089), - [anon_sym_extern] = ACTIONS(2089), - [anon_sym_yield] = ACTIONS(2089), - [anon_sym_move] = ACTIONS(2089), - [anon_sym_try] = ACTIONS(2089), - [sym_integer_literal] = ACTIONS(2087), - [aux_sym_string_literal_token1] = ACTIONS(2087), - [sym_char_literal] = ACTIONS(2087), - [anon_sym_true] = ACTIONS(2089), - [anon_sym_false] = ACTIONS(2089), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2089), - [sym_super] = ACTIONS(2089), - [sym_crate] = ACTIONS(2089), - [sym_metavariable] = ACTIONS(2087), - [sym__raw_string_literal_start] = ACTIONS(2087), - [sym_float_literal] = ACTIONS(2087), + [ts_builtin_sym_end] = ACTIONS(2225), + [sym_identifier] = ACTIONS(2227), + [anon_sym_SEMI] = ACTIONS(2225), + [anon_sym_macro_rules_BANG] = ACTIONS(2225), + [anon_sym_LPAREN] = ACTIONS(2225), + [anon_sym_LBRACK] = ACTIONS(2225), + [anon_sym_LBRACE] = ACTIONS(2225), + [anon_sym_RBRACE] = ACTIONS(2225), + [anon_sym_STAR] = ACTIONS(2225), + [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), + [anon_sym_DASH] = ACTIONS(2225), + [anon_sym_BANG] = ACTIONS(2225), + [anon_sym_AMP] = ACTIONS(2225), + [anon_sym_PIPE] = ACTIONS(2225), + [anon_sym_LT] = ACTIONS(2225), + [anon_sym_DOT_DOT] = ACTIONS(2225), + [anon_sym_COLON_COLON] = ACTIONS(2225), + [anon_sym_POUND] = ACTIONS(2225), + [anon_sym_SQUOTE] = ACTIONS(2227), + [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2227), + [anon_sym_extern] = ACTIONS(2227), + [anon_sym_yield] = ACTIONS(2227), + [anon_sym_move] = ACTIONS(2227), + [anon_sym_try] = ACTIONS(2227), + [sym_integer_literal] = ACTIONS(2225), + [aux_sym_string_literal_token1] = ACTIONS(2225), + [sym_char_literal] = ACTIONS(2225), + [anon_sym_true] = ACTIONS(2227), + [anon_sym_false] = ACTIONS(2227), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2227), + [sym_super] = ACTIONS(2227), + [sym_crate] = ACTIONS(2227), + [sym_metavariable] = ACTIONS(2225), + [sym__raw_string_literal_start] = ACTIONS(2225), + [sym_float_literal] = ACTIONS(2225), }, [585] = { [sym_line_comment] = STATE(585), [sym_block_comment] = STATE(585), - [ts_builtin_sym_end] = ACTIONS(2091), - [sym_identifier] = ACTIONS(2093), - [anon_sym_SEMI] = ACTIONS(2091), - [anon_sym_macro_rules_BANG] = ACTIONS(2091), - [anon_sym_LPAREN] = ACTIONS(2091), - [anon_sym_LBRACK] = ACTIONS(2091), - [anon_sym_LBRACE] = ACTIONS(2091), - [anon_sym_RBRACE] = ACTIONS(2091), - [anon_sym_STAR] = ACTIONS(2091), - [anon_sym_u8] = ACTIONS(2093), - [anon_sym_i8] = ACTIONS(2093), - [anon_sym_u16] = ACTIONS(2093), - [anon_sym_i16] = ACTIONS(2093), - [anon_sym_u32] = ACTIONS(2093), - [anon_sym_i32] = ACTIONS(2093), - [anon_sym_u64] = ACTIONS(2093), - [anon_sym_i64] = ACTIONS(2093), - [anon_sym_u128] = ACTIONS(2093), - [anon_sym_i128] = ACTIONS(2093), - [anon_sym_isize] = ACTIONS(2093), - [anon_sym_usize] = ACTIONS(2093), - [anon_sym_f32] = ACTIONS(2093), - [anon_sym_f64] = ACTIONS(2093), - [anon_sym_bool] = ACTIONS(2093), - [anon_sym_str] = ACTIONS(2093), - [anon_sym_char] = ACTIONS(2093), - [anon_sym_DASH] = ACTIONS(2091), - [anon_sym_BANG] = ACTIONS(2091), - [anon_sym_AMP] = ACTIONS(2091), - [anon_sym_PIPE] = ACTIONS(2091), - [anon_sym_LT] = ACTIONS(2091), - [anon_sym_DOT_DOT] = ACTIONS(2091), - [anon_sym_COLON_COLON] = ACTIONS(2091), - [anon_sym_POUND] = ACTIONS(2091), - [anon_sym_SQUOTE] = ACTIONS(2093), - [anon_sym_async] = ACTIONS(2093), - [anon_sym_break] = ACTIONS(2093), - [anon_sym_const] = ACTIONS(2093), - [anon_sym_continue] = ACTIONS(2093), - [anon_sym_default] = ACTIONS(2093), - [anon_sym_enum] = ACTIONS(2093), - [anon_sym_fn] = ACTIONS(2093), - [anon_sym_for] = ACTIONS(2093), - [anon_sym_gen] = ACTIONS(2093), - [anon_sym_if] = ACTIONS(2093), - [anon_sym_impl] = ACTIONS(2093), - [anon_sym_let] = ACTIONS(2093), - [anon_sym_loop] = ACTIONS(2093), - [anon_sym_match] = ACTIONS(2093), - [anon_sym_mod] = ACTIONS(2093), - [anon_sym_pub] = ACTIONS(2093), - [anon_sym_return] = ACTIONS(2093), - [anon_sym_static] = ACTIONS(2093), - [anon_sym_struct] = ACTIONS(2093), - [anon_sym_trait] = ACTIONS(2093), - [anon_sym_type] = ACTIONS(2093), - [anon_sym_union] = ACTIONS(2093), - [anon_sym_unsafe] = ACTIONS(2093), - [anon_sym_use] = ACTIONS(2093), - [anon_sym_while] = ACTIONS(2093), - [anon_sym_extern] = ACTIONS(2093), - [anon_sym_yield] = ACTIONS(2093), - [anon_sym_move] = ACTIONS(2093), - [anon_sym_try] = ACTIONS(2093), - [sym_integer_literal] = ACTIONS(2091), - [aux_sym_string_literal_token1] = ACTIONS(2091), - [sym_char_literal] = ACTIONS(2091), - [anon_sym_true] = ACTIONS(2093), - [anon_sym_false] = ACTIONS(2093), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2093), - [sym_super] = ACTIONS(2093), - [sym_crate] = ACTIONS(2093), - [sym_metavariable] = ACTIONS(2091), - [sym__raw_string_literal_start] = ACTIONS(2091), - [sym_float_literal] = ACTIONS(2091), + [ts_builtin_sym_end] = ACTIONS(2229), + [sym_identifier] = ACTIONS(2231), + [anon_sym_SEMI] = ACTIONS(2229), + [anon_sym_macro_rules_BANG] = ACTIONS(2229), + [anon_sym_LPAREN] = ACTIONS(2229), + [anon_sym_LBRACK] = ACTIONS(2229), + [anon_sym_LBRACE] = ACTIONS(2229), + [anon_sym_RBRACE] = ACTIONS(2229), + [anon_sym_STAR] = ACTIONS(2229), + [anon_sym_u8] = ACTIONS(2231), + [anon_sym_i8] = ACTIONS(2231), + [anon_sym_u16] = ACTIONS(2231), + [anon_sym_i16] = ACTIONS(2231), + [anon_sym_u32] = ACTIONS(2231), + [anon_sym_i32] = ACTIONS(2231), + [anon_sym_u64] = ACTIONS(2231), + [anon_sym_i64] = ACTIONS(2231), + [anon_sym_u128] = ACTIONS(2231), + [anon_sym_i128] = ACTIONS(2231), + [anon_sym_isize] = ACTIONS(2231), + [anon_sym_usize] = ACTIONS(2231), + [anon_sym_f32] = ACTIONS(2231), + [anon_sym_f64] = ACTIONS(2231), + [anon_sym_bool] = ACTIONS(2231), + [anon_sym_str] = ACTIONS(2231), + [anon_sym_char] = ACTIONS(2231), + [anon_sym_DASH] = ACTIONS(2229), + [anon_sym_BANG] = ACTIONS(2229), + [anon_sym_AMP] = ACTIONS(2229), + [anon_sym_PIPE] = ACTIONS(2229), + [anon_sym_LT] = ACTIONS(2229), + [anon_sym_DOT_DOT] = ACTIONS(2229), + [anon_sym_COLON_COLON] = ACTIONS(2229), + [anon_sym_POUND] = ACTIONS(2229), + [anon_sym_SQUOTE] = ACTIONS(2231), + [anon_sym_async] = ACTIONS(2231), + [anon_sym_break] = ACTIONS(2231), + [anon_sym_const] = ACTIONS(2231), + [anon_sym_continue] = ACTIONS(2231), + [anon_sym_default] = ACTIONS(2231), + [anon_sym_enum] = ACTIONS(2231), + [anon_sym_fn] = ACTIONS(2231), + [anon_sym_for] = ACTIONS(2231), + [anon_sym_gen] = ACTIONS(2231), + [anon_sym_if] = ACTIONS(2231), + [anon_sym_impl] = ACTIONS(2231), + [anon_sym_let] = ACTIONS(2231), + [anon_sym_loop] = ACTIONS(2231), + [anon_sym_match] = ACTIONS(2231), + [anon_sym_mod] = ACTIONS(2231), + [anon_sym_pub] = ACTIONS(2231), + [anon_sym_return] = ACTIONS(2231), + [anon_sym_static] = ACTIONS(2231), + [anon_sym_struct] = ACTIONS(2231), + [anon_sym_trait] = ACTIONS(2231), + [anon_sym_type] = ACTIONS(2231), + [anon_sym_union] = ACTIONS(2231), + [anon_sym_unsafe] = ACTIONS(2231), + [anon_sym_use] = ACTIONS(2231), + [anon_sym_while] = ACTIONS(2231), + [anon_sym_extern] = ACTIONS(2231), + [anon_sym_yield] = ACTIONS(2231), + [anon_sym_move] = ACTIONS(2231), + [anon_sym_try] = ACTIONS(2231), + [sym_integer_literal] = ACTIONS(2229), + [aux_sym_string_literal_token1] = ACTIONS(2229), + [sym_char_literal] = ACTIONS(2229), + [anon_sym_true] = ACTIONS(2231), + [anon_sym_false] = ACTIONS(2231), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2231), + [sym_super] = ACTIONS(2231), + [sym_crate] = ACTIONS(2231), + [sym_metavariable] = ACTIONS(2229), + [sym__raw_string_literal_start] = ACTIONS(2229), + [sym_float_literal] = ACTIONS(2229), }, [586] = { [sym_line_comment] = STATE(586), [sym_block_comment] = STATE(586), - [ts_builtin_sym_end] = ACTIONS(2095), - [sym_identifier] = ACTIONS(2097), - [anon_sym_SEMI] = ACTIONS(2095), - [anon_sym_macro_rules_BANG] = ACTIONS(2095), - [anon_sym_LPAREN] = ACTIONS(2095), - [anon_sym_LBRACK] = ACTIONS(2095), - [anon_sym_LBRACE] = ACTIONS(2095), - [anon_sym_RBRACE] = ACTIONS(2095), - [anon_sym_STAR] = ACTIONS(2095), - [anon_sym_u8] = ACTIONS(2097), - [anon_sym_i8] = ACTIONS(2097), - [anon_sym_u16] = ACTIONS(2097), - [anon_sym_i16] = ACTIONS(2097), - [anon_sym_u32] = ACTIONS(2097), - [anon_sym_i32] = ACTIONS(2097), - [anon_sym_u64] = ACTIONS(2097), - [anon_sym_i64] = ACTIONS(2097), - [anon_sym_u128] = ACTIONS(2097), - [anon_sym_i128] = ACTIONS(2097), - [anon_sym_isize] = ACTIONS(2097), - [anon_sym_usize] = ACTIONS(2097), - [anon_sym_f32] = ACTIONS(2097), - [anon_sym_f64] = ACTIONS(2097), - [anon_sym_bool] = ACTIONS(2097), - [anon_sym_str] = ACTIONS(2097), - [anon_sym_char] = ACTIONS(2097), - [anon_sym_DASH] = ACTIONS(2095), - [anon_sym_BANG] = ACTIONS(2095), - [anon_sym_AMP] = ACTIONS(2095), - [anon_sym_PIPE] = ACTIONS(2095), - [anon_sym_LT] = ACTIONS(2095), - [anon_sym_DOT_DOT] = ACTIONS(2095), - [anon_sym_COLON_COLON] = ACTIONS(2095), - [anon_sym_POUND] = ACTIONS(2095), - [anon_sym_SQUOTE] = ACTIONS(2097), - [anon_sym_async] = ACTIONS(2097), - [anon_sym_break] = ACTIONS(2097), - [anon_sym_const] = ACTIONS(2097), - [anon_sym_continue] = ACTIONS(2097), - [anon_sym_default] = ACTIONS(2097), - [anon_sym_enum] = ACTIONS(2097), - [anon_sym_fn] = ACTIONS(2097), - [anon_sym_for] = ACTIONS(2097), - [anon_sym_gen] = ACTIONS(2097), - [anon_sym_if] = ACTIONS(2097), - [anon_sym_impl] = ACTIONS(2097), - [anon_sym_let] = ACTIONS(2097), - [anon_sym_loop] = ACTIONS(2097), - [anon_sym_match] = ACTIONS(2097), - [anon_sym_mod] = ACTIONS(2097), - [anon_sym_pub] = ACTIONS(2097), - [anon_sym_return] = ACTIONS(2097), - [anon_sym_static] = ACTIONS(2097), - [anon_sym_struct] = ACTIONS(2097), - [anon_sym_trait] = ACTIONS(2097), - [anon_sym_type] = ACTIONS(2097), - [anon_sym_union] = ACTIONS(2097), - [anon_sym_unsafe] = ACTIONS(2097), - [anon_sym_use] = ACTIONS(2097), - [anon_sym_while] = ACTIONS(2097), - [anon_sym_extern] = ACTIONS(2097), - [anon_sym_yield] = ACTIONS(2097), - [anon_sym_move] = ACTIONS(2097), - [anon_sym_try] = ACTIONS(2097), - [sym_integer_literal] = ACTIONS(2095), - [aux_sym_string_literal_token1] = ACTIONS(2095), - [sym_char_literal] = ACTIONS(2095), - [anon_sym_true] = ACTIONS(2097), - [anon_sym_false] = ACTIONS(2097), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2097), - [sym_super] = ACTIONS(2097), - [sym_crate] = ACTIONS(2097), - [sym_metavariable] = ACTIONS(2095), - [sym__raw_string_literal_start] = ACTIONS(2095), - [sym_float_literal] = ACTIONS(2095), + [ts_builtin_sym_end] = ACTIONS(2233), + [sym_identifier] = ACTIONS(2235), + [anon_sym_SEMI] = ACTIONS(2233), + [anon_sym_macro_rules_BANG] = ACTIONS(2233), + [anon_sym_LPAREN] = ACTIONS(2233), + [anon_sym_LBRACK] = ACTIONS(2233), + [anon_sym_LBRACE] = ACTIONS(2233), + [anon_sym_RBRACE] = ACTIONS(2233), + [anon_sym_STAR] = ACTIONS(2233), + [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), + [anon_sym_DASH] = ACTIONS(2233), + [anon_sym_BANG] = ACTIONS(2233), + [anon_sym_AMP] = ACTIONS(2233), + [anon_sym_PIPE] = ACTIONS(2233), + [anon_sym_LT] = ACTIONS(2233), + [anon_sym_DOT_DOT] = ACTIONS(2233), + [anon_sym_COLON_COLON] = ACTIONS(2233), + [anon_sym_POUND] = ACTIONS(2233), + [anon_sym_SQUOTE] = ACTIONS(2235), + [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2235), + [anon_sym_extern] = ACTIONS(2235), + [anon_sym_yield] = ACTIONS(2235), + [anon_sym_move] = ACTIONS(2235), + [anon_sym_try] = ACTIONS(2235), + [sym_integer_literal] = ACTIONS(2233), + [aux_sym_string_literal_token1] = ACTIONS(2233), + [sym_char_literal] = ACTIONS(2233), + [anon_sym_true] = ACTIONS(2235), + [anon_sym_false] = ACTIONS(2235), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2235), + [sym_super] = ACTIONS(2235), + [sym_crate] = ACTIONS(2235), + [sym_metavariable] = ACTIONS(2233), + [sym__raw_string_literal_start] = ACTIONS(2233), + [sym_float_literal] = ACTIONS(2233), }, [587] = { [sym_line_comment] = STATE(587), [sym_block_comment] = STATE(587), - [ts_builtin_sym_end] = ACTIONS(2099), - [sym_identifier] = ACTIONS(2101), - [anon_sym_SEMI] = ACTIONS(2099), - [anon_sym_macro_rules_BANG] = ACTIONS(2099), - [anon_sym_LPAREN] = ACTIONS(2099), - [anon_sym_LBRACK] = ACTIONS(2099), - [anon_sym_LBRACE] = ACTIONS(2099), - [anon_sym_RBRACE] = ACTIONS(2099), - [anon_sym_STAR] = ACTIONS(2099), - [anon_sym_u8] = ACTIONS(2101), - [anon_sym_i8] = ACTIONS(2101), - [anon_sym_u16] = ACTIONS(2101), - [anon_sym_i16] = ACTIONS(2101), - [anon_sym_u32] = ACTIONS(2101), - [anon_sym_i32] = ACTIONS(2101), - [anon_sym_u64] = ACTIONS(2101), - [anon_sym_i64] = ACTIONS(2101), - [anon_sym_u128] = ACTIONS(2101), - [anon_sym_i128] = ACTIONS(2101), - [anon_sym_isize] = ACTIONS(2101), - [anon_sym_usize] = ACTIONS(2101), - [anon_sym_f32] = ACTIONS(2101), - [anon_sym_f64] = ACTIONS(2101), - [anon_sym_bool] = ACTIONS(2101), - [anon_sym_str] = ACTIONS(2101), - [anon_sym_char] = ACTIONS(2101), - [anon_sym_DASH] = ACTIONS(2099), - [anon_sym_BANG] = ACTIONS(2099), - [anon_sym_AMP] = ACTIONS(2099), - [anon_sym_PIPE] = ACTIONS(2099), - [anon_sym_LT] = ACTIONS(2099), - [anon_sym_DOT_DOT] = ACTIONS(2099), - [anon_sym_COLON_COLON] = ACTIONS(2099), - [anon_sym_POUND] = ACTIONS(2099), - [anon_sym_SQUOTE] = ACTIONS(2101), - [anon_sym_async] = ACTIONS(2101), - [anon_sym_break] = ACTIONS(2101), - [anon_sym_const] = ACTIONS(2101), - [anon_sym_continue] = ACTIONS(2101), - [anon_sym_default] = ACTIONS(2101), - [anon_sym_enum] = ACTIONS(2101), - [anon_sym_fn] = ACTIONS(2101), - [anon_sym_for] = ACTIONS(2101), - [anon_sym_gen] = ACTIONS(2101), - [anon_sym_if] = ACTIONS(2101), - [anon_sym_impl] = ACTIONS(2101), - [anon_sym_let] = ACTIONS(2101), - [anon_sym_loop] = ACTIONS(2101), - [anon_sym_match] = ACTIONS(2101), - [anon_sym_mod] = ACTIONS(2101), - [anon_sym_pub] = ACTIONS(2101), - [anon_sym_return] = ACTIONS(2101), - [anon_sym_static] = ACTIONS(2101), - [anon_sym_struct] = ACTIONS(2101), - [anon_sym_trait] = ACTIONS(2101), - [anon_sym_type] = ACTIONS(2101), - [anon_sym_union] = ACTIONS(2101), - [anon_sym_unsafe] = ACTIONS(2101), - [anon_sym_use] = ACTIONS(2101), - [anon_sym_while] = ACTIONS(2101), - [anon_sym_extern] = ACTIONS(2101), - [anon_sym_yield] = ACTIONS(2101), - [anon_sym_move] = ACTIONS(2101), - [anon_sym_try] = ACTIONS(2101), - [sym_integer_literal] = ACTIONS(2099), - [aux_sym_string_literal_token1] = ACTIONS(2099), - [sym_char_literal] = ACTIONS(2099), - [anon_sym_true] = ACTIONS(2101), - [anon_sym_false] = ACTIONS(2101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2101), - [sym_super] = ACTIONS(2101), - [sym_crate] = ACTIONS(2101), - [sym_metavariable] = ACTIONS(2099), - [sym__raw_string_literal_start] = ACTIONS(2099), - [sym_float_literal] = ACTIONS(2099), + [ts_builtin_sym_end] = ACTIONS(2237), + [sym_identifier] = ACTIONS(2239), + [anon_sym_SEMI] = ACTIONS(2237), + [anon_sym_macro_rules_BANG] = ACTIONS(2237), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_LBRACK] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2237), + [anon_sym_RBRACE] = ACTIONS(2237), + [anon_sym_STAR] = ACTIONS(2237), + [anon_sym_u8] = ACTIONS(2239), + [anon_sym_i8] = ACTIONS(2239), + [anon_sym_u16] = ACTIONS(2239), + [anon_sym_i16] = ACTIONS(2239), + [anon_sym_u32] = ACTIONS(2239), + [anon_sym_i32] = ACTIONS(2239), + [anon_sym_u64] = ACTIONS(2239), + [anon_sym_i64] = ACTIONS(2239), + [anon_sym_u128] = ACTIONS(2239), + [anon_sym_i128] = ACTIONS(2239), + [anon_sym_isize] = ACTIONS(2239), + [anon_sym_usize] = ACTIONS(2239), + [anon_sym_f32] = ACTIONS(2239), + [anon_sym_f64] = ACTIONS(2239), + [anon_sym_bool] = ACTIONS(2239), + [anon_sym_str] = ACTIONS(2239), + [anon_sym_char] = ACTIONS(2239), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_BANG] = ACTIONS(2237), + [anon_sym_AMP] = ACTIONS(2237), + [anon_sym_PIPE] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2237), + [anon_sym_DOT_DOT] = ACTIONS(2237), + [anon_sym_COLON_COLON] = ACTIONS(2237), + [anon_sym_POUND] = ACTIONS(2237), + [anon_sym_SQUOTE] = ACTIONS(2239), + [anon_sym_async] = ACTIONS(2239), + [anon_sym_break] = ACTIONS(2239), + [anon_sym_const] = ACTIONS(2239), + [anon_sym_continue] = ACTIONS(2239), + [anon_sym_default] = ACTIONS(2239), + [anon_sym_enum] = ACTIONS(2239), + [anon_sym_fn] = ACTIONS(2239), + [anon_sym_for] = ACTIONS(2239), + [anon_sym_gen] = ACTIONS(2239), + [anon_sym_if] = ACTIONS(2239), + [anon_sym_impl] = ACTIONS(2239), + [anon_sym_let] = ACTIONS(2239), + [anon_sym_loop] = ACTIONS(2239), + [anon_sym_match] = ACTIONS(2239), + [anon_sym_mod] = ACTIONS(2239), + [anon_sym_pub] = ACTIONS(2239), + [anon_sym_return] = ACTIONS(2239), + [anon_sym_static] = ACTIONS(2239), + [anon_sym_struct] = ACTIONS(2239), + [anon_sym_trait] = ACTIONS(2239), + [anon_sym_type] = ACTIONS(2239), + [anon_sym_union] = ACTIONS(2239), + [anon_sym_unsafe] = ACTIONS(2239), + [anon_sym_use] = ACTIONS(2239), + [anon_sym_while] = ACTIONS(2239), + [anon_sym_extern] = ACTIONS(2239), + [anon_sym_yield] = ACTIONS(2239), + [anon_sym_move] = ACTIONS(2239), + [anon_sym_try] = ACTIONS(2239), + [sym_integer_literal] = ACTIONS(2237), + [aux_sym_string_literal_token1] = ACTIONS(2237), + [sym_char_literal] = ACTIONS(2237), + [anon_sym_true] = ACTIONS(2239), + [anon_sym_false] = ACTIONS(2239), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2239), + [sym_super] = ACTIONS(2239), + [sym_crate] = ACTIONS(2239), + [sym_metavariable] = ACTIONS(2237), + [sym__raw_string_literal_start] = ACTIONS(2237), + [sym_float_literal] = ACTIONS(2237), }, [588] = { [sym_line_comment] = STATE(588), [sym_block_comment] = STATE(588), - [ts_builtin_sym_end] = ACTIONS(2103), - [sym_identifier] = ACTIONS(2105), - [anon_sym_SEMI] = ACTIONS(2103), - [anon_sym_macro_rules_BANG] = ACTIONS(2103), - [anon_sym_LPAREN] = ACTIONS(2103), - [anon_sym_LBRACK] = ACTIONS(2103), - [anon_sym_LBRACE] = ACTIONS(2103), - [anon_sym_RBRACE] = ACTIONS(2103), - [anon_sym_STAR] = ACTIONS(2103), - [anon_sym_u8] = ACTIONS(2105), - [anon_sym_i8] = ACTIONS(2105), - [anon_sym_u16] = ACTIONS(2105), - [anon_sym_i16] = ACTIONS(2105), - [anon_sym_u32] = ACTIONS(2105), - [anon_sym_i32] = ACTIONS(2105), - [anon_sym_u64] = ACTIONS(2105), - [anon_sym_i64] = ACTIONS(2105), - [anon_sym_u128] = ACTIONS(2105), - [anon_sym_i128] = ACTIONS(2105), - [anon_sym_isize] = ACTIONS(2105), - [anon_sym_usize] = ACTIONS(2105), - [anon_sym_f32] = ACTIONS(2105), - [anon_sym_f64] = ACTIONS(2105), - [anon_sym_bool] = ACTIONS(2105), - [anon_sym_str] = ACTIONS(2105), - [anon_sym_char] = ACTIONS(2105), - [anon_sym_DASH] = ACTIONS(2103), - [anon_sym_BANG] = ACTIONS(2103), - [anon_sym_AMP] = ACTIONS(2103), - [anon_sym_PIPE] = ACTIONS(2103), - [anon_sym_LT] = ACTIONS(2103), - [anon_sym_DOT_DOT] = ACTIONS(2103), - [anon_sym_COLON_COLON] = ACTIONS(2103), - [anon_sym_POUND] = ACTIONS(2103), - [anon_sym_SQUOTE] = ACTIONS(2105), - [anon_sym_async] = ACTIONS(2105), - [anon_sym_break] = ACTIONS(2105), - [anon_sym_const] = ACTIONS(2105), - [anon_sym_continue] = ACTIONS(2105), - [anon_sym_default] = ACTIONS(2105), - [anon_sym_enum] = ACTIONS(2105), - [anon_sym_fn] = ACTIONS(2105), - [anon_sym_for] = ACTIONS(2105), - [anon_sym_gen] = ACTIONS(2105), - [anon_sym_if] = ACTIONS(2105), - [anon_sym_impl] = ACTIONS(2105), - [anon_sym_let] = ACTIONS(2105), - [anon_sym_loop] = ACTIONS(2105), - [anon_sym_match] = ACTIONS(2105), - [anon_sym_mod] = ACTIONS(2105), - [anon_sym_pub] = ACTIONS(2105), - [anon_sym_return] = ACTIONS(2105), - [anon_sym_static] = ACTIONS(2105), - [anon_sym_struct] = ACTIONS(2105), - [anon_sym_trait] = ACTIONS(2105), - [anon_sym_type] = ACTIONS(2105), - [anon_sym_union] = ACTIONS(2105), - [anon_sym_unsafe] = ACTIONS(2105), - [anon_sym_use] = ACTIONS(2105), - [anon_sym_while] = ACTIONS(2105), - [anon_sym_extern] = ACTIONS(2105), - [anon_sym_yield] = ACTIONS(2105), - [anon_sym_move] = ACTIONS(2105), - [anon_sym_try] = ACTIONS(2105), - [sym_integer_literal] = ACTIONS(2103), - [aux_sym_string_literal_token1] = ACTIONS(2103), - [sym_char_literal] = ACTIONS(2103), - [anon_sym_true] = ACTIONS(2105), - [anon_sym_false] = ACTIONS(2105), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2105), - [sym_super] = ACTIONS(2105), - [sym_crate] = ACTIONS(2105), - [sym_metavariable] = ACTIONS(2103), - [sym__raw_string_literal_start] = ACTIONS(2103), - [sym_float_literal] = ACTIONS(2103), + [ts_builtin_sym_end] = ACTIONS(2241), + [sym_identifier] = ACTIONS(2243), + [anon_sym_SEMI] = ACTIONS(2241), + [anon_sym_macro_rules_BANG] = ACTIONS(2241), + [anon_sym_LPAREN] = ACTIONS(2241), + [anon_sym_LBRACK] = ACTIONS(2241), + [anon_sym_LBRACE] = ACTIONS(2241), + [anon_sym_RBRACE] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(2241), + [anon_sym_u8] = ACTIONS(2243), + [anon_sym_i8] = ACTIONS(2243), + [anon_sym_u16] = ACTIONS(2243), + [anon_sym_i16] = ACTIONS(2243), + [anon_sym_u32] = ACTIONS(2243), + [anon_sym_i32] = ACTIONS(2243), + [anon_sym_u64] = ACTIONS(2243), + [anon_sym_i64] = ACTIONS(2243), + [anon_sym_u128] = ACTIONS(2243), + [anon_sym_i128] = ACTIONS(2243), + [anon_sym_isize] = ACTIONS(2243), + [anon_sym_usize] = ACTIONS(2243), + [anon_sym_f32] = ACTIONS(2243), + [anon_sym_f64] = ACTIONS(2243), + [anon_sym_bool] = ACTIONS(2243), + [anon_sym_str] = ACTIONS(2243), + [anon_sym_char] = ACTIONS(2243), + [anon_sym_DASH] = ACTIONS(2241), + [anon_sym_BANG] = ACTIONS(2241), + [anon_sym_AMP] = ACTIONS(2241), + [anon_sym_PIPE] = ACTIONS(2241), + [anon_sym_LT] = ACTIONS(2241), + [anon_sym_DOT_DOT] = ACTIONS(2241), + [anon_sym_COLON_COLON] = ACTIONS(2241), + [anon_sym_POUND] = ACTIONS(2241), + [anon_sym_SQUOTE] = ACTIONS(2243), + [anon_sym_async] = ACTIONS(2243), + [anon_sym_break] = ACTIONS(2243), + [anon_sym_const] = ACTIONS(2243), + [anon_sym_continue] = ACTIONS(2243), + [anon_sym_default] = ACTIONS(2243), + [anon_sym_enum] = ACTIONS(2243), + [anon_sym_fn] = ACTIONS(2243), + [anon_sym_for] = ACTIONS(2243), + [anon_sym_gen] = ACTIONS(2243), + [anon_sym_if] = ACTIONS(2243), + [anon_sym_impl] = ACTIONS(2243), + [anon_sym_let] = ACTIONS(2243), + [anon_sym_loop] = ACTIONS(2243), + [anon_sym_match] = ACTIONS(2243), + [anon_sym_mod] = ACTIONS(2243), + [anon_sym_pub] = ACTIONS(2243), + [anon_sym_return] = ACTIONS(2243), + [anon_sym_static] = ACTIONS(2243), + [anon_sym_struct] = ACTIONS(2243), + [anon_sym_trait] = ACTIONS(2243), + [anon_sym_type] = ACTIONS(2243), + [anon_sym_union] = ACTIONS(2243), + [anon_sym_unsafe] = ACTIONS(2243), + [anon_sym_use] = ACTIONS(2243), + [anon_sym_while] = ACTIONS(2243), + [anon_sym_extern] = ACTIONS(2243), + [anon_sym_yield] = ACTIONS(2243), + [anon_sym_move] = ACTIONS(2243), + [anon_sym_try] = ACTIONS(2243), + [sym_integer_literal] = ACTIONS(2241), + [aux_sym_string_literal_token1] = ACTIONS(2241), + [sym_char_literal] = ACTIONS(2241), + [anon_sym_true] = ACTIONS(2243), + [anon_sym_false] = ACTIONS(2243), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2243), + [sym_super] = ACTIONS(2243), + [sym_crate] = ACTIONS(2243), + [sym_metavariable] = ACTIONS(2241), + [sym__raw_string_literal_start] = ACTIONS(2241), + [sym_float_literal] = ACTIONS(2241), }, [589] = { [sym_line_comment] = STATE(589), [sym_block_comment] = STATE(589), - [ts_builtin_sym_end] = ACTIONS(2107), - [sym_identifier] = ACTIONS(2109), - [anon_sym_SEMI] = ACTIONS(2107), - [anon_sym_macro_rules_BANG] = ACTIONS(2107), - [anon_sym_LPAREN] = ACTIONS(2107), - [anon_sym_LBRACK] = ACTIONS(2107), - [anon_sym_LBRACE] = ACTIONS(2107), - [anon_sym_RBRACE] = ACTIONS(2107), - [anon_sym_STAR] = ACTIONS(2107), - [anon_sym_u8] = ACTIONS(2109), - [anon_sym_i8] = ACTIONS(2109), - [anon_sym_u16] = ACTIONS(2109), - [anon_sym_i16] = ACTIONS(2109), - [anon_sym_u32] = ACTIONS(2109), - [anon_sym_i32] = ACTIONS(2109), - [anon_sym_u64] = ACTIONS(2109), - [anon_sym_i64] = ACTIONS(2109), - [anon_sym_u128] = ACTIONS(2109), - [anon_sym_i128] = ACTIONS(2109), - [anon_sym_isize] = ACTIONS(2109), - [anon_sym_usize] = ACTIONS(2109), - [anon_sym_f32] = ACTIONS(2109), - [anon_sym_f64] = ACTIONS(2109), - [anon_sym_bool] = ACTIONS(2109), - [anon_sym_str] = ACTIONS(2109), - [anon_sym_char] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2107), - [anon_sym_BANG] = ACTIONS(2107), - [anon_sym_AMP] = ACTIONS(2107), - [anon_sym_PIPE] = ACTIONS(2107), - [anon_sym_LT] = ACTIONS(2107), - [anon_sym_DOT_DOT] = ACTIONS(2107), - [anon_sym_COLON_COLON] = ACTIONS(2107), - [anon_sym_POUND] = ACTIONS(2107), - [anon_sym_SQUOTE] = ACTIONS(2109), - [anon_sym_async] = ACTIONS(2109), - [anon_sym_break] = ACTIONS(2109), - [anon_sym_const] = ACTIONS(2109), - [anon_sym_continue] = ACTIONS(2109), - [anon_sym_default] = ACTIONS(2109), - [anon_sym_enum] = ACTIONS(2109), - [anon_sym_fn] = ACTIONS(2109), - [anon_sym_for] = ACTIONS(2109), - [anon_sym_gen] = ACTIONS(2109), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_impl] = ACTIONS(2109), - [anon_sym_let] = ACTIONS(2109), - [anon_sym_loop] = ACTIONS(2109), - [anon_sym_match] = ACTIONS(2109), - [anon_sym_mod] = ACTIONS(2109), - [anon_sym_pub] = ACTIONS(2109), - [anon_sym_return] = ACTIONS(2109), - [anon_sym_static] = ACTIONS(2109), - [anon_sym_struct] = ACTIONS(2109), - [anon_sym_trait] = ACTIONS(2109), - [anon_sym_type] = ACTIONS(2109), - [anon_sym_union] = ACTIONS(2109), - [anon_sym_unsafe] = ACTIONS(2109), - [anon_sym_use] = ACTIONS(2109), - [anon_sym_while] = ACTIONS(2109), - [anon_sym_extern] = ACTIONS(2109), - [anon_sym_yield] = ACTIONS(2109), - [anon_sym_move] = ACTIONS(2109), - [anon_sym_try] = ACTIONS(2109), - [sym_integer_literal] = ACTIONS(2107), - [aux_sym_string_literal_token1] = ACTIONS(2107), - [sym_char_literal] = ACTIONS(2107), - [anon_sym_true] = ACTIONS(2109), - [anon_sym_false] = ACTIONS(2109), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2109), - [sym_super] = ACTIONS(2109), - [sym_crate] = ACTIONS(2109), - [sym_metavariable] = ACTIONS(2107), - [sym__raw_string_literal_start] = ACTIONS(2107), - [sym_float_literal] = ACTIONS(2107), + [ts_builtin_sym_end] = ACTIONS(2245), + [sym_identifier] = ACTIONS(2247), + [anon_sym_SEMI] = ACTIONS(2245), + [anon_sym_macro_rules_BANG] = ACTIONS(2245), + [anon_sym_LPAREN] = ACTIONS(2245), + [anon_sym_LBRACK] = ACTIONS(2245), + [anon_sym_LBRACE] = ACTIONS(2245), + [anon_sym_RBRACE] = ACTIONS(2245), + [anon_sym_STAR] = ACTIONS(2245), + [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), + [anon_sym_DASH] = ACTIONS(2245), + [anon_sym_BANG] = ACTIONS(2245), + [anon_sym_AMP] = ACTIONS(2245), + [anon_sym_PIPE] = ACTIONS(2245), + [anon_sym_LT] = ACTIONS(2245), + [anon_sym_DOT_DOT] = ACTIONS(2245), + [anon_sym_COLON_COLON] = ACTIONS(2245), + [anon_sym_POUND] = ACTIONS(2245), + [anon_sym_SQUOTE] = ACTIONS(2247), + [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2247), + [anon_sym_extern] = ACTIONS(2247), + [anon_sym_yield] = ACTIONS(2247), + [anon_sym_move] = ACTIONS(2247), + [anon_sym_try] = ACTIONS(2247), + [sym_integer_literal] = ACTIONS(2245), + [aux_sym_string_literal_token1] = ACTIONS(2245), + [sym_char_literal] = ACTIONS(2245), + [anon_sym_true] = ACTIONS(2247), + [anon_sym_false] = ACTIONS(2247), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2247), + [sym_super] = ACTIONS(2247), + [sym_crate] = ACTIONS(2247), + [sym_metavariable] = ACTIONS(2245), + [sym__raw_string_literal_start] = ACTIONS(2245), + [sym_float_literal] = ACTIONS(2245), }, [590] = { [sym_line_comment] = STATE(590), [sym_block_comment] = STATE(590), - [ts_builtin_sym_end] = ACTIONS(2111), - [sym_identifier] = ACTIONS(2113), - [anon_sym_SEMI] = ACTIONS(2111), - [anon_sym_macro_rules_BANG] = ACTIONS(2111), - [anon_sym_LPAREN] = ACTIONS(2111), - [anon_sym_LBRACK] = ACTIONS(2111), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_RBRACE] = ACTIONS(2111), - [anon_sym_STAR] = ACTIONS(2111), - [anon_sym_u8] = ACTIONS(2113), - [anon_sym_i8] = ACTIONS(2113), - [anon_sym_u16] = ACTIONS(2113), - [anon_sym_i16] = ACTIONS(2113), - [anon_sym_u32] = ACTIONS(2113), - [anon_sym_i32] = ACTIONS(2113), - [anon_sym_u64] = ACTIONS(2113), - [anon_sym_i64] = ACTIONS(2113), - [anon_sym_u128] = ACTIONS(2113), - [anon_sym_i128] = ACTIONS(2113), - [anon_sym_isize] = ACTIONS(2113), - [anon_sym_usize] = ACTIONS(2113), - [anon_sym_f32] = ACTIONS(2113), - [anon_sym_f64] = ACTIONS(2113), - [anon_sym_bool] = ACTIONS(2113), - [anon_sym_str] = ACTIONS(2113), - [anon_sym_char] = ACTIONS(2113), - [anon_sym_DASH] = ACTIONS(2111), - [anon_sym_BANG] = ACTIONS(2111), - [anon_sym_AMP] = ACTIONS(2111), - [anon_sym_PIPE] = ACTIONS(2111), - [anon_sym_LT] = ACTIONS(2111), - [anon_sym_DOT_DOT] = ACTIONS(2111), - [anon_sym_COLON_COLON] = ACTIONS(2111), - [anon_sym_POUND] = ACTIONS(2111), - [anon_sym_SQUOTE] = ACTIONS(2113), - [anon_sym_async] = ACTIONS(2113), - [anon_sym_break] = ACTIONS(2113), - [anon_sym_const] = ACTIONS(2113), - [anon_sym_continue] = ACTIONS(2113), - [anon_sym_default] = ACTIONS(2113), - [anon_sym_enum] = ACTIONS(2113), - [anon_sym_fn] = ACTIONS(2113), - [anon_sym_for] = ACTIONS(2113), - [anon_sym_gen] = ACTIONS(2113), - [anon_sym_if] = ACTIONS(2113), - [anon_sym_impl] = ACTIONS(2113), - [anon_sym_let] = ACTIONS(2113), - [anon_sym_loop] = ACTIONS(2113), - [anon_sym_match] = ACTIONS(2113), - [anon_sym_mod] = ACTIONS(2113), - [anon_sym_pub] = ACTIONS(2113), - [anon_sym_return] = ACTIONS(2113), - [anon_sym_static] = ACTIONS(2113), - [anon_sym_struct] = ACTIONS(2113), - [anon_sym_trait] = ACTIONS(2113), - [anon_sym_type] = ACTIONS(2113), - [anon_sym_union] = ACTIONS(2113), - [anon_sym_unsafe] = ACTIONS(2113), - [anon_sym_use] = ACTIONS(2113), - [anon_sym_while] = ACTIONS(2113), - [anon_sym_extern] = ACTIONS(2113), - [anon_sym_yield] = ACTIONS(2113), - [anon_sym_move] = ACTIONS(2113), - [anon_sym_try] = ACTIONS(2113), - [sym_integer_literal] = ACTIONS(2111), - [aux_sym_string_literal_token1] = ACTIONS(2111), - [sym_char_literal] = ACTIONS(2111), - [anon_sym_true] = ACTIONS(2113), - [anon_sym_false] = ACTIONS(2113), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2113), - [sym_super] = ACTIONS(2113), - [sym_crate] = ACTIONS(2113), - [sym_metavariable] = ACTIONS(2111), - [sym__raw_string_literal_start] = ACTIONS(2111), - [sym_float_literal] = ACTIONS(2111), + [ts_builtin_sym_end] = ACTIONS(2249), + [sym_identifier] = ACTIONS(2251), + [anon_sym_SEMI] = ACTIONS(2249), + [anon_sym_macro_rules_BANG] = ACTIONS(2249), + [anon_sym_LPAREN] = ACTIONS(2249), + [anon_sym_LBRACK] = ACTIONS(2249), + [anon_sym_LBRACE] = ACTIONS(2249), + [anon_sym_RBRACE] = ACTIONS(2249), + [anon_sym_STAR] = ACTIONS(2249), + [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), + [anon_sym_DASH] = ACTIONS(2249), + [anon_sym_BANG] = ACTIONS(2249), + [anon_sym_AMP] = ACTIONS(2249), + [anon_sym_PIPE] = ACTIONS(2249), + [anon_sym_LT] = ACTIONS(2249), + [anon_sym_DOT_DOT] = ACTIONS(2249), + [anon_sym_COLON_COLON] = ACTIONS(2249), + [anon_sym_POUND] = ACTIONS(2249), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2251), + [anon_sym_extern] = ACTIONS(2251), + [anon_sym_yield] = ACTIONS(2251), + [anon_sym_move] = ACTIONS(2251), + [anon_sym_try] = ACTIONS(2251), + [sym_integer_literal] = ACTIONS(2249), + [aux_sym_string_literal_token1] = ACTIONS(2249), + [sym_char_literal] = ACTIONS(2249), + [anon_sym_true] = ACTIONS(2251), + [anon_sym_false] = ACTIONS(2251), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2251), + [sym_super] = ACTIONS(2251), + [sym_crate] = ACTIONS(2251), + [sym_metavariable] = ACTIONS(2249), + [sym__raw_string_literal_start] = ACTIONS(2249), + [sym_float_literal] = ACTIONS(2249), }, [591] = { [sym_line_comment] = STATE(591), [sym_block_comment] = STATE(591), - [ts_builtin_sym_end] = ACTIONS(2115), - [sym_identifier] = ACTIONS(2117), - [anon_sym_SEMI] = ACTIONS(2115), - [anon_sym_macro_rules_BANG] = ACTIONS(2115), - [anon_sym_LPAREN] = ACTIONS(2115), - [anon_sym_LBRACK] = ACTIONS(2115), - [anon_sym_LBRACE] = ACTIONS(2115), - [anon_sym_RBRACE] = ACTIONS(2115), - [anon_sym_STAR] = ACTIONS(2115), - [anon_sym_u8] = ACTIONS(2117), - [anon_sym_i8] = ACTIONS(2117), - [anon_sym_u16] = ACTIONS(2117), - [anon_sym_i16] = ACTIONS(2117), - [anon_sym_u32] = ACTIONS(2117), - [anon_sym_i32] = ACTIONS(2117), - [anon_sym_u64] = ACTIONS(2117), - [anon_sym_i64] = ACTIONS(2117), - [anon_sym_u128] = ACTIONS(2117), - [anon_sym_i128] = ACTIONS(2117), - [anon_sym_isize] = ACTIONS(2117), - [anon_sym_usize] = ACTIONS(2117), - [anon_sym_f32] = ACTIONS(2117), - [anon_sym_f64] = ACTIONS(2117), - [anon_sym_bool] = ACTIONS(2117), - [anon_sym_str] = ACTIONS(2117), - [anon_sym_char] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2115), - [anon_sym_BANG] = ACTIONS(2115), - [anon_sym_AMP] = ACTIONS(2115), - [anon_sym_PIPE] = ACTIONS(2115), - [anon_sym_LT] = ACTIONS(2115), - [anon_sym_DOT_DOT] = ACTIONS(2115), - [anon_sym_COLON_COLON] = ACTIONS(2115), - [anon_sym_POUND] = ACTIONS(2115), - [anon_sym_SQUOTE] = ACTIONS(2117), - [anon_sym_async] = ACTIONS(2117), - [anon_sym_break] = ACTIONS(2117), - [anon_sym_const] = ACTIONS(2117), - [anon_sym_continue] = ACTIONS(2117), - [anon_sym_default] = ACTIONS(2117), - [anon_sym_enum] = ACTIONS(2117), - [anon_sym_fn] = ACTIONS(2117), - [anon_sym_for] = ACTIONS(2117), - [anon_sym_gen] = ACTIONS(2117), - [anon_sym_if] = ACTIONS(2117), - [anon_sym_impl] = ACTIONS(2117), - [anon_sym_let] = ACTIONS(2117), - [anon_sym_loop] = ACTIONS(2117), - [anon_sym_match] = ACTIONS(2117), - [anon_sym_mod] = ACTIONS(2117), - [anon_sym_pub] = ACTIONS(2117), - [anon_sym_return] = ACTIONS(2117), - [anon_sym_static] = ACTIONS(2117), - [anon_sym_struct] = ACTIONS(2117), - [anon_sym_trait] = ACTIONS(2117), - [anon_sym_type] = ACTIONS(2117), - [anon_sym_union] = ACTIONS(2117), - [anon_sym_unsafe] = ACTIONS(2117), - [anon_sym_use] = ACTIONS(2117), - [anon_sym_while] = ACTIONS(2117), - [anon_sym_extern] = ACTIONS(2117), - [anon_sym_yield] = ACTIONS(2117), - [anon_sym_move] = ACTIONS(2117), - [anon_sym_try] = ACTIONS(2117), - [sym_integer_literal] = ACTIONS(2115), - [aux_sym_string_literal_token1] = ACTIONS(2115), - [sym_char_literal] = ACTIONS(2115), - [anon_sym_true] = ACTIONS(2117), - [anon_sym_false] = ACTIONS(2117), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2117), - [sym_super] = ACTIONS(2117), - [sym_crate] = ACTIONS(2117), - [sym_metavariable] = ACTIONS(2115), - [sym__raw_string_literal_start] = ACTIONS(2115), - [sym_float_literal] = ACTIONS(2115), + [ts_builtin_sym_end] = ACTIONS(2253), + [sym_identifier] = ACTIONS(2255), + [anon_sym_SEMI] = ACTIONS(2253), + [anon_sym_macro_rules_BANG] = ACTIONS(2253), + [anon_sym_LPAREN] = ACTIONS(2253), + [anon_sym_LBRACK] = ACTIONS(2253), + [anon_sym_LBRACE] = ACTIONS(2253), + [anon_sym_RBRACE] = ACTIONS(2253), + [anon_sym_STAR] = ACTIONS(2253), + [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), + [anon_sym_DASH] = ACTIONS(2253), + [anon_sym_BANG] = ACTIONS(2253), + [anon_sym_AMP] = ACTIONS(2253), + [anon_sym_PIPE] = ACTIONS(2253), + [anon_sym_LT] = ACTIONS(2253), + [anon_sym_DOT_DOT] = ACTIONS(2253), + [anon_sym_COLON_COLON] = ACTIONS(2253), + [anon_sym_POUND] = ACTIONS(2253), + [anon_sym_SQUOTE] = ACTIONS(2255), + [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2255), + [anon_sym_extern] = ACTIONS(2255), + [anon_sym_yield] = ACTIONS(2255), + [anon_sym_move] = ACTIONS(2255), + [anon_sym_try] = ACTIONS(2255), + [sym_integer_literal] = ACTIONS(2253), + [aux_sym_string_literal_token1] = ACTIONS(2253), + [sym_char_literal] = ACTIONS(2253), + [anon_sym_true] = ACTIONS(2255), + [anon_sym_false] = ACTIONS(2255), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2255), + [sym_super] = ACTIONS(2255), + [sym_crate] = ACTIONS(2255), + [sym_metavariable] = ACTIONS(2253), + [sym__raw_string_literal_start] = ACTIONS(2253), + [sym_float_literal] = ACTIONS(2253), }, [592] = { [sym_line_comment] = STATE(592), [sym_block_comment] = STATE(592), - [ts_builtin_sym_end] = ACTIONS(2119), - [sym_identifier] = ACTIONS(2121), - [anon_sym_SEMI] = ACTIONS(2119), - [anon_sym_macro_rules_BANG] = ACTIONS(2119), - [anon_sym_LPAREN] = ACTIONS(2119), - [anon_sym_LBRACK] = ACTIONS(2119), - [anon_sym_LBRACE] = ACTIONS(2119), - [anon_sym_RBRACE] = ACTIONS(2119), - [anon_sym_STAR] = ACTIONS(2119), - [anon_sym_u8] = ACTIONS(2121), - [anon_sym_i8] = ACTIONS(2121), - [anon_sym_u16] = ACTIONS(2121), - [anon_sym_i16] = ACTIONS(2121), - [anon_sym_u32] = ACTIONS(2121), - [anon_sym_i32] = ACTIONS(2121), - [anon_sym_u64] = ACTIONS(2121), - [anon_sym_i64] = ACTIONS(2121), - [anon_sym_u128] = ACTIONS(2121), - [anon_sym_i128] = ACTIONS(2121), - [anon_sym_isize] = ACTIONS(2121), - [anon_sym_usize] = ACTIONS(2121), - [anon_sym_f32] = ACTIONS(2121), - [anon_sym_f64] = ACTIONS(2121), - [anon_sym_bool] = ACTIONS(2121), - [anon_sym_str] = ACTIONS(2121), - [anon_sym_char] = ACTIONS(2121), - [anon_sym_DASH] = ACTIONS(2119), - [anon_sym_BANG] = ACTIONS(2119), - [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_PIPE] = ACTIONS(2119), - [anon_sym_LT] = ACTIONS(2119), - [anon_sym_DOT_DOT] = ACTIONS(2119), - [anon_sym_COLON_COLON] = ACTIONS(2119), - [anon_sym_POUND] = ACTIONS(2119), - [anon_sym_SQUOTE] = ACTIONS(2121), - [anon_sym_async] = ACTIONS(2121), - [anon_sym_break] = ACTIONS(2121), - [anon_sym_const] = ACTIONS(2121), - [anon_sym_continue] = ACTIONS(2121), - [anon_sym_default] = ACTIONS(2121), - [anon_sym_enum] = ACTIONS(2121), - [anon_sym_fn] = ACTIONS(2121), - [anon_sym_for] = ACTIONS(2121), - [anon_sym_gen] = ACTIONS(2121), - [anon_sym_if] = ACTIONS(2121), - [anon_sym_impl] = ACTIONS(2121), - [anon_sym_let] = ACTIONS(2121), - [anon_sym_loop] = ACTIONS(2121), - [anon_sym_match] = ACTIONS(2121), - [anon_sym_mod] = ACTIONS(2121), - [anon_sym_pub] = ACTIONS(2121), - [anon_sym_return] = ACTIONS(2121), - [anon_sym_static] = ACTIONS(2121), - [anon_sym_struct] = ACTIONS(2121), - [anon_sym_trait] = ACTIONS(2121), - [anon_sym_type] = ACTIONS(2121), - [anon_sym_union] = ACTIONS(2121), - [anon_sym_unsafe] = ACTIONS(2121), - [anon_sym_use] = ACTIONS(2121), - [anon_sym_while] = ACTIONS(2121), - [anon_sym_extern] = ACTIONS(2121), - [anon_sym_yield] = ACTIONS(2121), - [anon_sym_move] = ACTIONS(2121), - [anon_sym_try] = ACTIONS(2121), - [sym_integer_literal] = ACTIONS(2119), - [aux_sym_string_literal_token1] = ACTIONS(2119), - [sym_char_literal] = ACTIONS(2119), - [anon_sym_true] = ACTIONS(2121), - [anon_sym_false] = ACTIONS(2121), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2121), - [sym_super] = ACTIONS(2121), - [sym_crate] = ACTIONS(2121), - [sym_metavariable] = ACTIONS(2119), - [sym__raw_string_literal_start] = ACTIONS(2119), - [sym_float_literal] = ACTIONS(2119), + [ts_builtin_sym_end] = ACTIONS(2257), + [sym_identifier] = ACTIONS(2259), + [anon_sym_SEMI] = ACTIONS(2257), + [anon_sym_macro_rules_BANG] = ACTIONS(2257), + [anon_sym_LPAREN] = ACTIONS(2257), + [anon_sym_LBRACK] = ACTIONS(2257), + [anon_sym_LBRACE] = ACTIONS(2257), + [anon_sym_RBRACE] = ACTIONS(2257), + [anon_sym_STAR] = ACTIONS(2257), + [anon_sym_u8] = ACTIONS(2259), + [anon_sym_i8] = ACTIONS(2259), + [anon_sym_u16] = ACTIONS(2259), + [anon_sym_i16] = ACTIONS(2259), + [anon_sym_u32] = ACTIONS(2259), + [anon_sym_i32] = ACTIONS(2259), + [anon_sym_u64] = ACTIONS(2259), + [anon_sym_i64] = ACTIONS(2259), + [anon_sym_u128] = ACTIONS(2259), + [anon_sym_i128] = ACTIONS(2259), + [anon_sym_isize] = ACTIONS(2259), + [anon_sym_usize] = ACTIONS(2259), + [anon_sym_f32] = ACTIONS(2259), + [anon_sym_f64] = ACTIONS(2259), + [anon_sym_bool] = ACTIONS(2259), + [anon_sym_str] = ACTIONS(2259), + [anon_sym_char] = ACTIONS(2259), + [anon_sym_DASH] = ACTIONS(2257), + [anon_sym_BANG] = ACTIONS(2257), + [anon_sym_AMP] = ACTIONS(2257), + [anon_sym_PIPE] = ACTIONS(2257), + [anon_sym_LT] = ACTIONS(2257), + [anon_sym_DOT_DOT] = ACTIONS(2257), + [anon_sym_COLON_COLON] = ACTIONS(2257), + [anon_sym_POUND] = ACTIONS(2257), + [anon_sym_SQUOTE] = ACTIONS(2259), + [anon_sym_async] = ACTIONS(2259), + [anon_sym_break] = ACTIONS(2259), + [anon_sym_const] = ACTIONS(2259), + [anon_sym_continue] = ACTIONS(2259), + [anon_sym_default] = ACTIONS(2259), + [anon_sym_enum] = ACTIONS(2259), + [anon_sym_fn] = ACTIONS(2259), + [anon_sym_for] = ACTIONS(2259), + [anon_sym_gen] = ACTIONS(2259), + [anon_sym_if] = ACTIONS(2259), + [anon_sym_impl] = ACTIONS(2259), + [anon_sym_let] = ACTIONS(2259), + [anon_sym_loop] = ACTIONS(2259), + [anon_sym_match] = ACTIONS(2259), + [anon_sym_mod] = ACTIONS(2259), + [anon_sym_pub] = ACTIONS(2259), + [anon_sym_return] = ACTIONS(2259), + [anon_sym_static] = ACTIONS(2259), + [anon_sym_struct] = ACTIONS(2259), + [anon_sym_trait] = ACTIONS(2259), + [anon_sym_type] = ACTIONS(2259), + [anon_sym_union] = ACTIONS(2259), + [anon_sym_unsafe] = ACTIONS(2259), + [anon_sym_use] = ACTIONS(2259), + [anon_sym_while] = ACTIONS(2259), + [anon_sym_extern] = ACTIONS(2259), + [anon_sym_yield] = ACTIONS(2259), + [anon_sym_move] = ACTIONS(2259), + [anon_sym_try] = ACTIONS(2259), + [sym_integer_literal] = ACTIONS(2257), + [aux_sym_string_literal_token1] = ACTIONS(2257), + [sym_char_literal] = ACTIONS(2257), + [anon_sym_true] = ACTIONS(2259), + [anon_sym_false] = ACTIONS(2259), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2259), + [sym_super] = ACTIONS(2259), + [sym_crate] = ACTIONS(2259), + [sym_metavariable] = ACTIONS(2257), + [sym__raw_string_literal_start] = ACTIONS(2257), + [sym_float_literal] = ACTIONS(2257), }, [593] = { [sym_line_comment] = STATE(593), [sym_block_comment] = STATE(593), - [ts_builtin_sym_end] = ACTIONS(2123), - [sym_identifier] = ACTIONS(2125), - [anon_sym_SEMI] = ACTIONS(2123), - [anon_sym_macro_rules_BANG] = ACTIONS(2123), - [anon_sym_LPAREN] = ACTIONS(2123), - [anon_sym_LBRACK] = ACTIONS(2123), - [anon_sym_LBRACE] = ACTIONS(2123), - [anon_sym_RBRACE] = ACTIONS(2123), - [anon_sym_STAR] = ACTIONS(2123), - [anon_sym_u8] = ACTIONS(2125), - [anon_sym_i8] = ACTIONS(2125), - [anon_sym_u16] = ACTIONS(2125), - [anon_sym_i16] = ACTIONS(2125), - [anon_sym_u32] = ACTIONS(2125), - [anon_sym_i32] = ACTIONS(2125), - [anon_sym_u64] = ACTIONS(2125), - [anon_sym_i64] = ACTIONS(2125), - [anon_sym_u128] = ACTIONS(2125), - [anon_sym_i128] = ACTIONS(2125), - [anon_sym_isize] = ACTIONS(2125), - [anon_sym_usize] = ACTIONS(2125), - [anon_sym_f32] = ACTIONS(2125), - [anon_sym_f64] = ACTIONS(2125), - [anon_sym_bool] = ACTIONS(2125), - [anon_sym_str] = ACTIONS(2125), - [anon_sym_char] = ACTIONS(2125), - [anon_sym_DASH] = ACTIONS(2123), - [anon_sym_BANG] = ACTIONS(2123), - [anon_sym_AMP] = ACTIONS(2123), - [anon_sym_PIPE] = ACTIONS(2123), - [anon_sym_LT] = ACTIONS(2123), - [anon_sym_DOT_DOT] = ACTIONS(2123), - [anon_sym_COLON_COLON] = ACTIONS(2123), - [anon_sym_POUND] = ACTIONS(2123), - [anon_sym_SQUOTE] = ACTIONS(2125), - [anon_sym_async] = ACTIONS(2125), - [anon_sym_break] = ACTIONS(2125), - [anon_sym_const] = ACTIONS(2125), - [anon_sym_continue] = ACTIONS(2125), - [anon_sym_default] = ACTIONS(2125), - [anon_sym_enum] = ACTIONS(2125), - [anon_sym_fn] = ACTIONS(2125), - [anon_sym_for] = ACTIONS(2125), - [anon_sym_gen] = ACTIONS(2125), - [anon_sym_if] = ACTIONS(2125), - [anon_sym_impl] = ACTIONS(2125), - [anon_sym_let] = ACTIONS(2125), - [anon_sym_loop] = ACTIONS(2125), - [anon_sym_match] = ACTIONS(2125), - [anon_sym_mod] = ACTIONS(2125), - [anon_sym_pub] = ACTIONS(2125), - [anon_sym_return] = ACTIONS(2125), - [anon_sym_static] = ACTIONS(2125), - [anon_sym_struct] = ACTIONS(2125), - [anon_sym_trait] = ACTIONS(2125), - [anon_sym_type] = ACTIONS(2125), - [anon_sym_union] = ACTIONS(2125), - [anon_sym_unsafe] = ACTIONS(2125), - [anon_sym_use] = ACTIONS(2125), - [anon_sym_while] = ACTIONS(2125), - [anon_sym_extern] = ACTIONS(2125), - [anon_sym_yield] = ACTIONS(2125), - [anon_sym_move] = ACTIONS(2125), - [anon_sym_try] = ACTIONS(2125), - [sym_integer_literal] = ACTIONS(2123), - [aux_sym_string_literal_token1] = ACTIONS(2123), - [sym_char_literal] = ACTIONS(2123), - [anon_sym_true] = ACTIONS(2125), - [anon_sym_false] = ACTIONS(2125), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2125), - [sym_super] = ACTIONS(2125), - [sym_crate] = ACTIONS(2125), - [sym_metavariable] = ACTIONS(2123), - [sym__raw_string_literal_start] = ACTIONS(2123), - [sym_float_literal] = ACTIONS(2123), + [ts_builtin_sym_end] = ACTIONS(2261), + [sym_identifier] = ACTIONS(2263), + [anon_sym_SEMI] = ACTIONS(2261), + [anon_sym_macro_rules_BANG] = ACTIONS(2261), + [anon_sym_LPAREN] = ACTIONS(2261), + [anon_sym_LBRACK] = ACTIONS(2261), + [anon_sym_LBRACE] = ACTIONS(2261), + [anon_sym_RBRACE] = ACTIONS(2261), + [anon_sym_STAR] = ACTIONS(2261), + [anon_sym_u8] = ACTIONS(2263), + [anon_sym_i8] = ACTIONS(2263), + [anon_sym_u16] = ACTIONS(2263), + [anon_sym_i16] = ACTIONS(2263), + [anon_sym_u32] = ACTIONS(2263), + [anon_sym_i32] = ACTIONS(2263), + [anon_sym_u64] = ACTIONS(2263), + [anon_sym_i64] = ACTIONS(2263), + [anon_sym_u128] = ACTIONS(2263), + [anon_sym_i128] = ACTIONS(2263), + [anon_sym_isize] = ACTIONS(2263), + [anon_sym_usize] = ACTIONS(2263), + [anon_sym_f32] = ACTIONS(2263), + [anon_sym_f64] = ACTIONS(2263), + [anon_sym_bool] = ACTIONS(2263), + [anon_sym_str] = ACTIONS(2263), + [anon_sym_char] = ACTIONS(2263), + [anon_sym_DASH] = ACTIONS(2261), + [anon_sym_BANG] = ACTIONS(2261), + [anon_sym_AMP] = ACTIONS(2261), + [anon_sym_PIPE] = ACTIONS(2261), + [anon_sym_LT] = ACTIONS(2261), + [anon_sym_DOT_DOT] = ACTIONS(2261), + [anon_sym_COLON_COLON] = ACTIONS(2261), + [anon_sym_POUND] = ACTIONS(2261), + [anon_sym_SQUOTE] = ACTIONS(2263), + [anon_sym_async] = ACTIONS(2263), + [anon_sym_break] = ACTIONS(2263), + [anon_sym_const] = ACTIONS(2263), + [anon_sym_continue] = ACTIONS(2263), + [anon_sym_default] = ACTIONS(2263), + [anon_sym_enum] = ACTIONS(2263), + [anon_sym_fn] = ACTIONS(2263), + [anon_sym_for] = ACTIONS(2263), + [anon_sym_gen] = ACTIONS(2263), + [anon_sym_if] = ACTIONS(2263), + [anon_sym_impl] = ACTIONS(2263), + [anon_sym_let] = ACTIONS(2263), + [anon_sym_loop] = ACTIONS(2263), + [anon_sym_match] = ACTIONS(2263), + [anon_sym_mod] = ACTIONS(2263), + [anon_sym_pub] = ACTIONS(2263), + [anon_sym_return] = ACTIONS(2263), + [anon_sym_static] = ACTIONS(2263), + [anon_sym_struct] = ACTIONS(2263), + [anon_sym_trait] = ACTIONS(2263), + [anon_sym_type] = ACTIONS(2263), + [anon_sym_union] = ACTIONS(2263), + [anon_sym_unsafe] = ACTIONS(2263), + [anon_sym_use] = ACTIONS(2263), + [anon_sym_while] = ACTIONS(2263), + [anon_sym_extern] = ACTIONS(2263), + [anon_sym_yield] = ACTIONS(2263), + [anon_sym_move] = ACTIONS(2263), + [anon_sym_try] = ACTIONS(2263), + [sym_integer_literal] = ACTIONS(2261), + [aux_sym_string_literal_token1] = ACTIONS(2261), + [sym_char_literal] = ACTIONS(2261), + [anon_sym_true] = ACTIONS(2263), + [anon_sym_false] = ACTIONS(2263), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2263), + [sym_super] = ACTIONS(2263), + [sym_crate] = ACTIONS(2263), + [sym_metavariable] = ACTIONS(2261), + [sym__raw_string_literal_start] = ACTIONS(2261), + [sym_float_literal] = ACTIONS(2261), }, [594] = { [sym_line_comment] = STATE(594), [sym_block_comment] = STATE(594), - [ts_builtin_sym_end] = ACTIONS(2127), - [sym_identifier] = ACTIONS(2129), - [anon_sym_SEMI] = ACTIONS(2127), - [anon_sym_macro_rules_BANG] = ACTIONS(2127), - [anon_sym_LPAREN] = ACTIONS(2127), - [anon_sym_LBRACK] = ACTIONS(2127), - [anon_sym_LBRACE] = ACTIONS(2127), - [anon_sym_RBRACE] = ACTIONS(2127), - [anon_sym_STAR] = ACTIONS(2127), - [anon_sym_u8] = ACTIONS(2129), - [anon_sym_i8] = ACTIONS(2129), - [anon_sym_u16] = ACTIONS(2129), - [anon_sym_i16] = ACTIONS(2129), - [anon_sym_u32] = ACTIONS(2129), - [anon_sym_i32] = ACTIONS(2129), - [anon_sym_u64] = ACTIONS(2129), - [anon_sym_i64] = ACTIONS(2129), - [anon_sym_u128] = ACTIONS(2129), - [anon_sym_i128] = ACTIONS(2129), - [anon_sym_isize] = ACTIONS(2129), - [anon_sym_usize] = ACTIONS(2129), - [anon_sym_f32] = ACTIONS(2129), - [anon_sym_f64] = ACTIONS(2129), - [anon_sym_bool] = ACTIONS(2129), - [anon_sym_str] = ACTIONS(2129), - [anon_sym_char] = ACTIONS(2129), - [anon_sym_DASH] = ACTIONS(2127), - [anon_sym_BANG] = ACTIONS(2127), - [anon_sym_AMP] = ACTIONS(2127), - [anon_sym_PIPE] = ACTIONS(2127), - [anon_sym_LT] = ACTIONS(2127), - [anon_sym_DOT_DOT] = ACTIONS(2127), - [anon_sym_COLON_COLON] = ACTIONS(2127), - [anon_sym_POUND] = ACTIONS(2127), - [anon_sym_SQUOTE] = ACTIONS(2129), - [anon_sym_async] = ACTIONS(2129), - [anon_sym_break] = ACTIONS(2129), - [anon_sym_const] = ACTIONS(2129), - [anon_sym_continue] = ACTIONS(2129), - [anon_sym_default] = ACTIONS(2129), - [anon_sym_enum] = ACTIONS(2129), - [anon_sym_fn] = ACTIONS(2129), - [anon_sym_for] = ACTIONS(2129), - [anon_sym_gen] = ACTIONS(2129), - [anon_sym_if] = ACTIONS(2129), - [anon_sym_impl] = ACTIONS(2129), - [anon_sym_let] = ACTIONS(2129), - [anon_sym_loop] = ACTIONS(2129), - [anon_sym_match] = ACTIONS(2129), - [anon_sym_mod] = ACTIONS(2129), - [anon_sym_pub] = ACTIONS(2129), - [anon_sym_return] = ACTIONS(2129), - [anon_sym_static] = ACTIONS(2129), - [anon_sym_struct] = ACTIONS(2129), - [anon_sym_trait] = ACTIONS(2129), - [anon_sym_type] = ACTIONS(2129), - [anon_sym_union] = ACTIONS(2129), - [anon_sym_unsafe] = ACTIONS(2129), - [anon_sym_use] = ACTIONS(2129), - [anon_sym_while] = ACTIONS(2129), - [anon_sym_extern] = ACTIONS(2129), - [anon_sym_yield] = ACTIONS(2129), - [anon_sym_move] = ACTIONS(2129), - [anon_sym_try] = ACTIONS(2129), - [sym_integer_literal] = ACTIONS(2127), - [aux_sym_string_literal_token1] = ACTIONS(2127), - [sym_char_literal] = ACTIONS(2127), - [anon_sym_true] = ACTIONS(2129), - [anon_sym_false] = ACTIONS(2129), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2129), - [sym_super] = ACTIONS(2129), - [sym_crate] = ACTIONS(2129), - [sym_metavariable] = ACTIONS(2127), - [sym__raw_string_literal_start] = ACTIONS(2127), - [sym_float_literal] = ACTIONS(2127), + [ts_builtin_sym_end] = ACTIONS(2265), + [sym_identifier] = ACTIONS(2267), + [anon_sym_SEMI] = ACTIONS(2265), + [anon_sym_macro_rules_BANG] = ACTIONS(2265), + [anon_sym_LPAREN] = ACTIONS(2265), + [anon_sym_LBRACK] = ACTIONS(2265), + [anon_sym_LBRACE] = ACTIONS(2265), + [anon_sym_RBRACE] = ACTIONS(2265), + [anon_sym_STAR] = ACTIONS(2265), + [anon_sym_u8] = ACTIONS(2267), + [anon_sym_i8] = ACTIONS(2267), + [anon_sym_u16] = ACTIONS(2267), + [anon_sym_i16] = ACTIONS(2267), + [anon_sym_u32] = ACTIONS(2267), + [anon_sym_i32] = ACTIONS(2267), + [anon_sym_u64] = ACTIONS(2267), + [anon_sym_i64] = ACTIONS(2267), + [anon_sym_u128] = ACTIONS(2267), + [anon_sym_i128] = ACTIONS(2267), + [anon_sym_isize] = ACTIONS(2267), + [anon_sym_usize] = ACTIONS(2267), + [anon_sym_f32] = ACTIONS(2267), + [anon_sym_f64] = ACTIONS(2267), + [anon_sym_bool] = ACTIONS(2267), + [anon_sym_str] = ACTIONS(2267), + [anon_sym_char] = ACTIONS(2267), + [anon_sym_DASH] = ACTIONS(2265), + [anon_sym_BANG] = ACTIONS(2265), + [anon_sym_AMP] = ACTIONS(2265), + [anon_sym_PIPE] = ACTIONS(2265), + [anon_sym_LT] = ACTIONS(2265), + [anon_sym_DOT_DOT] = ACTIONS(2265), + [anon_sym_COLON_COLON] = ACTIONS(2265), + [anon_sym_POUND] = ACTIONS(2265), + [anon_sym_SQUOTE] = ACTIONS(2267), + [anon_sym_async] = ACTIONS(2267), + [anon_sym_break] = ACTIONS(2267), + [anon_sym_const] = ACTIONS(2267), + [anon_sym_continue] = ACTIONS(2267), + [anon_sym_default] = ACTIONS(2267), + [anon_sym_enum] = ACTIONS(2267), + [anon_sym_fn] = ACTIONS(2267), + [anon_sym_for] = ACTIONS(2267), + [anon_sym_gen] = ACTIONS(2267), + [anon_sym_if] = ACTIONS(2267), + [anon_sym_impl] = ACTIONS(2267), + [anon_sym_let] = ACTIONS(2267), + [anon_sym_loop] = ACTIONS(2267), + [anon_sym_match] = ACTIONS(2267), + [anon_sym_mod] = ACTIONS(2267), + [anon_sym_pub] = ACTIONS(2267), + [anon_sym_return] = ACTIONS(2267), + [anon_sym_static] = ACTIONS(2267), + [anon_sym_struct] = ACTIONS(2267), + [anon_sym_trait] = ACTIONS(2267), + [anon_sym_type] = ACTIONS(2267), + [anon_sym_union] = ACTIONS(2267), + [anon_sym_unsafe] = ACTIONS(2267), + [anon_sym_use] = ACTIONS(2267), + [anon_sym_while] = ACTIONS(2267), + [anon_sym_extern] = ACTIONS(2267), + [anon_sym_yield] = ACTIONS(2267), + [anon_sym_move] = ACTIONS(2267), + [anon_sym_try] = ACTIONS(2267), + [sym_integer_literal] = ACTIONS(2265), + [aux_sym_string_literal_token1] = ACTIONS(2265), + [sym_char_literal] = ACTIONS(2265), + [anon_sym_true] = ACTIONS(2267), + [anon_sym_false] = ACTIONS(2267), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2267), + [sym_super] = ACTIONS(2267), + [sym_crate] = ACTIONS(2267), + [sym_metavariable] = ACTIONS(2265), + [sym__raw_string_literal_start] = ACTIONS(2265), + [sym_float_literal] = ACTIONS(2265), }, [595] = { [sym_line_comment] = STATE(595), [sym_block_comment] = STATE(595), - [ts_builtin_sym_end] = ACTIONS(2131), - [sym_identifier] = ACTIONS(2133), - [anon_sym_SEMI] = ACTIONS(2131), - [anon_sym_macro_rules_BANG] = ACTIONS(2131), - [anon_sym_LPAREN] = ACTIONS(2131), - [anon_sym_LBRACK] = ACTIONS(2131), - [anon_sym_LBRACE] = ACTIONS(2131), - [anon_sym_RBRACE] = ACTIONS(2131), - [anon_sym_STAR] = ACTIONS(2131), - [anon_sym_u8] = ACTIONS(2133), - [anon_sym_i8] = ACTIONS(2133), - [anon_sym_u16] = ACTIONS(2133), - [anon_sym_i16] = ACTIONS(2133), - [anon_sym_u32] = ACTIONS(2133), - [anon_sym_i32] = ACTIONS(2133), - [anon_sym_u64] = ACTIONS(2133), - [anon_sym_i64] = ACTIONS(2133), - [anon_sym_u128] = ACTIONS(2133), - [anon_sym_i128] = ACTIONS(2133), - [anon_sym_isize] = ACTIONS(2133), - [anon_sym_usize] = ACTIONS(2133), - [anon_sym_f32] = ACTIONS(2133), - [anon_sym_f64] = ACTIONS(2133), - [anon_sym_bool] = ACTIONS(2133), - [anon_sym_str] = ACTIONS(2133), - [anon_sym_char] = ACTIONS(2133), - [anon_sym_DASH] = ACTIONS(2131), - [anon_sym_BANG] = ACTIONS(2131), - [anon_sym_AMP] = ACTIONS(2131), - [anon_sym_PIPE] = ACTIONS(2131), - [anon_sym_LT] = ACTIONS(2131), - [anon_sym_DOT_DOT] = ACTIONS(2131), - [anon_sym_COLON_COLON] = ACTIONS(2131), - [anon_sym_POUND] = ACTIONS(2131), - [anon_sym_SQUOTE] = ACTIONS(2133), - [anon_sym_async] = ACTIONS(2133), - [anon_sym_break] = ACTIONS(2133), - [anon_sym_const] = ACTIONS(2133), - [anon_sym_continue] = ACTIONS(2133), - [anon_sym_default] = ACTIONS(2133), - [anon_sym_enum] = ACTIONS(2133), - [anon_sym_fn] = ACTIONS(2133), - [anon_sym_for] = ACTIONS(2133), - [anon_sym_gen] = ACTIONS(2133), - [anon_sym_if] = ACTIONS(2133), - [anon_sym_impl] = ACTIONS(2133), - [anon_sym_let] = ACTIONS(2133), - [anon_sym_loop] = ACTIONS(2133), - [anon_sym_match] = ACTIONS(2133), - [anon_sym_mod] = ACTIONS(2133), - [anon_sym_pub] = ACTIONS(2133), - [anon_sym_return] = ACTIONS(2133), - [anon_sym_static] = ACTIONS(2133), - [anon_sym_struct] = ACTIONS(2133), - [anon_sym_trait] = ACTIONS(2133), - [anon_sym_type] = ACTIONS(2133), - [anon_sym_union] = ACTIONS(2133), - [anon_sym_unsafe] = ACTIONS(2133), - [anon_sym_use] = ACTIONS(2133), - [anon_sym_while] = ACTIONS(2133), - [anon_sym_extern] = ACTIONS(2133), - [anon_sym_yield] = ACTIONS(2133), - [anon_sym_move] = ACTIONS(2133), - [anon_sym_try] = ACTIONS(2133), - [sym_integer_literal] = ACTIONS(2131), - [aux_sym_string_literal_token1] = ACTIONS(2131), - [sym_char_literal] = ACTIONS(2131), - [anon_sym_true] = ACTIONS(2133), - [anon_sym_false] = ACTIONS(2133), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2133), - [sym_super] = ACTIONS(2133), - [sym_crate] = ACTIONS(2133), - [sym_metavariable] = ACTIONS(2131), - [sym__raw_string_literal_start] = ACTIONS(2131), - [sym_float_literal] = ACTIONS(2131), + [ts_builtin_sym_end] = ACTIONS(2269), + [sym_identifier] = ACTIONS(2271), + [anon_sym_SEMI] = ACTIONS(2269), + [anon_sym_macro_rules_BANG] = ACTIONS(2269), + [anon_sym_LPAREN] = ACTIONS(2269), + [anon_sym_LBRACK] = ACTIONS(2269), + [anon_sym_LBRACE] = ACTIONS(2269), + [anon_sym_RBRACE] = ACTIONS(2269), + [anon_sym_STAR] = ACTIONS(2269), + [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), + [anon_sym_DASH] = ACTIONS(2269), + [anon_sym_BANG] = ACTIONS(2269), + [anon_sym_AMP] = ACTIONS(2269), + [anon_sym_PIPE] = ACTIONS(2269), + [anon_sym_LT] = ACTIONS(2269), + [anon_sym_DOT_DOT] = ACTIONS(2269), + [anon_sym_COLON_COLON] = ACTIONS(2269), + [anon_sym_POUND] = ACTIONS(2269), + [anon_sym_SQUOTE] = ACTIONS(2271), + [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2271), + [anon_sym_extern] = ACTIONS(2271), + [anon_sym_yield] = ACTIONS(2271), + [anon_sym_move] = ACTIONS(2271), + [anon_sym_try] = ACTIONS(2271), + [sym_integer_literal] = ACTIONS(2269), + [aux_sym_string_literal_token1] = ACTIONS(2269), + [sym_char_literal] = ACTIONS(2269), + [anon_sym_true] = ACTIONS(2271), + [anon_sym_false] = ACTIONS(2271), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2271), + [sym_super] = ACTIONS(2271), + [sym_crate] = ACTIONS(2271), + [sym_metavariable] = ACTIONS(2269), + [sym__raw_string_literal_start] = ACTIONS(2269), + [sym_float_literal] = ACTIONS(2269), }, [596] = { [sym_line_comment] = STATE(596), [sym_block_comment] = STATE(596), - [ts_builtin_sym_end] = ACTIONS(2135), - [sym_identifier] = ACTIONS(2137), - [anon_sym_SEMI] = ACTIONS(2135), - [anon_sym_macro_rules_BANG] = ACTIONS(2135), - [anon_sym_LPAREN] = ACTIONS(2135), - [anon_sym_LBRACK] = ACTIONS(2135), - [anon_sym_LBRACE] = ACTIONS(2135), - [anon_sym_RBRACE] = ACTIONS(2135), - [anon_sym_STAR] = ACTIONS(2135), - [anon_sym_u8] = ACTIONS(2137), - [anon_sym_i8] = ACTIONS(2137), - [anon_sym_u16] = ACTIONS(2137), - [anon_sym_i16] = ACTIONS(2137), - [anon_sym_u32] = ACTIONS(2137), - [anon_sym_i32] = ACTIONS(2137), - [anon_sym_u64] = ACTIONS(2137), - [anon_sym_i64] = ACTIONS(2137), - [anon_sym_u128] = ACTIONS(2137), - [anon_sym_i128] = ACTIONS(2137), - [anon_sym_isize] = ACTIONS(2137), - [anon_sym_usize] = ACTIONS(2137), - [anon_sym_f32] = ACTIONS(2137), - [anon_sym_f64] = ACTIONS(2137), - [anon_sym_bool] = ACTIONS(2137), - [anon_sym_str] = ACTIONS(2137), - [anon_sym_char] = ACTIONS(2137), - [anon_sym_DASH] = ACTIONS(2135), - [anon_sym_BANG] = ACTIONS(2135), - [anon_sym_AMP] = ACTIONS(2135), - [anon_sym_PIPE] = ACTIONS(2135), - [anon_sym_LT] = ACTIONS(2135), - [anon_sym_DOT_DOT] = ACTIONS(2135), - [anon_sym_COLON_COLON] = ACTIONS(2135), - [anon_sym_POUND] = ACTIONS(2135), - [anon_sym_SQUOTE] = ACTIONS(2137), - [anon_sym_async] = ACTIONS(2137), - [anon_sym_break] = ACTIONS(2137), - [anon_sym_const] = ACTIONS(2137), - [anon_sym_continue] = ACTIONS(2137), - [anon_sym_default] = ACTIONS(2137), - [anon_sym_enum] = ACTIONS(2137), - [anon_sym_fn] = ACTIONS(2137), - [anon_sym_for] = ACTIONS(2137), - [anon_sym_gen] = ACTIONS(2137), - [anon_sym_if] = ACTIONS(2137), - [anon_sym_impl] = ACTIONS(2137), - [anon_sym_let] = ACTIONS(2137), - [anon_sym_loop] = ACTIONS(2137), - [anon_sym_match] = ACTIONS(2137), - [anon_sym_mod] = ACTIONS(2137), - [anon_sym_pub] = ACTIONS(2137), - [anon_sym_return] = ACTIONS(2137), - [anon_sym_static] = ACTIONS(2137), - [anon_sym_struct] = ACTIONS(2137), - [anon_sym_trait] = ACTIONS(2137), - [anon_sym_type] = ACTIONS(2137), - [anon_sym_union] = ACTIONS(2137), - [anon_sym_unsafe] = ACTIONS(2137), - [anon_sym_use] = ACTIONS(2137), - [anon_sym_while] = ACTIONS(2137), - [anon_sym_extern] = ACTIONS(2137), - [anon_sym_yield] = ACTIONS(2137), - [anon_sym_move] = ACTIONS(2137), - [anon_sym_try] = ACTIONS(2137), - [sym_integer_literal] = ACTIONS(2135), - [aux_sym_string_literal_token1] = ACTIONS(2135), - [sym_char_literal] = ACTIONS(2135), - [anon_sym_true] = ACTIONS(2137), - [anon_sym_false] = ACTIONS(2137), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2137), - [sym_super] = ACTIONS(2137), - [sym_crate] = ACTIONS(2137), - [sym_metavariable] = ACTIONS(2135), - [sym__raw_string_literal_start] = ACTIONS(2135), - [sym_float_literal] = ACTIONS(2135), + [ts_builtin_sym_end] = ACTIONS(2273), + [sym_identifier] = ACTIONS(2275), + [anon_sym_SEMI] = ACTIONS(2273), + [anon_sym_macro_rules_BANG] = ACTIONS(2273), + [anon_sym_LPAREN] = ACTIONS(2273), + [anon_sym_LBRACK] = ACTIONS(2273), + [anon_sym_LBRACE] = ACTIONS(2273), + [anon_sym_RBRACE] = ACTIONS(2273), + [anon_sym_STAR] = ACTIONS(2273), + [anon_sym_u8] = ACTIONS(2275), + [anon_sym_i8] = ACTIONS(2275), + [anon_sym_u16] = ACTIONS(2275), + [anon_sym_i16] = ACTIONS(2275), + [anon_sym_u32] = ACTIONS(2275), + [anon_sym_i32] = ACTIONS(2275), + [anon_sym_u64] = ACTIONS(2275), + [anon_sym_i64] = ACTIONS(2275), + [anon_sym_u128] = ACTIONS(2275), + [anon_sym_i128] = ACTIONS(2275), + [anon_sym_isize] = ACTIONS(2275), + [anon_sym_usize] = ACTIONS(2275), + [anon_sym_f32] = ACTIONS(2275), + [anon_sym_f64] = ACTIONS(2275), + [anon_sym_bool] = ACTIONS(2275), + [anon_sym_str] = ACTIONS(2275), + [anon_sym_char] = ACTIONS(2275), + [anon_sym_DASH] = ACTIONS(2273), + [anon_sym_BANG] = ACTIONS(2273), + [anon_sym_AMP] = ACTIONS(2273), + [anon_sym_PIPE] = ACTIONS(2273), + [anon_sym_LT] = ACTIONS(2273), + [anon_sym_DOT_DOT] = ACTIONS(2273), + [anon_sym_COLON_COLON] = ACTIONS(2273), + [anon_sym_POUND] = ACTIONS(2273), + [anon_sym_SQUOTE] = ACTIONS(2275), + [anon_sym_async] = ACTIONS(2275), + [anon_sym_break] = ACTIONS(2275), + [anon_sym_const] = ACTIONS(2275), + [anon_sym_continue] = ACTIONS(2275), + [anon_sym_default] = ACTIONS(2275), + [anon_sym_enum] = ACTIONS(2275), + [anon_sym_fn] = ACTIONS(2275), + [anon_sym_for] = ACTIONS(2275), + [anon_sym_gen] = ACTIONS(2275), + [anon_sym_if] = ACTIONS(2275), + [anon_sym_impl] = ACTIONS(2275), + [anon_sym_let] = ACTIONS(2275), + [anon_sym_loop] = ACTIONS(2275), + [anon_sym_match] = ACTIONS(2275), + [anon_sym_mod] = ACTIONS(2275), + [anon_sym_pub] = ACTIONS(2275), + [anon_sym_return] = ACTIONS(2275), + [anon_sym_static] = ACTIONS(2275), + [anon_sym_struct] = ACTIONS(2275), + [anon_sym_trait] = ACTIONS(2275), + [anon_sym_type] = ACTIONS(2275), + [anon_sym_union] = ACTIONS(2275), + [anon_sym_unsafe] = ACTIONS(2275), + [anon_sym_use] = ACTIONS(2275), + [anon_sym_while] = ACTIONS(2275), + [anon_sym_extern] = ACTIONS(2275), + [anon_sym_yield] = ACTIONS(2275), + [anon_sym_move] = ACTIONS(2275), + [anon_sym_try] = ACTIONS(2275), + [sym_integer_literal] = ACTIONS(2273), + [aux_sym_string_literal_token1] = ACTIONS(2273), + [sym_char_literal] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(2275), + [anon_sym_false] = ACTIONS(2275), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2275), + [sym_super] = ACTIONS(2275), + [sym_crate] = ACTIONS(2275), + [sym_metavariable] = ACTIONS(2273), + [sym__raw_string_literal_start] = ACTIONS(2273), + [sym_float_literal] = ACTIONS(2273), }, [597] = { [sym_line_comment] = STATE(597), [sym_block_comment] = STATE(597), - [ts_builtin_sym_end] = ACTIONS(2139), - [sym_identifier] = ACTIONS(2141), - [anon_sym_SEMI] = ACTIONS(2139), - [anon_sym_macro_rules_BANG] = ACTIONS(2139), - [anon_sym_LPAREN] = ACTIONS(2139), - [anon_sym_LBRACK] = ACTIONS(2139), - [anon_sym_LBRACE] = ACTIONS(2139), - [anon_sym_RBRACE] = ACTIONS(2139), - [anon_sym_STAR] = ACTIONS(2139), - [anon_sym_u8] = ACTIONS(2141), - [anon_sym_i8] = ACTIONS(2141), - [anon_sym_u16] = ACTIONS(2141), - [anon_sym_i16] = ACTIONS(2141), - [anon_sym_u32] = ACTIONS(2141), - [anon_sym_i32] = ACTIONS(2141), - [anon_sym_u64] = ACTIONS(2141), - [anon_sym_i64] = ACTIONS(2141), - [anon_sym_u128] = ACTIONS(2141), - [anon_sym_i128] = ACTIONS(2141), - [anon_sym_isize] = ACTIONS(2141), - [anon_sym_usize] = ACTIONS(2141), - [anon_sym_f32] = ACTIONS(2141), - [anon_sym_f64] = ACTIONS(2141), - [anon_sym_bool] = ACTIONS(2141), - [anon_sym_str] = ACTIONS(2141), - [anon_sym_char] = ACTIONS(2141), - [anon_sym_DASH] = ACTIONS(2139), - [anon_sym_BANG] = ACTIONS(2139), - [anon_sym_AMP] = ACTIONS(2139), - [anon_sym_PIPE] = ACTIONS(2139), - [anon_sym_LT] = ACTIONS(2139), - [anon_sym_DOT_DOT] = ACTIONS(2139), - [anon_sym_COLON_COLON] = ACTIONS(2139), - [anon_sym_POUND] = ACTIONS(2139), - [anon_sym_SQUOTE] = ACTIONS(2141), - [anon_sym_async] = ACTIONS(2141), - [anon_sym_break] = ACTIONS(2141), - [anon_sym_const] = ACTIONS(2141), - [anon_sym_continue] = ACTIONS(2141), - [anon_sym_default] = ACTIONS(2141), - [anon_sym_enum] = ACTIONS(2141), - [anon_sym_fn] = ACTIONS(2141), - [anon_sym_for] = ACTIONS(2141), - [anon_sym_gen] = ACTIONS(2141), - [anon_sym_if] = ACTIONS(2141), - [anon_sym_impl] = ACTIONS(2141), - [anon_sym_let] = ACTIONS(2141), - [anon_sym_loop] = ACTIONS(2141), - [anon_sym_match] = ACTIONS(2141), - [anon_sym_mod] = ACTIONS(2141), - [anon_sym_pub] = ACTIONS(2141), - [anon_sym_return] = ACTIONS(2141), - [anon_sym_static] = ACTIONS(2141), - [anon_sym_struct] = ACTIONS(2141), - [anon_sym_trait] = ACTIONS(2141), - [anon_sym_type] = ACTIONS(2141), - [anon_sym_union] = ACTIONS(2141), - [anon_sym_unsafe] = ACTIONS(2141), - [anon_sym_use] = ACTIONS(2141), - [anon_sym_while] = ACTIONS(2141), - [anon_sym_extern] = ACTIONS(2141), - [anon_sym_yield] = ACTIONS(2141), - [anon_sym_move] = ACTIONS(2141), - [anon_sym_try] = ACTIONS(2141), - [sym_integer_literal] = ACTIONS(2139), - [aux_sym_string_literal_token1] = ACTIONS(2139), - [sym_char_literal] = ACTIONS(2139), - [anon_sym_true] = ACTIONS(2141), - [anon_sym_false] = ACTIONS(2141), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2141), - [sym_super] = ACTIONS(2141), - [sym_crate] = ACTIONS(2141), - [sym_metavariable] = ACTIONS(2139), - [sym__raw_string_literal_start] = ACTIONS(2139), - [sym_float_literal] = ACTIONS(2139), + [ts_builtin_sym_end] = ACTIONS(2277), + [sym_identifier] = ACTIONS(2279), + [anon_sym_SEMI] = ACTIONS(2277), + [anon_sym_macro_rules_BANG] = ACTIONS(2277), + [anon_sym_LPAREN] = ACTIONS(2277), + [anon_sym_LBRACK] = ACTIONS(2277), + [anon_sym_LBRACE] = ACTIONS(2277), + [anon_sym_RBRACE] = ACTIONS(2277), + [anon_sym_STAR] = ACTIONS(2277), + [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), + [anon_sym_DASH] = ACTIONS(2277), + [anon_sym_BANG] = ACTIONS(2277), + [anon_sym_AMP] = ACTIONS(2277), + [anon_sym_PIPE] = ACTIONS(2277), + [anon_sym_LT] = ACTIONS(2277), + [anon_sym_DOT_DOT] = ACTIONS(2277), + [anon_sym_COLON_COLON] = ACTIONS(2277), + [anon_sym_POUND] = ACTIONS(2277), + [anon_sym_SQUOTE] = ACTIONS(2279), + [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2279), + [anon_sym_extern] = ACTIONS(2279), + [anon_sym_yield] = ACTIONS(2279), + [anon_sym_move] = ACTIONS(2279), + [anon_sym_try] = ACTIONS(2279), + [sym_integer_literal] = ACTIONS(2277), + [aux_sym_string_literal_token1] = ACTIONS(2277), + [sym_char_literal] = ACTIONS(2277), + [anon_sym_true] = ACTIONS(2279), + [anon_sym_false] = ACTIONS(2279), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2279), + [sym_super] = ACTIONS(2279), + [sym_crate] = ACTIONS(2279), + [sym_metavariable] = ACTIONS(2277), + [sym__raw_string_literal_start] = ACTIONS(2277), + [sym_float_literal] = ACTIONS(2277), }, [598] = { [sym_line_comment] = STATE(598), [sym_block_comment] = STATE(598), - [ts_builtin_sym_end] = ACTIONS(2143), - [sym_identifier] = ACTIONS(2145), - [anon_sym_SEMI] = ACTIONS(2143), - [anon_sym_macro_rules_BANG] = ACTIONS(2143), - [anon_sym_LPAREN] = ACTIONS(2143), - [anon_sym_LBRACK] = ACTIONS(2143), - [anon_sym_LBRACE] = ACTIONS(2143), - [anon_sym_RBRACE] = ACTIONS(2143), - [anon_sym_STAR] = ACTIONS(2143), - [anon_sym_u8] = ACTIONS(2145), - [anon_sym_i8] = ACTIONS(2145), - [anon_sym_u16] = ACTIONS(2145), - [anon_sym_i16] = ACTIONS(2145), - [anon_sym_u32] = ACTIONS(2145), - [anon_sym_i32] = ACTIONS(2145), - [anon_sym_u64] = ACTIONS(2145), - [anon_sym_i64] = ACTIONS(2145), - [anon_sym_u128] = ACTIONS(2145), - [anon_sym_i128] = ACTIONS(2145), - [anon_sym_isize] = ACTIONS(2145), - [anon_sym_usize] = ACTIONS(2145), - [anon_sym_f32] = ACTIONS(2145), - [anon_sym_f64] = ACTIONS(2145), - [anon_sym_bool] = ACTIONS(2145), - [anon_sym_str] = ACTIONS(2145), - [anon_sym_char] = ACTIONS(2145), - [anon_sym_DASH] = ACTIONS(2143), - [anon_sym_BANG] = ACTIONS(2143), - [anon_sym_AMP] = ACTIONS(2143), - [anon_sym_PIPE] = ACTIONS(2143), - [anon_sym_LT] = ACTIONS(2143), - [anon_sym_DOT_DOT] = ACTIONS(2143), - [anon_sym_COLON_COLON] = ACTIONS(2143), - [anon_sym_POUND] = ACTIONS(2143), - [anon_sym_SQUOTE] = ACTIONS(2145), - [anon_sym_async] = ACTIONS(2145), - [anon_sym_break] = ACTIONS(2145), - [anon_sym_const] = ACTIONS(2145), - [anon_sym_continue] = ACTIONS(2145), - [anon_sym_default] = ACTIONS(2145), - [anon_sym_enum] = ACTIONS(2145), - [anon_sym_fn] = ACTIONS(2145), - [anon_sym_for] = ACTIONS(2145), - [anon_sym_gen] = ACTIONS(2145), - [anon_sym_if] = ACTIONS(2145), - [anon_sym_impl] = ACTIONS(2145), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_loop] = ACTIONS(2145), - [anon_sym_match] = ACTIONS(2145), - [anon_sym_mod] = ACTIONS(2145), - [anon_sym_pub] = ACTIONS(2145), - [anon_sym_return] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_struct] = ACTIONS(2145), - [anon_sym_trait] = ACTIONS(2145), - [anon_sym_type] = ACTIONS(2145), - [anon_sym_union] = ACTIONS(2145), - [anon_sym_unsafe] = ACTIONS(2145), - [anon_sym_use] = ACTIONS(2145), - [anon_sym_while] = ACTIONS(2145), - [anon_sym_extern] = ACTIONS(2145), - [anon_sym_yield] = ACTIONS(2145), - [anon_sym_move] = ACTIONS(2145), - [anon_sym_try] = ACTIONS(2145), - [sym_integer_literal] = ACTIONS(2143), - [aux_sym_string_literal_token1] = ACTIONS(2143), - [sym_char_literal] = ACTIONS(2143), - [anon_sym_true] = ACTIONS(2145), - [anon_sym_false] = ACTIONS(2145), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2145), - [sym_super] = ACTIONS(2145), - [sym_crate] = ACTIONS(2145), - [sym_metavariable] = ACTIONS(2143), - [sym__raw_string_literal_start] = ACTIONS(2143), - [sym_float_literal] = ACTIONS(2143), + [ts_builtin_sym_end] = ACTIONS(2281), + [sym_identifier] = ACTIONS(2283), + [anon_sym_SEMI] = ACTIONS(2281), + [anon_sym_macro_rules_BANG] = ACTIONS(2281), + [anon_sym_LPAREN] = ACTIONS(2281), + [anon_sym_LBRACK] = ACTIONS(2281), + [anon_sym_LBRACE] = ACTIONS(2281), + [anon_sym_RBRACE] = ACTIONS(2281), + [anon_sym_STAR] = ACTIONS(2281), + [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), + [anon_sym_DASH] = ACTIONS(2281), + [anon_sym_BANG] = ACTIONS(2281), + [anon_sym_AMP] = ACTIONS(2281), + [anon_sym_PIPE] = ACTIONS(2281), + [anon_sym_LT] = ACTIONS(2281), + [anon_sym_DOT_DOT] = ACTIONS(2281), + [anon_sym_COLON_COLON] = ACTIONS(2281), + [anon_sym_POUND] = ACTIONS(2281), + [anon_sym_SQUOTE] = ACTIONS(2283), + [anon_sym_async] = 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_gen] = ACTIONS(2283), + [anon_sym_if] = ACTIONS(2283), + [anon_sym_impl] = ACTIONS(2283), + [anon_sym_let] = ACTIONS(2283), + [anon_sym_loop] = ACTIONS(2283), + [anon_sym_match] = ACTIONS(2283), + [anon_sym_mod] = ACTIONS(2283), + [anon_sym_pub] = ACTIONS(2283), + [anon_sym_return] = ACTIONS(2283), + [anon_sym_static] = ACTIONS(2283), + [anon_sym_struct] = ACTIONS(2283), + [anon_sym_trait] = ACTIONS(2283), + [anon_sym_type] = ACTIONS(2283), + [anon_sym_union] = ACTIONS(2283), + [anon_sym_unsafe] = ACTIONS(2283), + [anon_sym_use] = ACTIONS(2283), + [anon_sym_while] = ACTIONS(2283), + [anon_sym_extern] = ACTIONS(2283), + [anon_sym_yield] = ACTIONS(2283), + [anon_sym_move] = ACTIONS(2283), + [anon_sym_try] = ACTIONS(2283), + [sym_integer_literal] = ACTIONS(2281), + [aux_sym_string_literal_token1] = ACTIONS(2281), + [sym_char_literal] = ACTIONS(2281), + [anon_sym_true] = ACTIONS(2283), + [anon_sym_false] = ACTIONS(2283), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2283), + [sym_super] = ACTIONS(2283), + [sym_crate] = ACTIONS(2283), + [sym_metavariable] = ACTIONS(2281), + [sym__raw_string_literal_start] = ACTIONS(2281), + [sym_float_literal] = ACTIONS(2281), }, [599] = { [sym_line_comment] = STATE(599), [sym_block_comment] = STATE(599), - [ts_builtin_sym_end] = ACTIONS(2147), - [sym_identifier] = ACTIONS(2149), - [anon_sym_SEMI] = ACTIONS(2147), - [anon_sym_macro_rules_BANG] = ACTIONS(2147), - [anon_sym_LPAREN] = ACTIONS(2147), - [anon_sym_LBRACK] = ACTIONS(2147), - [anon_sym_LBRACE] = ACTIONS(2147), - [anon_sym_RBRACE] = ACTIONS(2147), - [anon_sym_STAR] = ACTIONS(2147), - [anon_sym_u8] = ACTIONS(2149), - [anon_sym_i8] = ACTIONS(2149), - [anon_sym_u16] = ACTIONS(2149), - [anon_sym_i16] = ACTIONS(2149), - [anon_sym_u32] = ACTIONS(2149), - [anon_sym_i32] = ACTIONS(2149), - [anon_sym_u64] = ACTIONS(2149), - [anon_sym_i64] = ACTIONS(2149), - [anon_sym_u128] = ACTIONS(2149), - [anon_sym_i128] = ACTIONS(2149), - [anon_sym_isize] = ACTIONS(2149), - [anon_sym_usize] = ACTIONS(2149), - [anon_sym_f32] = ACTIONS(2149), - [anon_sym_f64] = ACTIONS(2149), - [anon_sym_bool] = ACTIONS(2149), - [anon_sym_str] = ACTIONS(2149), - [anon_sym_char] = ACTIONS(2149), - [anon_sym_DASH] = ACTIONS(2147), - [anon_sym_BANG] = ACTIONS(2147), - [anon_sym_AMP] = ACTIONS(2147), - [anon_sym_PIPE] = ACTIONS(2147), - [anon_sym_LT] = ACTIONS(2147), - [anon_sym_DOT_DOT] = ACTIONS(2147), - [anon_sym_COLON_COLON] = ACTIONS(2147), - [anon_sym_POUND] = ACTIONS(2147), - [anon_sym_SQUOTE] = ACTIONS(2149), - [anon_sym_async] = ACTIONS(2149), - [anon_sym_break] = ACTIONS(2149), - [anon_sym_const] = ACTIONS(2149), - [anon_sym_continue] = ACTIONS(2149), - [anon_sym_default] = ACTIONS(2149), - [anon_sym_enum] = ACTIONS(2149), - [anon_sym_fn] = ACTIONS(2149), - [anon_sym_for] = ACTIONS(2149), - [anon_sym_gen] = ACTIONS(2149), - [anon_sym_if] = ACTIONS(2149), - [anon_sym_impl] = ACTIONS(2149), - [anon_sym_let] = ACTIONS(2149), - [anon_sym_loop] = ACTIONS(2149), - [anon_sym_match] = ACTIONS(2149), - [anon_sym_mod] = ACTIONS(2149), - [anon_sym_pub] = ACTIONS(2149), - [anon_sym_return] = ACTIONS(2149), - [anon_sym_static] = ACTIONS(2149), - [anon_sym_struct] = ACTIONS(2149), - [anon_sym_trait] = ACTIONS(2149), - [anon_sym_type] = ACTIONS(2149), - [anon_sym_union] = ACTIONS(2149), - [anon_sym_unsafe] = ACTIONS(2149), - [anon_sym_use] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2149), - [anon_sym_extern] = ACTIONS(2149), - [anon_sym_yield] = ACTIONS(2149), - [anon_sym_move] = ACTIONS(2149), - [anon_sym_try] = ACTIONS(2149), - [sym_integer_literal] = ACTIONS(2147), - [aux_sym_string_literal_token1] = ACTIONS(2147), - [sym_char_literal] = ACTIONS(2147), - [anon_sym_true] = ACTIONS(2149), - [anon_sym_false] = ACTIONS(2149), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2149), - [sym_super] = ACTIONS(2149), - [sym_crate] = ACTIONS(2149), - [sym_metavariable] = ACTIONS(2147), - [sym__raw_string_literal_start] = ACTIONS(2147), - [sym_float_literal] = ACTIONS(2147), + [ts_builtin_sym_end] = ACTIONS(2285), + [sym_identifier] = ACTIONS(2287), + [anon_sym_SEMI] = ACTIONS(2285), + [anon_sym_macro_rules_BANG] = ACTIONS(2285), + [anon_sym_LPAREN] = ACTIONS(2285), + [anon_sym_LBRACK] = ACTIONS(2285), + [anon_sym_LBRACE] = ACTIONS(2285), + [anon_sym_RBRACE] = ACTIONS(2285), + [anon_sym_STAR] = ACTIONS(2285), + [anon_sym_u8] = ACTIONS(2287), + [anon_sym_i8] = ACTIONS(2287), + [anon_sym_u16] = ACTIONS(2287), + [anon_sym_i16] = ACTIONS(2287), + [anon_sym_u32] = ACTIONS(2287), + [anon_sym_i32] = ACTIONS(2287), + [anon_sym_u64] = ACTIONS(2287), + [anon_sym_i64] = ACTIONS(2287), + [anon_sym_u128] = ACTIONS(2287), + [anon_sym_i128] = ACTIONS(2287), + [anon_sym_isize] = ACTIONS(2287), + [anon_sym_usize] = ACTIONS(2287), + [anon_sym_f32] = ACTIONS(2287), + [anon_sym_f64] = ACTIONS(2287), + [anon_sym_bool] = ACTIONS(2287), + [anon_sym_str] = ACTIONS(2287), + [anon_sym_char] = ACTIONS(2287), + [anon_sym_DASH] = ACTIONS(2285), + [anon_sym_BANG] = ACTIONS(2285), + [anon_sym_AMP] = ACTIONS(2285), + [anon_sym_PIPE] = ACTIONS(2285), + [anon_sym_LT] = ACTIONS(2285), + [anon_sym_DOT_DOT] = ACTIONS(2285), + [anon_sym_COLON_COLON] = ACTIONS(2285), + [anon_sym_POUND] = ACTIONS(2285), + [anon_sym_SQUOTE] = ACTIONS(2287), + [anon_sym_async] = ACTIONS(2287), + [anon_sym_break] = ACTIONS(2287), + [anon_sym_const] = ACTIONS(2287), + [anon_sym_continue] = ACTIONS(2287), + [anon_sym_default] = ACTIONS(2287), + [anon_sym_enum] = ACTIONS(2287), + [anon_sym_fn] = ACTIONS(2287), + [anon_sym_for] = ACTIONS(2287), + [anon_sym_gen] = ACTIONS(2287), + [anon_sym_if] = ACTIONS(2287), + [anon_sym_impl] = ACTIONS(2287), + [anon_sym_let] = ACTIONS(2287), + [anon_sym_loop] = ACTIONS(2287), + [anon_sym_match] = ACTIONS(2287), + [anon_sym_mod] = ACTIONS(2287), + [anon_sym_pub] = ACTIONS(2287), + [anon_sym_return] = ACTIONS(2287), + [anon_sym_static] = ACTIONS(2287), + [anon_sym_struct] = ACTIONS(2287), + [anon_sym_trait] = ACTIONS(2287), + [anon_sym_type] = ACTIONS(2287), + [anon_sym_union] = ACTIONS(2287), + [anon_sym_unsafe] = ACTIONS(2287), + [anon_sym_use] = ACTIONS(2287), + [anon_sym_while] = ACTIONS(2287), + [anon_sym_extern] = ACTIONS(2287), + [anon_sym_yield] = ACTIONS(2287), + [anon_sym_move] = ACTIONS(2287), + [anon_sym_try] = ACTIONS(2287), + [sym_integer_literal] = ACTIONS(2285), + [aux_sym_string_literal_token1] = ACTIONS(2285), + [sym_char_literal] = ACTIONS(2285), + [anon_sym_true] = ACTIONS(2287), + [anon_sym_false] = ACTIONS(2287), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2287), + [sym_super] = ACTIONS(2287), + [sym_crate] = ACTIONS(2287), + [sym_metavariable] = ACTIONS(2285), + [sym__raw_string_literal_start] = ACTIONS(2285), + [sym_float_literal] = ACTIONS(2285), }, [600] = { [sym_line_comment] = STATE(600), [sym_block_comment] = STATE(600), - [ts_builtin_sym_end] = ACTIONS(2151), - [sym_identifier] = ACTIONS(2153), - [anon_sym_SEMI] = ACTIONS(2151), - [anon_sym_macro_rules_BANG] = ACTIONS(2151), - [anon_sym_LPAREN] = ACTIONS(2151), - [anon_sym_LBRACK] = ACTIONS(2151), - [anon_sym_LBRACE] = ACTIONS(2151), - [anon_sym_RBRACE] = ACTIONS(2151), - [anon_sym_STAR] = ACTIONS(2151), - [anon_sym_u8] = ACTIONS(2153), - [anon_sym_i8] = ACTIONS(2153), - [anon_sym_u16] = ACTIONS(2153), - [anon_sym_i16] = ACTIONS(2153), - [anon_sym_u32] = ACTIONS(2153), - [anon_sym_i32] = ACTIONS(2153), - [anon_sym_u64] = ACTIONS(2153), - [anon_sym_i64] = ACTIONS(2153), - [anon_sym_u128] = ACTIONS(2153), - [anon_sym_i128] = ACTIONS(2153), - [anon_sym_isize] = ACTIONS(2153), - [anon_sym_usize] = ACTIONS(2153), - [anon_sym_f32] = ACTIONS(2153), - [anon_sym_f64] = ACTIONS(2153), - [anon_sym_bool] = ACTIONS(2153), - [anon_sym_str] = ACTIONS(2153), - [anon_sym_char] = ACTIONS(2153), - [anon_sym_DASH] = ACTIONS(2151), - [anon_sym_BANG] = ACTIONS(2151), - [anon_sym_AMP] = ACTIONS(2151), - [anon_sym_PIPE] = ACTIONS(2151), - [anon_sym_LT] = ACTIONS(2151), - [anon_sym_DOT_DOT] = ACTIONS(2151), - [anon_sym_COLON_COLON] = ACTIONS(2151), - [anon_sym_POUND] = ACTIONS(2151), - [anon_sym_SQUOTE] = ACTIONS(2153), - [anon_sym_async] = ACTIONS(2153), - [anon_sym_break] = ACTIONS(2153), - [anon_sym_const] = ACTIONS(2153), - [anon_sym_continue] = ACTIONS(2153), - [anon_sym_default] = ACTIONS(2153), - [anon_sym_enum] = ACTIONS(2153), - [anon_sym_fn] = ACTIONS(2153), - [anon_sym_for] = ACTIONS(2153), - [anon_sym_gen] = ACTIONS(2153), - [anon_sym_if] = ACTIONS(2153), - [anon_sym_impl] = ACTIONS(2153), - [anon_sym_let] = ACTIONS(2153), - [anon_sym_loop] = ACTIONS(2153), - [anon_sym_match] = ACTIONS(2153), - [anon_sym_mod] = ACTIONS(2153), - [anon_sym_pub] = ACTIONS(2153), - [anon_sym_return] = ACTIONS(2153), - [anon_sym_static] = ACTIONS(2153), - [anon_sym_struct] = ACTIONS(2153), - [anon_sym_trait] = ACTIONS(2153), - [anon_sym_type] = ACTIONS(2153), - [anon_sym_union] = ACTIONS(2153), - [anon_sym_unsafe] = ACTIONS(2153), - [anon_sym_use] = ACTIONS(2153), - [anon_sym_while] = ACTIONS(2153), - [anon_sym_extern] = ACTIONS(2153), - [anon_sym_yield] = ACTIONS(2153), - [anon_sym_move] = ACTIONS(2153), - [anon_sym_try] = ACTIONS(2153), - [sym_integer_literal] = ACTIONS(2151), - [aux_sym_string_literal_token1] = ACTIONS(2151), - [sym_char_literal] = ACTIONS(2151), - [anon_sym_true] = ACTIONS(2153), - [anon_sym_false] = ACTIONS(2153), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2153), - [sym_super] = ACTIONS(2153), - [sym_crate] = ACTIONS(2153), - [sym_metavariable] = ACTIONS(2151), - [sym__raw_string_literal_start] = ACTIONS(2151), - [sym_float_literal] = ACTIONS(2151), + [ts_builtin_sym_end] = ACTIONS(1445), + [sym_identifier] = ACTIONS(1447), + [anon_sym_SEMI] = ACTIONS(1445), + [anon_sym_macro_rules_BANG] = ACTIONS(1445), + [anon_sym_LPAREN] = ACTIONS(1445), + [anon_sym_LBRACK] = ACTIONS(1445), + [anon_sym_LBRACE] = ACTIONS(1445), + [anon_sym_RBRACE] = ACTIONS(1445), + [anon_sym_STAR] = ACTIONS(1445), + [anon_sym_u8] = ACTIONS(1447), + [anon_sym_i8] = ACTIONS(1447), + [anon_sym_u16] = ACTIONS(1447), + [anon_sym_i16] = ACTIONS(1447), + [anon_sym_u32] = ACTIONS(1447), + [anon_sym_i32] = ACTIONS(1447), + [anon_sym_u64] = ACTIONS(1447), + [anon_sym_i64] = ACTIONS(1447), + [anon_sym_u128] = ACTIONS(1447), + [anon_sym_i128] = ACTIONS(1447), + [anon_sym_isize] = ACTIONS(1447), + [anon_sym_usize] = ACTIONS(1447), + [anon_sym_f32] = ACTIONS(1447), + [anon_sym_f64] = ACTIONS(1447), + [anon_sym_bool] = ACTIONS(1447), + [anon_sym_str] = ACTIONS(1447), + [anon_sym_char] = ACTIONS(1447), + [anon_sym_DASH] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(1445), + [anon_sym_AMP] = ACTIONS(1445), + [anon_sym_PIPE] = ACTIONS(1445), + [anon_sym_LT] = ACTIONS(1445), + [anon_sym_DOT_DOT] = ACTIONS(1445), + [anon_sym_COLON_COLON] = ACTIONS(1445), + [anon_sym_POUND] = ACTIONS(1445), + [anon_sym_SQUOTE] = ACTIONS(1447), + [anon_sym_async] = ACTIONS(1447), + [anon_sym_break] = ACTIONS(1447), + [anon_sym_const] = ACTIONS(1447), + [anon_sym_continue] = ACTIONS(1447), + [anon_sym_default] = ACTIONS(1447), + [anon_sym_enum] = ACTIONS(1447), + [anon_sym_fn] = ACTIONS(1447), + [anon_sym_for] = ACTIONS(1447), + [anon_sym_gen] = ACTIONS(1447), + [anon_sym_if] = ACTIONS(1447), + [anon_sym_impl] = ACTIONS(1447), + [anon_sym_let] = ACTIONS(1447), + [anon_sym_loop] = ACTIONS(1447), + [anon_sym_match] = ACTIONS(1447), + [anon_sym_mod] = ACTIONS(1447), + [anon_sym_pub] = ACTIONS(1447), + [anon_sym_return] = ACTIONS(1447), + [anon_sym_static] = ACTIONS(1447), + [anon_sym_struct] = ACTIONS(1447), + [anon_sym_trait] = ACTIONS(1447), + [anon_sym_type] = ACTIONS(1447), + [anon_sym_union] = ACTIONS(1447), + [anon_sym_unsafe] = ACTIONS(1447), + [anon_sym_use] = ACTIONS(1447), + [anon_sym_while] = ACTIONS(1447), + [anon_sym_extern] = ACTIONS(1447), + [anon_sym_yield] = ACTIONS(1447), + [anon_sym_move] = ACTIONS(1447), + [anon_sym_try] = ACTIONS(1447), + [sym_integer_literal] = ACTIONS(1445), + [aux_sym_string_literal_token1] = ACTIONS(1445), + [sym_char_literal] = ACTIONS(1445), + [anon_sym_true] = ACTIONS(1447), + [anon_sym_false] = ACTIONS(1447), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1447), + [sym_super] = ACTIONS(1447), + [sym_crate] = ACTIONS(1447), + [sym_metavariable] = ACTIONS(1445), + [sym__raw_string_literal_start] = ACTIONS(1445), + [sym_float_literal] = ACTIONS(1445), }, [601] = { [sym_line_comment] = STATE(601), [sym_block_comment] = STATE(601), - [ts_builtin_sym_end] = ACTIONS(2155), - [sym_identifier] = ACTIONS(2157), - [anon_sym_SEMI] = ACTIONS(2155), - [anon_sym_macro_rules_BANG] = ACTIONS(2155), - [anon_sym_LPAREN] = ACTIONS(2155), - [anon_sym_LBRACK] = ACTIONS(2155), - [anon_sym_LBRACE] = ACTIONS(2155), - [anon_sym_RBRACE] = ACTIONS(2155), - [anon_sym_STAR] = ACTIONS(2155), - [anon_sym_u8] = ACTIONS(2157), - [anon_sym_i8] = ACTIONS(2157), - [anon_sym_u16] = ACTIONS(2157), - [anon_sym_i16] = ACTIONS(2157), - [anon_sym_u32] = ACTIONS(2157), - [anon_sym_i32] = ACTIONS(2157), - [anon_sym_u64] = ACTIONS(2157), - [anon_sym_i64] = ACTIONS(2157), - [anon_sym_u128] = ACTIONS(2157), - [anon_sym_i128] = ACTIONS(2157), - [anon_sym_isize] = ACTIONS(2157), - [anon_sym_usize] = ACTIONS(2157), - [anon_sym_f32] = ACTIONS(2157), - [anon_sym_f64] = ACTIONS(2157), - [anon_sym_bool] = ACTIONS(2157), - [anon_sym_str] = ACTIONS(2157), - [anon_sym_char] = ACTIONS(2157), - [anon_sym_DASH] = ACTIONS(2155), - [anon_sym_BANG] = ACTIONS(2155), - [anon_sym_AMP] = ACTIONS(2155), - [anon_sym_PIPE] = ACTIONS(2155), - [anon_sym_LT] = ACTIONS(2155), - [anon_sym_DOT_DOT] = ACTIONS(2155), - [anon_sym_COLON_COLON] = ACTIONS(2155), - [anon_sym_POUND] = ACTIONS(2155), - [anon_sym_SQUOTE] = ACTIONS(2157), - [anon_sym_async] = ACTIONS(2157), - [anon_sym_break] = ACTIONS(2157), - [anon_sym_const] = ACTIONS(2157), - [anon_sym_continue] = ACTIONS(2157), - [anon_sym_default] = ACTIONS(2157), - [anon_sym_enum] = ACTIONS(2157), - [anon_sym_fn] = ACTIONS(2157), - [anon_sym_for] = ACTIONS(2157), - [anon_sym_gen] = ACTIONS(2157), - [anon_sym_if] = ACTIONS(2157), - [anon_sym_impl] = ACTIONS(2157), - [anon_sym_let] = ACTIONS(2157), - [anon_sym_loop] = ACTIONS(2157), - [anon_sym_match] = ACTIONS(2157), - [anon_sym_mod] = ACTIONS(2157), - [anon_sym_pub] = ACTIONS(2157), - [anon_sym_return] = ACTIONS(2157), - [anon_sym_static] = ACTIONS(2157), - [anon_sym_struct] = ACTIONS(2157), - [anon_sym_trait] = ACTIONS(2157), - [anon_sym_type] = ACTIONS(2157), - [anon_sym_union] = ACTIONS(2157), - [anon_sym_unsafe] = ACTIONS(2157), - [anon_sym_use] = ACTIONS(2157), - [anon_sym_while] = ACTIONS(2157), - [anon_sym_extern] = ACTIONS(2157), - [anon_sym_yield] = ACTIONS(2157), - [anon_sym_move] = ACTIONS(2157), - [anon_sym_try] = ACTIONS(2157), - [sym_integer_literal] = ACTIONS(2155), - [aux_sym_string_literal_token1] = ACTIONS(2155), - [sym_char_literal] = ACTIONS(2155), - [anon_sym_true] = ACTIONS(2157), - [anon_sym_false] = ACTIONS(2157), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2157), - [sym_super] = ACTIONS(2157), - [sym_crate] = ACTIONS(2157), - [sym_metavariable] = ACTIONS(2155), - [sym__raw_string_literal_start] = ACTIONS(2155), - [sym_float_literal] = ACTIONS(2155), + [ts_builtin_sym_end] = ACTIONS(2289), + [sym_identifier] = ACTIONS(2291), + [anon_sym_SEMI] = ACTIONS(2289), + [anon_sym_macro_rules_BANG] = ACTIONS(2289), + [anon_sym_LPAREN] = ACTIONS(2289), + [anon_sym_LBRACK] = ACTIONS(2289), + [anon_sym_LBRACE] = ACTIONS(2289), + [anon_sym_RBRACE] = ACTIONS(2289), + [anon_sym_STAR] = ACTIONS(2289), + [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), + [anon_sym_DASH] = ACTIONS(2289), + [anon_sym_BANG] = ACTIONS(2289), + [anon_sym_AMP] = ACTIONS(2289), + [anon_sym_PIPE] = ACTIONS(2289), + [anon_sym_LT] = ACTIONS(2289), + [anon_sym_DOT_DOT] = ACTIONS(2289), + [anon_sym_COLON_COLON] = ACTIONS(2289), + [anon_sym_POUND] = ACTIONS(2289), + [anon_sym_SQUOTE] = ACTIONS(2291), + [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2291), + [anon_sym_extern] = ACTIONS(2291), + [anon_sym_yield] = ACTIONS(2291), + [anon_sym_move] = ACTIONS(2291), + [anon_sym_try] = ACTIONS(2291), + [sym_integer_literal] = ACTIONS(2289), + [aux_sym_string_literal_token1] = ACTIONS(2289), + [sym_char_literal] = ACTIONS(2289), + [anon_sym_true] = ACTIONS(2291), + [anon_sym_false] = ACTIONS(2291), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2291), + [sym_super] = ACTIONS(2291), + [sym_crate] = ACTIONS(2291), + [sym_metavariable] = ACTIONS(2289), + [sym__raw_string_literal_start] = ACTIONS(2289), + [sym_float_literal] = ACTIONS(2289), }, [602] = { [sym_line_comment] = STATE(602), [sym_block_comment] = STATE(602), - [ts_builtin_sym_end] = ACTIONS(2159), - [sym_identifier] = ACTIONS(2161), - [anon_sym_SEMI] = ACTIONS(2159), - [anon_sym_macro_rules_BANG] = ACTIONS(2159), - [anon_sym_LPAREN] = ACTIONS(2159), - [anon_sym_LBRACK] = ACTIONS(2159), - [anon_sym_LBRACE] = ACTIONS(2159), - [anon_sym_RBRACE] = ACTIONS(2159), - [anon_sym_STAR] = ACTIONS(2159), - [anon_sym_u8] = ACTIONS(2161), - [anon_sym_i8] = ACTIONS(2161), - [anon_sym_u16] = ACTIONS(2161), - [anon_sym_i16] = ACTIONS(2161), - [anon_sym_u32] = ACTIONS(2161), - [anon_sym_i32] = ACTIONS(2161), - [anon_sym_u64] = ACTIONS(2161), - [anon_sym_i64] = ACTIONS(2161), - [anon_sym_u128] = ACTIONS(2161), - [anon_sym_i128] = ACTIONS(2161), - [anon_sym_isize] = ACTIONS(2161), - [anon_sym_usize] = ACTIONS(2161), - [anon_sym_f32] = ACTIONS(2161), - [anon_sym_f64] = ACTIONS(2161), - [anon_sym_bool] = ACTIONS(2161), - [anon_sym_str] = ACTIONS(2161), - [anon_sym_char] = ACTIONS(2161), - [anon_sym_DASH] = ACTIONS(2159), - [anon_sym_BANG] = ACTIONS(2159), - [anon_sym_AMP] = ACTIONS(2159), - [anon_sym_PIPE] = ACTIONS(2159), - [anon_sym_LT] = ACTIONS(2159), - [anon_sym_DOT_DOT] = ACTIONS(2159), - [anon_sym_COLON_COLON] = ACTIONS(2159), - [anon_sym_POUND] = ACTIONS(2159), - [anon_sym_SQUOTE] = ACTIONS(2161), - [anon_sym_async] = ACTIONS(2161), - [anon_sym_break] = ACTIONS(2161), - [anon_sym_const] = ACTIONS(2161), - [anon_sym_continue] = ACTIONS(2161), - [anon_sym_default] = ACTIONS(2161), - [anon_sym_enum] = ACTIONS(2161), - [anon_sym_fn] = ACTIONS(2161), - [anon_sym_for] = ACTIONS(2161), - [anon_sym_gen] = ACTIONS(2161), - [anon_sym_if] = ACTIONS(2161), - [anon_sym_impl] = ACTIONS(2161), - [anon_sym_let] = ACTIONS(2161), - [anon_sym_loop] = ACTIONS(2161), - [anon_sym_match] = ACTIONS(2161), - [anon_sym_mod] = ACTIONS(2161), - [anon_sym_pub] = ACTIONS(2161), - [anon_sym_return] = ACTIONS(2161), - [anon_sym_static] = ACTIONS(2161), - [anon_sym_struct] = ACTIONS(2161), - [anon_sym_trait] = ACTIONS(2161), - [anon_sym_type] = ACTIONS(2161), - [anon_sym_union] = ACTIONS(2161), - [anon_sym_unsafe] = ACTIONS(2161), - [anon_sym_use] = ACTIONS(2161), - [anon_sym_while] = ACTIONS(2161), - [anon_sym_extern] = ACTIONS(2161), - [anon_sym_yield] = ACTIONS(2161), - [anon_sym_move] = ACTIONS(2161), - [anon_sym_try] = ACTIONS(2161), - [sym_integer_literal] = ACTIONS(2159), - [aux_sym_string_literal_token1] = ACTIONS(2159), - [sym_char_literal] = ACTIONS(2159), - [anon_sym_true] = ACTIONS(2161), - [anon_sym_false] = ACTIONS(2161), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2161), - [sym_super] = ACTIONS(2161), - [sym_crate] = ACTIONS(2161), - [sym_metavariable] = ACTIONS(2159), - [sym__raw_string_literal_start] = ACTIONS(2159), - [sym_float_literal] = ACTIONS(2159), + [ts_builtin_sym_end] = ACTIONS(2293), + [sym_identifier] = ACTIONS(2295), + [anon_sym_SEMI] = ACTIONS(2293), + [anon_sym_macro_rules_BANG] = ACTIONS(2293), + [anon_sym_LPAREN] = ACTIONS(2293), + [anon_sym_LBRACK] = ACTIONS(2293), + [anon_sym_LBRACE] = ACTIONS(2293), + [anon_sym_RBRACE] = ACTIONS(2293), + [anon_sym_STAR] = ACTIONS(2293), + [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), + [anon_sym_DASH] = ACTIONS(2293), + [anon_sym_BANG] = ACTIONS(2293), + [anon_sym_AMP] = ACTIONS(2293), + [anon_sym_PIPE] = ACTIONS(2293), + [anon_sym_LT] = ACTIONS(2293), + [anon_sym_DOT_DOT] = ACTIONS(2293), + [anon_sym_COLON_COLON] = ACTIONS(2293), + [anon_sym_POUND] = ACTIONS(2293), + [anon_sym_SQUOTE] = ACTIONS(2295), + [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2295), + [anon_sym_extern] = ACTIONS(2295), + [anon_sym_yield] = ACTIONS(2295), + [anon_sym_move] = ACTIONS(2295), + [anon_sym_try] = ACTIONS(2295), + [sym_integer_literal] = ACTIONS(2293), + [aux_sym_string_literal_token1] = ACTIONS(2293), + [sym_char_literal] = ACTIONS(2293), + [anon_sym_true] = ACTIONS(2295), + [anon_sym_false] = ACTIONS(2295), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2295), + [sym_super] = ACTIONS(2295), + [sym_crate] = ACTIONS(2295), + [sym_metavariable] = ACTIONS(2293), + [sym__raw_string_literal_start] = ACTIONS(2293), + [sym_float_literal] = ACTIONS(2293), }, [603] = { [sym_line_comment] = STATE(603), [sym_block_comment] = STATE(603), - [ts_builtin_sym_end] = ACTIONS(2163), - [sym_identifier] = ACTIONS(2165), - [anon_sym_SEMI] = ACTIONS(2163), - [anon_sym_macro_rules_BANG] = ACTIONS(2163), - [anon_sym_LPAREN] = ACTIONS(2163), - [anon_sym_LBRACK] = ACTIONS(2163), - [anon_sym_LBRACE] = ACTIONS(2163), - [anon_sym_RBRACE] = ACTIONS(2163), - [anon_sym_STAR] = ACTIONS(2163), - [anon_sym_u8] = ACTIONS(2165), - [anon_sym_i8] = ACTIONS(2165), - [anon_sym_u16] = ACTIONS(2165), - [anon_sym_i16] = ACTIONS(2165), - [anon_sym_u32] = ACTIONS(2165), - [anon_sym_i32] = ACTIONS(2165), - [anon_sym_u64] = ACTIONS(2165), - [anon_sym_i64] = ACTIONS(2165), - [anon_sym_u128] = ACTIONS(2165), - [anon_sym_i128] = ACTIONS(2165), - [anon_sym_isize] = ACTIONS(2165), - [anon_sym_usize] = ACTIONS(2165), - [anon_sym_f32] = ACTIONS(2165), - [anon_sym_f64] = ACTIONS(2165), - [anon_sym_bool] = ACTIONS(2165), - [anon_sym_str] = ACTIONS(2165), - [anon_sym_char] = ACTIONS(2165), - [anon_sym_DASH] = ACTIONS(2163), - [anon_sym_BANG] = ACTIONS(2163), - [anon_sym_AMP] = ACTIONS(2163), - [anon_sym_PIPE] = ACTIONS(2163), - [anon_sym_LT] = ACTIONS(2163), - [anon_sym_DOT_DOT] = ACTIONS(2163), - [anon_sym_COLON_COLON] = ACTIONS(2163), - [anon_sym_POUND] = ACTIONS(2163), - [anon_sym_SQUOTE] = ACTIONS(2165), - [anon_sym_async] = ACTIONS(2165), - [anon_sym_break] = ACTIONS(2165), - [anon_sym_const] = ACTIONS(2165), - [anon_sym_continue] = ACTIONS(2165), - [anon_sym_default] = ACTIONS(2165), - [anon_sym_enum] = ACTIONS(2165), - [anon_sym_fn] = ACTIONS(2165), - [anon_sym_for] = ACTIONS(2165), - [anon_sym_gen] = ACTIONS(2165), - [anon_sym_if] = ACTIONS(2165), - [anon_sym_impl] = ACTIONS(2165), - [anon_sym_let] = ACTIONS(2165), - [anon_sym_loop] = ACTIONS(2165), - [anon_sym_match] = ACTIONS(2165), - [anon_sym_mod] = ACTIONS(2165), - [anon_sym_pub] = ACTIONS(2165), - [anon_sym_return] = ACTIONS(2165), - [anon_sym_static] = ACTIONS(2165), - [anon_sym_struct] = ACTIONS(2165), - [anon_sym_trait] = ACTIONS(2165), - [anon_sym_type] = ACTIONS(2165), - [anon_sym_union] = ACTIONS(2165), - [anon_sym_unsafe] = ACTIONS(2165), - [anon_sym_use] = ACTIONS(2165), - [anon_sym_while] = ACTIONS(2165), - [anon_sym_extern] = ACTIONS(2165), - [anon_sym_yield] = ACTIONS(2165), - [anon_sym_move] = ACTIONS(2165), - [anon_sym_try] = ACTIONS(2165), - [sym_integer_literal] = ACTIONS(2163), - [aux_sym_string_literal_token1] = ACTIONS(2163), - [sym_char_literal] = ACTIONS(2163), - [anon_sym_true] = ACTIONS(2165), - [anon_sym_false] = ACTIONS(2165), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2165), - [sym_super] = ACTIONS(2165), - [sym_crate] = ACTIONS(2165), - [sym_metavariable] = ACTIONS(2163), - [sym__raw_string_literal_start] = ACTIONS(2163), - [sym_float_literal] = ACTIONS(2163), + [ts_builtin_sym_end] = ACTIONS(2297), + [sym_identifier] = ACTIONS(2299), + [anon_sym_SEMI] = ACTIONS(2297), + [anon_sym_macro_rules_BANG] = ACTIONS(2297), + [anon_sym_LPAREN] = ACTIONS(2297), + [anon_sym_LBRACK] = ACTIONS(2297), + [anon_sym_LBRACE] = ACTIONS(2297), + [anon_sym_RBRACE] = ACTIONS(2297), + [anon_sym_STAR] = ACTIONS(2297), + [anon_sym_u8] = ACTIONS(2299), + [anon_sym_i8] = ACTIONS(2299), + [anon_sym_u16] = ACTIONS(2299), + [anon_sym_i16] = ACTIONS(2299), + [anon_sym_u32] = ACTIONS(2299), + [anon_sym_i32] = ACTIONS(2299), + [anon_sym_u64] = ACTIONS(2299), + [anon_sym_i64] = ACTIONS(2299), + [anon_sym_u128] = ACTIONS(2299), + [anon_sym_i128] = ACTIONS(2299), + [anon_sym_isize] = ACTIONS(2299), + [anon_sym_usize] = ACTIONS(2299), + [anon_sym_f32] = ACTIONS(2299), + [anon_sym_f64] = ACTIONS(2299), + [anon_sym_bool] = ACTIONS(2299), + [anon_sym_str] = ACTIONS(2299), + [anon_sym_char] = ACTIONS(2299), + [anon_sym_DASH] = ACTIONS(2297), + [anon_sym_BANG] = ACTIONS(2297), + [anon_sym_AMP] = ACTIONS(2297), + [anon_sym_PIPE] = ACTIONS(2297), + [anon_sym_LT] = ACTIONS(2297), + [anon_sym_DOT_DOT] = ACTIONS(2297), + [anon_sym_COLON_COLON] = ACTIONS(2297), + [anon_sym_POUND] = ACTIONS(2297), + [anon_sym_SQUOTE] = ACTIONS(2299), + [anon_sym_async] = ACTIONS(2299), + [anon_sym_break] = ACTIONS(2299), + [anon_sym_const] = ACTIONS(2299), + [anon_sym_continue] = ACTIONS(2299), + [anon_sym_default] = ACTIONS(2299), + [anon_sym_enum] = ACTIONS(2299), + [anon_sym_fn] = ACTIONS(2299), + [anon_sym_for] = ACTIONS(2299), + [anon_sym_gen] = ACTIONS(2299), + [anon_sym_if] = ACTIONS(2299), + [anon_sym_impl] = ACTIONS(2299), + [anon_sym_let] = ACTIONS(2299), + [anon_sym_loop] = ACTIONS(2299), + [anon_sym_match] = ACTIONS(2299), + [anon_sym_mod] = ACTIONS(2299), + [anon_sym_pub] = ACTIONS(2299), + [anon_sym_return] = ACTIONS(2299), + [anon_sym_static] = ACTIONS(2299), + [anon_sym_struct] = ACTIONS(2299), + [anon_sym_trait] = ACTIONS(2299), + [anon_sym_type] = ACTIONS(2299), + [anon_sym_union] = ACTIONS(2299), + [anon_sym_unsafe] = ACTIONS(2299), + [anon_sym_use] = ACTIONS(2299), + [anon_sym_while] = ACTIONS(2299), + [anon_sym_extern] = ACTIONS(2299), + [anon_sym_yield] = ACTIONS(2299), + [anon_sym_move] = ACTIONS(2299), + [anon_sym_try] = ACTIONS(2299), + [sym_integer_literal] = ACTIONS(2297), + [aux_sym_string_literal_token1] = ACTIONS(2297), + [sym_char_literal] = ACTIONS(2297), + [anon_sym_true] = ACTIONS(2299), + [anon_sym_false] = ACTIONS(2299), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2299), + [sym_super] = ACTIONS(2299), + [sym_crate] = ACTIONS(2299), + [sym_metavariable] = ACTIONS(2297), + [sym__raw_string_literal_start] = ACTIONS(2297), + [sym_float_literal] = ACTIONS(2297), }, [604] = { [sym_line_comment] = STATE(604), [sym_block_comment] = STATE(604), - [ts_builtin_sym_end] = ACTIONS(2167), - [sym_identifier] = ACTIONS(2169), - [anon_sym_SEMI] = ACTIONS(2167), - [anon_sym_macro_rules_BANG] = ACTIONS(2167), - [anon_sym_LPAREN] = ACTIONS(2167), - [anon_sym_LBRACK] = ACTIONS(2167), - [anon_sym_LBRACE] = ACTIONS(2167), - [anon_sym_RBRACE] = ACTIONS(2167), - [anon_sym_STAR] = ACTIONS(2167), - [anon_sym_u8] = ACTIONS(2169), - [anon_sym_i8] = ACTIONS(2169), - [anon_sym_u16] = ACTIONS(2169), - [anon_sym_i16] = ACTIONS(2169), - [anon_sym_u32] = ACTIONS(2169), - [anon_sym_i32] = ACTIONS(2169), - [anon_sym_u64] = ACTIONS(2169), - [anon_sym_i64] = ACTIONS(2169), - [anon_sym_u128] = ACTIONS(2169), - [anon_sym_i128] = ACTIONS(2169), - [anon_sym_isize] = ACTIONS(2169), - [anon_sym_usize] = ACTIONS(2169), - [anon_sym_f32] = ACTIONS(2169), - [anon_sym_f64] = ACTIONS(2169), - [anon_sym_bool] = ACTIONS(2169), - [anon_sym_str] = ACTIONS(2169), - [anon_sym_char] = ACTIONS(2169), - [anon_sym_DASH] = ACTIONS(2167), - [anon_sym_BANG] = ACTIONS(2167), - [anon_sym_AMP] = ACTIONS(2167), - [anon_sym_PIPE] = ACTIONS(2167), - [anon_sym_LT] = ACTIONS(2167), - [anon_sym_DOT_DOT] = ACTIONS(2167), - [anon_sym_COLON_COLON] = ACTIONS(2167), - [anon_sym_POUND] = ACTIONS(2167), - [anon_sym_SQUOTE] = ACTIONS(2169), - [anon_sym_async] = ACTIONS(2169), - [anon_sym_break] = ACTIONS(2169), - [anon_sym_const] = ACTIONS(2169), - [anon_sym_continue] = ACTIONS(2169), - [anon_sym_default] = ACTIONS(2169), - [anon_sym_enum] = ACTIONS(2169), - [anon_sym_fn] = ACTIONS(2169), - [anon_sym_for] = ACTIONS(2169), - [anon_sym_gen] = ACTIONS(2169), - [anon_sym_if] = ACTIONS(2169), - [anon_sym_impl] = ACTIONS(2169), - [anon_sym_let] = ACTIONS(2169), - [anon_sym_loop] = ACTIONS(2169), - [anon_sym_match] = ACTIONS(2169), - [anon_sym_mod] = ACTIONS(2169), - [anon_sym_pub] = ACTIONS(2169), - [anon_sym_return] = ACTIONS(2169), - [anon_sym_static] = ACTIONS(2169), - [anon_sym_struct] = ACTIONS(2169), - [anon_sym_trait] = ACTIONS(2169), - [anon_sym_type] = ACTIONS(2169), - [anon_sym_union] = ACTIONS(2169), - [anon_sym_unsafe] = ACTIONS(2169), - [anon_sym_use] = ACTIONS(2169), - [anon_sym_while] = ACTIONS(2169), - [anon_sym_extern] = ACTIONS(2169), - [anon_sym_yield] = ACTIONS(2169), - [anon_sym_move] = ACTIONS(2169), - [anon_sym_try] = ACTIONS(2169), - [sym_integer_literal] = ACTIONS(2167), - [aux_sym_string_literal_token1] = ACTIONS(2167), - [sym_char_literal] = ACTIONS(2167), - [anon_sym_true] = ACTIONS(2169), - [anon_sym_false] = ACTIONS(2169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2169), - [sym_super] = ACTIONS(2169), - [sym_crate] = ACTIONS(2169), - [sym_metavariable] = ACTIONS(2167), - [sym__raw_string_literal_start] = ACTIONS(2167), - [sym_float_literal] = ACTIONS(2167), + [ts_builtin_sym_end] = ACTIONS(2301), + [sym_identifier] = ACTIONS(2303), + [anon_sym_SEMI] = ACTIONS(2301), + [anon_sym_macro_rules_BANG] = ACTIONS(2301), + [anon_sym_LPAREN] = ACTIONS(2301), + [anon_sym_LBRACK] = ACTIONS(2301), + [anon_sym_LBRACE] = ACTIONS(2301), + [anon_sym_RBRACE] = ACTIONS(2301), + [anon_sym_STAR] = ACTIONS(2301), + [anon_sym_u8] = ACTIONS(2303), + [anon_sym_i8] = ACTIONS(2303), + [anon_sym_u16] = ACTIONS(2303), + [anon_sym_i16] = ACTIONS(2303), + [anon_sym_u32] = ACTIONS(2303), + [anon_sym_i32] = ACTIONS(2303), + [anon_sym_u64] = ACTIONS(2303), + [anon_sym_i64] = ACTIONS(2303), + [anon_sym_u128] = ACTIONS(2303), + [anon_sym_i128] = ACTIONS(2303), + [anon_sym_isize] = ACTIONS(2303), + [anon_sym_usize] = ACTIONS(2303), + [anon_sym_f32] = ACTIONS(2303), + [anon_sym_f64] = ACTIONS(2303), + [anon_sym_bool] = ACTIONS(2303), + [anon_sym_str] = ACTIONS(2303), + [anon_sym_char] = ACTIONS(2303), + [anon_sym_DASH] = ACTIONS(2301), + [anon_sym_BANG] = ACTIONS(2301), + [anon_sym_AMP] = ACTIONS(2301), + [anon_sym_PIPE] = ACTIONS(2301), + [anon_sym_LT] = ACTIONS(2301), + [anon_sym_DOT_DOT] = ACTIONS(2301), + [anon_sym_COLON_COLON] = ACTIONS(2301), + [anon_sym_POUND] = ACTIONS(2301), + [anon_sym_SQUOTE] = ACTIONS(2303), + [anon_sym_async] = ACTIONS(2303), + [anon_sym_break] = ACTIONS(2303), + [anon_sym_const] = ACTIONS(2303), + [anon_sym_continue] = ACTIONS(2303), + [anon_sym_default] = ACTIONS(2303), + [anon_sym_enum] = ACTIONS(2303), + [anon_sym_fn] = ACTIONS(2303), + [anon_sym_for] = ACTIONS(2303), + [anon_sym_gen] = ACTIONS(2303), + [anon_sym_if] = ACTIONS(2303), + [anon_sym_impl] = ACTIONS(2303), + [anon_sym_let] = ACTIONS(2303), + [anon_sym_loop] = ACTIONS(2303), + [anon_sym_match] = ACTIONS(2303), + [anon_sym_mod] = ACTIONS(2303), + [anon_sym_pub] = ACTIONS(2303), + [anon_sym_return] = ACTIONS(2303), + [anon_sym_static] = ACTIONS(2303), + [anon_sym_struct] = ACTIONS(2303), + [anon_sym_trait] = ACTIONS(2303), + [anon_sym_type] = ACTIONS(2303), + [anon_sym_union] = ACTIONS(2303), + [anon_sym_unsafe] = ACTIONS(2303), + [anon_sym_use] = ACTIONS(2303), + [anon_sym_while] = ACTIONS(2303), + [anon_sym_extern] = ACTIONS(2303), + [anon_sym_yield] = ACTIONS(2303), + [anon_sym_move] = ACTIONS(2303), + [anon_sym_try] = ACTIONS(2303), + [sym_integer_literal] = ACTIONS(2301), + [aux_sym_string_literal_token1] = ACTIONS(2301), + [sym_char_literal] = ACTIONS(2301), + [anon_sym_true] = ACTIONS(2303), + [anon_sym_false] = ACTIONS(2303), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2303), + [sym_super] = ACTIONS(2303), + [sym_crate] = ACTIONS(2303), + [sym_metavariable] = ACTIONS(2301), + [sym__raw_string_literal_start] = ACTIONS(2301), + [sym_float_literal] = ACTIONS(2301), }, [605] = { [sym_line_comment] = STATE(605), [sym_block_comment] = STATE(605), - [ts_builtin_sym_end] = ACTIONS(2171), - [sym_identifier] = ACTIONS(2173), - [anon_sym_SEMI] = ACTIONS(2171), - [anon_sym_macro_rules_BANG] = ACTIONS(2171), - [anon_sym_LPAREN] = ACTIONS(2171), - [anon_sym_LBRACK] = ACTIONS(2171), - [anon_sym_LBRACE] = ACTIONS(2171), - [anon_sym_RBRACE] = ACTIONS(2171), - [anon_sym_STAR] = ACTIONS(2171), - [anon_sym_u8] = ACTIONS(2173), - [anon_sym_i8] = ACTIONS(2173), - [anon_sym_u16] = ACTIONS(2173), - [anon_sym_i16] = ACTIONS(2173), - [anon_sym_u32] = ACTIONS(2173), - [anon_sym_i32] = ACTIONS(2173), - [anon_sym_u64] = ACTIONS(2173), - [anon_sym_i64] = ACTIONS(2173), - [anon_sym_u128] = ACTIONS(2173), - [anon_sym_i128] = ACTIONS(2173), - [anon_sym_isize] = ACTIONS(2173), - [anon_sym_usize] = ACTIONS(2173), - [anon_sym_f32] = ACTIONS(2173), - [anon_sym_f64] = ACTIONS(2173), - [anon_sym_bool] = ACTIONS(2173), - [anon_sym_str] = ACTIONS(2173), - [anon_sym_char] = ACTIONS(2173), - [anon_sym_DASH] = ACTIONS(2171), - [anon_sym_BANG] = ACTIONS(2171), - [anon_sym_AMP] = ACTIONS(2171), - [anon_sym_PIPE] = ACTIONS(2171), - [anon_sym_LT] = ACTIONS(2171), - [anon_sym_DOT_DOT] = ACTIONS(2171), - [anon_sym_COLON_COLON] = ACTIONS(2171), - [anon_sym_POUND] = ACTIONS(2171), - [anon_sym_SQUOTE] = ACTIONS(2173), - [anon_sym_async] = ACTIONS(2173), - [anon_sym_break] = ACTIONS(2173), - [anon_sym_const] = ACTIONS(2173), - [anon_sym_continue] = ACTIONS(2173), - [anon_sym_default] = ACTIONS(2173), - [anon_sym_enum] = ACTIONS(2173), - [anon_sym_fn] = ACTIONS(2173), - [anon_sym_for] = ACTIONS(2173), - [anon_sym_gen] = ACTIONS(2173), - [anon_sym_if] = ACTIONS(2173), - [anon_sym_impl] = ACTIONS(2173), - [anon_sym_let] = ACTIONS(2173), - [anon_sym_loop] = ACTIONS(2173), - [anon_sym_match] = ACTIONS(2173), - [anon_sym_mod] = ACTIONS(2173), - [anon_sym_pub] = ACTIONS(2173), - [anon_sym_return] = ACTIONS(2173), - [anon_sym_static] = ACTIONS(2173), - [anon_sym_struct] = ACTIONS(2173), - [anon_sym_trait] = ACTIONS(2173), - [anon_sym_type] = ACTIONS(2173), - [anon_sym_union] = ACTIONS(2173), - [anon_sym_unsafe] = ACTIONS(2173), - [anon_sym_use] = ACTIONS(2173), - [anon_sym_while] = ACTIONS(2173), - [anon_sym_extern] = ACTIONS(2173), - [anon_sym_yield] = ACTIONS(2173), - [anon_sym_move] = ACTIONS(2173), - [anon_sym_try] = ACTIONS(2173), - [sym_integer_literal] = ACTIONS(2171), - [aux_sym_string_literal_token1] = ACTIONS(2171), - [sym_char_literal] = ACTIONS(2171), - [anon_sym_true] = ACTIONS(2173), - [anon_sym_false] = ACTIONS(2173), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2173), - [sym_super] = ACTIONS(2173), - [sym_crate] = ACTIONS(2173), - [sym_metavariable] = ACTIONS(2171), - [sym__raw_string_literal_start] = ACTIONS(2171), - [sym_float_literal] = ACTIONS(2171), + [ts_builtin_sym_end] = ACTIONS(2305), + [sym_identifier] = ACTIONS(2307), + [anon_sym_SEMI] = ACTIONS(2305), + [anon_sym_macro_rules_BANG] = ACTIONS(2305), + [anon_sym_LPAREN] = ACTIONS(2305), + [anon_sym_LBRACK] = ACTIONS(2305), + [anon_sym_LBRACE] = ACTIONS(2305), + [anon_sym_RBRACE] = ACTIONS(2305), + [anon_sym_STAR] = ACTIONS(2305), + [anon_sym_u8] = ACTIONS(2307), + [anon_sym_i8] = ACTIONS(2307), + [anon_sym_u16] = ACTIONS(2307), + [anon_sym_i16] = ACTIONS(2307), + [anon_sym_u32] = ACTIONS(2307), + [anon_sym_i32] = ACTIONS(2307), + [anon_sym_u64] = ACTIONS(2307), + [anon_sym_i64] = ACTIONS(2307), + [anon_sym_u128] = ACTIONS(2307), + [anon_sym_i128] = ACTIONS(2307), + [anon_sym_isize] = ACTIONS(2307), + [anon_sym_usize] = ACTIONS(2307), + [anon_sym_f32] = ACTIONS(2307), + [anon_sym_f64] = ACTIONS(2307), + [anon_sym_bool] = ACTIONS(2307), + [anon_sym_str] = ACTIONS(2307), + [anon_sym_char] = ACTIONS(2307), + [anon_sym_DASH] = ACTIONS(2305), + [anon_sym_BANG] = ACTIONS(2305), + [anon_sym_AMP] = ACTIONS(2305), + [anon_sym_PIPE] = ACTIONS(2305), + [anon_sym_LT] = ACTIONS(2305), + [anon_sym_DOT_DOT] = ACTIONS(2305), + [anon_sym_COLON_COLON] = ACTIONS(2305), + [anon_sym_POUND] = ACTIONS(2305), + [anon_sym_SQUOTE] = ACTIONS(2307), + [anon_sym_async] = ACTIONS(2307), + [anon_sym_break] = ACTIONS(2307), + [anon_sym_const] = ACTIONS(2307), + [anon_sym_continue] = ACTIONS(2307), + [anon_sym_default] = ACTIONS(2307), + [anon_sym_enum] = ACTIONS(2307), + [anon_sym_fn] = ACTIONS(2307), + [anon_sym_for] = ACTIONS(2307), + [anon_sym_gen] = ACTIONS(2307), + [anon_sym_if] = ACTIONS(2307), + [anon_sym_impl] = ACTIONS(2307), + [anon_sym_let] = ACTIONS(2307), + [anon_sym_loop] = ACTIONS(2307), + [anon_sym_match] = ACTIONS(2307), + [anon_sym_mod] = ACTIONS(2307), + [anon_sym_pub] = ACTIONS(2307), + [anon_sym_return] = ACTIONS(2307), + [anon_sym_static] = ACTIONS(2307), + [anon_sym_struct] = ACTIONS(2307), + [anon_sym_trait] = ACTIONS(2307), + [anon_sym_type] = ACTIONS(2307), + [anon_sym_union] = ACTIONS(2307), + [anon_sym_unsafe] = ACTIONS(2307), + [anon_sym_use] = ACTIONS(2307), + [anon_sym_while] = ACTIONS(2307), + [anon_sym_extern] = ACTIONS(2307), + [anon_sym_yield] = ACTIONS(2307), + [anon_sym_move] = ACTIONS(2307), + [anon_sym_try] = ACTIONS(2307), + [sym_integer_literal] = ACTIONS(2305), + [aux_sym_string_literal_token1] = ACTIONS(2305), + [sym_char_literal] = ACTIONS(2305), + [anon_sym_true] = ACTIONS(2307), + [anon_sym_false] = ACTIONS(2307), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2307), + [sym_super] = ACTIONS(2307), + [sym_crate] = ACTIONS(2307), + [sym_metavariable] = ACTIONS(2305), + [sym__raw_string_literal_start] = ACTIONS(2305), + [sym_float_literal] = ACTIONS(2305), }, [606] = { [sym_line_comment] = STATE(606), [sym_block_comment] = STATE(606), - [ts_builtin_sym_end] = ACTIONS(2175), - [sym_identifier] = ACTIONS(2177), - [anon_sym_SEMI] = ACTIONS(2175), - [anon_sym_macro_rules_BANG] = ACTIONS(2175), - [anon_sym_LPAREN] = ACTIONS(2175), - [anon_sym_LBRACK] = ACTIONS(2175), - [anon_sym_LBRACE] = ACTIONS(2175), - [anon_sym_RBRACE] = ACTIONS(2175), - [anon_sym_STAR] = ACTIONS(2175), - [anon_sym_u8] = ACTIONS(2177), - [anon_sym_i8] = ACTIONS(2177), - [anon_sym_u16] = ACTIONS(2177), - [anon_sym_i16] = ACTIONS(2177), - [anon_sym_u32] = ACTIONS(2177), - [anon_sym_i32] = ACTIONS(2177), - [anon_sym_u64] = ACTIONS(2177), - [anon_sym_i64] = ACTIONS(2177), - [anon_sym_u128] = ACTIONS(2177), - [anon_sym_i128] = ACTIONS(2177), - [anon_sym_isize] = ACTIONS(2177), - [anon_sym_usize] = ACTIONS(2177), - [anon_sym_f32] = ACTIONS(2177), - [anon_sym_f64] = ACTIONS(2177), - [anon_sym_bool] = ACTIONS(2177), - [anon_sym_str] = ACTIONS(2177), - [anon_sym_char] = ACTIONS(2177), - [anon_sym_DASH] = ACTIONS(2175), - [anon_sym_BANG] = ACTIONS(2175), - [anon_sym_AMP] = ACTIONS(2175), - [anon_sym_PIPE] = ACTIONS(2175), - [anon_sym_LT] = ACTIONS(2175), - [anon_sym_DOT_DOT] = ACTIONS(2175), - [anon_sym_COLON_COLON] = ACTIONS(2175), - [anon_sym_POUND] = ACTIONS(2175), - [anon_sym_SQUOTE] = ACTIONS(2177), - [anon_sym_async] = ACTIONS(2177), - [anon_sym_break] = ACTIONS(2177), - [anon_sym_const] = ACTIONS(2177), - [anon_sym_continue] = ACTIONS(2177), - [anon_sym_default] = ACTIONS(2177), - [anon_sym_enum] = ACTIONS(2177), - [anon_sym_fn] = ACTIONS(2177), - [anon_sym_for] = ACTIONS(2177), - [anon_sym_gen] = ACTIONS(2177), - [anon_sym_if] = ACTIONS(2177), - [anon_sym_impl] = ACTIONS(2177), - [anon_sym_let] = ACTIONS(2177), - [anon_sym_loop] = ACTIONS(2177), - [anon_sym_match] = ACTIONS(2177), - [anon_sym_mod] = ACTIONS(2177), - [anon_sym_pub] = ACTIONS(2177), - [anon_sym_return] = ACTIONS(2177), - [anon_sym_static] = ACTIONS(2177), - [anon_sym_struct] = ACTIONS(2177), - [anon_sym_trait] = ACTIONS(2177), - [anon_sym_type] = ACTIONS(2177), - [anon_sym_union] = ACTIONS(2177), - [anon_sym_unsafe] = ACTIONS(2177), - [anon_sym_use] = ACTIONS(2177), - [anon_sym_while] = ACTIONS(2177), - [anon_sym_extern] = ACTIONS(2177), - [anon_sym_yield] = ACTIONS(2177), - [anon_sym_move] = ACTIONS(2177), - [anon_sym_try] = ACTIONS(2177), - [sym_integer_literal] = ACTIONS(2175), - [aux_sym_string_literal_token1] = ACTIONS(2175), - [sym_char_literal] = ACTIONS(2175), - [anon_sym_true] = ACTIONS(2177), - [anon_sym_false] = ACTIONS(2177), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2177), - [sym_super] = ACTIONS(2177), - [sym_crate] = ACTIONS(2177), - [sym_metavariable] = ACTIONS(2175), - [sym__raw_string_literal_start] = ACTIONS(2175), - [sym_float_literal] = ACTIONS(2175), + [ts_builtin_sym_end] = ACTIONS(2309), + [sym_identifier] = ACTIONS(2311), + [anon_sym_SEMI] = ACTIONS(2309), + [anon_sym_macro_rules_BANG] = ACTIONS(2309), + [anon_sym_LPAREN] = ACTIONS(2309), + [anon_sym_LBRACK] = ACTIONS(2309), + [anon_sym_LBRACE] = ACTIONS(2309), + [anon_sym_RBRACE] = ACTIONS(2309), + [anon_sym_STAR] = ACTIONS(2309), + [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), + [anon_sym_DASH] = ACTIONS(2309), + [anon_sym_BANG] = ACTIONS(2309), + [anon_sym_AMP] = ACTIONS(2309), + [anon_sym_PIPE] = ACTIONS(2309), + [anon_sym_LT] = ACTIONS(2309), + [anon_sym_DOT_DOT] = ACTIONS(2309), + [anon_sym_COLON_COLON] = ACTIONS(2309), + [anon_sym_POUND] = ACTIONS(2309), + [anon_sym_SQUOTE] = ACTIONS(2311), + [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2311), + [anon_sym_extern] = ACTIONS(2311), + [anon_sym_yield] = ACTIONS(2311), + [anon_sym_move] = ACTIONS(2311), + [anon_sym_try] = ACTIONS(2311), + [sym_integer_literal] = ACTIONS(2309), + [aux_sym_string_literal_token1] = ACTIONS(2309), + [sym_char_literal] = ACTIONS(2309), + [anon_sym_true] = ACTIONS(2311), + [anon_sym_false] = ACTIONS(2311), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2311), + [sym_super] = ACTIONS(2311), + [sym_crate] = ACTIONS(2311), + [sym_metavariable] = ACTIONS(2309), + [sym__raw_string_literal_start] = ACTIONS(2309), + [sym_float_literal] = ACTIONS(2309), }, [607] = { [sym_line_comment] = STATE(607), [sym_block_comment] = STATE(607), - [ts_builtin_sym_end] = ACTIONS(2179), - [sym_identifier] = ACTIONS(2181), - [anon_sym_SEMI] = ACTIONS(2179), - [anon_sym_macro_rules_BANG] = ACTIONS(2179), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_LBRACK] = ACTIONS(2179), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_RBRACE] = ACTIONS(2179), - [anon_sym_STAR] = ACTIONS(2179), - [anon_sym_u8] = ACTIONS(2181), - [anon_sym_i8] = ACTIONS(2181), - [anon_sym_u16] = ACTIONS(2181), - [anon_sym_i16] = ACTIONS(2181), - [anon_sym_u32] = ACTIONS(2181), - [anon_sym_i32] = ACTIONS(2181), - [anon_sym_u64] = ACTIONS(2181), - [anon_sym_i64] = ACTIONS(2181), - [anon_sym_u128] = ACTIONS(2181), - [anon_sym_i128] = ACTIONS(2181), - [anon_sym_isize] = ACTIONS(2181), - [anon_sym_usize] = ACTIONS(2181), - [anon_sym_f32] = ACTIONS(2181), - [anon_sym_f64] = ACTIONS(2181), - [anon_sym_bool] = ACTIONS(2181), - [anon_sym_str] = ACTIONS(2181), - [anon_sym_char] = ACTIONS(2181), - [anon_sym_DASH] = ACTIONS(2179), - [anon_sym_BANG] = ACTIONS(2179), - [anon_sym_AMP] = ACTIONS(2179), - [anon_sym_PIPE] = ACTIONS(2179), - [anon_sym_LT] = ACTIONS(2179), - [anon_sym_DOT_DOT] = ACTIONS(2179), - [anon_sym_COLON_COLON] = ACTIONS(2179), - [anon_sym_POUND] = ACTIONS(2179), - [anon_sym_SQUOTE] = ACTIONS(2181), - [anon_sym_async] = ACTIONS(2181), - [anon_sym_break] = ACTIONS(2181), - [anon_sym_const] = ACTIONS(2181), - [anon_sym_continue] = ACTIONS(2181), - [anon_sym_default] = ACTIONS(2181), - [anon_sym_enum] = ACTIONS(2181), - [anon_sym_fn] = ACTIONS(2181), - [anon_sym_for] = ACTIONS(2181), - [anon_sym_gen] = ACTIONS(2181), - [anon_sym_if] = ACTIONS(2181), - [anon_sym_impl] = ACTIONS(2181), - [anon_sym_let] = ACTIONS(2181), - [anon_sym_loop] = ACTIONS(2181), - [anon_sym_match] = ACTIONS(2181), - [anon_sym_mod] = ACTIONS(2181), - [anon_sym_pub] = ACTIONS(2181), - [anon_sym_return] = ACTIONS(2181), - [anon_sym_static] = ACTIONS(2181), - [anon_sym_struct] = ACTIONS(2181), - [anon_sym_trait] = ACTIONS(2181), - [anon_sym_type] = ACTIONS(2181), - [anon_sym_union] = ACTIONS(2181), - [anon_sym_unsafe] = ACTIONS(2181), - [anon_sym_use] = ACTIONS(2181), - [anon_sym_while] = ACTIONS(2181), - [anon_sym_extern] = ACTIONS(2181), - [anon_sym_yield] = ACTIONS(2181), - [anon_sym_move] = ACTIONS(2181), - [anon_sym_try] = ACTIONS(2181), - [sym_integer_literal] = ACTIONS(2179), - [aux_sym_string_literal_token1] = ACTIONS(2179), - [sym_char_literal] = ACTIONS(2179), - [anon_sym_true] = ACTIONS(2181), - [anon_sym_false] = ACTIONS(2181), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2181), - [sym_super] = ACTIONS(2181), - [sym_crate] = ACTIONS(2181), - [sym_metavariable] = ACTIONS(2179), - [sym__raw_string_literal_start] = ACTIONS(2179), - [sym_float_literal] = ACTIONS(2179), + [ts_builtin_sym_end] = ACTIONS(2313), + [sym_identifier] = ACTIONS(2315), + [anon_sym_SEMI] = ACTIONS(2313), + [anon_sym_macro_rules_BANG] = ACTIONS(2313), + [anon_sym_LPAREN] = ACTIONS(2313), + [anon_sym_LBRACK] = ACTIONS(2313), + [anon_sym_LBRACE] = ACTIONS(2313), + [anon_sym_RBRACE] = ACTIONS(2313), + [anon_sym_STAR] = ACTIONS(2313), + [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), + [anon_sym_DASH] = ACTIONS(2313), + [anon_sym_BANG] = ACTIONS(2313), + [anon_sym_AMP] = ACTIONS(2313), + [anon_sym_PIPE] = ACTIONS(2313), + [anon_sym_LT] = ACTIONS(2313), + [anon_sym_DOT_DOT] = ACTIONS(2313), + [anon_sym_COLON_COLON] = ACTIONS(2313), + [anon_sym_POUND] = ACTIONS(2313), + [anon_sym_SQUOTE] = ACTIONS(2315), + [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2315), + [anon_sym_extern] = ACTIONS(2315), + [anon_sym_yield] = ACTIONS(2315), + [anon_sym_move] = ACTIONS(2315), + [anon_sym_try] = ACTIONS(2315), + [sym_integer_literal] = ACTIONS(2313), + [aux_sym_string_literal_token1] = ACTIONS(2313), + [sym_char_literal] = ACTIONS(2313), + [anon_sym_true] = ACTIONS(2315), + [anon_sym_false] = ACTIONS(2315), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2315), + [sym_super] = ACTIONS(2315), + [sym_crate] = ACTIONS(2315), + [sym_metavariable] = ACTIONS(2313), + [sym__raw_string_literal_start] = ACTIONS(2313), + [sym_float_literal] = ACTIONS(2313), }, [608] = { [sym_line_comment] = STATE(608), [sym_block_comment] = STATE(608), - [ts_builtin_sym_end] = ACTIONS(2183), - [sym_identifier] = ACTIONS(2185), - [anon_sym_SEMI] = ACTIONS(2183), - [anon_sym_macro_rules_BANG] = ACTIONS(2183), - [anon_sym_LPAREN] = ACTIONS(2183), - [anon_sym_LBRACK] = ACTIONS(2183), - [anon_sym_LBRACE] = ACTIONS(2183), - [anon_sym_RBRACE] = ACTIONS(2183), - [anon_sym_STAR] = ACTIONS(2183), - [anon_sym_u8] = ACTIONS(2185), - [anon_sym_i8] = ACTIONS(2185), - [anon_sym_u16] = ACTIONS(2185), - [anon_sym_i16] = ACTIONS(2185), - [anon_sym_u32] = ACTIONS(2185), - [anon_sym_i32] = ACTIONS(2185), - [anon_sym_u64] = ACTIONS(2185), - [anon_sym_i64] = ACTIONS(2185), - [anon_sym_u128] = ACTIONS(2185), - [anon_sym_i128] = ACTIONS(2185), - [anon_sym_isize] = ACTIONS(2185), - [anon_sym_usize] = ACTIONS(2185), - [anon_sym_f32] = ACTIONS(2185), - [anon_sym_f64] = ACTIONS(2185), - [anon_sym_bool] = ACTIONS(2185), - [anon_sym_str] = ACTIONS(2185), - [anon_sym_char] = ACTIONS(2185), - [anon_sym_DASH] = ACTIONS(2183), - [anon_sym_BANG] = ACTIONS(2183), - [anon_sym_AMP] = ACTIONS(2183), - [anon_sym_PIPE] = ACTIONS(2183), - [anon_sym_LT] = ACTIONS(2183), - [anon_sym_DOT_DOT] = ACTIONS(2183), - [anon_sym_COLON_COLON] = ACTIONS(2183), - [anon_sym_POUND] = ACTIONS(2183), - [anon_sym_SQUOTE] = ACTIONS(2185), - [anon_sym_async] = ACTIONS(2185), - [anon_sym_break] = ACTIONS(2185), - [anon_sym_const] = ACTIONS(2185), - [anon_sym_continue] = ACTIONS(2185), - [anon_sym_default] = ACTIONS(2185), - [anon_sym_enum] = ACTIONS(2185), - [anon_sym_fn] = ACTIONS(2185), - [anon_sym_for] = ACTIONS(2185), - [anon_sym_gen] = ACTIONS(2185), - [anon_sym_if] = ACTIONS(2185), - [anon_sym_impl] = ACTIONS(2185), - [anon_sym_let] = ACTIONS(2185), - [anon_sym_loop] = ACTIONS(2185), - [anon_sym_match] = ACTIONS(2185), - [anon_sym_mod] = ACTIONS(2185), - [anon_sym_pub] = ACTIONS(2185), - [anon_sym_return] = ACTIONS(2185), - [anon_sym_static] = ACTIONS(2185), - [anon_sym_struct] = ACTIONS(2185), - [anon_sym_trait] = ACTIONS(2185), - [anon_sym_type] = ACTIONS(2185), - [anon_sym_union] = ACTIONS(2185), - [anon_sym_unsafe] = ACTIONS(2185), - [anon_sym_use] = ACTIONS(2185), - [anon_sym_while] = ACTIONS(2185), - [anon_sym_extern] = ACTIONS(2185), - [anon_sym_yield] = ACTIONS(2185), - [anon_sym_move] = ACTIONS(2185), - [anon_sym_try] = ACTIONS(2185), - [sym_integer_literal] = ACTIONS(2183), - [aux_sym_string_literal_token1] = ACTIONS(2183), - [sym_char_literal] = ACTIONS(2183), - [anon_sym_true] = ACTIONS(2185), - [anon_sym_false] = ACTIONS(2185), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2185), - [sym_super] = ACTIONS(2185), - [sym_crate] = ACTIONS(2185), - [sym_metavariable] = ACTIONS(2183), - [sym__raw_string_literal_start] = ACTIONS(2183), - [sym_float_literal] = ACTIONS(2183), + [ts_builtin_sym_end] = ACTIONS(2317), + [sym_identifier] = ACTIONS(2319), + [anon_sym_SEMI] = ACTIONS(2317), + [anon_sym_macro_rules_BANG] = ACTIONS(2317), + [anon_sym_LPAREN] = ACTIONS(2317), + [anon_sym_LBRACK] = ACTIONS(2317), + [anon_sym_LBRACE] = ACTIONS(2317), + [anon_sym_RBRACE] = ACTIONS(2317), + [anon_sym_STAR] = ACTIONS(2317), + [anon_sym_u8] = ACTIONS(2319), + [anon_sym_i8] = ACTIONS(2319), + [anon_sym_u16] = ACTIONS(2319), + [anon_sym_i16] = ACTIONS(2319), + [anon_sym_u32] = ACTIONS(2319), + [anon_sym_i32] = ACTIONS(2319), + [anon_sym_u64] = ACTIONS(2319), + [anon_sym_i64] = ACTIONS(2319), + [anon_sym_u128] = ACTIONS(2319), + [anon_sym_i128] = ACTIONS(2319), + [anon_sym_isize] = ACTIONS(2319), + [anon_sym_usize] = ACTIONS(2319), + [anon_sym_f32] = ACTIONS(2319), + [anon_sym_f64] = ACTIONS(2319), + [anon_sym_bool] = ACTIONS(2319), + [anon_sym_str] = ACTIONS(2319), + [anon_sym_char] = ACTIONS(2319), + [anon_sym_DASH] = ACTIONS(2317), + [anon_sym_BANG] = ACTIONS(2317), + [anon_sym_AMP] = ACTIONS(2317), + [anon_sym_PIPE] = ACTIONS(2317), + [anon_sym_LT] = ACTIONS(2317), + [anon_sym_DOT_DOT] = ACTIONS(2317), + [anon_sym_COLON_COLON] = ACTIONS(2317), + [anon_sym_POUND] = ACTIONS(2317), + [anon_sym_SQUOTE] = ACTIONS(2319), + [anon_sym_async] = ACTIONS(2319), + [anon_sym_break] = ACTIONS(2319), + [anon_sym_const] = ACTIONS(2319), + [anon_sym_continue] = ACTIONS(2319), + [anon_sym_default] = ACTIONS(2319), + [anon_sym_enum] = ACTIONS(2319), + [anon_sym_fn] = ACTIONS(2319), + [anon_sym_for] = ACTIONS(2319), + [anon_sym_gen] = ACTIONS(2319), + [anon_sym_if] = ACTIONS(2319), + [anon_sym_impl] = ACTIONS(2319), + [anon_sym_let] = ACTIONS(2319), + [anon_sym_loop] = ACTIONS(2319), + [anon_sym_match] = ACTIONS(2319), + [anon_sym_mod] = ACTIONS(2319), + [anon_sym_pub] = ACTIONS(2319), + [anon_sym_return] = ACTIONS(2319), + [anon_sym_static] = ACTIONS(2319), + [anon_sym_struct] = ACTIONS(2319), + [anon_sym_trait] = ACTIONS(2319), + [anon_sym_type] = ACTIONS(2319), + [anon_sym_union] = ACTIONS(2319), + [anon_sym_unsafe] = ACTIONS(2319), + [anon_sym_use] = ACTIONS(2319), + [anon_sym_while] = ACTIONS(2319), + [anon_sym_extern] = ACTIONS(2319), + [anon_sym_yield] = ACTIONS(2319), + [anon_sym_move] = ACTIONS(2319), + [anon_sym_try] = ACTIONS(2319), + [sym_integer_literal] = ACTIONS(2317), + [aux_sym_string_literal_token1] = ACTIONS(2317), + [sym_char_literal] = ACTIONS(2317), + [anon_sym_true] = ACTIONS(2319), + [anon_sym_false] = ACTIONS(2319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2319), + [sym_super] = ACTIONS(2319), + [sym_crate] = ACTIONS(2319), + [sym_metavariable] = ACTIONS(2317), + [sym__raw_string_literal_start] = ACTIONS(2317), + [sym_float_literal] = ACTIONS(2317), }, [609] = { [sym_line_comment] = STATE(609), [sym_block_comment] = STATE(609), - [ts_builtin_sym_end] = ACTIONS(2187), - [sym_identifier] = ACTIONS(2189), - [anon_sym_SEMI] = ACTIONS(2187), - [anon_sym_macro_rules_BANG] = ACTIONS(2187), - [anon_sym_LPAREN] = ACTIONS(2187), - [anon_sym_LBRACK] = ACTIONS(2187), - [anon_sym_LBRACE] = ACTIONS(2187), - [anon_sym_RBRACE] = ACTIONS(2187), - [anon_sym_STAR] = ACTIONS(2187), - [anon_sym_u8] = ACTIONS(2189), - [anon_sym_i8] = ACTIONS(2189), - [anon_sym_u16] = ACTIONS(2189), - [anon_sym_i16] = ACTIONS(2189), - [anon_sym_u32] = ACTIONS(2189), - [anon_sym_i32] = ACTIONS(2189), - [anon_sym_u64] = ACTIONS(2189), - [anon_sym_i64] = ACTIONS(2189), - [anon_sym_u128] = ACTIONS(2189), - [anon_sym_i128] = ACTIONS(2189), - [anon_sym_isize] = ACTIONS(2189), - [anon_sym_usize] = ACTIONS(2189), - [anon_sym_f32] = ACTIONS(2189), - [anon_sym_f64] = ACTIONS(2189), - [anon_sym_bool] = ACTIONS(2189), - [anon_sym_str] = ACTIONS(2189), - [anon_sym_char] = ACTIONS(2189), - [anon_sym_DASH] = ACTIONS(2187), - [anon_sym_BANG] = ACTIONS(2187), - [anon_sym_AMP] = ACTIONS(2187), - [anon_sym_PIPE] = ACTIONS(2187), - [anon_sym_LT] = ACTIONS(2187), - [anon_sym_DOT_DOT] = ACTIONS(2187), - [anon_sym_COLON_COLON] = ACTIONS(2187), - [anon_sym_POUND] = ACTIONS(2187), - [anon_sym_SQUOTE] = ACTIONS(2189), - [anon_sym_async] = ACTIONS(2189), - [anon_sym_break] = ACTIONS(2189), - [anon_sym_const] = ACTIONS(2189), - [anon_sym_continue] = ACTIONS(2189), - [anon_sym_default] = ACTIONS(2189), - [anon_sym_enum] = ACTIONS(2189), - [anon_sym_fn] = ACTIONS(2189), - [anon_sym_for] = ACTIONS(2189), - [anon_sym_gen] = ACTIONS(2189), - [anon_sym_if] = ACTIONS(2189), - [anon_sym_impl] = ACTIONS(2189), - [anon_sym_let] = ACTIONS(2189), - [anon_sym_loop] = ACTIONS(2189), - [anon_sym_match] = ACTIONS(2189), - [anon_sym_mod] = ACTIONS(2189), - [anon_sym_pub] = ACTIONS(2189), - [anon_sym_return] = ACTIONS(2189), - [anon_sym_static] = ACTIONS(2189), - [anon_sym_struct] = ACTIONS(2189), - [anon_sym_trait] = ACTIONS(2189), - [anon_sym_type] = ACTIONS(2189), - [anon_sym_union] = ACTIONS(2189), - [anon_sym_unsafe] = ACTIONS(2189), - [anon_sym_use] = ACTIONS(2189), - [anon_sym_while] = ACTIONS(2189), - [anon_sym_extern] = ACTIONS(2189), - [anon_sym_yield] = ACTIONS(2189), - [anon_sym_move] = ACTIONS(2189), - [anon_sym_try] = ACTIONS(2189), - [sym_integer_literal] = ACTIONS(2187), - [aux_sym_string_literal_token1] = ACTIONS(2187), - [sym_char_literal] = ACTIONS(2187), - [anon_sym_true] = ACTIONS(2189), - [anon_sym_false] = ACTIONS(2189), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2189), - [sym_super] = ACTIONS(2189), - [sym_crate] = ACTIONS(2189), - [sym_metavariable] = ACTIONS(2187), - [sym__raw_string_literal_start] = ACTIONS(2187), - [sym_float_literal] = ACTIONS(2187), + [ts_builtin_sym_end] = ACTIONS(2321), + [sym_identifier] = ACTIONS(2323), + [anon_sym_SEMI] = ACTIONS(2321), + [anon_sym_macro_rules_BANG] = ACTIONS(2321), + [anon_sym_LPAREN] = ACTIONS(2321), + [anon_sym_LBRACK] = ACTIONS(2321), + [anon_sym_LBRACE] = ACTIONS(2321), + [anon_sym_RBRACE] = ACTIONS(2321), + [anon_sym_STAR] = ACTIONS(2321), + [anon_sym_u8] = ACTIONS(2323), + [anon_sym_i8] = ACTIONS(2323), + [anon_sym_u16] = ACTIONS(2323), + [anon_sym_i16] = ACTIONS(2323), + [anon_sym_u32] = ACTIONS(2323), + [anon_sym_i32] = ACTIONS(2323), + [anon_sym_u64] = ACTIONS(2323), + [anon_sym_i64] = ACTIONS(2323), + [anon_sym_u128] = ACTIONS(2323), + [anon_sym_i128] = ACTIONS(2323), + [anon_sym_isize] = ACTIONS(2323), + [anon_sym_usize] = ACTIONS(2323), + [anon_sym_f32] = ACTIONS(2323), + [anon_sym_f64] = ACTIONS(2323), + [anon_sym_bool] = ACTIONS(2323), + [anon_sym_str] = ACTIONS(2323), + [anon_sym_char] = ACTIONS(2323), + [anon_sym_DASH] = ACTIONS(2321), + [anon_sym_BANG] = ACTIONS(2321), + [anon_sym_AMP] = ACTIONS(2321), + [anon_sym_PIPE] = ACTIONS(2321), + [anon_sym_LT] = ACTIONS(2321), + [anon_sym_DOT_DOT] = ACTIONS(2321), + [anon_sym_COLON_COLON] = ACTIONS(2321), + [anon_sym_POUND] = ACTIONS(2321), + [anon_sym_SQUOTE] = ACTIONS(2323), + [anon_sym_async] = ACTIONS(2323), + [anon_sym_break] = ACTIONS(2323), + [anon_sym_const] = ACTIONS(2323), + [anon_sym_continue] = ACTIONS(2323), + [anon_sym_default] = ACTIONS(2323), + [anon_sym_enum] = ACTIONS(2323), + [anon_sym_fn] = ACTIONS(2323), + [anon_sym_for] = ACTIONS(2323), + [anon_sym_gen] = ACTIONS(2323), + [anon_sym_if] = ACTIONS(2323), + [anon_sym_impl] = ACTIONS(2323), + [anon_sym_let] = ACTIONS(2323), + [anon_sym_loop] = ACTIONS(2323), + [anon_sym_match] = ACTIONS(2323), + [anon_sym_mod] = ACTIONS(2323), + [anon_sym_pub] = ACTIONS(2323), + [anon_sym_return] = ACTIONS(2323), + [anon_sym_static] = ACTIONS(2323), + [anon_sym_struct] = ACTIONS(2323), + [anon_sym_trait] = ACTIONS(2323), + [anon_sym_type] = ACTIONS(2323), + [anon_sym_union] = ACTIONS(2323), + [anon_sym_unsafe] = ACTIONS(2323), + [anon_sym_use] = ACTIONS(2323), + [anon_sym_while] = ACTIONS(2323), + [anon_sym_extern] = ACTIONS(2323), + [anon_sym_yield] = ACTIONS(2323), + [anon_sym_move] = ACTIONS(2323), + [anon_sym_try] = ACTIONS(2323), + [sym_integer_literal] = ACTIONS(2321), + [aux_sym_string_literal_token1] = ACTIONS(2321), + [sym_char_literal] = ACTIONS(2321), + [anon_sym_true] = ACTIONS(2323), + [anon_sym_false] = ACTIONS(2323), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2323), + [sym_super] = ACTIONS(2323), + [sym_crate] = ACTIONS(2323), + [sym_metavariable] = ACTIONS(2321), + [sym__raw_string_literal_start] = ACTIONS(2321), + [sym_float_literal] = ACTIONS(2321), }, [610] = { [sym_line_comment] = STATE(610), [sym_block_comment] = STATE(610), - [ts_builtin_sym_end] = ACTIONS(2191), - [sym_identifier] = ACTIONS(2193), - [anon_sym_SEMI] = ACTIONS(2191), - [anon_sym_macro_rules_BANG] = ACTIONS(2191), - [anon_sym_LPAREN] = ACTIONS(2191), - [anon_sym_LBRACK] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(2191), - [anon_sym_RBRACE] = ACTIONS(2191), - [anon_sym_STAR] = ACTIONS(2191), - [anon_sym_u8] = ACTIONS(2193), - [anon_sym_i8] = ACTIONS(2193), - [anon_sym_u16] = ACTIONS(2193), - [anon_sym_i16] = ACTIONS(2193), - [anon_sym_u32] = ACTIONS(2193), - [anon_sym_i32] = ACTIONS(2193), - [anon_sym_u64] = ACTIONS(2193), - [anon_sym_i64] = ACTIONS(2193), - [anon_sym_u128] = ACTIONS(2193), - [anon_sym_i128] = ACTIONS(2193), - [anon_sym_isize] = ACTIONS(2193), - [anon_sym_usize] = ACTIONS(2193), - [anon_sym_f32] = ACTIONS(2193), - [anon_sym_f64] = ACTIONS(2193), - [anon_sym_bool] = ACTIONS(2193), - [anon_sym_str] = ACTIONS(2193), - [anon_sym_char] = ACTIONS(2193), - [anon_sym_DASH] = ACTIONS(2191), - [anon_sym_BANG] = ACTIONS(2191), - [anon_sym_AMP] = ACTIONS(2191), - [anon_sym_PIPE] = ACTIONS(2191), - [anon_sym_LT] = ACTIONS(2191), - [anon_sym_DOT_DOT] = ACTIONS(2191), - [anon_sym_COLON_COLON] = ACTIONS(2191), - [anon_sym_POUND] = ACTIONS(2191), - [anon_sym_SQUOTE] = ACTIONS(2193), - [anon_sym_async] = ACTIONS(2193), - [anon_sym_break] = ACTIONS(2193), - [anon_sym_const] = ACTIONS(2193), - [anon_sym_continue] = ACTIONS(2193), - [anon_sym_default] = ACTIONS(2193), - [anon_sym_enum] = ACTIONS(2193), - [anon_sym_fn] = ACTIONS(2193), - [anon_sym_for] = ACTIONS(2193), - [anon_sym_gen] = ACTIONS(2193), - [anon_sym_if] = ACTIONS(2193), - [anon_sym_impl] = ACTIONS(2193), - [anon_sym_let] = ACTIONS(2193), - [anon_sym_loop] = ACTIONS(2193), - [anon_sym_match] = ACTIONS(2193), - [anon_sym_mod] = ACTIONS(2193), - [anon_sym_pub] = ACTIONS(2193), - [anon_sym_return] = ACTIONS(2193), - [anon_sym_static] = ACTIONS(2193), - [anon_sym_struct] = ACTIONS(2193), - [anon_sym_trait] = ACTIONS(2193), - [anon_sym_type] = ACTIONS(2193), - [anon_sym_union] = ACTIONS(2193), - [anon_sym_unsafe] = ACTIONS(2193), - [anon_sym_use] = ACTIONS(2193), - [anon_sym_while] = ACTIONS(2193), - [anon_sym_extern] = ACTIONS(2193), - [anon_sym_yield] = ACTIONS(2193), - [anon_sym_move] = ACTIONS(2193), - [anon_sym_try] = ACTIONS(2193), - [sym_integer_literal] = ACTIONS(2191), - [aux_sym_string_literal_token1] = ACTIONS(2191), - [sym_char_literal] = ACTIONS(2191), - [anon_sym_true] = ACTIONS(2193), - [anon_sym_false] = ACTIONS(2193), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2193), - [sym_super] = ACTIONS(2193), - [sym_crate] = ACTIONS(2193), - [sym_metavariable] = ACTIONS(2191), - [sym__raw_string_literal_start] = ACTIONS(2191), - [sym_float_literal] = ACTIONS(2191), + [ts_builtin_sym_end] = ACTIONS(2325), + [sym_identifier] = ACTIONS(2327), + [anon_sym_SEMI] = ACTIONS(2325), + [anon_sym_macro_rules_BANG] = ACTIONS(2325), + [anon_sym_LPAREN] = ACTIONS(2325), + [anon_sym_LBRACK] = ACTIONS(2325), + [anon_sym_LBRACE] = ACTIONS(2325), + [anon_sym_RBRACE] = ACTIONS(2325), + [anon_sym_STAR] = ACTIONS(2325), + [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), + [anon_sym_DASH] = ACTIONS(2325), + [anon_sym_BANG] = ACTIONS(2325), + [anon_sym_AMP] = ACTIONS(2325), + [anon_sym_PIPE] = ACTIONS(2325), + [anon_sym_LT] = ACTIONS(2325), + [anon_sym_DOT_DOT] = ACTIONS(2325), + [anon_sym_COLON_COLON] = ACTIONS(2325), + [anon_sym_POUND] = ACTIONS(2325), + [anon_sym_SQUOTE] = ACTIONS(2327), + [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2327), + [anon_sym_extern] = ACTIONS(2327), + [anon_sym_yield] = ACTIONS(2327), + [anon_sym_move] = ACTIONS(2327), + [anon_sym_try] = ACTIONS(2327), + [sym_integer_literal] = ACTIONS(2325), + [aux_sym_string_literal_token1] = ACTIONS(2325), + [sym_char_literal] = ACTIONS(2325), + [anon_sym_true] = ACTIONS(2327), + [anon_sym_false] = ACTIONS(2327), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2327), + [sym_super] = ACTIONS(2327), + [sym_crate] = ACTIONS(2327), + [sym_metavariable] = ACTIONS(2325), + [sym__raw_string_literal_start] = ACTIONS(2325), + [sym_float_literal] = ACTIONS(2325), }, [611] = { [sym_line_comment] = STATE(611), [sym_block_comment] = STATE(611), - [ts_builtin_sym_end] = ACTIONS(2195), - [sym_identifier] = ACTIONS(2197), - [anon_sym_SEMI] = ACTIONS(2195), - [anon_sym_macro_rules_BANG] = ACTIONS(2195), - [anon_sym_LPAREN] = ACTIONS(2195), - [anon_sym_LBRACK] = ACTIONS(2195), - [anon_sym_LBRACE] = ACTIONS(2195), - [anon_sym_RBRACE] = ACTIONS(2195), - [anon_sym_STAR] = ACTIONS(2195), - [anon_sym_u8] = ACTIONS(2197), - [anon_sym_i8] = ACTIONS(2197), - [anon_sym_u16] = ACTIONS(2197), - [anon_sym_i16] = ACTIONS(2197), - [anon_sym_u32] = ACTIONS(2197), - [anon_sym_i32] = ACTIONS(2197), - [anon_sym_u64] = ACTIONS(2197), - [anon_sym_i64] = ACTIONS(2197), - [anon_sym_u128] = ACTIONS(2197), - [anon_sym_i128] = ACTIONS(2197), - [anon_sym_isize] = ACTIONS(2197), - [anon_sym_usize] = ACTIONS(2197), - [anon_sym_f32] = ACTIONS(2197), - [anon_sym_f64] = ACTIONS(2197), - [anon_sym_bool] = ACTIONS(2197), - [anon_sym_str] = ACTIONS(2197), - [anon_sym_char] = ACTIONS(2197), - [anon_sym_DASH] = ACTIONS(2195), - [anon_sym_BANG] = ACTIONS(2195), - [anon_sym_AMP] = ACTIONS(2195), - [anon_sym_PIPE] = ACTIONS(2195), - [anon_sym_LT] = ACTIONS(2195), - [anon_sym_DOT_DOT] = ACTIONS(2195), - [anon_sym_COLON_COLON] = ACTIONS(2195), - [anon_sym_POUND] = ACTIONS(2195), - [anon_sym_SQUOTE] = ACTIONS(2197), - [anon_sym_async] = ACTIONS(2197), - [anon_sym_break] = ACTIONS(2197), - [anon_sym_const] = ACTIONS(2197), - [anon_sym_continue] = ACTIONS(2197), - [anon_sym_default] = ACTIONS(2197), - [anon_sym_enum] = ACTIONS(2197), - [anon_sym_fn] = ACTIONS(2197), - [anon_sym_for] = ACTIONS(2197), - [anon_sym_gen] = ACTIONS(2197), - [anon_sym_if] = ACTIONS(2197), - [anon_sym_impl] = ACTIONS(2197), - [anon_sym_let] = ACTIONS(2197), - [anon_sym_loop] = ACTIONS(2197), - [anon_sym_match] = ACTIONS(2197), - [anon_sym_mod] = ACTIONS(2197), - [anon_sym_pub] = ACTIONS(2197), - [anon_sym_return] = ACTIONS(2197), - [anon_sym_static] = ACTIONS(2197), - [anon_sym_struct] = ACTIONS(2197), - [anon_sym_trait] = ACTIONS(2197), - [anon_sym_type] = ACTIONS(2197), - [anon_sym_union] = ACTIONS(2197), - [anon_sym_unsafe] = ACTIONS(2197), - [anon_sym_use] = ACTIONS(2197), - [anon_sym_while] = ACTIONS(2197), - [anon_sym_extern] = ACTIONS(2197), - [anon_sym_yield] = ACTIONS(2197), - [anon_sym_move] = ACTIONS(2197), - [anon_sym_try] = ACTIONS(2197), - [sym_integer_literal] = ACTIONS(2195), - [aux_sym_string_literal_token1] = ACTIONS(2195), - [sym_char_literal] = ACTIONS(2195), - [anon_sym_true] = ACTIONS(2197), - [anon_sym_false] = ACTIONS(2197), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2197), - [sym_super] = ACTIONS(2197), - [sym_crate] = ACTIONS(2197), - [sym_metavariable] = ACTIONS(2195), - [sym__raw_string_literal_start] = ACTIONS(2195), - [sym_float_literal] = ACTIONS(2195), + [ts_builtin_sym_end] = ACTIONS(2329), + [sym_identifier] = ACTIONS(2331), + [anon_sym_SEMI] = ACTIONS(2329), + [anon_sym_macro_rules_BANG] = ACTIONS(2329), + [anon_sym_LPAREN] = ACTIONS(2329), + [anon_sym_LBRACK] = ACTIONS(2329), + [anon_sym_LBRACE] = ACTIONS(2329), + [anon_sym_RBRACE] = ACTIONS(2329), + [anon_sym_STAR] = ACTIONS(2329), + [anon_sym_u8] = ACTIONS(2331), + [anon_sym_i8] = ACTIONS(2331), + [anon_sym_u16] = ACTIONS(2331), + [anon_sym_i16] = ACTIONS(2331), + [anon_sym_u32] = ACTIONS(2331), + [anon_sym_i32] = ACTIONS(2331), + [anon_sym_u64] = ACTIONS(2331), + [anon_sym_i64] = ACTIONS(2331), + [anon_sym_u128] = ACTIONS(2331), + [anon_sym_i128] = ACTIONS(2331), + [anon_sym_isize] = ACTIONS(2331), + [anon_sym_usize] = ACTIONS(2331), + [anon_sym_f32] = ACTIONS(2331), + [anon_sym_f64] = ACTIONS(2331), + [anon_sym_bool] = ACTIONS(2331), + [anon_sym_str] = ACTIONS(2331), + [anon_sym_char] = ACTIONS(2331), + [anon_sym_DASH] = ACTIONS(2329), + [anon_sym_BANG] = ACTIONS(2329), + [anon_sym_AMP] = ACTIONS(2329), + [anon_sym_PIPE] = ACTIONS(2329), + [anon_sym_LT] = ACTIONS(2329), + [anon_sym_DOT_DOT] = ACTIONS(2329), + [anon_sym_COLON_COLON] = ACTIONS(2329), + [anon_sym_POUND] = ACTIONS(2329), + [anon_sym_SQUOTE] = ACTIONS(2331), + [anon_sym_async] = ACTIONS(2331), + [anon_sym_break] = ACTIONS(2331), + [anon_sym_const] = ACTIONS(2331), + [anon_sym_continue] = ACTIONS(2331), + [anon_sym_default] = ACTIONS(2331), + [anon_sym_enum] = ACTIONS(2331), + [anon_sym_fn] = ACTIONS(2331), + [anon_sym_for] = ACTIONS(2331), + [anon_sym_gen] = ACTIONS(2331), + [anon_sym_if] = ACTIONS(2331), + [anon_sym_impl] = ACTIONS(2331), + [anon_sym_let] = ACTIONS(2331), + [anon_sym_loop] = ACTIONS(2331), + [anon_sym_match] = ACTIONS(2331), + [anon_sym_mod] = ACTIONS(2331), + [anon_sym_pub] = ACTIONS(2331), + [anon_sym_return] = ACTIONS(2331), + [anon_sym_static] = ACTIONS(2331), + [anon_sym_struct] = ACTIONS(2331), + [anon_sym_trait] = ACTIONS(2331), + [anon_sym_type] = ACTIONS(2331), + [anon_sym_union] = ACTIONS(2331), + [anon_sym_unsafe] = ACTIONS(2331), + [anon_sym_use] = ACTIONS(2331), + [anon_sym_while] = ACTIONS(2331), + [anon_sym_extern] = ACTIONS(2331), + [anon_sym_yield] = ACTIONS(2331), + [anon_sym_move] = ACTIONS(2331), + [anon_sym_try] = ACTIONS(2331), + [sym_integer_literal] = ACTIONS(2329), + [aux_sym_string_literal_token1] = ACTIONS(2329), + [sym_char_literal] = ACTIONS(2329), + [anon_sym_true] = ACTIONS(2331), + [anon_sym_false] = ACTIONS(2331), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2331), + [sym_super] = ACTIONS(2331), + [sym_crate] = ACTIONS(2331), + [sym_metavariable] = ACTIONS(2329), + [sym__raw_string_literal_start] = ACTIONS(2329), + [sym_float_literal] = ACTIONS(2329), }, [612] = { [sym_line_comment] = STATE(612), [sym_block_comment] = STATE(612), - [ts_builtin_sym_end] = ACTIONS(2199), - [sym_identifier] = ACTIONS(2201), - [anon_sym_SEMI] = ACTIONS(2199), - [anon_sym_macro_rules_BANG] = ACTIONS(2199), - [anon_sym_LPAREN] = ACTIONS(2199), - [anon_sym_LBRACK] = ACTIONS(2199), - [anon_sym_LBRACE] = ACTIONS(2199), - [anon_sym_RBRACE] = ACTIONS(2199), - [anon_sym_STAR] = ACTIONS(2199), - [anon_sym_u8] = ACTIONS(2201), - [anon_sym_i8] = ACTIONS(2201), - [anon_sym_u16] = ACTIONS(2201), - [anon_sym_i16] = ACTIONS(2201), - [anon_sym_u32] = ACTIONS(2201), - [anon_sym_i32] = ACTIONS(2201), - [anon_sym_u64] = ACTIONS(2201), - [anon_sym_i64] = ACTIONS(2201), - [anon_sym_u128] = ACTIONS(2201), - [anon_sym_i128] = ACTIONS(2201), - [anon_sym_isize] = ACTIONS(2201), - [anon_sym_usize] = ACTIONS(2201), - [anon_sym_f32] = ACTIONS(2201), - [anon_sym_f64] = ACTIONS(2201), - [anon_sym_bool] = ACTIONS(2201), - [anon_sym_str] = ACTIONS(2201), - [anon_sym_char] = ACTIONS(2201), - [anon_sym_DASH] = ACTIONS(2199), - [anon_sym_BANG] = ACTIONS(2199), - [anon_sym_AMP] = ACTIONS(2199), - [anon_sym_PIPE] = ACTIONS(2199), - [anon_sym_LT] = ACTIONS(2199), - [anon_sym_DOT_DOT] = ACTIONS(2199), - [anon_sym_COLON_COLON] = ACTIONS(2199), - [anon_sym_POUND] = ACTIONS(2199), - [anon_sym_SQUOTE] = ACTIONS(2201), - [anon_sym_async] = ACTIONS(2201), - [anon_sym_break] = ACTIONS(2201), - [anon_sym_const] = ACTIONS(2201), - [anon_sym_continue] = ACTIONS(2201), - [anon_sym_default] = ACTIONS(2201), - [anon_sym_enum] = ACTIONS(2201), - [anon_sym_fn] = ACTIONS(2201), - [anon_sym_for] = ACTIONS(2201), - [anon_sym_gen] = ACTIONS(2201), - [anon_sym_if] = ACTIONS(2201), - [anon_sym_impl] = ACTIONS(2201), - [anon_sym_let] = ACTIONS(2201), - [anon_sym_loop] = ACTIONS(2201), - [anon_sym_match] = ACTIONS(2201), - [anon_sym_mod] = ACTIONS(2201), - [anon_sym_pub] = ACTIONS(2201), - [anon_sym_return] = ACTIONS(2201), - [anon_sym_static] = ACTIONS(2201), - [anon_sym_struct] = ACTIONS(2201), - [anon_sym_trait] = ACTIONS(2201), - [anon_sym_type] = ACTIONS(2201), - [anon_sym_union] = ACTIONS(2201), - [anon_sym_unsafe] = ACTIONS(2201), - [anon_sym_use] = ACTIONS(2201), - [anon_sym_while] = ACTIONS(2201), - [anon_sym_extern] = ACTIONS(2201), - [anon_sym_yield] = ACTIONS(2201), - [anon_sym_move] = ACTIONS(2201), - [anon_sym_try] = ACTIONS(2201), - [sym_integer_literal] = ACTIONS(2199), - [aux_sym_string_literal_token1] = ACTIONS(2199), - [sym_char_literal] = ACTIONS(2199), - [anon_sym_true] = ACTIONS(2201), - [anon_sym_false] = ACTIONS(2201), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2201), - [sym_super] = ACTIONS(2201), - [sym_crate] = ACTIONS(2201), - [sym_metavariable] = ACTIONS(2199), - [sym__raw_string_literal_start] = ACTIONS(2199), - [sym_float_literal] = ACTIONS(2199), + [ts_builtin_sym_end] = ACTIONS(2333), + [sym_identifier] = ACTIONS(2335), + [anon_sym_SEMI] = ACTIONS(2333), + [anon_sym_macro_rules_BANG] = ACTIONS(2333), + [anon_sym_LPAREN] = ACTIONS(2333), + [anon_sym_LBRACK] = ACTIONS(2333), + [anon_sym_LBRACE] = ACTIONS(2333), + [anon_sym_RBRACE] = ACTIONS(2333), + [anon_sym_STAR] = ACTIONS(2333), + [anon_sym_u8] = ACTIONS(2335), + [anon_sym_i8] = ACTIONS(2335), + [anon_sym_u16] = ACTIONS(2335), + [anon_sym_i16] = ACTIONS(2335), + [anon_sym_u32] = ACTIONS(2335), + [anon_sym_i32] = ACTIONS(2335), + [anon_sym_u64] = ACTIONS(2335), + [anon_sym_i64] = ACTIONS(2335), + [anon_sym_u128] = ACTIONS(2335), + [anon_sym_i128] = ACTIONS(2335), + [anon_sym_isize] = ACTIONS(2335), + [anon_sym_usize] = ACTIONS(2335), + [anon_sym_f32] = ACTIONS(2335), + [anon_sym_f64] = ACTIONS(2335), + [anon_sym_bool] = ACTIONS(2335), + [anon_sym_str] = ACTIONS(2335), + [anon_sym_char] = ACTIONS(2335), + [anon_sym_DASH] = ACTIONS(2333), + [anon_sym_BANG] = ACTIONS(2333), + [anon_sym_AMP] = ACTIONS(2333), + [anon_sym_PIPE] = ACTIONS(2333), + [anon_sym_LT] = ACTIONS(2333), + [anon_sym_DOT_DOT] = ACTIONS(2333), + [anon_sym_COLON_COLON] = ACTIONS(2333), + [anon_sym_POUND] = ACTIONS(2333), + [anon_sym_SQUOTE] = ACTIONS(2335), + [anon_sym_async] = ACTIONS(2335), + [anon_sym_break] = ACTIONS(2335), + [anon_sym_const] = ACTIONS(2335), + [anon_sym_continue] = ACTIONS(2335), + [anon_sym_default] = ACTIONS(2335), + [anon_sym_enum] = ACTIONS(2335), + [anon_sym_fn] = ACTIONS(2335), + [anon_sym_for] = ACTIONS(2335), + [anon_sym_gen] = ACTIONS(2335), + [anon_sym_if] = ACTIONS(2335), + [anon_sym_impl] = ACTIONS(2335), + [anon_sym_let] = ACTIONS(2335), + [anon_sym_loop] = ACTIONS(2335), + [anon_sym_match] = ACTIONS(2335), + [anon_sym_mod] = ACTIONS(2335), + [anon_sym_pub] = ACTIONS(2335), + [anon_sym_return] = ACTIONS(2335), + [anon_sym_static] = ACTIONS(2335), + [anon_sym_struct] = ACTIONS(2335), + [anon_sym_trait] = ACTIONS(2335), + [anon_sym_type] = ACTIONS(2335), + [anon_sym_union] = ACTIONS(2335), + [anon_sym_unsafe] = ACTIONS(2335), + [anon_sym_use] = ACTIONS(2335), + [anon_sym_while] = ACTIONS(2335), + [anon_sym_extern] = ACTIONS(2335), + [anon_sym_yield] = ACTIONS(2335), + [anon_sym_move] = ACTIONS(2335), + [anon_sym_try] = ACTIONS(2335), + [sym_integer_literal] = ACTIONS(2333), + [aux_sym_string_literal_token1] = ACTIONS(2333), + [sym_char_literal] = ACTIONS(2333), + [anon_sym_true] = ACTIONS(2335), + [anon_sym_false] = ACTIONS(2335), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2335), + [sym_super] = ACTIONS(2335), + [sym_crate] = ACTIONS(2335), + [sym_metavariable] = ACTIONS(2333), + [sym__raw_string_literal_start] = ACTIONS(2333), + [sym_float_literal] = ACTIONS(2333), }, [613] = { [sym_line_comment] = STATE(613), [sym_block_comment] = STATE(613), - [ts_builtin_sym_end] = ACTIONS(2203), - [sym_identifier] = ACTIONS(2205), - [anon_sym_SEMI] = ACTIONS(2203), - [anon_sym_macro_rules_BANG] = ACTIONS(2203), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_LBRACE] = ACTIONS(2203), - [anon_sym_RBRACE] = ACTIONS(2203), - [anon_sym_STAR] = ACTIONS(2203), - [anon_sym_u8] = ACTIONS(2205), - [anon_sym_i8] = ACTIONS(2205), - [anon_sym_u16] = ACTIONS(2205), - [anon_sym_i16] = ACTIONS(2205), - [anon_sym_u32] = ACTIONS(2205), - [anon_sym_i32] = ACTIONS(2205), - [anon_sym_u64] = ACTIONS(2205), - [anon_sym_i64] = ACTIONS(2205), - [anon_sym_u128] = ACTIONS(2205), - [anon_sym_i128] = ACTIONS(2205), - [anon_sym_isize] = ACTIONS(2205), - [anon_sym_usize] = ACTIONS(2205), - [anon_sym_f32] = ACTIONS(2205), - [anon_sym_f64] = ACTIONS(2205), - [anon_sym_bool] = ACTIONS(2205), - [anon_sym_str] = ACTIONS(2205), - [anon_sym_char] = ACTIONS(2205), - [anon_sym_DASH] = ACTIONS(2203), - [anon_sym_BANG] = ACTIONS(2203), - [anon_sym_AMP] = ACTIONS(2203), - [anon_sym_PIPE] = ACTIONS(2203), - [anon_sym_LT] = ACTIONS(2203), - [anon_sym_DOT_DOT] = ACTIONS(2203), - [anon_sym_COLON_COLON] = ACTIONS(2203), - [anon_sym_POUND] = ACTIONS(2203), - [anon_sym_SQUOTE] = ACTIONS(2205), - [anon_sym_async] = ACTIONS(2205), - [anon_sym_break] = ACTIONS(2205), - [anon_sym_const] = ACTIONS(2205), - [anon_sym_continue] = ACTIONS(2205), - [anon_sym_default] = ACTIONS(2205), - [anon_sym_enum] = ACTIONS(2205), - [anon_sym_fn] = ACTIONS(2205), - [anon_sym_for] = ACTIONS(2205), - [anon_sym_gen] = ACTIONS(2205), - [anon_sym_if] = ACTIONS(2205), - [anon_sym_impl] = ACTIONS(2205), - [anon_sym_let] = ACTIONS(2205), - [anon_sym_loop] = ACTIONS(2205), - [anon_sym_match] = ACTIONS(2205), - [anon_sym_mod] = ACTIONS(2205), - [anon_sym_pub] = ACTIONS(2205), - [anon_sym_return] = ACTIONS(2205), - [anon_sym_static] = ACTIONS(2205), - [anon_sym_struct] = ACTIONS(2205), - [anon_sym_trait] = ACTIONS(2205), - [anon_sym_type] = ACTIONS(2205), - [anon_sym_union] = ACTIONS(2205), - [anon_sym_unsafe] = ACTIONS(2205), - [anon_sym_use] = ACTIONS(2205), - [anon_sym_while] = ACTIONS(2205), - [anon_sym_extern] = ACTIONS(2205), - [anon_sym_yield] = ACTIONS(2205), - [anon_sym_move] = ACTIONS(2205), - [anon_sym_try] = ACTIONS(2205), - [sym_integer_literal] = ACTIONS(2203), - [aux_sym_string_literal_token1] = ACTIONS(2203), - [sym_char_literal] = ACTIONS(2203), - [anon_sym_true] = ACTIONS(2205), - [anon_sym_false] = ACTIONS(2205), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2205), - [sym_super] = ACTIONS(2205), - [sym_crate] = ACTIONS(2205), - [sym_metavariable] = ACTIONS(2203), - [sym__raw_string_literal_start] = ACTIONS(2203), - [sym_float_literal] = ACTIONS(2203), + [ts_builtin_sym_end] = ACTIONS(2337), + [sym_identifier] = ACTIONS(2339), + [anon_sym_SEMI] = ACTIONS(2337), + [anon_sym_macro_rules_BANG] = ACTIONS(2337), + [anon_sym_LPAREN] = ACTIONS(2337), + [anon_sym_LBRACK] = ACTIONS(2337), + [anon_sym_LBRACE] = ACTIONS(2337), + [anon_sym_RBRACE] = ACTIONS(2337), + [anon_sym_STAR] = ACTIONS(2337), + [anon_sym_u8] = ACTIONS(2339), + [anon_sym_i8] = ACTIONS(2339), + [anon_sym_u16] = ACTIONS(2339), + [anon_sym_i16] = ACTIONS(2339), + [anon_sym_u32] = ACTIONS(2339), + [anon_sym_i32] = ACTIONS(2339), + [anon_sym_u64] = ACTIONS(2339), + [anon_sym_i64] = ACTIONS(2339), + [anon_sym_u128] = ACTIONS(2339), + [anon_sym_i128] = ACTIONS(2339), + [anon_sym_isize] = ACTIONS(2339), + [anon_sym_usize] = ACTIONS(2339), + [anon_sym_f32] = ACTIONS(2339), + [anon_sym_f64] = ACTIONS(2339), + [anon_sym_bool] = ACTIONS(2339), + [anon_sym_str] = ACTIONS(2339), + [anon_sym_char] = ACTIONS(2339), + [anon_sym_DASH] = ACTIONS(2337), + [anon_sym_BANG] = ACTIONS(2337), + [anon_sym_AMP] = ACTIONS(2337), + [anon_sym_PIPE] = ACTIONS(2337), + [anon_sym_LT] = ACTIONS(2337), + [anon_sym_DOT_DOT] = ACTIONS(2337), + [anon_sym_COLON_COLON] = ACTIONS(2337), + [anon_sym_POUND] = ACTIONS(2337), + [anon_sym_SQUOTE] = ACTIONS(2339), + [anon_sym_async] = ACTIONS(2339), + [anon_sym_break] = ACTIONS(2339), + [anon_sym_const] = ACTIONS(2339), + [anon_sym_continue] = ACTIONS(2339), + [anon_sym_default] = ACTIONS(2339), + [anon_sym_enum] = ACTIONS(2339), + [anon_sym_fn] = ACTIONS(2339), + [anon_sym_for] = ACTIONS(2339), + [anon_sym_gen] = ACTIONS(2339), + [anon_sym_if] = ACTIONS(2339), + [anon_sym_impl] = ACTIONS(2339), + [anon_sym_let] = ACTIONS(2339), + [anon_sym_loop] = ACTIONS(2339), + [anon_sym_match] = ACTIONS(2339), + [anon_sym_mod] = ACTIONS(2339), + [anon_sym_pub] = ACTIONS(2339), + [anon_sym_return] = ACTIONS(2339), + [anon_sym_static] = ACTIONS(2339), + [anon_sym_struct] = ACTIONS(2339), + [anon_sym_trait] = ACTIONS(2339), + [anon_sym_type] = ACTIONS(2339), + [anon_sym_union] = ACTIONS(2339), + [anon_sym_unsafe] = ACTIONS(2339), + [anon_sym_use] = ACTIONS(2339), + [anon_sym_while] = ACTIONS(2339), + [anon_sym_extern] = ACTIONS(2339), + [anon_sym_yield] = ACTIONS(2339), + [anon_sym_move] = ACTIONS(2339), + [anon_sym_try] = ACTIONS(2339), + [sym_integer_literal] = ACTIONS(2337), + [aux_sym_string_literal_token1] = ACTIONS(2337), + [sym_char_literal] = ACTIONS(2337), + [anon_sym_true] = ACTIONS(2339), + [anon_sym_false] = ACTIONS(2339), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2339), + [sym_super] = ACTIONS(2339), + [sym_crate] = ACTIONS(2339), + [sym_metavariable] = ACTIONS(2337), + [sym__raw_string_literal_start] = ACTIONS(2337), + [sym_float_literal] = ACTIONS(2337), }, [614] = { [sym_line_comment] = STATE(614), [sym_block_comment] = STATE(614), - [ts_builtin_sym_end] = ACTIONS(2207), - [sym_identifier] = ACTIONS(2209), - [anon_sym_SEMI] = ACTIONS(2207), - [anon_sym_macro_rules_BANG] = ACTIONS(2207), - [anon_sym_LPAREN] = ACTIONS(2207), - [anon_sym_LBRACK] = ACTIONS(2207), - [anon_sym_LBRACE] = ACTIONS(2207), - [anon_sym_RBRACE] = ACTIONS(2207), - [anon_sym_STAR] = ACTIONS(2207), - [anon_sym_u8] = ACTIONS(2209), - [anon_sym_i8] = ACTIONS(2209), - [anon_sym_u16] = ACTIONS(2209), - [anon_sym_i16] = ACTIONS(2209), - [anon_sym_u32] = ACTIONS(2209), - [anon_sym_i32] = ACTIONS(2209), - [anon_sym_u64] = ACTIONS(2209), - [anon_sym_i64] = ACTIONS(2209), - [anon_sym_u128] = ACTIONS(2209), - [anon_sym_i128] = ACTIONS(2209), - [anon_sym_isize] = ACTIONS(2209), - [anon_sym_usize] = ACTIONS(2209), - [anon_sym_f32] = ACTIONS(2209), - [anon_sym_f64] = ACTIONS(2209), - [anon_sym_bool] = ACTIONS(2209), - [anon_sym_str] = ACTIONS(2209), - [anon_sym_char] = ACTIONS(2209), - [anon_sym_DASH] = ACTIONS(2207), - [anon_sym_BANG] = ACTIONS(2207), - [anon_sym_AMP] = ACTIONS(2207), - [anon_sym_PIPE] = ACTIONS(2207), - [anon_sym_LT] = ACTIONS(2207), - [anon_sym_DOT_DOT] = ACTIONS(2207), - [anon_sym_COLON_COLON] = ACTIONS(2207), - [anon_sym_POUND] = ACTIONS(2207), - [anon_sym_SQUOTE] = ACTIONS(2209), - [anon_sym_async] = ACTIONS(2209), - [anon_sym_break] = ACTIONS(2209), - [anon_sym_const] = ACTIONS(2209), - [anon_sym_continue] = ACTIONS(2209), - [anon_sym_default] = ACTIONS(2209), - [anon_sym_enum] = ACTIONS(2209), - [anon_sym_fn] = ACTIONS(2209), - [anon_sym_for] = ACTIONS(2209), - [anon_sym_gen] = ACTIONS(2209), - [anon_sym_if] = ACTIONS(2209), - [anon_sym_impl] = ACTIONS(2209), - [anon_sym_let] = ACTIONS(2209), - [anon_sym_loop] = ACTIONS(2209), - [anon_sym_match] = ACTIONS(2209), - [anon_sym_mod] = ACTIONS(2209), - [anon_sym_pub] = ACTIONS(2209), - [anon_sym_return] = ACTIONS(2209), - [anon_sym_static] = ACTIONS(2209), - [anon_sym_struct] = ACTIONS(2209), - [anon_sym_trait] = ACTIONS(2209), - [anon_sym_type] = ACTIONS(2209), - [anon_sym_union] = ACTIONS(2209), - [anon_sym_unsafe] = ACTIONS(2209), - [anon_sym_use] = ACTIONS(2209), - [anon_sym_while] = ACTIONS(2209), - [anon_sym_extern] = ACTIONS(2209), - [anon_sym_yield] = ACTIONS(2209), - [anon_sym_move] = ACTIONS(2209), - [anon_sym_try] = ACTIONS(2209), - [sym_integer_literal] = ACTIONS(2207), - [aux_sym_string_literal_token1] = ACTIONS(2207), - [sym_char_literal] = ACTIONS(2207), - [anon_sym_true] = ACTIONS(2209), - [anon_sym_false] = ACTIONS(2209), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2209), - [sym_super] = ACTIONS(2209), - [sym_crate] = ACTIONS(2209), - [sym_metavariable] = ACTIONS(2207), - [sym__raw_string_literal_start] = ACTIONS(2207), - [sym_float_literal] = ACTIONS(2207), + [ts_builtin_sym_end] = ACTIONS(2341), + [sym_identifier] = ACTIONS(2343), + [anon_sym_SEMI] = ACTIONS(2341), + [anon_sym_macro_rules_BANG] = ACTIONS(2341), + [anon_sym_LPAREN] = ACTIONS(2341), + [anon_sym_LBRACK] = ACTIONS(2341), + [anon_sym_LBRACE] = ACTIONS(2341), + [anon_sym_RBRACE] = ACTIONS(2341), + [anon_sym_STAR] = ACTIONS(2341), + [anon_sym_u8] = ACTIONS(2343), + [anon_sym_i8] = ACTIONS(2343), + [anon_sym_u16] = ACTIONS(2343), + [anon_sym_i16] = ACTIONS(2343), + [anon_sym_u32] = ACTIONS(2343), + [anon_sym_i32] = ACTIONS(2343), + [anon_sym_u64] = ACTIONS(2343), + [anon_sym_i64] = ACTIONS(2343), + [anon_sym_u128] = ACTIONS(2343), + [anon_sym_i128] = ACTIONS(2343), + [anon_sym_isize] = ACTIONS(2343), + [anon_sym_usize] = ACTIONS(2343), + [anon_sym_f32] = ACTIONS(2343), + [anon_sym_f64] = ACTIONS(2343), + [anon_sym_bool] = ACTIONS(2343), + [anon_sym_str] = ACTIONS(2343), + [anon_sym_char] = ACTIONS(2343), + [anon_sym_DASH] = ACTIONS(2341), + [anon_sym_BANG] = ACTIONS(2341), + [anon_sym_AMP] = ACTIONS(2341), + [anon_sym_PIPE] = ACTIONS(2341), + [anon_sym_LT] = ACTIONS(2341), + [anon_sym_DOT_DOT] = ACTIONS(2341), + [anon_sym_COLON_COLON] = ACTIONS(2341), + [anon_sym_POUND] = ACTIONS(2341), + [anon_sym_SQUOTE] = ACTIONS(2343), + [anon_sym_async] = ACTIONS(2343), + [anon_sym_break] = ACTIONS(2343), + [anon_sym_const] = ACTIONS(2343), + [anon_sym_continue] = ACTIONS(2343), + [anon_sym_default] = ACTIONS(2343), + [anon_sym_enum] = ACTIONS(2343), + [anon_sym_fn] = ACTIONS(2343), + [anon_sym_for] = ACTIONS(2343), + [anon_sym_gen] = ACTIONS(2343), + [anon_sym_if] = ACTIONS(2343), + [anon_sym_impl] = ACTIONS(2343), + [anon_sym_let] = ACTIONS(2343), + [anon_sym_loop] = ACTIONS(2343), + [anon_sym_match] = ACTIONS(2343), + [anon_sym_mod] = ACTIONS(2343), + [anon_sym_pub] = ACTIONS(2343), + [anon_sym_return] = ACTIONS(2343), + [anon_sym_static] = ACTIONS(2343), + [anon_sym_struct] = ACTIONS(2343), + [anon_sym_trait] = ACTIONS(2343), + [anon_sym_type] = ACTIONS(2343), + [anon_sym_union] = ACTIONS(2343), + [anon_sym_unsafe] = ACTIONS(2343), + [anon_sym_use] = ACTIONS(2343), + [anon_sym_while] = ACTIONS(2343), + [anon_sym_extern] = ACTIONS(2343), + [anon_sym_yield] = ACTIONS(2343), + [anon_sym_move] = ACTIONS(2343), + [anon_sym_try] = ACTIONS(2343), + [sym_integer_literal] = ACTIONS(2341), + [aux_sym_string_literal_token1] = ACTIONS(2341), + [sym_char_literal] = ACTIONS(2341), + [anon_sym_true] = ACTIONS(2343), + [anon_sym_false] = ACTIONS(2343), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2343), + [sym_super] = ACTIONS(2343), + [sym_crate] = ACTIONS(2343), + [sym_metavariable] = ACTIONS(2341), + [sym__raw_string_literal_start] = ACTIONS(2341), + [sym_float_literal] = ACTIONS(2341), }, [615] = { [sym_line_comment] = STATE(615), [sym_block_comment] = STATE(615), - [ts_builtin_sym_end] = ACTIONS(2211), - [sym_identifier] = ACTIONS(2213), - [anon_sym_SEMI] = ACTIONS(2211), - [anon_sym_macro_rules_BANG] = ACTIONS(2211), - [anon_sym_LPAREN] = ACTIONS(2211), - [anon_sym_LBRACK] = ACTIONS(2211), - [anon_sym_LBRACE] = ACTIONS(2211), - [anon_sym_RBRACE] = ACTIONS(2211), - [anon_sym_STAR] = ACTIONS(2211), - [anon_sym_u8] = ACTIONS(2213), - [anon_sym_i8] = ACTIONS(2213), - [anon_sym_u16] = ACTIONS(2213), - [anon_sym_i16] = ACTIONS(2213), - [anon_sym_u32] = ACTIONS(2213), - [anon_sym_i32] = ACTIONS(2213), - [anon_sym_u64] = ACTIONS(2213), - [anon_sym_i64] = ACTIONS(2213), - [anon_sym_u128] = ACTIONS(2213), - [anon_sym_i128] = ACTIONS(2213), - [anon_sym_isize] = ACTIONS(2213), - [anon_sym_usize] = ACTIONS(2213), - [anon_sym_f32] = ACTIONS(2213), - [anon_sym_f64] = ACTIONS(2213), - [anon_sym_bool] = ACTIONS(2213), - [anon_sym_str] = ACTIONS(2213), - [anon_sym_char] = ACTIONS(2213), - [anon_sym_DASH] = ACTIONS(2211), - [anon_sym_BANG] = ACTIONS(2211), - [anon_sym_AMP] = ACTIONS(2211), - [anon_sym_PIPE] = ACTIONS(2211), - [anon_sym_LT] = ACTIONS(2211), - [anon_sym_DOT_DOT] = ACTIONS(2211), - [anon_sym_COLON_COLON] = ACTIONS(2211), - [anon_sym_POUND] = ACTIONS(2211), - [anon_sym_SQUOTE] = ACTIONS(2213), - [anon_sym_async] = ACTIONS(2213), - [anon_sym_break] = ACTIONS(2213), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_continue] = ACTIONS(2213), - [anon_sym_default] = ACTIONS(2213), - [anon_sym_enum] = ACTIONS(2213), - [anon_sym_fn] = ACTIONS(2213), - [anon_sym_for] = ACTIONS(2213), - [anon_sym_gen] = ACTIONS(2213), - [anon_sym_if] = ACTIONS(2213), - [anon_sym_impl] = ACTIONS(2213), - [anon_sym_let] = ACTIONS(2213), - [anon_sym_loop] = ACTIONS(2213), - [anon_sym_match] = ACTIONS(2213), - [anon_sym_mod] = ACTIONS(2213), - [anon_sym_pub] = ACTIONS(2213), - [anon_sym_return] = ACTIONS(2213), - [anon_sym_static] = ACTIONS(2213), - [anon_sym_struct] = ACTIONS(2213), - [anon_sym_trait] = ACTIONS(2213), - [anon_sym_type] = ACTIONS(2213), - [anon_sym_union] = ACTIONS(2213), - [anon_sym_unsafe] = ACTIONS(2213), - [anon_sym_use] = ACTIONS(2213), - [anon_sym_while] = ACTIONS(2213), - [anon_sym_extern] = ACTIONS(2213), - [anon_sym_yield] = ACTIONS(2213), - [anon_sym_move] = ACTIONS(2213), - [anon_sym_try] = ACTIONS(2213), - [sym_integer_literal] = ACTIONS(2211), - [aux_sym_string_literal_token1] = ACTIONS(2211), - [sym_char_literal] = ACTIONS(2211), - [anon_sym_true] = ACTIONS(2213), - [anon_sym_false] = ACTIONS(2213), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2213), - [sym_super] = ACTIONS(2213), - [sym_crate] = ACTIONS(2213), - [sym_metavariable] = ACTIONS(2211), - [sym__raw_string_literal_start] = ACTIONS(2211), - [sym_float_literal] = ACTIONS(2211), + [ts_builtin_sym_end] = ACTIONS(2345), + [sym_identifier] = ACTIONS(2347), + [anon_sym_SEMI] = ACTIONS(2345), + [anon_sym_macro_rules_BANG] = ACTIONS(2345), + [anon_sym_LPAREN] = ACTIONS(2345), + [anon_sym_LBRACK] = ACTIONS(2345), + [anon_sym_LBRACE] = ACTIONS(2345), + [anon_sym_RBRACE] = ACTIONS(2345), + [anon_sym_STAR] = ACTIONS(2345), + [anon_sym_u8] = ACTIONS(2347), + [anon_sym_i8] = ACTIONS(2347), + [anon_sym_u16] = ACTIONS(2347), + [anon_sym_i16] = ACTIONS(2347), + [anon_sym_u32] = ACTIONS(2347), + [anon_sym_i32] = ACTIONS(2347), + [anon_sym_u64] = ACTIONS(2347), + [anon_sym_i64] = ACTIONS(2347), + [anon_sym_u128] = ACTIONS(2347), + [anon_sym_i128] = ACTIONS(2347), + [anon_sym_isize] = ACTIONS(2347), + [anon_sym_usize] = ACTIONS(2347), + [anon_sym_f32] = ACTIONS(2347), + [anon_sym_f64] = ACTIONS(2347), + [anon_sym_bool] = ACTIONS(2347), + [anon_sym_str] = ACTIONS(2347), + [anon_sym_char] = ACTIONS(2347), + [anon_sym_DASH] = ACTIONS(2345), + [anon_sym_BANG] = ACTIONS(2345), + [anon_sym_AMP] = ACTIONS(2345), + [anon_sym_PIPE] = ACTIONS(2345), + [anon_sym_LT] = ACTIONS(2345), + [anon_sym_DOT_DOT] = ACTIONS(2345), + [anon_sym_COLON_COLON] = ACTIONS(2345), + [anon_sym_POUND] = ACTIONS(2345), + [anon_sym_SQUOTE] = ACTIONS(2347), + [anon_sym_async] = ACTIONS(2347), + [anon_sym_break] = ACTIONS(2347), + [anon_sym_const] = ACTIONS(2347), + [anon_sym_continue] = ACTIONS(2347), + [anon_sym_default] = ACTIONS(2347), + [anon_sym_enum] = ACTIONS(2347), + [anon_sym_fn] = ACTIONS(2347), + [anon_sym_for] = ACTIONS(2347), + [anon_sym_gen] = ACTIONS(2347), + [anon_sym_if] = ACTIONS(2347), + [anon_sym_impl] = ACTIONS(2347), + [anon_sym_let] = ACTIONS(2347), + [anon_sym_loop] = ACTIONS(2347), + [anon_sym_match] = ACTIONS(2347), + [anon_sym_mod] = ACTIONS(2347), + [anon_sym_pub] = ACTIONS(2347), + [anon_sym_return] = ACTIONS(2347), + [anon_sym_static] = ACTIONS(2347), + [anon_sym_struct] = ACTIONS(2347), + [anon_sym_trait] = ACTIONS(2347), + [anon_sym_type] = ACTIONS(2347), + [anon_sym_union] = ACTIONS(2347), + [anon_sym_unsafe] = ACTIONS(2347), + [anon_sym_use] = ACTIONS(2347), + [anon_sym_while] = ACTIONS(2347), + [anon_sym_extern] = ACTIONS(2347), + [anon_sym_yield] = ACTIONS(2347), + [anon_sym_move] = ACTIONS(2347), + [anon_sym_try] = ACTIONS(2347), + [sym_integer_literal] = ACTIONS(2345), + [aux_sym_string_literal_token1] = ACTIONS(2345), + [sym_char_literal] = ACTIONS(2345), + [anon_sym_true] = ACTIONS(2347), + [anon_sym_false] = ACTIONS(2347), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2347), + [sym_super] = ACTIONS(2347), + [sym_crate] = ACTIONS(2347), + [sym_metavariable] = ACTIONS(2345), + [sym__raw_string_literal_start] = ACTIONS(2345), + [sym_float_literal] = ACTIONS(2345), }, [616] = { [sym_line_comment] = STATE(616), [sym_block_comment] = STATE(616), - [ts_builtin_sym_end] = ACTIONS(2215), - [sym_identifier] = ACTIONS(2217), - [anon_sym_SEMI] = ACTIONS(2215), - [anon_sym_macro_rules_BANG] = ACTIONS(2215), - [anon_sym_LPAREN] = ACTIONS(2215), - [anon_sym_LBRACK] = ACTIONS(2215), - [anon_sym_LBRACE] = ACTIONS(2215), - [anon_sym_RBRACE] = ACTIONS(2215), - [anon_sym_STAR] = ACTIONS(2215), - [anon_sym_u8] = ACTIONS(2217), - [anon_sym_i8] = ACTIONS(2217), - [anon_sym_u16] = ACTIONS(2217), - [anon_sym_i16] = ACTIONS(2217), - [anon_sym_u32] = ACTIONS(2217), - [anon_sym_i32] = ACTIONS(2217), - [anon_sym_u64] = ACTIONS(2217), - [anon_sym_i64] = ACTIONS(2217), - [anon_sym_u128] = ACTIONS(2217), - [anon_sym_i128] = ACTIONS(2217), - [anon_sym_isize] = ACTIONS(2217), - [anon_sym_usize] = ACTIONS(2217), - [anon_sym_f32] = ACTIONS(2217), - [anon_sym_f64] = ACTIONS(2217), - [anon_sym_bool] = ACTIONS(2217), - [anon_sym_str] = ACTIONS(2217), - [anon_sym_char] = ACTIONS(2217), - [anon_sym_DASH] = ACTIONS(2215), - [anon_sym_BANG] = ACTIONS(2215), - [anon_sym_AMP] = ACTIONS(2215), - [anon_sym_PIPE] = ACTIONS(2215), - [anon_sym_LT] = ACTIONS(2215), - [anon_sym_DOT_DOT] = ACTIONS(2215), - [anon_sym_COLON_COLON] = ACTIONS(2215), - [anon_sym_POUND] = ACTIONS(2215), - [anon_sym_SQUOTE] = ACTIONS(2217), - [anon_sym_async] = ACTIONS(2217), - [anon_sym_break] = ACTIONS(2217), - [anon_sym_const] = ACTIONS(2217), - [anon_sym_continue] = ACTIONS(2217), - [anon_sym_default] = ACTIONS(2217), - [anon_sym_enum] = ACTIONS(2217), - [anon_sym_fn] = ACTIONS(2217), - [anon_sym_for] = ACTIONS(2217), - [anon_sym_gen] = ACTIONS(2217), - [anon_sym_if] = ACTIONS(2217), - [anon_sym_impl] = ACTIONS(2217), - [anon_sym_let] = ACTIONS(2217), - [anon_sym_loop] = ACTIONS(2217), - [anon_sym_match] = ACTIONS(2217), - [anon_sym_mod] = ACTIONS(2217), - [anon_sym_pub] = ACTIONS(2217), - [anon_sym_return] = ACTIONS(2217), - [anon_sym_static] = ACTIONS(2217), - [anon_sym_struct] = ACTIONS(2217), - [anon_sym_trait] = ACTIONS(2217), - [anon_sym_type] = ACTIONS(2217), - [anon_sym_union] = ACTIONS(2217), - [anon_sym_unsafe] = ACTIONS(2217), - [anon_sym_use] = ACTIONS(2217), - [anon_sym_while] = ACTIONS(2217), - [anon_sym_extern] = ACTIONS(2217), - [anon_sym_yield] = ACTIONS(2217), - [anon_sym_move] = ACTIONS(2217), - [anon_sym_try] = ACTIONS(2217), - [sym_integer_literal] = ACTIONS(2215), - [aux_sym_string_literal_token1] = ACTIONS(2215), - [sym_char_literal] = ACTIONS(2215), - [anon_sym_true] = ACTIONS(2217), - [anon_sym_false] = ACTIONS(2217), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2217), - [sym_super] = ACTIONS(2217), - [sym_crate] = ACTIONS(2217), - [sym_metavariable] = ACTIONS(2215), - [sym__raw_string_literal_start] = ACTIONS(2215), - [sym_float_literal] = ACTIONS(2215), + [ts_builtin_sym_end] = ACTIONS(2349), + [sym_identifier] = ACTIONS(2351), + [anon_sym_SEMI] = ACTIONS(2349), + [anon_sym_macro_rules_BANG] = ACTIONS(2349), + [anon_sym_LPAREN] = ACTIONS(2349), + [anon_sym_LBRACK] = ACTIONS(2349), + [anon_sym_LBRACE] = ACTIONS(2349), + [anon_sym_RBRACE] = ACTIONS(2349), + [anon_sym_STAR] = ACTIONS(2349), + [anon_sym_u8] = ACTIONS(2351), + [anon_sym_i8] = ACTIONS(2351), + [anon_sym_u16] = ACTIONS(2351), + [anon_sym_i16] = ACTIONS(2351), + [anon_sym_u32] = ACTIONS(2351), + [anon_sym_i32] = ACTIONS(2351), + [anon_sym_u64] = ACTIONS(2351), + [anon_sym_i64] = ACTIONS(2351), + [anon_sym_u128] = ACTIONS(2351), + [anon_sym_i128] = ACTIONS(2351), + [anon_sym_isize] = ACTIONS(2351), + [anon_sym_usize] = ACTIONS(2351), + [anon_sym_f32] = ACTIONS(2351), + [anon_sym_f64] = ACTIONS(2351), + [anon_sym_bool] = ACTIONS(2351), + [anon_sym_str] = ACTIONS(2351), + [anon_sym_char] = ACTIONS(2351), + [anon_sym_DASH] = ACTIONS(2349), + [anon_sym_BANG] = ACTIONS(2349), + [anon_sym_AMP] = ACTIONS(2349), + [anon_sym_PIPE] = ACTIONS(2349), + [anon_sym_LT] = ACTIONS(2349), + [anon_sym_DOT_DOT] = ACTIONS(2349), + [anon_sym_COLON_COLON] = ACTIONS(2349), + [anon_sym_POUND] = ACTIONS(2349), + [anon_sym_SQUOTE] = ACTIONS(2351), + [anon_sym_async] = ACTIONS(2351), + [anon_sym_break] = ACTIONS(2351), + [anon_sym_const] = ACTIONS(2351), + [anon_sym_continue] = ACTIONS(2351), + [anon_sym_default] = ACTIONS(2351), + [anon_sym_enum] = ACTIONS(2351), + [anon_sym_fn] = ACTIONS(2351), + [anon_sym_for] = ACTIONS(2351), + [anon_sym_gen] = ACTIONS(2351), + [anon_sym_if] = ACTIONS(2351), + [anon_sym_impl] = ACTIONS(2351), + [anon_sym_let] = ACTIONS(2351), + [anon_sym_loop] = ACTIONS(2351), + [anon_sym_match] = ACTIONS(2351), + [anon_sym_mod] = ACTIONS(2351), + [anon_sym_pub] = ACTIONS(2351), + [anon_sym_return] = ACTIONS(2351), + [anon_sym_static] = ACTIONS(2351), + [anon_sym_struct] = ACTIONS(2351), + [anon_sym_trait] = ACTIONS(2351), + [anon_sym_type] = ACTIONS(2351), + [anon_sym_union] = ACTIONS(2351), + [anon_sym_unsafe] = ACTIONS(2351), + [anon_sym_use] = ACTIONS(2351), + [anon_sym_while] = ACTIONS(2351), + [anon_sym_extern] = ACTIONS(2351), + [anon_sym_yield] = ACTIONS(2351), + [anon_sym_move] = ACTIONS(2351), + [anon_sym_try] = ACTIONS(2351), + [sym_integer_literal] = ACTIONS(2349), + [aux_sym_string_literal_token1] = ACTIONS(2349), + [sym_char_literal] = ACTIONS(2349), + [anon_sym_true] = ACTIONS(2351), + [anon_sym_false] = ACTIONS(2351), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2351), + [sym_super] = ACTIONS(2351), + [sym_crate] = ACTIONS(2351), + [sym_metavariable] = ACTIONS(2349), + [sym__raw_string_literal_start] = ACTIONS(2349), + [sym_float_literal] = ACTIONS(2349), }, [617] = { [sym_line_comment] = STATE(617), [sym_block_comment] = STATE(617), - [ts_builtin_sym_end] = ACTIONS(2219), - [sym_identifier] = ACTIONS(2221), - [anon_sym_SEMI] = ACTIONS(2219), - [anon_sym_macro_rules_BANG] = ACTIONS(2219), - [anon_sym_LPAREN] = ACTIONS(2219), - [anon_sym_LBRACK] = ACTIONS(2219), - [anon_sym_LBRACE] = ACTIONS(2219), - [anon_sym_RBRACE] = ACTIONS(2219), - [anon_sym_STAR] = ACTIONS(2219), - [anon_sym_u8] = ACTIONS(2221), - [anon_sym_i8] = ACTIONS(2221), - [anon_sym_u16] = ACTIONS(2221), - [anon_sym_i16] = ACTIONS(2221), - [anon_sym_u32] = ACTIONS(2221), - [anon_sym_i32] = ACTIONS(2221), - [anon_sym_u64] = ACTIONS(2221), - [anon_sym_i64] = ACTIONS(2221), - [anon_sym_u128] = ACTIONS(2221), - [anon_sym_i128] = ACTIONS(2221), - [anon_sym_isize] = ACTIONS(2221), - [anon_sym_usize] = ACTIONS(2221), - [anon_sym_f32] = ACTIONS(2221), - [anon_sym_f64] = ACTIONS(2221), - [anon_sym_bool] = ACTIONS(2221), - [anon_sym_str] = ACTIONS(2221), - [anon_sym_char] = ACTIONS(2221), - [anon_sym_DASH] = ACTIONS(2219), - [anon_sym_BANG] = ACTIONS(2219), - [anon_sym_AMP] = ACTIONS(2219), - [anon_sym_PIPE] = ACTIONS(2219), - [anon_sym_LT] = ACTIONS(2219), - [anon_sym_DOT_DOT] = ACTIONS(2219), - [anon_sym_COLON_COLON] = ACTIONS(2219), - [anon_sym_POUND] = ACTIONS(2219), - [anon_sym_SQUOTE] = ACTIONS(2221), - [anon_sym_async] = ACTIONS(2221), - [anon_sym_break] = ACTIONS(2221), - [anon_sym_const] = ACTIONS(2221), - [anon_sym_continue] = ACTIONS(2221), - [anon_sym_default] = ACTIONS(2221), - [anon_sym_enum] = ACTIONS(2221), - [anon_sym_fn] = ACTIONS(2221), - [anon_sym_for] = ACTIONS(2221), - [anon_sym_gen] = ACTIONS(2221), - [anon_sym_if] = ACTIONS(2221), - [anon_sym_impl] = ACTIONS(2221), - [anon_sym_let] = ACTIONS(2221), - [anon_sym_loop] = ACTIONS(2221), - [anon_sym_match] = ACTIONS(2221), - [anon_sym_mod] = ACTIONS(2221), - [anon_sym_pub] = ACTIONS(2221), - [anon_sym_return] = ACTIONS(2221), - [anon_sym_static] = ACTIONS(2221), - [anon_sym_struct] = ACTIONS(2221), - [anon_sym_trait] = ACTIONS(2221), - [anon_sym_type] = ACTIONS(2221), - [anon_sym_union] = ACTIONS(2221), - [anon_sym_unsafe] = ACTIONS(2221), - [anon_sym_use] = ACTIONS(2221), - [anon_sym_while] = ACTIONS(2221), - [anon_sym_extern] = ACTIONS(2221), - [anon_sym_yield] = ACTIONS(2221), - [anon_sym_move] = ACTIONS(2221), - [anon_sym_try] = ACTIONS(2221), - [sym_integer_literal] = ACTIONS(2219), - [aux_sym_string_literal_token1] = ACTIONS(2219), - [sym_char_literal] = ACTIONS(2219), - [anon_sym_true] = ACTIONS(2221), - [anon_sym_false] = ACTIONS(2221), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2221), - [sym_super] = ACTIONS(2221), - [sym_crate] = ACTIONS(2221), - [sym_metavariable] = ACTIONS(2219), - [sym__raw_string_literal_start] = ACTIONS(2219), - [sym_float_literal] = ACTIONS(2219), + [ts_builtin_sym_end] = ACTIONS(2353), + [sym_identifier] = ACTIONS(2355), + [anon_sym_SEMI] = ACTIONS(2353), + [anon_sym_macro_rules_BANG] = ACTIONS(2353), + [anon_sym_LPAREN] = ACTIONS(2353), + [anon_sym_LBRACK] = ACTIONS(2353), + [anon_sym_LBRACE] = ACTIONS(2353), + [anon_sym_RBRACE] = ACTIONS(2353), + [anon_sym_STAR] = ACTIONS(2353), + [anon_sym_u8] = ACTIONS(2355), + [anon_sym_i8] = ACTIONS(2355), + [anon_sym_u16] = ACTIONS(2355), + [anon_sym_i16] = ACTIONS(2355), + [anon_sym_u32] = ACTIONS(2355), + [anon_sym_i32] = ACTIONS(2355), + [anon_sym_u64] = ACTIONS(2355), + [anon_sym_i64] = ACTIONS(2355), + [anon_sym_u128] = ACTIONS(2355), + [anon_sym_i128] = ACTIONS(2355), + [anon_sym_isize] = ACTIONS(2355), + [anon_sym_usize] = ACTIONS(2355), + [anon_sym_f32] = ACTIONS(2355), + [anon_sym_f64] = ACTIONS(2355), + [anon_sym_bool] = ACTIONS(2355), + [anon_sym_str] = ACTIONS(2355), + [anon_sym_char] = ACTIONS(2355), + [anon_sym_DASH] = ACTIONS(2353), + [anon_sym_BANG] = ACTIONS(2353), + [anon_sym_AMP] = ACTIONS(2353), + [anon_sym_PIPE] = ACTIONS(2353), + [anon_sym_LT] = ACTIONS(2353), + [anon_sym_DOT_DOT] = ACTIONS(2353), + [anon_sym_COLON_COLON] = ACTIONS(2353), + [anon_sym_POUND] = ACTIONS(2353), + [anon_sym_SQUOTE] = ACTIONS(2355), + [anon_sym_async] = ACTIONS(2355), + [anon_sym_break] = ACTIONS(2355), + [anon_sym_const] = ACTIONS(2355), + [anon_sym_continue] = ACTIONS(2355), + [anon_sym_default] = ACTIONS(2355), + [anon_sym_enum] = ACTIONS(2355), + [anon_sym_fn] = ACTIONS(2355), + [anon_sym_for] = ACTIONS(2355), + [anon_sym_gen] = ACTIONS(2355), + [anon_sym_if] = ACTIONS(2355), + [anon_sym_impl] = ACTIONS(2355), + [anon_sym_let] = ACTIONS(2355), + [anon_sym_loop] = ACTIONS(2355), + [anon_sym_match] = ACTIONS(2355), + [anon_sym_mod] = ACTIONS(2355), + [anon_sym_pub] = ACTIONS(2355), + [anon_sym_return] = ACTIONS(2355), + [anon_sym_static] = ACTIONS(2355), + [anon_sym_struct] = ACTIONS(2355), + [anon_sym_trait] = ACTIONS(2355), + [anon_sym_type] = ACTIONS(2355), + [anon_sym_union] = ACTIONS(2355), + [anon_sym_unsafe] = ACTIONS(2355), + [anon_sym_use] = ACTIONS(2355), + [anon_sym_while] = ACTIONS(2355), + [anon_sym_extern] = ACTIONS(2355), + [anon_sym_yield] = ACTIONS(2355), + [anon_sym_move] = ACTIONS(2355), + [anon_sym_try] = ACTIONS(2355), + [sym_integer_literal] = ACTIONS(2353), + [aux_sym_string_literal_token1] = ACTIONS(2353), + [sym_char_literal] = ACTIONS(2353), + [anon_sym_true] = ACTIONS(2355), + [anon_sym_false] = ACTIONS(2355), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2355), + [sym_super] = ACTIONS(2355), + [sym_crate] = ACTIONS(2355), + [sym_metavariable] = ACTIONS(2353), + [sym__raw_string_literal_start] = ACTIONS(2353), + [sym_float_literal] = ACTIONS(2353), }, [618] = { [sym_line_comment] = STATE(618), [sym_block_comment] = STATE(618), - [ts_builtin_sym_end] = ACTIONS(2223), - [sym_identifier] = ACTIONS(2225), - [anon_sym_SEMI] = ACTIONS(2223), - [anon_sym_macro_rules_BANG] = ACTIONS(2223), - [anon_sym_LPAREN] = ACTIONS(2223), - [anon_sym_LBRACK] = ACTIONS(2223), - [anon_sym_LBRACE] = ACTIONS(2223), - [anon_sym_RBRACE] = ACTIONS(2223), - [anon_sym_STAR] = ACTIONS(2223), - [anon_sym_u8] = ACTIONS(2225), - [anon_sym_i8] = ACTIONS(2225), - [anon_sym_u16] = ACTIONS(2225), - [anon_sym_i16] = ACTIONS(2225), - [anon_sym_u32] = ACTIONS(2225), - [anon_sym_i32] = ACTIONS(2225), - [anon_sym_u64] = ACTIONS(2225), - [anon_sym_i64] = ACTIONS(2225), - [anon_sym_u128] = ACTIONS(2225), - [anon_sym_i128] = ACTIONS(2225), - [anon_sym_isize] = ACTIONS(2225), - [anon_sym_usize] = ACTIONS(2225), - [anon_sym_f32] = ACTIONS(2225), - [anon_sym_f64] = ACTIONS(2225), - [anon_sym_bool] = ACTIONS(2225), - [anon_sym_str] = ACTIONS(2225), - [anon_sym_char] = ACTIONS(2225), - [anon_sym_DASH] = ACTIONS(2223), - [anon_sym_BANG] = ACTIONS(2223), - [anon_sym_AMP] = ACTIONS(2223), - [anon_sym_PIPE] = ACTIONS(2223), - [anon_sym_LT] = ACTIONS(2223), - [anon_sym_DOT_DOT] = ACTIONS(2223), - [anon_sym_COLON_COLON] = ACTIONS(2223), - [anon_sym_POUND] = ACTIONS(2223), - [anon_sym_SQUOTE] = ACTIONS(2225), - [anon_sym_async] = ACTIONS(2225), - [anon_sym_break] = ACTIONS(2225), - [anon_sym_const] = ACTIONS(2225), - [anon_sym_continue] = ACTIONS(2225), - [anon_sym_default] = ACTIONS(2225), - [anon_sym_enum] = ACTIONS(2225), - [anon_sym_fn] = ACTIONS(2225), - [anon_sym_for] = ACTIONS(2225), - [anon_sym_gen] = ACTIONS(2225), - [anon_sym_if] = ACTIONS(2225), - [anon_sym_impl] = ACTIONS(2225), - [anon_sym_let] = ACTIONS(2225), - [anon_sym_loop] = ACTIONS(2225), - [anon_sym_match] = ACTIONS(2225), - [anon_sym_mod] = ACTIONS(2225), - [anon_sym_pub] = ACTIONS(2225), - [anon_sym_return] = ACTIONS(2225), - [anon_sym_static] = ACTIONS(2225), - [anon_sym_struct] = ACTIONS(2225), - [anon_sym_trait] = ACTIONS(2225), - [anon_sym_type] = ACTIONS(2225), - [anon_sym_union] = ACTIONS(2225), - [anon_sym_unsafe] = ACTIONS(2225), - [anon_sym_use] = ACTIONS(2225), - [anon_sym_while] = ACTIONS(2225), - [anon_sym_extern] = ACTIONS(2225), - [anon_sym_yield] = ACTIONS(2225), - [anon_sym_move] = ACTIONS(2225), - [anon_sym_try] = ACTIONS(2225), - [sym_integer_literal] = ACTIONS(2223), - [aux_sym_string_literal_token1] = ACTIONS(2223), - [sym_char_literal] = ACTIONS(2223), - [anon_sym_true] = ACTIONS(2225), - [anon_sym_false] = ACTIONS(2225), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2225), - [sym_super] = ACTIONS(2225), - [sym_crate] = ACTIONS(2225), - [sym_metavariable] = ACTIONS(2223), - [sym__raw_string_literal_start] = ACTIONS(2223), - [sym_float_literal] = ACTIONS(2223), + [ts_builtin_sym_end] = ACTIONS(2357), + [sym_identifier] = ACTIONS(2359), + [anon_sym_SEMI] = ACTIONS(2357), + [anon_sym_macro_rules_BANG] = ACTIONS(2357), + [anon_sym_LPAREN] = ACTIONS(2357), + [anon_sym_LBRACK] = ACTIONS(2357), + [anon_sym_LBRACE] = ACTIONS(2357), + [anon_sym_RBRACE] = ACTIONS(2357), + [anon_sym_STAR] = ACTIONS(2357), + [anon_sym_u8] = ACTIONS(2359), + [anon_sym_i8] = ACTIONS(2359), + [anon_sym_u16] = ACTIONS(2359), + [anon_sym_i16] = ACTIONS(2359), + [anon_sym_u32] = ACTIONS(2359), + [anon_sym_i32] = ACTIONS(2359), + [anon_sym_u64] = ACTIONS(2359), + [anon_sym_i64] = ACTIONS(2359), + [anon_sym_u128] = ACTIONS(2359), + [anon_sym_i128] = ACTIONS(2359), + [anon_sym_isize] = ACTIONS(2359), + [anon_sym_usize] = ACTIONS(2359), + [anon_sym_f32] = ACTIONS(2359), + [anon_sym_f64] = ACTIONS(2359), + [anon_sym_bool] = ACTIONS(2359), + [anon_sym_str] = ACTIONS(2359), + [anon_sym_char] = ACTIONS(2359), + [anon_sym_DASH] = ACTIONS(2357), + [anon_sym_BANG] = ACTIONS(2357), + [anon_sym_AMP] = ACTIONS(2357), + [anon_sym_PIPE] = ACTIONS(2357), + [anon_sym_LT] = ACTIONS(2357), + [anon_sym_DOT_DOT] = ACTIONS(2357), + [anon_sym_COLON_COLON] = ACTIONS(2357), + [anon_sym_POUND] = ACTIONS(2357), + [anon_sym_SQUOTE] = ACTIONS(2359), + [anon_sym_async] = ACTIONS(2359), + [anon_sym_break] = ACTIONS(2359), + [anon_sym_const] = ACTIONS(2359), + [anon_sym_continue] = ACTIONS(2359), + [anon_sym_default] = ACTIONS(2359), + [anon_sym_enum] = ACTIONS(2359), + [anon_sym_fn] = ACTIONS(2359), + [anon_sym_for] = ACTIONS(2359), + [anon_sym_gen] = ACTIONS(2359), + [anon_sym_if] = ACTIONS(2359), + [anon_sym_impl] = ACTIONS(2359), + [anon_sym_let] = ACTIONS(2359), + [anon_sym_loop] = ACTIONS(2359), + [anon_sym_match] = ACTIONS(2359), + [anon_sym_mod] = ACTIONS(2359), + [anon_sym_pub] = ACTIONS(2359), + [anon_sym_return] = ACTIONS(2359), + [anon_sym_static] = ACTIONS(2359), + [anon_sym_struct] = ACTIONS(2359), + [anon_sym_trait] = ACTIONS(2359), + [anon_sym_type] = ACTIONS(2359), + [anon_sym_union] = ACTIONS(2359), + [anon_sym_unsafe] = ACTIONS(2359), + [anon_sym_use] = ACTIONS(2359), + [anon_sym_while] = ACTIONS(2359), + [anon_sym_extern] = ACTIONS(2359), + [anon_sym_yield] = ACTIONS(2359), + [anon_sym_move] = ACTIONS(2359), + [anon_sym_try] = ACTIONS(2359), + [sym_integer_literal] = ACTIONS(2357), + [aux_sym_string_literal_token1] = ACTIONS(2357), + [sym_char_literal] = ACTIONS(2357), + [anon_sym_true] = ACTIONS(2359), + [anon_sym_false] = ACTIONS(2359), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2359), + [sym_super] = ACTIONS(2359), + [sym_crate] = ACTIONS(2359), + [sym_metavariable] = ACTIONS(2357), + [sym__raw_string_literal_start] = ACTIONS(2357), + [sym_float_literal] = ACTIONS(2357), }, [619] = { [sym_line_comment] = STATE(619), [sym_block_comment] = STATE(619), - [ts_builtin_sym_end] = ACTIONS(2227), - [sym_identifier] = ACTIONS(2229), - [anon_sym_SEMI] = ACTIONS(2227), - [anon_sym_macro_rules_BANG] = ACTIONS(2227), - [anon_sym_LPAREN] = ACTIONS(2227), - [anon_sym_LBRACK] = ACTIONS(2227), - [anon_sym_LBRACE] = ACTIONS(2227), - [anon_sym_RBRACE] = ACTIONS(2227), - [anon_sym_STAR] = ACTIONS(2227), - [anon_sym_u8] = ACTIONS(2229), - [anon_sym_i8] = ACTIONS(2229), - [anon_sym_u16] = ACTIONS(2229), - [anon_sym_i16] = ACTIONS(2229), - [anon_sym_u32] = ACTIONS(2229), - [anon_sym_i32] = ACTIONS(2229), - [anon_sym_u64] = ACTIONS(2229), - [anon_sym_i64] = ACTIONS(2229), - [anon_sym_u128] = ACTIONS(2229), - [anon_sym_i128] = ACTIONS(2229), - [anon_sym_isize] = ACTIONS(2229), - [anon_sym_usize] = ACTIONS(2229), - [anon_sym_f32] = ACTIONS(2229), - [anon_sym_f64] = ACTIONS(2229), - [anon_sym_bool] = ACTIONS(2229), - [anon_sym_str] = ACTIONS(2229), - [anon_sym_char] = ACTIONS(2229), - [anon_sym_DASH] = ACTIONS(2227), - [anon_sym_BANG] = ACTIONS(2227), - [anon_sym_AMP] = ACTIONS(2227), - [anon_sym_PIPE] = ACTIONS(2227), - [anon_sym_LT] = ACTIONS(2227), - [anon_sym_DOT_DOT] = ACTIONS(2227), - [anon_sym_COLON_COLON] = ACTIONS(2227), - [anon_sym_POUND] = ACTIONS(2227), - [anon_sym_SQUOTE] = ACTIONS(2229), - [anon_sym_async] = ACTIONS(2229), - [anon_sym_break] = ACTIONS(2229), - [anon_sym_const] = ACTIONS(2229), - [anon_sym_continue] = ACTIONS(2229), - [anon_sym_default] = ACTIONS(2229), - [anon_sym_enum] = ACTIONS(2229), - [anon_sym_fn] = ACTIONS(2229), - [anon_sym_for] = ACTIONS(2229), - [anon_sym_gen] = ACTIONS(2229), - [anon_sym_if] = ACTIONS(2229), - [anon_sym_impl] = ACTIONS(2229), - [anon_sym_let] = ACTIONS(2229), - [anon_sym_loop] = ACTIONS(2229), - [anon_sym_match] = ACTIONS(2229), - [anon_sym_mod] = ACTIONS(2229), - [anon_sym_pub] = ACTIONS(2229), - [anon_sym_return] = ACTIONS(2229), - [anon_sym_static] = ACTIONS(2229), - [anon_sym_struct] = ACTIONS(2229), - [anon_sym_trait] = ACTIONS(2229), - [anon_sym_type] = ACTIONS(2229), - [anon_sym_union] = ACTIONS(2229), - [anon_sym_unsafe] = ACTIONS(2229), - [anon_sym_use] = ACTIONS(2229), - [anon_sym_while] = ACTIONS(2229), - [anon_sym_extern] = ACTIONS(2229), - [anon_sym_yield] = ACTIONS(2229), - [anon_sym_move] = ACTIONS(2229), - [anon_sym_try] = ACTIONS(2229), - [sym_integer_literal] = ACTIONS(2227), - [aux_sym_string_literal_token1] = ACTIONS(2227), - [sym_char_literal] = ACTIONS(2227), - [anon_sym_true] = ACTIONS(2229), - [anon_sym_false] = ACTIONS(2229), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2229), - [sym_super] = ACTIONS(2229), - [sym_crate] = ACTIONS(2229), - [sym_metavariable] = ACTIONS(2227), - [sym__raw_string_literal_start] = ACTIONS(2227), - [sym_float_literal] = ACTIONS(2227), + [ts_builtin_sym_end] = ACTIONS(2361), + [sym_identifier] = ACTIONS(2363), + [anon_sym_SEMI] = ACTIONS(2361), + [anon_sym_macro_rules_BANG] = ACTIONS(2361), + [anon_sym_LPAREN] = ACTIONS(2361), + [anon_sym_LBRACK] = ACTIONS(2361), + [anon_sym_LBRACE] = ACTIONS(2361), + [anon_sym_RBRACE] = ACTIONS(2361), + [anon_sym_STAR] = ACTIONS(2361), + [anon_sym_u8] = ACTIONS(2363), + [anon_sym_i8] = ACTIONS(2363), + [anon_sym_u16] = ACTIONS(2363), + [anon_sym_i16] = ACTIONS(2363), + [anon_sym_u32] = ACTIONS(2363), + [anon_sym_i32] = ACTIONS(2363), + [anon_sym_u64] = ACTIONS(2363), + [anon_sym_i64] = ACTIONS(2363), + [anon_sym_u128] = ACTIONS(2363), + [anon_sym_i128] = ACTIONS(2363), + [anon_sym_isize] = ACTIONS(2363), + [anon_sym_usize] = ACTIONS(2363), + [anon_sym_f32] = ACTIONS(2363), + [anon_sym_f64] = ACTIONS(2363), + [anon_sym_bool] = ACTIONS(2363), + [anon_sym_str] = ACTIONS(2363), + [anon_sym_char] = ACTIONS(2363), + [anon_sym_DASH] = ACTIONS(2361), + [anon_sym_BANG] = ACTIONS(2361), + [anon_sym_AMP] = ACTIONS(2361), + [anon_sym_PIPE] = ACTIONS(2361), + [anon_sym_LT] = ACTIONS(2361), + [anon_sym_DOT_DOT] = ACTIONS(2361), + [anon_sym_COLON_COLON] = ACTIONS(2361), + [anon_sym_POUND] = ACTIONS(2361), + [anon_sym_SQUOTE] = ACTIONS(2363), + [anon_sym_async] = ACTIONS(2363), + [anon_sym_break] = ACTIONS(2363), + [anon_sym_const] = ACTIONS(2363), + [anon_sym_continue] = ACTIONS(2363), + [anon_sym_default] = ACTIONS(2363), + [anon_sym_enum] = ACTIONS(2363), + [anon_sym_fn] = ACTIONS(2363), + [anon_sym_for] = ACTIONS(2363), + [anon_sym_gen] = ACTIONS(2363), + [anon_sym_if] = ACTIONS(2363), + [anon_sym_impl] = ACTIONS(2363), + [anon_sym_let] = ACTIONS(2363), + [anon_sym_loop] = ACTIONS(2363), + [anon_sym_match] = ACTIONS(2363), + [anon_sym_mod] = ACTIONS(2363), + [anon_sym_pub] = ACTIONS(2363), + [anon_sym_return] = ACTIONS(2363), + [anon_sym_static] = ACTIONS(2363), + [anon_sym_struct] = ACTIONS(2363), + [anon_sym_trait] = ACTIONS(2363), + [anon_sym_type] = ACTIONS(2363), + [anon_sym_union] = ACTIONS(2363), + [anon_sym_unsafe] = ACTIONS(2363), + [anon_sym_use] = ACTIONS(2363), + [anon_sym_while] = ACTIONS(2363), + [anon_sym_extern] = ACTIONS(2363), + [anon_sym_yield] = ACTIONS(2363), + [anon_sym_move] = ACTIONS(2363), + [anon_sym_try] = ACTIONS(2363), + [sym_integer_literal] = ACTIONS(2361), + [aux_sym_string_literal_token1] = ACTIONS(2361), + [sym_char_literal] = ACTIONS(2361), + [anon_sym_true] = ACTIONS(2363), + [anon_sym_false] = ACTIONS(2363), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2363), + [sym_super] = ACTIONS(2363), + [sym_crate] = ACTIONS(2363), + [sym_metavariable] = ACTIONS(2361), + [sym__raw_string_literal_start] = ACTIONS(2361), + [sym_float_literal] = ACTIONS(2361), }, [620] = { [sym_line_comment] = STATE(620), [sym_block_comment] = STATE(620), - [ts_builtin_sym_end] = ACTIONS(2231), - [sym_identifier] = ACTIONS(2233), - [anon_sym_SEMI] = ACTIONS(2231), - [anon_sym_macro_rules_BANG] = ACTIONS(2231), - [anon_sym_LPAREN] = ACTIONS(2231), - [anon_sym_LBRACK] = ACTIONS(2231), - [anon_sym_LBRACE] = ACTIONS(2231), - [anon_sym_RBRACE] = ACTIONS(2231), - [anon_sym_STAR] = ACTIONS(2231), - [anon_sym_u8] = ACTIONS(2233), - [anon_sym_i8] = ACTIONS(2233), - [anon_sym_u16] = ACTIONS(2233), - [anon_sym_i16] = ACTIONS(2233), - [anon_sym_u32] = ACTIONS(2233), - [anon_sym_i32] = ACTIONS(2233), - [anon_sym_u64] = ACTIONS(2233), - [anon_sym_i64] = ACTIONS(2233), - [anon_sym_u128] = ACTIONS(2233), - [anon_sym_i128] = ACTIONS(2233), - [anon_sym_isize] = ACTIONS(2233), - [anon_sym_usize] = ACTIONS(2233), - [anon_sym_f32] = ACTIONS(2233), - [anon_sym_f64] = ACTIONS(2233), - [anon_sym_bool] = ACTIONS(2233), - [anon_sym_str] = ACTIONS(2233), - [anon_sym_char] = ACTIONS(2233), - [anon_sym_DASH] = ACTIONS(2231), - [anon_sym_BANG] = ACTIONS(2231), - [anon_sym_AMP] = ACTIONS(2231), - [anon_sym_PIPE] = ACTIONS(2231), - [anon_sym_LT] = ACTIONS(2231), - [anon_sym_DOT_DOT] = ACTIONS(2231), - [anon_sym_COLON_COLON] = ACTIONS(2231), - [anon_sym_POUND] = ACTIONS(2231), - [anon_sym_SQUOTE] = ACTIONS(2233), - [anon_sym_async] = ACTIONS(2233), - [anon_sym_break] = ACTIONS(2233), - [anon_sym_const] = ACTIONS(2233), - [anon_sym_continue] = ACTIONS(2233), - [anon_sym_default] = ACTIONS(2233), - [anon_sym_enum] = ACTIONS(2233), - [anon_sym_fn] = ACTIONS(2233), - [anon_sym_for] = ACTIONS(2233), - [anon_sym_gen] = ACTIONS(2233), - [anon_sym_if] = ACTIONS(2233), - [anon_sym_impl] = ACTIONS(2233), - [anon_sym_let] = ACTIONS(2233), - [anon_sym_loop] = ACTIONS(2233), - [anon_sym_match] = ACTIONS(2233), - [anon_sym_mod] = ACTIONS(2233), - [anon_sym_pub] = ACTIONS(2233), - [anon_sym_return] = ACTIONS(2233), - [anon_sym_static] = ACTIONS(2233), - [anon_sym_struct] = ACTIONS(2233), - [anon_sym_trait] = ACTIONS(2233), - [anon_sym_type] = ACTIONS(2233), - [anon_sym_union] = ACTIONS(2233), - [anon_sym_unsafe] = ACTIONS(2233), - [anon_sym_use] = ACTIONS(2233), - [anon_sym_while] = ACTIONS(2233), - [anon_sym_extern] = ACTIONS(2233), - [anon_sym_yield] = ACTIONS(2233), - [anon_sym_move] = ACTIONS(2233), - [anon_sym_try] = ACTIONS(2233), - [sym_integer_literal] = ACTIONS(2231), - [aux_sym_string_literal_token1] = ACTIONS(2231), - [sym_char_literal] = ACTIONS(2231), - [anon_sym_true] = ACTIONS(2233), - [anon_sym_false] = ACTIONS(2233), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2233), - [sym_super] = ACTIONS(2233), - [sym_crate] = ACTIONS(2233), - [sym_metavariable] = ACTIONS(2231), - [sym__raw_string_literal_start] = ACTIONS(2231), - [sym_float_literal] = ACTIONS(2231), + [ts_builtin_sym_end] = ACTIONS(2365), + [sym_identifier] = ACTIONS(2367), + [anon_sym_SEMI] = ACTIONS(2365), + [anon_sym_macro_rules_BANG] = ACTIONS(2365), + [anon_sym_LPAREN] = ACTIONS(2365), + [anon_sym_LBRACK] = ACTIONS(2365), + [anon_sym_LBRACE] = ACTIONS(2365), + [anon_sym_RBRACE] = ACTIONS(2365), + [anon_sym_STAR] = ACTIONS(2365), + [anon_sym_u8] = ACTIONS(2367), + [anon_sym_i8] = ACTIONS(2367), + [anon_sym_u16] = ACTIONS(2367), + [anon_sym_i16] = ACTIONS(2367), + [anon_sym_u32] = ACTIONS(2367), + [anon_sym_i32] = ACTIONS(2367), + [anon_sym_u64] = ACTIONS(2367), + [anon_sym_i64] = ACTIONS(2367), + [anon_sym_u128] = ACTIONS(2367), + [anon_sym_i128] = ACTIONS(2367), + [anon_sym_isize] = ACTIONS(2367), + [anon_sym_usize] = ACTIONS(2367), + [anon_sym_f32] = ACTIONS(2367), + [anon_sym_f64] = ACTIONS(2367), + [anon_sym_bool] = ACTIONS(2367), + [anon_sym_str] = ACTIONS(2367), + [anon_sym_char] = ACTIONS(2367), + [anon_sym_DASH] = ACTIONS(2365), + [anon_sym_BANG] = ACTIONS(2365), + [anon_sym_AMP] = ACTIONS(2365), + [anon_sym_PIPE] = ACTIONS(2365), + [anon_sym_LT] = ACTIONS(2365), + [anon_sym_DOT_DOT] = ACTIONS(2365), + [anon_sym_COLON_COLON] = ACTIONS(2365), + [anon_sym_POUND] = ACTIONS(2365), + [anon_sym_SQUOTE] = ACTIONS(2367), + [anon_sym_async] = ACTIONS(2367), + [anon_sym_break] = ACTIONS(2367), + [anon_sym_const] = ACTIONS(2367), + [anon_sym_continue] = ACTIONS(2367), + [anon_sym_default] = ACTIONS(2367), + [anon_sym_enum] = ACTIONS(2367), + [anon_sym_fn] = ACTIONS(2367), + [anon_sym_for] = ACTIONS(2367), + [anon_sym_gen] = ACTIONS(2367), + [anon_sym_if] = ACTIONS(2367), + [anon_sym_impl] = ACTIONS(2367), + [anon_sym_let] = ACTIONS(2367), + [anon_sym_loop] = ACTIONS(2367), + [anon_sym_match] = ACTIONS(2367), + [anon_sym_mod] = ACTIONS(2367), + [anon_sym_pub] = ACTIONS(2367), + [anon_sym_return] = ACTIONS(2367), + [anon_sym_static] = ACTIONS(2367), + [anon_sym_struct] = ACTIONS(2367), + [anon_sym_trait] = ACTIONS(2367), + [anon_sym_type] = ACTIONS(2367), + [anon_sym_union] = ACTIONS(2367), + [anon_sym_unsafe] = ACTIONS(2367), + [anon_sym_use] = ACTIONS(2367), + [anon_sym_while] = ACTIONS(2367), + [anon_sym_extern] = ACTIONS(2367), + [anon_sym_yield] = ACTIONS(2367), + [anon_sym_move] = ACTIONS(2367), + [anon_sym_try] = ACTIONS(2367), + [sym_integer_literal] = ACTIONS(2365), + [aux_sym_string_literal_token1] = ACTIONS(2365), + [sym_char_literal] = ACTIONS(2365), + [anon_sym_true] = ACTIONS(2367), + [anon_sym_false] = ACTIONS(2367), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2367), + [sym_super] = ACTIONS(2367), + [sym_crate] = ACTIONS(2367), + [sym_metavariable] = ACTIONS(2365), + [sym__raw_string_literal_start] = ACTIONS(2365), + [sym_float_literal] = ACTIONS(2365), }, [621] = { [sym_line_comment] = STATE(621), [sym_block_comment] = STATE(621), - [ts_builtin_sym_end] = ACTIONS(2235), - [sym_identifier] = ACTIONS(2237), - [anon_sym_SEMI] = ACTIONS(2235), - [anon_sym_macro_rules_BANG] = ACTIONS(2235), - [anon_sym_LPAREN] = ACTIONS(2235), - [anon_sym_LBRACK] = ACTIONS(2235), - [anon_sym_LBRACE] = ACTIONS(2235), - [anon_sym_RBRACE] = ACTIONS(2235), - [anon_sym_STAR] = ACTIONS(2235), - [anon_sym_u8] = ACTIONS(2237), - [anon_sym_i8] = ACTIONS(2237), - [anon_sym_u16] = ACTIONS(2237), - [anon_sym_i16] = ACTIONS(2237), - [anon_sym_u32] = ACTIONS(2237), - [anon_sym_i32] = ACTIONS(2237), - [anon_sym_u64] = ACTIONS(2237), - [anon_sym_i64] = ACTIONS(2237), - [anon_sym_u128] = ACTIONS(2237), - [anon_sym_i128] = ACTIONS(2237), - [anon_sym_isize] = ACTIONS(2237), - [anon_sym_usize] = ACTIONS(2237), - [anon_sym_f32] = ACTIONS(2237), - [anon_sym_f64] = ACTIONS(2237), - [anon_sym_bool] = ACTIONS(2237), - [anon_sym_str] = ACTIONS(2237), - [anon_sym_char] = ACTIONS(2237), - [anon_sym_DASH] = ACTIONS(2235), - [anon_sym_BANG] = ACTIONS(2235), - [anon_sym_AMP] = ACTIONS(2235), - [anon_sym_PIPE] = ACTIONS(2235), - [anon_sym_LT] = ACTIONS(2235), - [anon_sym_DOT_DOT] = ACTIONS(2235), - [anon_sym_COLON_COLON] = ACTIONS(2235), - [anon_sym_POUND] = ACTIONS(2235), - [anon_sym_SQUOTE] = ACTIONS(2237), - [anon_sym_async] = ACTIONS(2237), - [anon_sym_break] = ACTIONS(2237), - [anon_sym_const] = ACTIONS(2237), - [anon_sym_continue] = ACTIONS(2237), - [anon_sym_default] = ACTIONS(2237), - [anon_sym_enum] = ACTIONS(2237), - [anon_sym_fn] = ACTIONS(2237), - [anon_sym_for] = ACTIONS(2237), - [anon_sym_gen] = ACTIONS(2237), - [anon_sym_if] = ACTIONS(2237), - [anon_sym_impl] = ACTIONS(2237), - [anon_sym_let] = ACTIONS(2237), - [anon_sym_loop] = ACTIONS(2237), - [anon_sym_match] = ACTIONS(2237), - [anon_sym_mod] = ACTIONS(2237), - [anon_sym_pub] = ACTIONS(2237), - [anon_sym_return] = ACTIONS(2237), - [anon_sym_static] = ACTIONS(2237), - [anon_sym_struct] = ACTIONS(2237), - [anon_sym_trait] = ACTIONS(2237), - [anon_sym_type] = ACTIONS(2237), - [anon_sym_union] = ACTIONS(2237), - [anon_sym_unsafe] = ACTIONS(2237), - [anon_sym_use] = ACTIONS(2237), - [anon_sym_while] = ACTIONS(2237), - [anon_sym_extern] = ACTIONS(2237), - [anon_sym_yield] = ACTIONS(2237), - [anon_sym_move] = ACTIONS(2237), - [anon_sym_try] = ACTIONS(2237), - [sym_integer_literal] = ACTIONS(2235), - [aux_sym_string_literal_token1] = ACTIONS(2235), - [sym_char_literal] = ACTIONS(2235), - [anon_sym_true] = ACTIONS(2237), - [anon_sym_false] = ACTIONS(2237), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2237), - [sym_super] = ACTIONS(2237), - [sym_crate] = ACTIONS(2237), - [sym_metavariable] = ACTIONS(2235), - [sym__raw_string_literal_start] = ACTIONS(2235), - [sym_float_literal] = ACTIONS(2235), + [ts_builtin_sym_end] = ACTIONS(2369), + [sym_identifier] = ACTIONS(2371), + [anon_sym_SEMI] = ACTIONS(2369), + [anon_sym_macro_rules_BANG] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(2369), + [anon_sym_LBRACK] = ACTIONS(2369), + [anon_sym_LBRACE] = ACTIONS(2369), + [anon_sym_RBRACE] = ACTIONS(2369), + [anon_sym_STAR] = ACTIONS(2369), + [anon_sym_u8] = ACTIONS(2371), + [anon_sym_i8] = ACTIONS(2371), + [anon_sym_u16] = ACTIONS(2371), + [anon_sym_i16] = ACTIONS(2371), + [anon_sym_u32] = ACTIONS(2371), + [anon_sym_i32] = ACTIONS(2371), + [anon_sym_u64] = ACTIONS(2371), + [anon_sym_i64] = ACTIONS(2371), + [anon_sym_u128] = ACTIONS(2371), + [anon_sym_i128] = ACTIONS(2371), + [anon_sym_isize] = ACTIONS(2371), + [anon_sym_usize] = ACTIONS(2371), + [anon_sym_f32] = ACTIONS(2371), + [anon_sym_f64] = ACTIONS(2371), + [anon_sym_bool] = ACTIONS(2371), + [anon_sym_str] = ACTIONS(2371), + [anon_sym_char] = ACTIONS(2371), + [anon_sym_DASH] = ACTIONS(2369), + [anon_sym_BANG] = ACTIONS(2369), + [anon_sym_AMP] = ACTIONS(2369), + [anon_sym_PIPE] = ACTIONS(2369), + [anon_sym_LT] = ACTIONS(2369), + [anon_sym_DOT_DOT] = ACTIONS(2369), + [anon_sym_COLON_COLON] = ACTIONS(2369), + [anon_sym_POUND] = ACTIONS(2369), + [anon_sym_SQUOTE] = ACTIONS(2371), + [anon_sym_async] = ACTIONS(2371), + [anon_sym_break] = ACTIONS(2371), + [anon_sym_const] = ACTIONS(2371), + [anon_sym_continue] = ACTIONS(2371), + [anon_sym_default] = ACTIONS(2371), + [anon_sym_enum] = ACTIONS(2371), + [anon_sym_fn] = ACTIONS(2371), + [anon_sym_for] = ACTIONS(2371), + [anon_sym_gen] = ACTIONS(2371), + [anon_sym_if] = ACTIONS(2371), + [anon_sym_impl] = ACTIONS(2371), + [anon_sym_let] = ACTIONS(2371), + [anon_sym_loop] = ACTIONS(2371), + [anon_sym_match] = ACTIONS(2371), + [anon_sym_mod] = ACTIONS(2371), + [anon_sym_pub] = ACTIONS(2371), + [anon_sym_return] = ACTIONS(2371), + [anon_sym_static] = ACTIONS(2371), + [anon_sym_struct] = ACTIONS(2371), + [anon_sym_trait] = ACTIONS(2371), + [anon_sym_type] = ACTIONS(2371), + [anon_sym_union] = ACTIONS(2371), + [anon_sym_unsafe] = ACTIONS(2371), + [anon_sym_use] = ACTIONS(2371), + [anon_sym_while] = ACTIONS(2371), + [anon_sym_extern] = ACTIONS(2371), + [anon_sym_yield] = ACTIONS(2371), + [anon_sym_move] = ACTIONS(2371), + [anon_sym_try] = ACTIONS(2371), + [sym_integer_literal] = ACTIONS(2369), + [aux_sym_string_literal_token1] = ACTIONS(2369), + [sym_char_literal] = ACTIONS(2369), + [anon_sym_true] = ACTIONS(2371), + [anon_sym_false] = ACTIONS(2371), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2371), + [sym_super] = ACTIONS(2371), + [sym_crate] = ACTIONS(2371), + [sym_metavariable] = ACTIONS(2369), + [sym__raw_string_literal_start] = ACTIONS(2369), + [sym_float_literal] = ACTIONS(2369), }, [622] = { [sym_line_comment] = STATE(622), [sym_block_comment] = STATE(622), - [ts_builtin_sym_end] = ACTIONS(2239), - [sym_identifier] = ACTIONS(2241), - [anon_sym_SEMI] = ACTIONS(2239), - [anon_sym_macro_rules_BANG] = ACTIONS(2239), - [anon_sym_LPAREN] = ACTIONS(2239), - [anon_sym_LBRACK] = ACTIONS(2239), - [anon_sym_LBRACE] = ACTIONS(2239), - [anon_sym_RBRACE] = ACTIONS(2239), - [anon_sym_STAR] = ACTIONS(2239), - [anon_sym_u8] = ACTIONS(2241), - [anon_sym_i8] = ACTIONS(2241), - [anon_sym_u16] = ACTIONS(2241), - [anon_sym_i16] = ACTIONS(2241), - [anon_sym_u32] = ACTIONS(2241), - [anon_sym_i32] = ACTIONS(2241), - [anon_sym_u64] = ACTIONS(2241), - [anon_sym_i64] = ACTIONS(2241), - [anon_sym_u128] = ACTIONS(2241), - [anon_sym_i128] = ACTIONS(2241), - [anon_sym_isize] = ACTIONS(2241), - [anon_sym_usize] = ACTIONS(2241), - [anon_sym_f32] = ACTIONS(2241), - [anon_sym_f64] = ACTIONS(2241), - [anon_sym_bool] = ACTIONS(2241), - [anon_sym_str] = ACTIONS(2241), - [anon_sym_char] = ACTIONS(2241), - [anon_sym_DASH] = ACTIONS(2239), - [anon_sym_BANG] = ACTIONS(2239), - [anon_sym_AMP] = ACTIONS(2239), - [anon_sym_PIPE] = ACTIONS(2239), - [anon_sym_LT] = ACTIONS(2239), - [anon_sym_DOT_DOT] = ACTIONS(2239), - [anon_sym_COLON_COLON] = ACTIONS(2239), - [anon_sym_POUND] = ACTIONS(2239), - [anon_sym_SQUOTE] = ACTIONS(2241), - [anon_sym_async] = ACTIONS(2241), - [anon_sym_break] = ACTIONS(2241), - [anon_sym_const] = ACTIONS(2241), - [anon_sym_continue] = ACTIONS(2241), - [anon_sym_default] = ACTIONS(2241), - [anon_sym_enum] = ACTIONS(2241), - [anon_sym_fn] = ACTIONS(2241), - [anon_sym_for] = ACTIONS(2241), - [anon_sym_gen] = ACTIONS(2241), - [anon_sym_if] = ACTIONS(2241), - [anon_sym_impl] = ACTIONS(2241), - [anon_sym_let] = ACTIONS(2241), - [anon_sym_loop] = ACTIONS(2241), - [anon_sym_match] = ACTIONS(2241), - [anon_sym_mod] = ACTIONS(2241), - [anon_sym_pub] = ACTIONS(2241), - [anon_sym_return] = ACTIONS(2241), - [anon_sym_static] = ACTIONS(2241), - [anon_sym_struct] = ACTIONS(2241), - [anon_sym_trait] = ACTIONS(2241), - [anon_sym_type] = ACTIONS(2241), - [anon_sym_union] = ACTIONS(2241), - [anon_sym_unsafe] = ACTIONS(2241), - [anon_sym_use] = ACTIONS(2241), - [anon_sym_while] = ACTIONS(2241), - [anon_sym_extern] = ACTIONS(2241), - [anon_sym_yield] = ACTIONS(2241), - [anon_sym_move] = ACTIONS(2241), - [anon_sym_try] = ACTIONS(2241), - [sym_integer_literal] = ACTIONS(2239), - [aux_sym_string_literal_token1] = ACTIONS(2239), - [sym_char_literal] = ACTIONS(2239), - [anon_sym_true] = ACTIONS(2241), - [anon_sym_false] = ACTIONS(2241), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2241), - [sym_super] = ACTIONS(2241), - [sym_crate] = ACTIONS(2241), - [sym_metavariable] = ACTIONS(2239), - [sym__raw_string_literal_start] = ACTIONS(2239), - [sym_float_literal] = ACTIONS(2239), + [ts_builtin_sym_end] = ACTIONS(2373), + [sym_identifier] = ACTIONS(2375), + [anon_sym_SEMI] = ACTIONS(2373), + [anon_sym_macro_rules_BANG] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_LBRACK] = ACTIONS(2373), + [anon_sym_LBRACE] = ACTIONS(2373), + [anon_sym_RBRACE] = ACTIONS(2373), + [anon_sym_STAR] = ACTIONS(2373), + [anon_sym_u8] = ACTIONS(2375), + [anon_sym_i8] = ACTIONS(2375), + [anon_sym_u16] = ACTIONS(2375), + [anon_sym_i16] = ACTIONS(2375), + [anon_sym_u32] = ACTIONS(2375), + [anon_sym_i32] = ACTIONS(2375), + [anon_sym_u64] = ACTIONS(2375), + [anon_sym_i64] = ACTIONS(2375), + [anon_sym_u128] = ACTIONS(2375), + [anon_sym_i128] = ACTIONS(2375), + [anon_sym_isize] = ACTIONS(2375), + [anon_sym_usize] = ACTIONS(2375), + [anon_sym_f32] = ACTIONS(2375), + [anon_sym_f64] = ACTIONS(2375), + [anon_sym_bool] = ACTIONS(2375), + [anon_sym_str] = ACTIONS(2375), + [anon_sym_char] = ACTIONS(2375), + [anon_sym_DASH] = ACTIONS(2373), + [anon_sym_BANG] = ACTIONS(2373), + [anon_sym_AMP] = ACTIONS(2373), + [anon_sym_PIPE] = ACTIONS(2373), + [anon_sym_LT] = ACTIONS(2373), + [anon_sym_DOT_DOT] = ACTIONS(2373), + [anon_sym_COLON_COLON] = ACTIONS(2373), + [anon_sym_POUND] = ACTIONS(2373), + [anon_sym_SQUOTE] = ACTIONS(2375), + [anon_sym_async] = ACTIONS(2375), + [anon_sym_break] = ACTIONS(2375), + [anon_sym_const] = ACTIONS(2375), + [anon_sym_continue] = ACTIONS(2375), + [anon_sym_default] = ACTIONS(2375), + [anon_sym_enum] = ACTIONS(2375), + [anon_sym_fn] = ACTIONS(2375), + [anon_sym_for] = ACTIONS(2375), + [anon_sym_gen] = ACTIONS(2375), + [anon_sym_if] = ACTIONS(2375), + [anon_sym_impl] = ACTIONS(2375), + [anon_sym_let] = ACTIONS(2375), + [anon_sym_loop] = ACTIONS(2375), + [anon_sym_match] = ACTIONS(2375), + [anon_sym_mod] = ACTIONS(2375), + [anon_sym_pub] = ACTIONS(2375), + [anon_sym_return] = ACTIONS(2375), + [anon_sym_static] = ACTIONS(2375), + [anon_sym_struct] = ACTIONS(2375), + [anon_sym_trait] = ACTIONS(2375), + [anon_sym_type] = ACTIONS(2375), + [anon_sym_union] = ACTIONS(2375), + [anon_sym_unsafe] = ACTIONS(2375), + [anon_sym_use] = ACTIONS(2375), + [anon_sym_while] = ACTIONS(2375), + [anon_sym_extern] = ACTIONS(2375), + [anon_sym_yield] = ACTIONS(2375), + [anon_sym_move] = ACTIONS(2375), + [anon_sym_try] = ACTIONS(2375), + [sym_integer_literal] = ACTIONS(2373), + [aux_sym_string_literal_token1] = ACTIONS(2373), + [sym_char_literal] = ACTIONS(2373), + [anon_sym_true] = ACTIONS(2375), + [anon_sym_false] = ACTIONS(2375), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2375), + [sym_super] = ACTIONS(2375), + [sym_crate] = ACTIONS(2375), + [sym_metavariable] = ACTIONS(2373), + [sym__raw_string_literal_start] = ACTIONS(2373), + [sym_float_literal] = ACTIONS(2373), }, [623] = { [sym_line_comment] = STATE(623), [sym_block_comment] = STATE(623), - [ts_builtin_sym_end] = ACTIONS(2243), - [sym_identifier] = ACTIONS(2245), - [anon_sym_SEMI] = ACTIONS(2243), - [anon_sym_macro_rules_BANG] = ACTIONS(2243), - [anon_sym_LPAREN] = ACTIONS(2243), - [anon_sym_LBRACK] = ACTIONS(2243), - [anon_sym_LBRACE] = ACTIONS(2243), - [anon_sym_RBRACE] = ACTIONS(2243), - [anon_sym_STAR] = ACTIONS(2243), - [anon_sym_u8] = ACTIONS(2245), - [anon_sym_i8] = ACTIONS(2245), - [anon_sym_u16] = ACTIONS(2245), - [anon_sym_i16] = ACTIONS(2245), - [anon_sym_u32] = ACTIONS(2245), - [anon_sym_i32] = ACTIONS(2245), - [anon_sym_u64] = ACTIONS(2245), - [anon_sym_i64] = ACTIONS(2245), - [anon_sym_u128] = ACTIONS(2245), - [anon_sym_i128] = ACTIONS(2245), - [anon_sym_isize] = ACTIONS(2245), - [anon_sym_usize] = ACTIONS(2245), - [anon_sym_f32] = ACTIONS(2245), - [anon_sym_f64] = ACTIONS(2245), - [anon_sym_bool] = ACTIONS(2245), - [anon_sym_str] = ACTIONS(2245), - [anon_sym_char] = ACTIONS(2245), - [anon_sym_DASH] = ACTIONS(2243), - [anon_sym_BANG] = ACTIONS(2243), - [anon_sym_AMP] = ACTIONS(2243), - [anon_sym_PIPE] = ACTIONS(2243), - [anon_sym_LT] = ACTIONS(2243), - [anon_sym_DOT_DOT] = ACTIONS(2243), - [anon_sym_COLON_COLON] = ACTIONS(2243), - [anon_sym_POUND] = ACTIONS(2243), - [anon_sym_SQUOTE] = ACTIONS(2245), - [anon_sym_async] = ACTIONS(2245), - [anon_sym_break] = ACTIONS(2245), - [anon_sym_const] = ACTIONS(2245), - [anon_sym_continue] = ACTIONS(2245), - [anon_sym_default] = ACTIONS(2245), - [anon_sym_enum] = ACTIONS(2245), - [anon_sym_fn] = ACTIONS(2245), - [anon_sym_for] = ACTIONS(2245), - [anon_sym_gen] = ACTIONS(2245), - [anon_sym_if] = ACTIONS(2245), - [anon_sym_impl] = ACTIONS(2245), - [anon_sym_let] = ACTIONS(2245), - [anon_sym_loop] = ACTIONS(2245), - [anon_sym_match] = ACTIONS(2245), - [anon_sym_mod] = ACTIONS(2245), - [anon_sym_pub] = ACTIONS(2245), - [anon_sym_return] = ACTIONS(2245), - [anon_sym_static] = ACTIONS(2245), - [anon_sym_struct] = ACTIONS(2245), - [anon_sym_trait] = ACTIONS(2245), - [anon_sym_type] = ACTIONS(2245), - [anon_sym_union] = ACTIONS(2245), - [anon_sym_unsafe] = ACTIONS(2245), - [anon_sym_use] = ACTIONS(2245), - [anon_sym_while] = ACTIONS(2245), - [anon_sym_extern] = ACTIONS(2245), - [anon_sym_yield] = ACTIONS(2245), - [anon_sym_move] = ACTIONS(2245), - [anon_sym_try] = ACTIONS(2245), - [sym_integer_literal] = ACTIONS(2243), - [aux_sym_string_literal_token1] = ACTIONS(2243), - [sym_char_literal] = ACTIONS(2243), - [anon_sym_true] = ACTIONS(2245), - [anon_sym_false] = ACTIONS(2245), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2245), - [sym_super] = ACTIONS(2245), - [sym_crate] = ACTIONS(2245), - [sym_metavariable] = ACTIONS(2243), - [sym__raw_string_literal_start] = ACTIONS(2243), - [sym_float_literal] = ACTIONS(2243), + [ts_builtin_sym_end] = ACTIONS(2377), + [sym_identifier] = ACTIONS(2379), + [anon_sym_SEMI] = ACTIONS(2377), + [anon_sym_macro_rules_BANG] = ACTIONS(2377), + [anon_sym_LPAREN] = ACTIONS(2377), + [anon_sym_LBRACK] = ACTIONS(2377), + [anon_sym_LBRACE] = ACTIONS(2377), + [anon_sym_RBRACE] = ACTIONS(2377), + [anon_sym_STAR] = ACTIONS(2377), + [anon_sym_u8] = ACTIONS(2379), + [anon_sym_i8] = ACTIONS(2379), + [anon_sym_u16] = ACTIONS(2379), + [anon_sym_i16] = ACTIONS(2379), + [anon_sym_u32] = ACTIONS(2379), + [anon_sym_i32] = ACTIONS(2379), + [anon_sym_u64] = ACTIONS(2379), + [anon_sym_i64] = ACTIONS(2379), + [anon_sym_u128] = ACTIONS(2379), + [anon_sym_i128] = ACTIONS(2379), + [anon_sym_isize] = ACTIONS(2379), + [anon_sym_usize] = ACTIONS(2379), + [anon_sym_f32] = ACTIONS(2379), + [anon_sym_f64] = ACTIONS(2379), + [anon_sym_bool] = ACTIONS(2379), + [anon_sym_str] = ACTIONS(2379), + [anon_sym_char] = ACTIONS(2379), + [anon_sym_DASH] = ACTIONS(2377), + [anon_sym_BANG] = ACTIONS(2377), + [anon_sym_AMP] = ACTIONS(2377), + [anon_sym_PIPE] = ACTIONS(2377), + [anon_sym_LT] = ACTIONS(2377), + [anon_sym_DOT_DOT] = ACTIONS(2377), + [anon_sym_COLON_COLON] = ACTIONS(2377), + [anon_sym_POUND] = ACTIONS(2377), + [anon_sym_SQUOTE] = ACTIONS(2379), + [anon_sym_async] = ACTIONS(2379), + [anon_sym_break] = ACTIONS(2379), + [anon_sym_const] = ACTIONS(2379), + [anon_sym_continue] = ACTIONS(2379), + [anon_sym_default] = ACTIONS(2379), + [anon_sym_enum] = ACTIONS(2379), + [anon_sym_fn] = ACTIONS(2379), + [anon_sym_for] = ACTIONS(2379), + [anon_sym_gen] = ACTIONS(2379), + [anon_sym_if] = ACTIONS(2379), + [anon_sym_impl] = ACTIONS(2379), + [anon_sym_let] = ACTIONS(2379), + [anon_sym_loop] = ACTIONS(2379), + [anon_sym_match] = ACTIONS(2379), + [anon_sym_mod] = ACTIONS(2379), + [anon_sym_pub] = ACTIONS(2379), + [anon_sym_return] = ACTIONS(2379), + [anon_sym_static] = ACTIONS(2379), + [anon_sym_struct] = ACTIONS(2379), + [anon_sym_trait] = ACTIONS(2379), + [anon_sym_type] = ACTIONS(2379), + [anon_sym_union] = ACTIONS(2379), + [anon_sym_unsafe] = ACTIONS(2379), + [anon_sym_use] = ACTIONS(2379), + [anon_sym_while] = ACTIONS(2379), + [anon_sym_extern] = ACTIONS(2379), + [anon_sym_yield] = ACTIONS(2379), + [anon_sym_move] = ACTIONS(2379), + [anon_sym_try] = ACTIONS(2379), + [sym_integer_literal] = ACTIONS(2377), + [aux_sym_string_literal_token1] = ACTIONS(2377), + [sym_char_literal] = ACTIONS(2377), + [anon_sym_true] = ACTIONS(2379), + [anon_sym_false] = ACTIONS(2379), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2379), + [sym_super] = ACTIONS(2379), + [sym_crate] = ACTIONS(2379), + [sym_metavariable] = ACTIONS(2377), + [sym__raw_string_literal_start] = ACTIONS(2377), + [sym_float_literal] = ACTIONS(2377), }, [624] = { [sym_line_comment] = STATE(624), [sym_block_comment] = STATE(624), - [ts_builtin_sym_end] = ACTIONS(2247), - [sym_identifier] = ACTIONS(2249), - [anon_sym_SEMI] = ACTIONS(2247), - [anon_sym_macro_rules_BANG] = ACTIONS(2247), - [anon_sym_LPAREN] = ACTIONS(2247), - [anon_sym_LBRACK] = ACTIONS(2247), - [anon_sym_LBRACE] = ACTIONS(2247), - [anon_sym_RBRACE] = ACTIONS(2247), - [anon_sym_STAR] = ACTIONS(2247), - [anon_sym_u8] = ACTIONS(2249), - [anon_sym_i8] = ACTIONS(2249), - [anon_sym_u16] = ACTIONS(2249), - [anon_sym_i16] = ACTIONS(2249), - [anon_sym_u32] = ACTIONS(2249), - [anon_sym_i32] = ACTIONS(2249), - [anon_sym_u64] = ACTIONS(2249), - [anon_sym_i64] = ACTIONS(2249), - [anon_sym_u128] = ACTIONS(2249), - [anon_sym_i128] = ACTIONS(2249), - [anon_sym_isize] = ACTIONS(2249), - [anon_sym_usize] = ACTIONS(2249), - [anon_sym_f32] = ACTIONS(2249), - [anon_sym_f64] = ACTIONS(2249), - [anon_sym_bool] = ACTIONS(2249), - [anon_sym_str] = ACTIONS(2249), - [anon_sym_char] = ACTIONS(2249), - [anon_sym_DASH] = ACTIONS(2247), - [anon_sym_BANG] = ACTIONS(2247), - [anon_sym_AMP] = ACTIONS(2247), - [anon_sym_PIPE] = ACTIONS(2247), - [anon_sym_LT] = ACTIONS(2247), - [anon_sym_DOT_DOT] = ACTIONS(2247), - [anon_sym_COLON_COLON] = ACTIONS(2247), - [anon_sym_POUND] = ACTIONS(2247), - [anon_sym_SQUOTE] = ACTIONS(2249), - [anon_sym_async] = ACTIONS(2249), - [anon_sym_break] = ACTIONS(2249), - [anon_sym_const] = ACTIONS(2249), - [anon_sym_continue] = ACTIONS(2249), - [anon_sym_default] = ACTIONS(2249), - [anon_sym_enum] = ACTIONS(2249), - [anon_sym_fn] = ACTIONS(2249), - [anon_sym_for] = ACTIONS(2249), - [anon_sym_gen] = ACTIONS(2249), - [anon_sym_if] = ACTIONS(2249), - [anon_sym_impl] = ACTIONS(2249), - [anon_sym_let] = ACTIONS(2249), - [anon_sym_loop] = ACTIONS(2249), - [anon_sym_match] = ACTIONS(2249), - [anon_sym_mod] = ACTIONS(2249), - [anon_sym_pub] = ACTIONS(2249), - [anon_sym_return] = ACTIONS(2249), - [anon_sym_static] = ACTIONS(2249), - [anon_sym_struct] = ACTIONS(2249), - [anon_sym_trait] = ACTIONS(2249), - [anon_sym_type] = ACTIONS(2249), - [anon_sym_union] = ACTIONS(2249), - [anon_sym_unsafe] = ACTIONS(2249), - [anon_sym_use] = ACTIONS(2249), - [anon_sym_while] = ACTIONS(2249), - [anon_sym_extern] = ACTIONS(2249), - [anon_sym_yield] = ACTIONS(2249), - [anon_sym_move] = ACTIONS(2249), - [anon_sym_try] = ACTIONS(2249), - [sym_integer_literal] = ACTIONS(2247), - [aux_sym_string_literal_token1] = ACTIONS(2247), - [sym_char_literal] = ACTIONS(2247), - [anon_sym_true] = ACTIONS(2249), - [anon_sym_false] = ACTIONS(2249), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2249), - [sym_super] = ACTIONS(2249), - [sym_crate] = ACTIONS(2249), - [sym_metavariable] = ACTIONS(2247), - [sym__raw_string_literal_start] = ACTIONS(2247), - [sym_float_literal] = ACTIONS(2247), + [ts_builtin_sym_end] = ACTIONS(2381), + [sym_identifier] = ACTIONS(2383), + [anon_sym_SEMI] = ACTIONS(2381), + [anon_sym_macro_rules_BANG] = ACTIONS(2381), + [anon_sym_LPAREN] = ACTIONS(2381), + [anon_sym_LBRACK] = ACTIONS(2381), + [anon_sym_LBRACE] = ACTIONS(2381), + [anon_sym_RBRACE] = ACTIONS(2381), + [anon_sym_STAR] = ACTIONS(2381), + [anon_sym_u8] = ACTIONS(2383), + [anon_sym_i8] = ACTIONS(2383), + [anon_sym_u16] = ACTIONS(2383), + [anon_sym_i16] = ACTIONS(2383), + [anon_sym_u32] = ACTIONS(2383), + [anon_sym_i32] = ACTIONS(2383), + [anon_sym_u64] = ACTIONS(2383), + [anon_sym_i64] = ACTIONS(2383), + [anon_sym_u128] = ACTIONS(2383), + [anon_sym_i128] = ACTIONS(2383), + [anon_sym_isize] = ACTIONS(2383), + [anon_sym_usize] = ACTIONS(2383), + [anon_sym_f32] = ACTIONS(2383), + [anon_sym_f64] = ACTIONS(2383), + [anon_sym_bool] = ACTIONS(2383), + [anon_sym_str] = ACTIONS(2383), + [anon_sym_char] = ACTIONS(2383), + [anon_sym_DASH] = ACTIONS(2381), + [anon_sym_BANG] = ACTIONS(2381), + [anon_sym_AMP] = ACTIONS(2381), + [anon_sym_PIPE] = ACTIONS(2381), + [anon_sym_LT] = ACTIONS(2381), + [anon_sym_DOT_DOT] = ACTIONS(2381), + [anon_sym_COLON_COLON] = ACTIONS(2381), + [anon_sym_POUND] = ACTIONS(2381), + [anon_sym_SQUOTE] = ACTIONS(2383), + [anon_sym_async] = ACTIONS(2383), + [anon_sym_break] = ACTIONS(2383), + [anon_sym_const] = ACTIONS(2383), + [anon_sym_continue] = ACTIONS(2383), + [anon_sym_default] = ACTIONS(2383), + [anon_sym_enum] = ACTIONS(2383), + [anon_sym_fn] = ACTIONS(2383), + [anon_sym_for] = ACTIONS(2383), + [anon_sym_gen] = ACTIONS(2383), + [anon_sym_if] = ACTIONS(2383), + [anon_sym_impl] = ACTIONS(2383), + [anon_sym_let] = ACTIONS(2383), + [anon_sym_loop] = ACTIONS(2383), + [anon_sym_match] = ACTIONS(2383), + [anon_sym_mod] = ACTIONS(2383), + [anon_sym_pub] = ACTIONS(2383), + [anon_sym_return] = ACTIONS(2383), + [anon_sym_static] = ACTIONS(2383), + [anon_sym_struct] = ACTIONS(2383), + [anon_sym_trait] = ACTIONS(2383), + [anon_sym_type] = ACTIONS(2383), + [anon_sym_union] = ACTIONS(2383), + [anon_sym_unsafe] = ACTIONS(2383), + [anon_sym_use] = ACTIONS(2383), + [anon_sym_while] = ACTIONS(2383), + [anon_sym_extern] = ACTIONS(2383), + [anon_sym_yield] = ACTIONS(2383), + [anon_sym_move] = ACTIONS(2383), + [anon_sym_try] = ACTIONS(2383), + [sym_integer_literal] = ACTIONS(2381), + [aux_sym_string_literal_token1] = ACTIONS(2381), + [sym_char_literal] = ACTIONS(2381), + [anon_sym_true] = ACTIONS(2383), + [anon_sym_false] = ACTIONS(2383), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2383), + [sym_super] = ACTIONS(2383), + [sym_crate] = ACTIONS(2383), + [sym_metavariable] = ACTIONS(2381), + [sym__raw_string_literal_start] = ACTIONS(2381), + [sym_float_literal] = ACTIONS(2381), }, [625] = { [sym_line_comment] = STATE(625), [sym_block_comment] = STATE(625), - [ts_builtin_sym_end] = ACTIONS(2251), - [sym_identifier] = ACTIONS(2253), - [anon_sym_SEMI] = ACTIONS(2251), - [anon_sym_macro_rules_BANG] = ACTIONS(2251), - [anon_sym_LPAREN] = ACTIONS(2251), - [anon_sym_LBRACK] = ACTIONS(2251), - [anon_sym_LBRACE] = ACTIONS(2251), - [anon_sym_RBRACE] = ACTIONS(2251), - [anon_sym_STAR] = ACTIONS(2251), - [anon_sym_u8] = ACTIONS(2253), - [anon_sym_i8] = ACTIONS(2253), - [anon_sym_u16] = ACTIONS(2253), - [anon_sym_i16] = ACTIONS(2253), - [anon_sym_u32] = ACTIONS(2253), - [anon_sym_i32] = ACTIONS(2253), - [anon_sym_u64] = ACTIONS(2253), - [anon_sym_i64] = ACTIONS(2253), - [anon_sym_u128] = ACTIONS(2253), - [anon_sym_i128] = ACTIONS(2253), - [anon_sym_isize] = ACTIONS(2253), - [anon_sym_usize] = ACTIONS(2253), - [anon_sym_f32] = ACTIONS(2253), - [anon_sym_f64] = ACTIONS(2253), - [anon_sym_bool] = ACTIONS(2253), - [anon_sym_str] = ACTIONS(2253), - [anon_sym_char] = ACTIONS(2253), - [anon_sym_DASH] = ACTIONS(2251), - [anon_sym_BANG] = ACTIONS(2251), - [anon_sym_AMP] = ACTIONS(2251), - [anon_sym_PIPE] = ACTIONS(2251), - [anon_sym_LT] = ACTIONS(2251), - [anon_sym_DOT_DOT] = ACTIONS(2251), - [anon_sym_COLON_COLON] = ACTIONS(2251), - [anon_sym_POUND] = ACTIONS(2251), - [anon_sym_SQUOTE] = ACTIONS(2253), - [anon_sym_async] = ACTIONS(2253), - [anon_sym_break] = ACTIONS(2253), - [anon_sym_const] = ACTIONS(2253), - [anon_sym_continue] = ACTIONS(2253), - [anon_sym_default] = ACTIONS(2253), - [anon_sym_enum] = ACTIONS(2253), - [anon_sym_fn] = ACTIONS(2253), - [anon_sym_for] = ACTIONS(2253), - [anon_sym_gen] = ACTIONS(2253), - [anon_sym_if] = ACTIONS(2253), - [anon_sym_impl] = ACTIONS(2253), - [anon_sym_let] = ACTIONS(2253), - [anon_sym_loop] = ACTIONS(2253), - [anon_sym_match] = ACTIONS(2253), - [anon_sym_mod] = ACTIONS(2253), - [anon_sym_pub] = ACTIONS(2253), - [anon_sym_return] = ACTIONS(2253), - [anon_sym_static] = ACTIONS(2253), - [anon_sym_struct] = ACTIONS(2253), - [anon_sym_trait] = ACTIONS(2253), - [anon_sym_type] = ACTIONS(2253), - [anon_sym_union] = ACTIONS(2253), - [anon_sym_unsafe] = ACTIONS(2253), - [anon_sym_use] = ACTIONS(2253), - [anon_sym_while] = ACTIONS(2253), - [anon_sym_extern] = ACTIONS(2253), - [anon_sym_yield] = ACTIONS(2253), - [anon_sym_move] = ACTIONS(2253), - [anon_sym_try] = ACTIONS(2253), - [sym_integer_literal] = ACTIONS(2251), - [aux_sym_string_literal_token1] = ACTIONS(2251), - [sym_char_literal] = ACTIONS(2251), - [anon_sym_true] = ACTIONS(2253), - [anon_sym_false] = ACTIONS(2253), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2253), - [sym_super] = ACTIONS(2253), - [sym_crate] = ACTIONS(2253), - [sym_metavariable] = ACTIONS(2251), - [sym__raw_string_literal_start] = ACTIONS(2251), - [sym_float_literal] = ACTIONS(2251), + [ts_builtin_sym_end] = ACTIONS(2385), + [sym_identifier] = ACTIONS(2387), + [anon_sym_SEMI] = ACTIONS(2385), + [anon_sym_macro_rules_BANG] = ACTIONS(2385), + [anon_sym_LPAREN] = ACTIONS(2385), + [anon_sym_LBRACK] = ACTIONS(2385), + [anon_sym_LBRACE] = ACTIONS(2385), + [anon_sym_RBRACE] = ACTIONS(2385), + [anon_sym_STAR] = ACTIONS(2385), + [anon_sym_u8] = ACTIONS(2387), + [anon_sym_i8] = ACTIONS(2387), + [anon_sym_u16] = ACTIONS(2387), + [anon_sym_i16] = ACTIONS(2387), + [anon_sym_u32] = ACTIONS(2387), + [anon_sym_i32] = ACTIONS(2387), + [anon_sym_u64] = ACTIONS(2387), + [anon_sym_i64] = ACTIONS(2387), + [anon_sym_u128] = ACTIONS(2387), + [anon_sym_i128] = ACTIONS(2387), + [anon_sym_isize] = ACTIONS(2387), + [anon_sym_usize] = ACTIONS(2387), + [anon_sym_f32] = ACTIONS(2387), + [anon_sym_f64] = ACTIONS(2387), + [anon_sym_bool] = ACTIONS(2387), + [anon_sym_str] = ACTIONS(2387), + [anon_sym_char] = ACTIONS(2387), + [anon_sym_DASH] = ACTIONS(2385), + [anon_sym_BANG] = ACTIONS(2385), + [anon_sym_AMP] = ACTIONS(2385), + [anon_sym_PIPE] = ACTIONS(2385), + [anon_sym_LT] = ACTIONS(2385), + [anon_sym_DOT_DOT] = ACTIONS(2385), + [anon_sym_COLON_COLON] = ACTIONS(2385), + [anon_sym_POUND] = ACTIONS(2385), + [anon_sym_SQUOTE] = ACTIONS(2387), + [anon_sym_async] = ACTIONS(2387), + [anon_sym_break] = ACTIONS(2387), + [anon_sym_const] = ACTIONS(2387), + [anon_sym_continue] = ACTIONS(2387), + [anon_sym_default] = ACTIONS(2387), + [anon_sym_enum] = ACTIONS(2387), + [anon_sym_fn] = ACTIONS(2387), + [anon_sym_for] = ACTIONS(2387), + [anon_sym_gen] = ACTIONS(2387), + [anon_sym_if] = ACTIONS(2387), + [anon_sym_impl] = ACTIONS(2387), + [anon_sym_let] = ACTIONS(2387), + [anon_sym_loop] = ACTIONS(2387), + [anon_sym_match] = ACTIONS(2387), + [anon_sym_mod] = ACTIONS(2387), + [anon_sym_pub] = ACTIONS(2387), + [anon_sym_return] = ACTIONS(2387), + [anon_sym_static] = ACTIONS(2387), + [anon_sym_struct] = ACTIONS(2387), + [anon_sym_trait] = ACTIONS(2387), + [anon_sym_type] = ACTIONS(2387), + [anon_sym_union] = ACTIONS(2387), + [anon_sym_unsafe] = ACTIONS(2387), + [anon_sym_use] = ACTIONS(2387), + [anon_sym_while] = ACTIONS(2387), + [anon_sym_extern] = ACTIONS(2387), + [anon_sym_yield] = ACTIONS(2387), + [anon_sym_move] = ACTIONS(2387), + [anon_sym_try] = ACTIONS(2387), + [sym_integer_literal] = ACTIONS(2385), + [aux_sym_string_literal_token1] = ACTIONS(2385), + [sym_char_literal] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(2387), + [anon_sym_false] = ACTIONS(2387), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2387), + [sym_super] = ACTIONS(2387), + [sym_crate] = ACTIONS(2387), + [sym_metavariable] = ACTIONS(2385), + [sym__raw_string_literal_start] = ACTIONS(2385), + [sym_float_literal] = ACTIONS(2385), }, [626] = { [sym_line_comment] = STATE(626), [sym_block_comment] = STATE(626), - [ts_builtin_sym_end] = ACTIONS(2255), - [sym_identifier] = ACTIONS(2257), - [anon_sym_SEMI] = ACTIONS(2255), - [anon_sym_macro_rules_BANG] = ACTIONS(2255), - [anon_sym_LPAREN] = ACTIONS(2255), - [anon_sym_LBRACK] = ACTIONS(2255), - [anon_sym_LBRACE] = ACTIONS(2255), - [anon_sym_RBRACE] = ACTIONS(2255), - [anon_sym_STAR] = ACTIONS(2255), - [anon_sym_u8] = ACTIONS(2257), - [anon_sym_i8] = ACTIONS(2257), - [anon_sym_u16] = ACTIONS(2257), - [anon_sym_i16] = ACTIONS(2257), - [anon_sym_u32] = ACTIONS(2257), - [anon_sym_i32] = ACTIONS(2257), - [anon_sym_u64] = ACTIONS(2257), - [anon_sym_i64] = ACTIONS(2257), - [anon_sym_u128] = ACTIONS(2257), - [anon_sym_i128] = ACTIONS(2257), - [anon_sym_isize] = ACTIONS(2257), - [anon_sym_usize] = ACTIONS(2257), - [anon_sym_f32] = ACTIONS(2257), - [anon_sym_f64] = ACTIONS(2257), - [anon_sym_bool] = ACTIONS(2257), - [anon_sym_str] = ACTIONS(2257), - [anon_sym_char] = ACTIONS(2257), - [anon_sym_DASH] = ACTIONS(2255), - [anon_sym_BANG] = ACTIONS(2255), - [anon_sym_AMP] = ACTIONS(2255), - [anon_sym_PIPE] = ACTIONS(2255), - [anon_sym_LT] = ACTIONS(2255), - [anon_sym_DOT_DOT] = ACTIONS(2255), - [anon_sym_COLON_COLON] = ACTIONS(2255), - [anon_sym_POUND] = ACTIONS(2255), - [anon_sym_SQUOTE] = ACTIONS(2257), - [anon_sym_async] = ACTIONS(2257), - [anon_sym_break] = ACTIONS(2257), - [anon_sym_const] = ACTIONS(2257), - [anon_sym_continue] = ACTIONS(2257), - [anon_sym_default] = ACTIONS(2257), - [anon_sym_enum] = ACTIONS(2257), - [anon_sym_fn] = ACTIONS(2257), - [anon_sym_for] = ACTIONS(2257), - [anon_sym_gen] = ACTIONS(2257), - [anon_sym_if] = ACTIONS(2257), - [anon_sym_impl] = ACTIONS(2257), - [anon_sym_let] = ACTIONS(2257), - [anon_sym_loop] = ACTIONS(2257), - [anon_sym_match] = ACTIONS(2257), - [anon_sym_mod] = ACTIONS(2257), - [anon_sym_pub] = ACTIONS(2257), - [anon_sym_return] = ACTIONS(2257), - [anon_sym_static] = ACTIONS(2257), - [anon_sym_struct] = ACTIONS(2257), - [anon_sym_trait] = ACTIONS(2257), - [anon_sym_type] = ACTIONS(2257), - [anon_sym_union] = ACTIONS(2257), - [anon_sym_unsafe] = ACTIONS(2257), - [anon_sym_use] = ACTIONS(2257), - [anon_sym_while] = ACTIONS(2257), - [anon_sym_extern] = ACTIONS(2257), - [anon_sym_yield] = ACTIONS(2257), - [anon_sym_move] = ACTIONS(2257), - [anon_sym_try] = ACTIONS(2257), - [sym_integer_literal] = ACTIONS(2255), - [aux_sym_string_literal_token1] = ACTIONS(2255), - [sym_char_literal] = ACTIONS(2255), - [anon_sym_true] = ACTIONS(2257), - [anon_sym_false] = ACTIONS(2257), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2257), - [sym_super] = ACTIONS(2257), - [sym_crate] = ACTIONS(2257), - [sym_metavariable] = ACTIONS(2255), - [sym__raw_string_literal_start] = ACTIONS(2255), - [sym_float_literal] = ACTIONS(2255), + [ts_builtin_sym_end] = ACTIONS(2389), + [sym_identifier] = ACTIONS(2391), + [anon_sym_SEMI] = ACTIONS(2389), + [anon_sym_macro_rules_BANG] = ACTIONS(2389), + [anon_sym_LPAREN] = ACTIONS(2389), + [anon_sym_LBRACK] = ACTIONS(2389), + [anon_sym_LBRACE] = ACTIONS(2389), + [anon_sym_RBRACE] = ACTIONS(2389), + [anon_sym_STAR] = ACTIONS(2389), + [anon_sym_u8] = ACTIONS(2391), + [anon_sym_i8] = ACTIONS(2391), + [anon_sym_u16] = ACTIONS(2391), + [anon_sym_i16] = ACTIONS(2391), + [anon_sym_u32] = ACTIONS(2391), + [anon_sym_i32] = ACTIONS(2391), + [anon_sym_u64] = ACTIONS(2391), + [anon_sym_i64] = ACTIONS(2391), + [anon_sym_u128] = ACTIONS(2391), + [anon_sym_i128] = ACTIONS(2391), + [anon_sym_isize] = ACTIONS(2391), + [anon_sym_usize] = ACTIONS(2391), + [anon_sym_f32] = ACTIONS(2391), + [anon_sym_f64] = ACTIONS(2391), + [anon_sym_bool] = ACTIONS(2391), + [anon_sym_str] = ACTIONS(2391), + [anon_sym_char] = ACTIONS(2391), + [anon_sym_DASH] = ACTIONS(2389), + [anon_sym_BANG] = ACTIONS(2389), + [anon_sym_AMP] = ACTIONS(2389), + [anon_sym_PIPE] = ACTIONS(2389), + [anon_sym_LT] = ACTIONS(2389), + [anon_sym_DOT_DOT] = ACTIONS(2389), + [anon_sym_COLON_COLON] = ACTIONS(2389), + [anon_sym_POUND] = ACTIONS(2389), + [anon_sym_SQUOTE] = ACTIONS(2391), + [anon_sym_async] = ACTIONS(2391), + [anon_sym_break] = ACTIONS(2391), + [anon_sym_const] = ACTIONS(2391), + [anon_sym_continue] = ACTIONS(2391), + [anon_sym_default] = ACTIONS(2391), + [anon_sym_enum] = ACTIONS(2391), + [anon_sym_fn] = ACTIONS(2391), + [anon_sym_for] = ACTIONS(2391), + [anon_sym_gen] = ACTIONS(2391), + [anon_sym_if] = ACTIONS(2391), + [anon_sym_impl] = ACTIONS(2391), + [anon_sym_let] = ACTIONS(2391), + [anon_sym_loop] = ACTIONS(2391), + [anon_sym_match] = ACTIONS(2391), + [anon_sym_mod] = ACTIONS(2391), + [anon_sym_pub] = ACTIONS(2391), + [anon_sym_return] = ACTIONS(2391), + [anon_sym_static] = ACTIONS(2391), + [anon_sym_struct] = ACTIONS(2391), + [anon_sym_trait] = ACTIONS(2391), + [anon_sym_type] = ACTIONS(2391), + [anon_sym_union] = ACTIONS(2391), + [anon_sym_unsafe] = ACTIONS(2391), + [anon_sym_use] = ACTIONS(2391), + [anon_sym_while] = ACTIONS(2391), + [anon_sym_extern] = ACTIONS(2391), + [anon_sym_yield] = ACTIONS(2391), + [anon_sym_move] = ACTIONS(2391), + [anon_sym_try] = ACTIONS(2391), + [sym_integer_literal] = ACTIONS(2389), + [aux_sym_string_literal_token1] = ACTIONS(2389), + [sym_char_literal] = ACTIONS(2389), + [anon_sym_true] = ACTIONS(2391), + [anon_sym_false] = ACTIONS(2391), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2391), + [sym_super] = ACTIONS(2391), + [sym_crate] = ACTIONS(2391), + [sym_metavariable] = ACTIONS(2389), + [sym__raw_string_literal_start] = ACTIONS(2389), + [sym_float_literal] = ACTIONS(2389), }, [627] = { [sym_line_comment] = STATE(627), [sym_block_comment] = STATE(627), - [ts_builtin_sym_end] = ACTIONS(2259), - [sym_identifier] = ACTIONS(2261), - [anon_sym_SEMI] = ACTIONS(2259), - [anon_sym_macro_rules_BANG] = ACTIONS(2259), - [anon_sym_LPAREN] = ACTIONS(2259), - [anon_sym_LBRACK] = ACTIONS(2259), - [anon_sym_LBRACE] = ACTIONS(2259), - [anon_sym_RBRACE] = ACTIONS(2259), - [anon_sym_STAR] = ACTIONS(2259), - [anon_sym_u8] = ACTIONS(2261), - [anon_sym_i8] = ACTIONS(2261), - [anon_sym_u16] = ACTIONS(2261), - [anon_sym_i16] = ACTIONS(2261), - [anon_sym_u32] = ACTIONS(2261), - [anon_sym_i32] = ACTIONS(2261), - [anon_sym_u64] = ACTIONS(2261), - [anon_sym_i64] = ACTIONS(2261), - [anon_sym_u128] = ACTIONS(2261), - [anon_sym_i128] = ACTIONS(2261), - [anon_sym_isize] = ACTIONS(2261), - [anon_sym_usize] = ACTIONS(2261), - [anon_sym_f32] = ACTIONS(2261), - [anon_sym_f64] = ACTIONS(2261), - [anon_sym_bool] = ACTIONS(2261), - [anon_sym_str] = ACTIONS(2261), - [anon_sym_char] = ACTIONS(2261), - [anon_sym_DASH] = ACTIONS(2259), - [anon_sym_BANG] = ACTIONS(2259), - [anon_sym_AMP] = ACTIONS(2259), - [anon_sym_PIPE] = ACTIONS(2259), - [anon_sym_LT] = ACTIONS(2259), - [anon_sym_DOT_DOT] = ACTIONS(2259), - [anon_sym_COLON_COLON] = ACTIONS(2259), - [anon_sym_POUND] = ACTIONS(2259), - [anon_sym_SQUOTE] = ACTIONS(2261), - [anon_sym_async] = ACTIONS(2261), - [anon_sym_break] = ACTIONS(2261), - [anon_sym_const] = ACTIONS(2261), - [anon_sym_continue] = ACTIONS(2261), - [anon_sym_default] = ACTIONS(2261), - [anon_sym_enum] = ACTIONS(2261), - [anon_sym_fn] = ACTIONS(2261), - [anon_sym_for] = ACTIONS(2261), - [anon_sym_gen] = ACTIONS(2261), - [anon_sym_if] = ACTIONS(2261), - [anon_sym_impl] = ACTIONS(2261), - [anon_sym_let] = ACTIONS(2261), - [anon_sym_loop] = ACTIONS(2261), - [anon_sym_match] = ACTIONS(2261), - [anon_sym_mod] = ACTIONS(2261), - [anon_sym_pub] = ACTIONS(2261), - [anon_sym_return] = ACTIONS(2261), - [anon_sym_static] = ACTIONS(2261), - [anon_sym_struct] = ACTIONS(2261), - [anon_sym_trait] = ACTIONS(2261), - [anon_sym_type] = ACTIONS(2261), - [anon_sym_union] = ACTIONS(2261), - [anon_sym_unsafe] = ACTIONS(2261), - [anon_sym_use] = ACTIONS(2261), - [anon_sym_while] = ACTIONS(2261), - [anon_sym_extern] = ACTIONS(2261), - [anon_sym_yield] = ACTIONS(2261), - [anon_sym_move] = ACTIONS(2261), - [anon_sym_try] = ACTIONS(2261), - [sym_integer_literal] = ACTIONS(2259), - [aux_sym_string_literal_token1] = ACTIONS(2259), - [sym_char_literal] = ACTIONS(2259), - [anon_sym_true] = ACTIONS(2261), - [anon_sym_false] = ACTIONS(2261), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2261), - [sym_super] = ACTIONS(2261), - [sym_crate] = ACTIONS(2261), - [sym_metavariable] = ACTIONS(2259), - [sym__raw_string_literal_start] = ACTIONS(2259), - [sym_float_literal] = ACTIONS(2259), - }, - [628] = { - [sym_line_comment] = STATE(628), - [sym_block_comment] = STATE(628), - [ts_builtin_sym_end] = ACTIONS(2263), - [sym_identifier] = ACTIONS(2265), - [anon_sym_SEMI] = ACTIONS(2263), - [anon_sym_macro_rules_BANG] = ACTIONS(2263), - [anon_sym_LPAREN] = ACTIONS(2263), - [anon_sym_LBRACK] = ACTIONS(2263), - [anon_sym_LBRACE] = ACTIONS(2263), - [anon_sym_RBRACE] = ACTIONS(2263), - [anon_sym_STAR] = ACTIONS(2263), - [anon_sym_u8] = ACTIONS(2265), - [anon_sym_i8] = ACTIONS(2265), - [anon_sym_u16] = ACTIONS(2265), - [anon_sym_i16] = ACTIONS(2265), - [anon_sym_u32] = ACTIONS(2265), - [anon_sym_i32] = ACTIONS(2265), - [anon_sym_u64] = ACTIONS(2265), - [anon_sym_i64] = ACTIONS(2265), - [anon_sym_u128] = ACTIONS(2265), - [anon_sym_i128] = ACTIONS(2265), - [anon_sym_isize] = ACTIONS(2265), - [anon_sym_usize] = ACTIONS(2265), - [anon_sym_f32] = ACTIONS(2265), - [anon_sym_f64] = ACTIONS(2265), - [anon_sym_bool] = ACTIONS(2265), - [anon_sym_str] = ACTIONS(2265), - [anon_sym_char] = ACTIONS(2265), - [anon_sym_DASH] = ACTIONS(2263), - [anon_sym_BANG] = ACTIONS(2263), - [anon_sym_AMP] = ACTIONS(2263), - [anon_sym_PIPE] = ACTIONS(2263), - [anon_sym_LT] = ACTIONS(2263), - [anon_sym_DOT_DOT] = ACTIONS(2263), - [anon_sym_COLON_COLON] = ACTIONS(2263), - [anon_sym_POUND] = ACTIONS(2263), - [anon_sym_SQUOTE] = ACTIONS(2265), - [anon_sym_async] = ACTIONS(2265), - [anon_sym_break] = ACTIONS(2265), - [anon_sym_const] = ACTIONS(2265), - [anon_sym_continue] = ACTIONS(2265), - [anon_sym_default] = ACTIONS(2265), - [anon_sym_enum] = ACTIONS(2265), - [anon_sym_fn] = ACTIONS(2265), - [anon_sym_for] = ACTIONS(2265), - [anon_sym_gen] = ACTIONS(2265), - [anon_sym_if] = ACTIONS(2265), - [anon_sym_impl] = ACTIONS(2265), - [anon_sym_let] = ACTIONS(2265), - [anon_sym_loop] = ACTIONS(2265), - [anon_sym_match] = ACTIONS(2265), - [anon_sym_mod] = ACTIONS(2265), - [anon_sym_pub] = ACTIONS(2265), - [anon_sym_return] = ACTIONS(2265), - [anon_sym_static] = ACTIONS(2265), - [anon_sym_struct] = ACTIONS(2265), - [anon_sym_trait] = ACTIONS(2265), - [anon_sym_type] = ACTIONS(2265), - [anon_sym_union] = ACTIONS(2265), - [anon_sym_unsafe] = ACTIONS(2265), - [anon_sym_use] = ACTIONS(2265), - [anon_sym_while] = ACTIONS(2265), - [anon_sym_extern] = ACTIONS(2265), - [anon_sym_yield] = ACTIONS(2265), - [anon_sym_move] = ACTIONS(2265), - [anon_sym_try] = ACTIONS(2265), - [sym_integer_literal] = ACTIONS(2263), - [aux_sym_string_literal_token1] = ACTIONS(2263), - [sym_char_literal] = ACTIONS(2263), - [anon_sym_true] = ACTIONS(2265), - [anon_sym_false] = ACTIONS(2265), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2265), - [sym_super] = ACTIONS(2265), - [sym_crate] = ACTIONS(2265), - [sym_metavariable] = ACTIONS(2263), - [sym__raw_string_literal_start] = ACTIONS(2263), - [sym_float_literal] = ACTIONS(2263), - }, - [629] = { - [sym_line_comment] = STATE(629), - [sym_block_comment] = STATE(629), - [ts_builtin_sym_end] = ACTIONS(2267), - [sym_identifier] = ACTIONS(2269), - [anon_sym_SEMI] = ACTIONS(2267), - [anon_sym_macro_rules_BANG] = ACTIONS(2267), - [anon_sym_LPAREN] = ACTIONS(2267), - [anon_sym_LBRACK] = ACTIONS(2267), - [anon_sym_LBRACE] = ACTIONS(2267), - [anon_sym_RBRACE] = ACTIONS(2267), - [anon_sym_STAR] = ACTIONS(2267), - [anon_sym_u8] = ACTIONS(2269), - [anon_sym_i8] = ACTIONS(2269), - [anon_sym_u16] = ACTIONS(2269), - [anon_sym_i16] = ACTIONS(2269), - [anon_sym_u32] = ACTIONS(2269), - [anon_sym_i32] = ACTIONS(2269), - [anon_sym_u64] = ACTIONS(2269), - [anon_sym_i64] = ACTIONS(2269), - [anon_sym_u128] = ACTIONS(2269), - [anon_sym_i128] = ACTIONS(2269), - [anon_sym_isize] = ACTIONS(2269), - [anon_sym_usize] = ACTIONS(2269), - [anon_sym_f32] = ACTIONS(2269), - [anon_sym_f64] = ACTIONS(2269), - [anon_sym_bool] = ACTIONS(2269), - [anon_sym_str] = ACTIONS(2269), - [anon_sym_char] = ACTIONS(2269), - [anon_sym_DASH] = ACTIONS(2267), - [anon_sym_BANG] = ACTIONS(2267), - [anon_sym_AMP] = ACTIONS(2267), - [anon_sym_PIPE] = ACTIONS(2267), - [anon_sym_LT] = ACTIONS(2267), - [anon_sym_DOT_DOT] = ACTIONS(2267), - [anon_sym_COLON_COLON] = ACTIONS(2267), - [anon_sym_POUND] = ACTIONS(2267), - [anon_sym_SQUOTE] = ACTIONS(2269), - [anon_sym_async] = ACTIONS(2269), - [anon_sym_break] = ACTIONS(2269), - [anon_sym_const] = ACTIONS(2269), - [anon_sym_continue] = ACTIONS(2269), - [anon_sym_default] = ACTIONS(2269), - [anon_sym_enum] = ACTIONS(2269), - [anon_sym_fn] = ACTIONS(2269), - [anon_sym_for] = ACTIONS(2269), - [anon_sym_gen] = ACTIONS(2269), - [anon_sym_if] = ACTIONS(2269), - [anon_sym_impl] = ACTIONS(2269), - [anon_sym_let] = ACTIONS(2269), - [anon_sym_loop] = ACTIONS(2269), - [anon_sym_match] = ACTIONS(2269), - [anon_sym_mod] = ACTIONS(2269), - [anon_sym_pub] = ACTIONS(2269), - [anon_sym_return] = ACTIONS(2269), - [anon_sym_static] = ACTIONS(2269), - [anon_sym_struct] = ACTIONS(2269), - [anon_sym_trait] = ACTIONS(2269), - [anon_sym_type] = ACTIONS(2269), - [anon_sym_union] = ACTIONS(2269), - [anon_sym_unsafe] = ACTIONS(2269), - [anon_sym_use] = ACTIONS(2269), - [anon_sym_while] = ACTIONS(2269), - [anon_sym_extern] = ACTIONS(2269), - [anon_sym_yield] = ACTIONS(2269), - [anon_sym_move] = ACTIONS(2269), - [anon_sym_try] = ACTIONS(2269), - [sym_integer_literal] = ACTIONS(2267), - [aux_sym_string_literal_token1] = ACTIONS(2267), - [sym_char_literal] = ACTIONS(2267), - [anon_sym_true] = ACTIONS(2269), - [anon_sym_false] = ACTIONS(2269), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2269), - [sym_super] = ACTIONS(2269), - [sym_crate] = ACTIONS(2269), - [sym_metavariable] = ACTIONS(2267), - [sym__raw_string_literal_start] = ACTIONS(2267), - [sym_float_literal] = ACTIONS(2267), - }, - [630] = { - [sym_line_comment] = STATE(630), - [sym_block_comment] = STATE(630), - [ts_builtin_sym_end] = ACTIONS(1273), - [sym_identifier] = ACTIONS(1275), - [anon_sym_SEMI] = ACTIONS(1273), - [anon_sym_macro_rules_BANG] = ACTIONS(1273), - [anon_sym_LPAREN] = ACTIONS(1273), - [anon_sym_LBRACK] = ACTIONS(1273), - [anon_sym_LBRACE] = ACTIONS(1273), - [anon_sym_RBRACE] = ACTIONS(1273), - [anon_sym_STAR] = ACTIONS(1273), - [anon_sym_u8] = ACTIONS(1275), - [anon_sym_i8] = ACTIONS(1275), - [anon_sym_u16] = ACTIONS(1275), - [anon_sym_i16] = ACTIONS(1275), - [anon_sym_u32] = ACTIONS(1275), - [anon_sym_i32] = ACTIONS(1275), - [anon_sym_u64] = ACTIONS(1275), - [anon_sym_i64] = ACTIONS(1275), - [anon_sym_u128] = ACTIONS(1275), - [anon_sym_i128] = ACTIONS(1275), - [anon_sym_isize] = ACTIONS(1275), - [anon_sym_usize] = ACTIONS(1275), - [anon_sym_f32] = ACTIONS(1275), - [anon_sym_f64] = ACTIONS(1275), - [anon_sym_bool] = ACTIONS(1275), - [anon_sym_str] = ACTIONS(1275), - [anon_sym_char] = ACTIONS(1275), - [anon_sym_DASH] = ACTIONS(1273), - [anon_sym_BANG] = ACTIONS(1273), - [anon_sym_AMP] = ACTIONS(1273), - [anon_sym_PIPE] = ACTIONS(1273), - [anon_sym_LT] = ACTIONS(1273), - [anon_sym_DOT_DOT] = ACTIONS(1273), - [anon_sym_COLON_COLON] = ACTIONS(1273), - [anon_sym_POUND] = ACTIONS(1273), - [anon_sym_SQUOTE] = ACTIONS(1275), - [anon_sym_async] = ACTIONS(1275), - [anon_sym_break] = ACTIONS(1275), - [anon_sym_const] = ACTIONS(1275), - [anon_sym_continue] = ACTIONS(1275), - [anon_sym_default] = ACTIONS(1275), - [anon_sym_enum] = ACTIONS(1275), - [anon_sym_fn] = ACTIONS(1275), - [anon_sym_for] = ACTIONS(1275), - [anon_sym_gen] = ACTIONS(1275), - [anon_sym_if] = ACTIONS(1275), - [anon_sym_impl] = ACTIONS(1275), - [anon_sym_let] = ACTIONS(1275), - [anon_sym_loop] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1275), - [anon_sym_mod] = ACTIONS(1275), - [anon_sym_pub] = ACTIONS(1275), - [anon_sym_return] = ACTIONS(1275), - [anon_sym_static] = ACTIONS(1275), - [anon_sym_struct] = ACTIONS(1275), - [anon_sym_trait] = ACTIONS(1275), - [anon_sym_type] = ACTIONS(1275), - [anon_sym_union] = ACTIONS(1275), - [anon_sym_unsafe] = ACTIONS(1275), - [anon_sym_use] = ACTIONS(1275), - [anon_sym_while] = ACTIONS(1275), - [anon_sym_extern] = ACTIONS(1275), - [anon_sym_yield] = ACTIONS(1275), - [anon_sym_move] = ACTIONS(1275), - [anon_sym_try] = ACTIONS(1275), - [sym_integer_literal] = ACTIONS(1273), - [aux_sym_string_literal_token1] = ACTIONS(1273), - [sym_char_literal] = ACTIONS(1273), - [anon_sym_true] = ACTIONS(1275), - [anon_sym_false] = ACTIONS(1275), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1275), - [sym_super] = ACTIONS(1275), - [sym_crate] = ACTIONS(1275), - [sym_metavariable] = ACTIONS(1273), - [sym__raw_string_literal_start] = ACTIONS(1273), - [sym_float_literal] = ACTIONS(1273), - }, - [631] = { - [sym_line_comment] = STATE(631), - [sym_block_comment] = STATE(631), - [ts_builtin_sym_end] = ACTIONS(2271), - [sym_identifier] = ACTIONS(2273), - [anon_sym_SEMI] = ACTIONS(2271), - [anon_sym_macro_rules_BANG] = ACTIONS(2271), - [anon_sym_LPAREN] = ACTIONS(2271), - [anon_sym_LBRACK] = ACTIONS(2271), - [anon_sym_LBRACE] = ACTIONS(2271), - [anon_sym_RBRACE] = ACTIONS(2271), - [anon_sym_STAR] = ACTIONS(2271), - [anon_sym_u8] = ACTIONS(2273), - [anon_sym_i8] = ACTIONS(2273), - [anon_sym_u16] = ACTIONS(2273), - [anon_sym_i16] = ACTIONS(2273), - [anon_sym_u32] = ACTIONS(2273), - [anon_sym_i32] = ACTIONS(2273), - [anon_sym_u64] = ACTIONS(2273), - [anon_sym_i64] = ACTIONS(2273), - [anon_sym_u128] = ACTIONS(2273), - [anon_sym_i128] = ACTIONS(2273), - [anon_sym_isize] = ACTIONS(2273), - [anon_sym_usize] = ACTIONS(2273), - [anon_sym_f32] = ACTIONS(2273), - [anon_sym_f64] = ACTIONS(2273), - [anon_sym_bool] = ACTIONS(2273), - [anon_sym_str] = ACTIONS(2273), - [anon_sym_char] = ACTIONS(2273), - [anon_sym_DASH] = ACTIONS(2271), - [anon_sym_BANG] = ACTIONS(2271), - [anon_sym_AMP] = ACTIONS(2271), - [anon_sym_PIPE] = ACTIONS(2271), - [anon_sym_LT] = ACTIONS(2271), - [anon_sym_DOT_DOT] = ACTIONS(2271), - [anon_sym_COLON_COLON] = ACTIONS(2271), - [anon_sym_POUND] = ACTIONS(2271), - [anon_sym_SQUOTE] = ACTIONS(2273), - [anon_sym_async] = ACTIONS(2273), - [anon_sym_break] = ACTIONS(2273), - [anon_sym_const] = ACTIONS(2273), - [anon_sym_continue] = ACTIONS(2273), - [anon_sym_default] = ACTIONS(2273), - [anon_sym_enum] = ACTIONS(2273), - [anon_sym_fn] = ACTIONS(2273), - [anon_sym_for] = ACTIONS(2273), - [anon_sym_gen] = ACTIONS(2273), - [anon_sym_if] = ACTIONS(2273), - [anon_sym_impl] = ACTIONS(2273), - [anon_sym_let] = ACTIONS(2273), - [anon_sym_loop] = ACTIONS(2273), - [anon_sym_match] = ACTIONS(2273), - [anon_sym_mod] = ACTIONS(2273), - [anon_sym_pub] = ACTIONS(2273), - [anon_sym_return] = ACTIONS(2273), - [anon_sym_static] = ACTIONS(2273), - [anon_sym_struct] = ACTIONS(2273), - [anon_sym_trait] = ACTIONS(2273), - [anon_sym_type] = ACTIONS(2273), - [anon_sym_union] = ACTIONS(2273), - [anon_sym_unsafe] = ACTIONS(2273), - [anon_sym_use] = ACTIONS(2273), - [anon_sym_while] = ACTIONS(2273), - [anon_sym_extern] = ACTIONS(2273), - [anon_sym_yield] = ACTIONS(2273), - [anon_sym_move] = ACTIONS(2273), - [anon_sym_try] = ACTIONS(2273), - [sym_integer_literal] = ACTIONS(2271), - [aux_sym_string_literal_token1] = ACTIONS(2271), - [sym_char_literal] = ACTIONS(2271), - [anon_sym_true] = ACTIONS(2273), - [anon_sym_false] = ACTIONS(2273), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2273), - [sym_super] = ACTIONS(2273), - [sym_crate] = ACTIONS(2273), - [sym_metavariable] = ACTIONS(2271), - [sym__raw_string_literal_start] = ACTIONS(2271), - [sym_float_literal] = ACTIONS(2271), - }, - [632] = { - [sym_line_comment] = STATE(632), - [sym_block_comment] = STATE(632), - [ts_builtin_sym_end] = ACTIONS(2275), - [sym_identifier] = ACTIONS(2277), - [anon_sym_SEMI] = ACTIONS(2275), - [anon_sym_macro_rules_BANG] = ACTIONS(2275), - [anon_sym_LPAREN] = ACTIONS(2275), - [anon_sym_LBRACK] = ACTIONS(2275), - [anon_sym_LBRACE] = ACTIONS(2275), - [anon_sym_RBRACE] = ACTIONS(2275), - [anon_sym_STAR] = ACTIONS(2275), - [anon_sym_u8] = ACTIONS(2277), - [anon_sym_i8] = ACTIONS(2277), - [anon_sym_u16] = ACTIONS(2277), - [anon_sym_i16] = ACTIONS(2277), - [anon_sym_u32] = ACTIONS(2277), - [anon_sym_i32] = ACTIONS(2277), - [anon_sym_u64] = ACTIONS(2277), - [anon_sym_i64] = ACTIONS(2277), - [anon_sym_u128] = ACTIONS(2277), - [anon_sym_i128] = ACTIONS(2277), - [anon_sym_isize] = ACTIONS(2277), - [anon_sym_usize] = ACTIONS(2277), - [anon_sym_f32] = ACTIONS(2277), - [anon_sym_f64] = ACTIONS(2277), - [anon_sym_bool] = ACTIONS(2277), - [anon_sym_str] = ACTIONS(2277), - [anon_sym_char] = ACTIONS(2277), - [anon_sym_DASH] = ACTIONS(2275), - [anon_sym_BANG] = ACTIONS(2275), - [anon_sym_AMP] = ACTIONS(2275), - [anon_sym_PIPE] = ACTIONS(2275), - [anon_sym_LT] = ACTIONS(2275), - [anon_sym_DOT_DOT] = ACTIONS(2275), - [anon_sym_COLON_COLON] = ACTIONS(2275), - [anon_sym_POUND] = ACTIONS(2275), - [anon_sym_SQUOTE] = ACTIONS(2277), - [anon_sym_async] = ACTIONS(2277), - [anon_sym_break] = ACTIONS(2277), - [anon_sym_const] = ACTIONS(2277), - [anon_sym_continue] = ACTIONS(2277), - [anon_sym_default] = ACTIONS(2277), - [anon_sym_enum] = ACTIONS(2277), - [anon_sym_fn] = ACTIONS(2277), - [anon_sym_for] = ACTIONS(2277), - [anon_sym_gen] = ACTIONS(2277), - [anon_sym_if] = ACTIONS(2277), - [anon_sym_impl] = ACTIONS(2277), - [anon_sym_let] = ACTIONS(2277), - [anon_sym_loop] = ACTIONS(2277), - [anon_sym_match] = ACTIONS(2277), - [anon_sym_mod] = ACTIONS(2277), - [anon_sym_pub] = ACTIONS(2277), - [anon_sym_return] = ACTIONS(2277), - [anon_sym_static] = ACTIONS(2277), - [anon_sym_struct] = ACTIONS(2277), - [anon_sym_trait] = ACTIONS(2277), - [anon_sym_type] = ACTIONS(2277), - [anon_sym_union] = ACTIONS(2277), - [anon_sym_unsafe] = ACTIONS(2277), - [anon_sym_use] = ACTIONS(2277), - [anon_sym_while] = ACTIONS(2277), - [anon_sym_extern] = ACTIONS(2277), - [anon_sym_yield] = ACTIONS(2277), - [anon_sym_move] = ACTIONS(2277), - [anon_sym_try] = ACTIONS(2277), - [sym_integer_literal] = ACTIONS(2275), - [aux_sym_string_literal_token1] = ACTIONS(2275), - [sym_char_literal] = ACTIONS(2275), - [anon_sym_true] = ACTIONS(2277), - [anon_sym_false] = ACTIONS(2277), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2277), - [sym_super] = ACTIONS(2277), - [sym_crate] = ACTIONS(2277), - [sym_metavariable] = ACTIONS(2275), - [sym__raw_string_literal_start] = ACTIONS(2275), - [sym_float_literal] = ACTIONS(2275), - }, - [633] = { - [sym_line_comment] = STATE(633), - [sym_block_comment] = STATE(633), - [ts_builtin_sym_end] = ACTIONS(2279), - [sym_identifier] = ACTIONS(2281), - [anon_sym_SEMI] = ACTIONS(2279), - [anon_sym_macro_rules_BANG] = ACTIONS(2279), - [anon_sym_LPAREN] = ACTIONS(2279), - [anon_sym_LBRACK] = ACTIONS(2279), - [anon_sym_LBRACE] = ACTIONS(2279), - [anon_sym_RBRACE] = ACTIONS(2279), - [anon_sym_STAR] = ACTIONS(2279), - [anon_sym_u8] = ACTIONS(2281), - [anon_sym_i8] = ACTIONS(2281), - [anon_sym_u16] = ACTIONS(2281), - [anon_sym_i16] = ACTIONS(2281), - [anon_sym_u32] = ACTIONS(2281), - [anon_sym_i32] = ACTIONS(2281), - [anon_sym_u64] = ACTIONS(2281), - [anon_sym_i64] = ACTIONS(2281), - [anon_sym_u128] = ACTIONS(2281), - [anon_sym_i128] = ACTIONS(2281), - [anon_sym_isize] = ACTIONS(2281), - [anon_sym_usize] = ACTIONS(2281), - [anon_sym_f32] = ACTIONS(2281), - [anon_sym_f64] = ACTIONS(2281), - [anon_sym_bool] = ACTIONS(2281), - [anon_sym_str] = ACTIONS(2281), - [anon_sym_char] = ACTIONS(2281), - [anon_sym_DASH] = ACTIONS(2279), - [anon_sym_BANG] = ACTIONS(2279), - [anon_sym_AMP] = ACTIONS(2279), - [anon_sym_PIPE] = ACTIONS(2279), - [anon_sym_LT] = ACTIONS(2279), - [anon_sym_DOT_DOT] = ACTIONS(2279), - [anon_sym_COLON_COLON] = ACTIONS(2279), - [anon_sym_POUND] = ACTIONS(2279), - [anon_sym_SQUOTE] = ACTIONS(2281), - [anon_sym_async] = ACTIONS(2281), - [anon_sym_break] = ACTIONS(2281), - [anon_sym_const] = ACTIONS(2281), - [anon_sym_continue] = ACTIONS(2281), - [anon_sym_default] = ACTIONS(2281), - [anon_sym_enum] = ACTIONS(2281), - [anon_sym_fn] = ACTIONS(2281), - [anon_sym_for] = ACTIONS(2281), - [anon_sym_gen] = ACTIONS(2281), - [anon_sym_if] = ACTIONS(2281), - [anon_sym_impl] = ACTIONS(2281), - [anon_sym_let] = ACTIONS(2281), - [anon_sym_loop] = ACTIONS(2281), - [anon_sym_match] = ACTIONS(2281), - [anon_sym_mod] = ACTIONS(2281), - [anon_sym_pub] = ACTIONS(2281), - [anon_sym_return] = ACTIONS(2281), - [anon_sym_static] = ACTIONS(2281), - [anon_sym_struct] = ACTIONS(2281), - [anon_sym_trait] = ACTIONS(2281), - [anon_sym_type] = ACTIONS(2281), - [anon_sym_union] = ACTIONS(2281), - [anon_sym_unsafe] = ACTIONS(2281), - [anon_sym_use] = ACTIONS(2281), - [anon_sym_while] = ACTIONS(2281), - [anon_sym_extern] = ACTIONS(2281), - [anon_sym_yield] = ACTIONS(2281), - [anon_sym_move] = ACTIONS(2281), - [anon_sym_try] = ACTIONS(2281), - [sym_integer_literal] = ACTIONS(2279), - [aux_sym_string_literal_token1] = ACTIONS(2279), - [sym_char_literal] = ACTIONS(2279), - [anon_sym_true] = ACTIONS(2281), - [anon_sym_false] = ACTIONS(2281), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2281), - [sym_super] = ACTIONS(2281), - [sym_crate] = ACTIONS(2281), - [sym_metavariable] = ACTIONS(2279), - [sym__raw_string_literal_start] = ACTIONS(2279), - [sym_float_literal] = ACTIONS(2279), - }, - [634] = { - [sym_line_comment] = STATE(634), - [sym_block_comment] = STATE(634), - [ts_builtin_sym_end] = ACTIONS(2283), - [sym_identifier] = ACTIONS(2285), - [anon_sym_SEMI] = ACTIONS(2283), - [anon_sym_macro_rules_BANG] = ACTIONS(2283), - [anon_sym_LPAREN] = ACTIONS(2283), - [anon_sym_LBRACK] = ACTIONS(2283), - [anon_sym_LBRACE] = ACTIONS(2283), - [anon_sym_RBRACE] = ACTIONS(2283), - [anon_sym_STAR] = ACTIONS(2283), - [anon_sym_u8] = ACTIONS(2285), - [anon_sym_i8] = ACTIONS(2285), - [anon_sym_u16] = ACTIONS(2285), - [anon_sym_i16] = ACTIONS(2285), - [anon_sym_u32] = ACTIONS(2285), - [anon_sym_i32] = ACTIONS(2285), - [anon_sym_u64] = ACTIONS(2285), - [anon_sym_i64] = ACTIONS(2285), - [anon_sym_u128] = ACTIONS(2285), - [anon_sym_i128] = ACTIONS(2285), - [anon_sym_isize] = ACTIONS(2285), - [anon_sym_usize] = ACTIONS(2285), - [anon_sym_f32] = ACTIONS(2285), - [anon_sym_f64] = ACTIONS(2285), - [anon_sym_bool] = ACTIONS(2285), - [anon_sym_str] = ACTIONS(2285), - [anon_sym_char] = ACTIONS(2285), - [anon_sym_DASH] = ACTIONS(2283), - [anon_sym_BANG] = ACTIONS(2283), - [anon_sym_AMP] = ACTIONS(2283), - [anon_sym_PIPE] = ACTIONS(2283), - [anon_sym_LT] = ACTIONS(2283), - [anon_sym_DOT_DOT] = ACTIONS(2283), - [anon_sym_COLON_COLON] = ACTIONS(2283), - [anon_sym_POUND] = ACTIONS(2283), - [anon_sym_SQUOTE] = ACTIONS(2285), - [anon_sym_async] = ACTIONS(2285), - [anon_sym_break] = ACTIONS(2285), - [anon_sym_const] = ACTIONS(2285), - [anon_sym_continue] = ACTIONS(2285), - [anon_sym_default] = ACTIONS(2285), - [anon_sym_enum] = ACTIONS(2285), - [anon_sym_fn] = ACTIONS(2285), - [anon_sym_for] = ACTIONS(2285), - [anon_sym_gen] = ACTIONS(2285), - [anon_sym_if] = ACTIONS(2285), - [anon_sym_impl] = ACTIONS(2285), - [anon_sym_let] = ACTIONS(2285), - [anon_sym_loop] = ACTIONS(2285), - [anon_sym_match] = ACTIONS(2285), - [anon_sym_mod] = ACTIONS(2285), - [anon_sym_pub] = ACTIONS(2285), - [anon_sym_return] = ACTIONS(2285), - [anon_sym_static] = ACTIONS(2285), - [anon_sym_struct] = ACTIONS(2285), - [anon_sym_trait] = ACTIONS(2285), - [anon_sym_type] = ACTIONS(2285), - [anon_sym_union] = ACTIONS(2285), - [anon_sym_unsafe] = ACTIONS(2285), - [anon_sym_use] = ACTIONS(2285), - [anon_sym_while] = ACTIONS(2285), - [anon_sym_extern] = ACTIONS(2285), - [anon_sym_yield] = ACTIONS(2285), - [anon_sym_move] = ACTIONS(2285), - [anon_sym_try] = ACTIONS(2285), - [sym_integer_literal] = ACTIONS(2283), - [aux_sym_string_literal_token1] = ACTIONS(2283), - [sym_char_literal] = ACTIONS(2283), - [anon_sym_true] = ACTIONS(2285), - [anon_sym_false] = ACTIONS(2285), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2285), - [sym_super] = ACTIONS(2285), - [sym_crate] = ACTIONS(2285), - [sym_metavariable] = ACTIONS(2283), - [sym__raw_string_literal_start] = ACTIONS(2283), - [sym_float_literal] = ACTIONS(2283), - }, - [635] = { - [sym_line_comment] = STATE(635), - [sym_block_comment] = STATE(635), - [ts_builtin_sym_end] = ACTIONS(2287), - [sym_identifier] = ACTIONS(2289), - [anon_sym_SEMI] = ACTIONS(2287), - [anon_sym_macro_rules_BANG] = ACTIONS(2287), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_LBRACK] = ACTIONS(2287), - [anon_sym_LBRACE] = ACTIONS(2287), - [anon_sym_RBRACE] = ACTIONS(2287), - [anon_sym_STAR] = ACTIONS(2287), - [anon_sym_u8] = ACTIONS(2289), - [anon_sym_i8] = ACTIONS(2289), - [anon_sym_u16] = ACTIONS(2289), - [anon_sym_i16] = ACTIONS(2289), - [anon_sym_u32] = ACTIONS(2289), - [anon_sym_i32] = ACTIONS(2289), - [anon_sym_u64] = ACTIONS(2289), - [anon_sym_i64] = ACTIONS(2289), - [anon_sym_u128] = ACTIONS(2289), - [anon_sym_i128] = ACTIONS(2289), - [anon_sym_isize] = ACTIONS(2289), - [anon_sym_usize] = ACTIONS(2289), - [anon_sym_f32] = ACTIONS(2289), - [anon_sym_f64] = ACTIONS(2289), - [anon_sym_bool] = ACTIONS(2289), - [anon_sym_str] = ACTIONS(2289), - [anon_sym_char] = ACTIONS(2289), - [anon_sym_DASH] = ACTIONS(2287), - [anon_sym_BANG] = ACTIONS(2287), - [anon_sym_AMP] = ACTIONS(2287), - [anon_sym_PIPE] = ACTIONS(2287), - [anon_sym_LT] = ACTIONS(2287), - [anon_sym_DOT_DOT] = ACTIONS(2287), - [anon_sym_COLON_COLON] = ACTIONS(2287), - [anon_sym_POUND] = ACTIONS(2287), - [anon_sym_SQUOTE] = ACTIONS(2289), - [anon_sym_async] = ACTIONS(2289), - [anon_sym_break] = ACTIONS(2289), - [anon_sym_const] = ACTIONS(2289), - [anon_sym_continue] = ACTIONS(2289), - [anon_sym_default] = ACTIONS(2289), - [anon_sym_enum] = ACTIONS(2289), - [anon_sym_fn] = ACTIONS(2289), - [anon_sym_for] = ACTIONS(2289), - [anon_sym_gen] = ACTIONS(2289), - [anon_sym_if] = ACTIONS(2289), - [anon_sym_impl] = ACTIONS(2289), - [anon_sym_let] = ACTIONS(2289), - [anon_sym_loop] = ACTIONS(2289), - [anon_sym_match] = ACTIONS(2289), - [anon_sym_mod] = ACTIONS(2289), - [anon_sym_pub] = ACTIONS(2289), - [anon_sym_return] = ACTIONS(2289), - [anon_sym_static] = ACTIONS(2289), - [anon_sym_struct] = ACTIONS(2289), - [anon_sym_trait] = ACTIONS(2289), - [anon_sym_type] = ACTIONS(2289), - [anon_sym_union] = ACTIONS(2289), - [anon_sym_unsafe] = ACTIONS(2289), - [anon_sym_use] = ACTIONS(2289), - [anon_sym_while] = ACTIONS(2289), - [anon_sym_extern] = ACTIONS(2289), - [anon_sym_yield] = ACTIONS(2289), - [anon_sym_move] = ACTIONS(2289), - [anon_sym_try] = ACTIONS(2289), - [sym_integer_literal] = ACTIONS(2287), - [aux_sym_string_literal_token1] = ACTIONS(2287), - [sym_char_literal] = ACTIONS(2287), - [anon_sym_true] = ACTIONS(2289), - [anon_sym_false] = ACTIONS(2289), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2289), - [sym_super] = ACTIONS(2289), - [sym_crate] = ACTIONS(2289), - [sym_metavariable] = ACTIONS(2287), - [sym__raw_string_literal_start] = ACTIONS(2287), - [sym_float_literal] = ACTIONS(2287), - }, - [636] = { - [sym_line_comment] = STATE(636), - [sym_block_comment] = STATE(636), - [ts_builtin_sym_end] = ACTIONS(2291), - [sym_identifier] = ACTIONS(2293), - [anon_sym_SEMI] = ACTIONS(2291), - [anon_sym_macro_rules_BANG] = ACTIONS(2291), - [anon_sym_LPAREN] = ACTIONS(2291), - [anon_sym_LBRACK] = ACTIONS(2291), - [anon_sym_LBRACE] = ACTIONS(2291), - [anon_sym_RBRACE] = ACTIONS(2291), - [anon_sym_STAR] = ACTIONS(2291), - [anon_sym_u8] = ACTIONS(2293), - [anon_sym_i8] = ACTIONS(2293), - [anon_sym_u16] = ACTIONS(2293), - [anon_sym_i16] = ACTIONS(2293), - [anon_sym_u32] = ACTIONS(2293), - [anon_sym_i32] = ACTIONS(2293), - [anon_sym_u64] = ACTIONS(2293), - [anon_sym_i64] = ACTIONS(2293), - [anon_sym_u128] = ACTIONS(2293), - [anon_sym_i128] = ACTIONS(2293), - [anon_sym_isize] = ACTIONS(2293), - [anon_sym_usize] = ACTIONS(2293), - [anon_sym_f32] = ACTIONS(2293), - [anon_sym_f64] = ACTIONS(2293), - [anon_sym_bool] = ACTIONS(2293), - [anon_sym_str] = ACTIONS(2293), - [anon_sym_char] = ACTIONS(2293), - [anon_sym_DASH] = ACTIONS(2291), - [anon_sym_BANG] = ACTIONS(2291), - [anon_sym_AMP] = ACTIONS(2291), - [anon_sym_PIPE] = ACTIONS(2291), - [anon_sym_LT] = ACTIONS(2291), - [anon_sym_DOT_DOT] = ACTIONS(2291), - [anon_sym_COLON_COLON] = ACTIONS(2291), - [anon_sym_POUND] = ACTIONS(2291), - [anon_sym_SQUOTE] = ACTIONS(2293), - [anon_sym_async] = ACTIONS(2293), - [anon_sym_break] = ACTIONS(2293), - [anon_sym_const] = ACTIONS(2293), - [anon_sym_continue] = ACTIONS(2293), - [anon_sym_default] = ACTIONS(2293), - [anon_sym_enum] = ACTIONS(2293), - [anon_sym_fn] = ACTIONS(2293), - [anon_sym_for] = ACTIONS(2293), - [anon_sym_gen] = ACTIONS(2293), - [anon_sym_if] = ACTIONS(2293), - [anon_sym_impl] = ACTIONS(2293), - [anon_sym_let] = ACTIONS(2293), - [anon_sym_loop] = ACTIONS(2293), - [anon_sym_match] = ACTIONS(2293), - [anon_sym_mod] = ACTIONS(2293), - [anon_sym_pub] = ACTIONS(2293), - [anon_sym_return] = ACTIONS(2293), - [anon_sym_static] = ACTIONS(2293), - [anon_sym_struct] = ACTIONS(2293), - [anon_sym_trait] = ACTIONS(2293), - [anon_sym_type] = ACTIONS(2293), - [anon_sym_union] = ACTIONS(2293), - [anon_sym_unsafe] = ACTIONS(2293), - [anon_sym_use] = ACTIONS(2293), - [anon_sym_while] = ACTIONS(2293), - [anon_sym_extern] = ACTIONS(2293), - [anon_sym_yield] = ACTIONS(2293), - [anon_sym_move] = ACTIONS(2293), - [anon_sym_try] = ACTIONS(2293), - [sym_integer_literal] = ACTIONS(2291), - [aux_sym_string_literal_token1] = ACTIONS(2291), - [sym_char_literal] = ACTIONS(2291), - [anon_sym_true] = ACTIONS(2293), - [anon_sym_false] = ACTIONS(2293), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2293), - [sym_super] = ACTIONS(2293), - [sym_crate] = ACTIONS(2293), - [sym_metavariable] = ACTIONS(2291), - [sym__raw_string_literal_start] = ACTIONS(2291), - [sym_float_literal] = ACTIONS(2291), - }, - [637] = { - [sym_line_comment] = STATE(637), - [sym_block_comment] = STATE(637), - [ts_builtin_sym_end] = ACTIONS(2295), - [sym_identifier] = ACTIONS(2297), - [anon_sym_SEMI] = ACTIONS(2295), - [anon_sym_macro_rules_BANG] = ACTIONS(2295), - [anon_sym_LPAREN] = ACTIONS(2295), - [anon_sym_LBRACK] = ACTIONS(2295), - [anon_sym_LBRACE] = ACTIONS(2295), - [anon_sym_RBRACE] = ACTIONS(2295), - [anon_sym_STAR] = ACTIONS(2295), - [anon_sym_u8] = ACTIONS(2297), - [anon_sym_i8] = ACTIONS(2297), - [anon_sym_u16] = ACTIONS(2297), - [anon_sym_i16] = ACTIONS(2297), - [anon_sym_u32] = ACTIONS(2297), - [anon_sym_i32] = ACTIONS(2297), - [anon_sym_u64] = ACTIONS(2297), - [anon_sym_i64] = ACTIONS(2297), - [anon_sym_u128] = ACTIONS(2297), - [anon_sym_i128] = ACTIONS(2297), - [anon_sym_isize] = ACTIONS(2297), - [anon_sym_usize] = ACTIONS(2297), - [anon_sym_f32] = ACTIONS(2297), - [anon_sym_f64] = ACTIONS(2297), - [anon_sym_bool] = ACTIONS(2297), - [anon_sym_str] = ACTIONS(2297), - [anon_sym_char] = ACTIONS(2297), - [anon_sym_DASH] = ACTIONS(2295), - [anon_sym_BANG] = ACTIONS(2295), - [anon_sym_AMP] = ACTIONS(2295), - [anon_sym_PIPE] = ACTIONS(2295), - [anon_sym_LT] = ACTIONS(2295), - [anon_sym_DOT_DOT] = ACTIONS(2295), - [anon_sym_COLON_COLON] = ACTIONS(2295), - [anon_sym_POUND] = ACTIONS(2295), - [anon_sym_SQUOTE] = ACTIONS(2297), - [anon_sym_async] = ACTIONS(2297), - [anon_sym_break] = ACTIONS(2297), - [anon_sym_const] = ACTIONS(2297), - [anon_sym_continue] = ACTIONS(2297), - [anon_sym_default] = ACTIONS(2297), - [anon_sym_enum] = ACTIONS(2297), - [anon_sym_fn] = ACTIONS(2297), - [anon_sym_for] = ACTIONS(2297), - [anon_sym_gen] = ACTIONS(2297), - [anon_sym_if] = ACTIONS(2297), - [anon_sym_impl] = ACTIONS(2297), - [anon_sym_let] = ACTIONS(2297), - [anon_sym_loop] = ACTIONS(2297), - [anon_sym_match] = ACTIONS(2297), - [anon_sym_mod] = ACTIONS(2297), - [anon_sym_pub] = ACTIONS(2297), - [anon_sym_return] = ACTIONS(2297), - [anon_sym_static] = ACTIONS(2297), - [anon_sym_struct] = ACTIONS(2297), - [anon_sym_trait] = ACTIONS(2297), - [anon_sym_type] = ACTIONS(2297), - [anon_sym_union] = ACTIONS(2297), - [anon_sym_unsafe] = ACTIONS(2297), - [anon_sym_use] = ACTIONS(2297), - [anon_sym_while] = ACTIONS(2297), - [anon_sym_extern] = ACTIONS(2297), - [anon_sym_yield] = ACTIONS(2297), - [anon_sym_move] = ACTIONS(2297), - [anon_sym_try] = ACTIONS(2297), - [sym_integer_literal] = ACTIONS(2295), - [aux_sym_string_literal_token1] = ACTIONS(2295), - [sym_char_literal] = ACTIONS(2295), - [anon_sym_true] = ACTIONS(2297), - [anon_sym_false] = ACTIONS(2297), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2297), - [sym_super] = ACTIONS(2297), - [sym_crate] = ACTIONS(2297), - [sym_metavariable] = ACTIONS(2295), - [sym__raw_string_literal_start] = ACTIONS(2295), - [sym_float_literal] = ACTIONS(2295), - }, - [638] = { - [sym_line_comment] = STATE(638), - [sym_block_comment] = STATE(638), - [ts_builtin_sym_end] = ACTIONS(2299), - [sym_identifier] = ACTIONS(2301), - [anon_sym_SEMI] = ACTIONS(2299), - [anon_sym_macro_rules_BANG] = ACTIONS(2299), - [anon_sym_LPAREN] = ACTIONS(2299), - [anon_sym_LBRACK] = ACTIONS(2299), - [anon_sym_LBRACE] = ACTIONS(2299), - [anon_sym_RBRACE] = ACTIONS(2299), - [anon_sym_STAR] = ACTIONS(2299), - [anon_sym_u8] = ACTIONS(2301), - [anon_sym_i8] = ACTIONS(2301), - [anon_sym_u16] = ACTIONS(2301), - [anon_sym_i16] = ACTIONS(2301), - [anon_sym_u32] = ACTIONS(2301), - [anon_sym_i32] = ACTIONS(2301), - [anon_sym_u64] = ACTIONS(2301), - [anon_sym_i64] = ACTIONS(2301), - [anon_sym_u128] = ACTIONS(2301), - [anon_sym_i128] = ACTIONS(2301), - [anon_sym_isize] = ACTIONS(2301), - [anon_sym_usize] = ACTIONS(2301), - [anon_sym_f32] = ACTIONS(2301), - [anon_sym_f64] = ACTIONS(2301), - [anon_sym_bool] = ACTIONS(2301), - [anon_sym_str] = ACTIONS(2301), - [anon_sym_char] = ACTIONS(2301), - [anon_sym_DASH] = ACTIONS(2299), - [anon_sym_BANG] = ACTIONS(2299), - [anon_sym_AMP] = ACTIONS(2299), - [anon_sym_PIPE] = ACTIONS(2299), - [anon_sym_LT] = ACTIONS(2299), - [anon_sym_DOT_DOT] = ACTIONS(2299), - [anon_sym_COLON_COLON] = ACTIONS(2299), - [anon_sym_POUND] = ACTIONS(2299), - [anon_sym_SQUOTE] = ACTIONS(2301), - [anon_sym_async] = ACTIONS(2301), - [anon_sym_break] = ACTIONS(2301), - [anon_sym_const] = ACTIONS(2301), - [anon_sym_continue] = ACTIONS(2301), - [anon_sym_default] = ACTIONS(2301), - [anon_sym_enum] = ACTIONS(2301), - [anon_sym_fn] = ACTIONS(2301), - [anon_sym_for] = ACTIONS(2301), - [anon_sym_gen] = ACTIONS(2301), - [anon_sym_if] = ACTIONS(2301), - [anon_sym_impl] = ACTIONS(2301), - [anon_sym_let] = ACTIONS(2301), - [anon_sym_loop] = ACTIONS(2301), - [anon_sym_match] = ACTIONS(2301), - [anon_sym_mod] = ACTIONS(2301), - [anon_sym_pub] = ACTIONS(2301), - [anon_sym_return] = ACTIONS(2301), - [anon_sym_static] = ACTIONS(2301), - [anon_sym_struct] = ACTIONS(2301), - [anon_sym_trait] = ACTIONS(2301), - [anon_sym_type] = ACTIONS(2301), - [anon_sym_union] = ACTIONS(2301), - [anon_sym_unsafe] = ACTIONS(2301), - [anon_sym_use] = ACTIONS(2301), - [anon_sym_while] = ACTIONS(2301), - [anon_sym_extern] = ACTIONS(2301), - [anon_sym_yield] = ACTIONS(2301), - [anon_sym_move] = ACTIONS(2301), - [anon_sym_try] = ACTIONS(2301), - [sym_integer_literal] = ACTIONS(2299), - [aux_sym_string_literal_token1] = ACTIONS(2299), - [sym_char_literal] = ACTIONS(2299), - [anon_sym_true] = ACTIONS(2301), - [anon_sym_false] = ACTIONS(2301), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2301), - [sym_super] = ACTIONS(2301), - [sym_crate] = ACTIONS(2301), - [sym_metavariable] = ACTIONS(2299), - [sym__raw_string_literal_start] = ACTIONS(2299), - [sym_float_literal] = ACTIONS(2299), - }, - [639] = { - [sym_empty_statement] = STATE(1072), - [sym_macro_definition] = STATE(1072), - [sym_attribute_item] = STATE(1072), - [sym_inner_attribute_item] = STATE(1072), - [sym_mod_item] = STATE(1072), - [sym_foreign_mod_item] = STATE(1072), - [sym_struct_item] = STATE(1072), - [sym_union_item] = STATE(1072), - [sym_enum_item] = STATE(1072), - [sym_extern_crate_declaration] = STATE(1072), - [sym_const_item] = STATE(1072), - [sym_static_item] = STATE(1072), - [sym_type_item] = STATE(1072), - [sym_function_item] = STATE(1072), - [sym_function_signature_item] = STATE(1072), - [sym_function_modifiers] = STATE(3622), - [sym_impl_item] = STATE(1072), - [sym_trait_item] = STATE(1072), - [sym_associated_type] = STATE(1072), - [sym_let_declaration] = STATE(1072), - [sym_use_declaration] = STATE(1072), - [sym_extern_modifier] = STATE(2165), - [sym_visibility_modifier] = STATE(1954), - [sym_bracketed_type] = STATE(3353), - [sym_generic_type_with_turbofish] = STATE(3379), - [sym_macro_invocation] = STATE(1072), - [sym_scoped_identifier] = STATE(3167), - [sym_line_comment] = STATE(639), - [sym_block_comment] = STATE(639), - [aux_sym_declaration_list_repeat1] = STATE(639), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(2303), - [anon_sym_SEMI] = ACTIONS(2306), - [anon_sym_macro_rules_BANG] = ACTIONS(2309), - [anon_sym_RBRACE] = ACTIONS(2312), - [anon_sym_u8] = ACTIONS(2314), - [anon_sym_i8] = ACTIONS(2314), - [anon_sym_u16] = ACTIONS(2314), - [anon_sym_i16] = ACTIONS(2314), - [anon_sym_u32] = ACTIONS(2314), - [anon_sym_i32] = ACTIONS(2314), - [anon_sym_u64] = ACTIONS(2314), - [anon_sym_i64] = ACTIONS(2314), - [anon_sym_u128] = ACTIONS(2314), - [anon_sym_i128] = ACTIONS(2314), - [anon_sym_isize] = ACTIONS(2314), - [anon_sym_usize] = ACTIONS(2314), - [anon_sym_f32] = ACTIONS(2314), - [anon_sym_f64] = ACTIONS(2314), - [anon_sym_bool] = ACTIONS(2314), - [anon_sym_str] = ACTIONS(2314), - [anon_sym_char] = ACTIONS(2314), - [anon_sym_LT] = ACTIONS(2317), - [anon_sym_COLON_COLON] = ACTIONS(2320), - [anon_sym_POUND] = ACTIONS(2323), - [anon_sym_async] = ACTIONS(2326), - [anon_sym_const] = ACTIONS(2329), - [anon_sym_default] = ACTIONS(2332), - [anon_sym_enum] = ACTIONS(2335), - [anon_sym_fn] = ACTIONS(2338), - [anon_sym_gen] = ACTIONS(2341), - [anon_sym_impl] = ACTIONS(2344), - [anon_sym_let] = ACTIONS(2347), - [anon_sym_mod] = ACTIONS(2350), - [anon_sym_pub] = ACTIONS(2353), - [anon_sym_static] = ACTIONS(2356), - [anon_sym_struct] = ACTIONS(2359), - [anon_sym_trait] = ACTIONS(2362), - [anon_sym_type] = ACTIONS(2365), - [anon_sym_union] = ACTIONS(2368), - [anon_sym_unsafe] = ACTIONS(2371), - [anon_sym_use] = ACTIONS(2374), - [anon_sym_extern] = ACTIONS(2377), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2380), - [sym_super] = ACTIONS(2380), - [sym_crate] = ACTIONS(2383), - [sym_metavariable] = ACTIONS(2386), - }, - [640] = { - [sym_line_comment] = STATE(640), - [sym_block_comment] = STATE(640), - [ts_builtin_sym_end] = ACTIONS(2389), - [sym_identifier] = ACTIONS(2391), - [anon_sym_SEMI] = ACTIONS(2389), - [anon_sym_macro_rules_BANG] = ACTIONS(2389), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_LBRACK] = ACTIONS(2389), - [anon_sym_LBRACE] = ACTIONS(2389), - [anon_sym_RBRACE] = ACTIONS(2389), - [anon_sym_STAR] = ACTIONS(2389), - [anon_sym_u8] = ACTIONS(2391), - [anon_sym_i8] = ACTIONS(2391), - [anon_sym_u16] = ACTIONS(2391), - [anon_sym_i16] = ACTIONS(2391), - [anon_sym_u32] = ACTIONS(2391), - [anon_sym_i32] = ACTIONS(2391), - [anon_sym_u64] = ACTIONS(2391), - [anon_sym_i64] = ACTIONS(2391), - [anon_sym_u128] = ACTIONS(2391), - [anon_sym_i128] = ACTIONS(2391), - [anon_sym_isize] = ACTIONS(2391), - [anon_sym_usize] = ACTIONS(2391), - [anon_sym_f32] = ACTIONS(2391), - [anon_sym_f64] = ACTIONS(2391), - [anon_sym_bool] = ACTIONS(2391), - [anon_sym_str] = ACTIONS(2391), - [anon_sym_char] = ACTIONS(2391), - [anon_sym_DASH] = ACTIONS(2389), - [anon_sym_BANG] = ACTIONS(2389), - [anon_sym_AMP] = ACTIONS(2389), - [anon_sym_PIPE] = ACTIONS(2389), - [anon_sym_LT] = ACTIONS(2389), - [anon_sym_DOT_DOT] = ACTIONS(2389), - [anon_sym_COLON_COLON] = ACTIONS(2389), - [anon_sym_POUND] = ACTIONS(2389), - [anon_sym_SQUOTE] = ACTIONS(2391), - [anon_sym_async] = ACTIONS(2391), - [anon_sym_break] = ACTIONS(2391), - [anon_sym_const] = ACTIONS(2391), - [anon_sym_continue] = ACTIONS(2391), - [anon_sym_default] = ACTIONS(2391), - [anon_sym_enum] = ACTIONS(2391), - [anon_sym_fn] = ACTIONS(2391), - [anon_sym_for] = ACTIONS(2391), - [anon_sym_gen] = ACTIONS(2391), - [anon_sym_if] = ACTIONS(2391), - [anon_sym_impl] = ACTIONS(2391), - [anon_sym_let] = ACTIONS(2391), - [anon_sym_loop] = ACTIONS(2391), - [anon_sym_match] = ACTIONS(2391), - [anon_sym_mod] = ACTIONS(2391), - [anon_sym_pub] = ACTIONS(2391), - [anon_sym_return] = ACTIONS(2391), - [anon_sym_static] = ACTIONS(2391), - [anon_sym_struct] = ACTIONS(2391), - [anon_sym_trait] = ACTIONS(2391), - [anon_sym_type] = ACTIONS(2391), - [anon_sym_union] = ACTIONS(2391), - [anon_sym_unsafe] = ACTIONS(2391), - [anon_sym_use] = ACTIONS(2391), - [anon_sym_while] = ACTIONS(2391), - [anon_sym_extern] = ACTIONS(2391), - [anon_sym_yield] = ACTIONS(2391), - [anon_sym_move] = ACTIONS(2391), - [anon_sym_try] = ACTIONS(2391), - [sym_integer_literal] = ACTIONS(2389), - [aux_sym_string_literal_token1] = ACTIONS(2389), - [sym_char_literal] = ACTIONS(2389), - [anon_sym_true] = ACTIONS(2391), - [anon_sym_false] = ACTIONS(2391), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2391), - [sym_super] = ACTIONS(2391), - [sym_crate] = ACTIONS(2391), - [sym_metavariable] = ACTIONS(2389), - [sym__raw_string_literal_start] = ACTIONS(2389), - [sym_float_literal] = ACTIONS(2389), - }, - [641] = { - [sym_line_comment] = STATE(641), - [sym_block_comment] = STATE(641), [ts_builtin_sym_end] = ACTIONS(2393), [sym_identifier] = ACTIONS(2395), [anon_sym_SEMI] = ACTIONS(2393), @@ -82755,9 +83237,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2393), [sym_float_literal] = ACTIONS(2393), }, - [642] = { - [sym_line_comment] = STATE(642), - [sym_block_comment] = STATE(642), + [628] = { + [sym_line_comment] = STATE(628), + [sym_block_comment] = STATE(628), [ts_builtin_sym_end] = ACTIONS(2397), [sym_identifier] = ACTIONS(2399), [anon_sym_SEMI] = ACTIONS(2397), @@ -82836,9 +83318,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2397), [sym_float_literal] = ACTIONS(2397), }, - [643] = { - [sym_line_comment] = STATE(643), - [sym_block_comment] = STATE(643), + [629] = { + [sym_line_comment] = STATE(629), + [sym_block_comment] = STATE(629), [ts_builtin_sym_end] = ACTIONS(2401), [sym_identifier] = ACTIONS(2403), [anon_sym_SEMI] = ACTIONS(2401), @@ -82917,9 +83399,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2401), [sym_float_literal] = ACTIONS(2401), }, - [644] = { - [sym_line_comment] = STATE(644), - [sym_block_comment] = STATE(644), + [630] = { + [sym_line_comment] = STATE(630), + [sym_block_comment] = STATE(630), [ts_builtin_sym_end] = ACTIONS(2405), [sym_identifier] = ACTIONS(2407), [anon_sym_SEMI] = ACTIONS(2405), @@ -82998,9 +83480,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2405), [sym_float_literal] = ACTIONS(2405), }, - [645] = { - [sym_line_comment] = STATE(645), - [sym_block_comment] = STATE(645), + [631] = { + [sym_line_comment] = STATE(631), + [sym_block_comment] = STATE(631), [ts_builtin_sym_end] = ACTIONS(2409), [sym_identifier] = ACTIONS(2411), [anon_sym_SEMI] = ACTIONS(2409), @@ -83079,90 +83561,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2409), [sym_float_literal] = ACTIONS(2409), }, - [646] = { - [sym_line_comment] = STATE(646), - [sym_block_comment] = STATE(646), - [ts_builtin_sym_end] = ACTIONS(1257), - [sym_identifier] = ACTIONS(1259), - [anon_sym_SEMI] = ACTIONS(1257), - [anon_sym_macro_rules_BANG] = ACTIONS(1257), - [anon_sym_LPAREN] = ACTIONS(1257), - [anon_sym_LBRACK] = ACTIONS(1257), - [anon_sym_LBRACE] = ACTIONS(1257), - [anon_sym_RBRACE] = ACTIONS(1257), - [anon_sym_STAR] = ACTIONS(1257), - [anon_sym_u8] = ACTIONS(1259), - [anon_sym_i8] = ACTIONS(1259), - [anon_sym_u16] = ACTIONS(1259), - [anon_sym_i16] = ACTIONS(1259), - [anon_sym_u32] = ACTIONS(1259), - [anon_sym_i32] = ACTIONS(1259), - [anon_sym_u64] = ACTIONS(1259), - [anon_sym_i64] = ACTIONS(1259), - [anon_sym_u128] = ACTIONS(1259), - [anon_sym_i128] = ACTIONS(1259), - [anon_sym_isize] = ACTIONS(1259), - [anon_sym_usize] = ACTIONS(1259), - [anon_sym_f32] = ACTIONS(1259), - [anon_sym_f64] = ACTIONS(1259), - [anon_sym_bool] = ACTIONS(1259), - [anon_sym_str] = ACTIONS(1259), - [anon_sym_char] = ACTIONS(1259), - [anon_sym_DASH] = ACTIONS(1257), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_AMP] = ACTIONS(1257), - [anon_sym_PIPE] = ACTIONS(1257), - [anon_sym_LT] = ACTIONS(1257), - [anon_sym_DOT_DOT] = ACTIONS(1257), - [anon_sym_COLON_COLON] = ACTIONS(1257), - [anon_sym_POUND] = ACTIONS(1257), - [anon_sym_SQUOTE] = ACTIONS(1259), - [anon_sym_async] = ACTIONS(1259), - [anon_sym_break] = ACTIONS(1259), - [anon_sym_const] = ACTIONS(1259), - [anon_sym_continue] = ACTIONS(1259), - [anon_sym_default] = ACTIONS(1259), - [anon_sym_enum] = ACTIONS(1259), - [anon_sym_fn] = ACTIONS(1259), - [anon_sym_for] = ACTIONS(1259), - [anon_sym_gen] = ACTIONS(1259), - [anon_sym_if] = ACTIONS(1259), - [anon_sym_impl] = ACTIONS(1259), - [anon_sym_let] = ACTIONS(1259), - [anon_sym_loop] = ACTIONS(1259), - [anon_sym_match] = ACTIONS(1259), - [anon_sym_mod] = ACTIONS(1259), - [anon_sym_pub] = ACTIONS(1259), - [anon_sym_return] = ACTIONS(1259), - [anon_sym_static] = ACTIONS(1259), - [anon_sym_struct] = ACTIONS(1259), - [anon_sym_trait] = ACTIONS(1259), - [anon_sym_type] = ACTIONS(1259), - [anon_sym_union] = ACTIONS(1259), - [anon_sym_unsafe] = ACTIONS(1259), - [anon_sym_use] = ACTIONS(1259), - [anon_sym_while] = ACTIONS(1259), - [anon_sym_extern] = ACTIONS(1259), - [anon_sym_yield] = ACTIONS(1259), - [anon_sym_move] = ACTIONS(1259), - [anon_sym_try] = ACTIONS(1259), - [sym_integer_literal] = ACTIONS(1257), - [aux_sym_string_literal_token1] = ACTIONS(1257), - [sym_char_literal] = ACTIONS(1257), - [anon_sym_true] = ACTIONS(1259), - [anon_sym_false] = ACTIONS(1259), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1259), - [sym_super] = ACTIONS(1259), - [sym_crate] = ACTIONS(1259), - [sym_metavariable] = ACTIONS(1257), - [sym__raw_string_literal_start] = ACTIONS(1257), - [sym_float_literal] = ACTIONS(1257), - }, - [647] = { - [sym_line_comment] = STATE(647), - [sym_block_comment] = STATE(647), + [632] = { + [sym_line_comment] = STATE(632), + [sym_block_comment] = STATE(632), [ts_builtin_sym_end] = ACTIONS(2413), [sym_identifier] = ACTIONS(2415), [anon_sym_SEMI] = ACTIONS(2413), @@ -83241,9 +83642,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2413), [sym_float_literal] = ACTIONS(2413), }, - [648] = { - [sym_line_comment] = STATE(648), - [sym_block_comment] = STATE(648), + [633] = { + [sym_line_comment] = STATE(633), + [sym_block_comment] = STATE(633), [ts_builtin_sym_end] = ACTIONS(2417), [sym_identifier] = ACTIONS(2419), [anon_sym_SEMI] = ACTIONS(2417), @@ -83322,252 +83723,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2417), [sym_float_literal] = ACTIONS(2417), }, - [649] = { - [sym_line_comment] = STATE(649), - [sym_block_comment] = STATE(649), - [ts_builtin_sym_end] = ACTIONS(1269), - [sym_identifier] = ACTIONS(1271), - [anon_sym_SEMI] = ACTIONS(1269), - [anon_sym_macro_rules_BANG] = ACTIONS(1269), - [anon_sym_LPAREN] = ACTIONS(1269), - [anon_sym_LBRACK] = ACTIONS(1269), - [anon_sym_LBRACE] = ACTIONS(1269), - [anon_sym_RBRACE] = ACTIONS(1269), - [anon_sym_STAR] = ACTIONS(1269), - [anon_sym_u8] = ACTIONS(1271), - [anon_sym_i8] = ACTIONS(1271), - [anon_sym_u16] = ACTIONS(1271), - [anon_sym_i16] = ACTIONS(1271), - [anon_sym_u32] = ACTIONS(1271), - [anon_sym_i32] = ACTIONS(1271), - [anon_sym_u64] = ACTIONS(1271), - [anon_sym_i64] = ACTIONS(1271), - [anon_sym_u128] = ACTIONS(1271), - [anon_sym_i128] = ACTIONS(1271), - [anon_sym_isize] = ACTIONS(1271), - [anon_sym_usize] = ACTIONS(1271), - [anon_sym_f32] = ACTIONS(1271), - [anon_sym_f64] = ACTIONS(1271), - [anon_sym_bool] = ACTIONS(1271), - [anon_sym_str] = ACTIONS(1271), - [anon_sym_char] = ACTIONS(1271), - [anon_sym_DASH] = ACTIONS(1269), - [anon_sym_BANG] = ACTIONS(1269), - [anon_sym_AMP] = ACTIONS(1269), - [anon_sym_PIPE] = ACTIONS(1269), - [anon_sym_LT] = ACTIONS(1269), - [anon_sym_DOT_DOT] = ACTIONS(1269), - [anon_sym_COLON_COLON] = ACTIONS(1269), - [anon_sym_POUND] = ACTIONS(1269), - [anon_sym_SQUOTE] = ACTIONS(1271), - [anon_sym_async] = ACTIONS(1271), - [anon_sym_break] = ACTIONS(1271), - [anon_sym_const] = ACTIONS(1271), - [anon_sym_continue] = ACTIONS(1271), - [anon_sym_default] = ACTIONS(1271), - [anon_sym_enum] = ACTIONS(1271), - [anon_sym_fn] = ACTIONS(1271), - [anon_sym_for] = ACTIONS(1271), - [anon_sym_gen] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1271), - [anon_sym_impl] = ACTIONS(1271), - [anon_sym_let] = ACTIONS(1271), - [anon_sym_loop] = ACTIONS(1271), - [anon_sym_match] = ACTIONS(1271), - [anon_sym_mod] = ACTIONS(1271), - [anon_sym_pub] = ACTIONS(1271), - [anon_sym_return] = ACTIONS(1271), - [anon_sym_static] = ACTIONS(1271), - [anon_sym_struct] = ACTIONS(1271), - [anon_sym_trait] = ACTIONS(1271), - [anon_sym_type] = ACTIONS(1271), - [anon_sym_union] = ACTIONS(1271), - [anon_sym_unsafe] = ACTIONS(1271), - [anon_sym_use] = ACTIONS(1271), - [anon_sym_while] = ACTIONS(1271), - [anon_sym_extern] = ACTIONS(1271), - [anon_sym_yield] = ACTIONS(1271), - [anon_sym_move] = ACTIONS(1271), - [anon_sym_try] = ACTIONS(1271), - [sym_integer_literal] = ACTIONS(1269), - [aux_sym_string_literal_token1] = ACTIONS(1269), - [sym_char_literal] = ACTIONS(1269), - [anon_sym_true] = ACTIONS(1271), - [anon_sym_false] = ACTIONS(1271), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1271), - [sym_super] = ACTIONS(1271), - [sym_crate] = ACTIONS(1271), - [sym_metavariable] = ACTIONS(1269), - [sym__raw_string_literal_start] = ACTIONS(1269), - [sym_float_literal] = ACTIONS(1269), - }, - [650] = { - [sym_line_comment] = STATE(650), - [sym_block_comment] = STATE(650), - [ts_builtin_sym_end] = ACTIONS(1265), - [sym_identifier] = ACTIONS(1267), - [anon_sym_SEMI] = ACTIONS(1265), - [anon_sym_macro_rules_BANG] = ACTIONS(1265), - [anon_sym_LPAREN] = ACTIONS(1265), - [anon_sym_LBRACK] = ACTIONS(1265), - [anon_sym_LBRACE] = ACTIONS(1265), - [anon_sym_RBRACE] = ACTIONS(1265), - [anon_sym_STAR] = ACTIONS(1265), - [anon_sym_u8] = ACTIONS(1267), - [anon_sym_i8] = ACTIONS(1267), - [anon_sym_u16] = ACTIONS(1267), - [anon_sym_i16] = ACTIONS(1267), - [anon_sym_u32] = ACTIONS(1267), - [anon_sym_i32] = ACTIONS(1267), - [anon_sym_u64] = ACTIONS(1267), - [anon_sym_i64] = ACTIONS(1267), - [anon_sym_u128] = ACTIONS(1267), - [anon_sym_i128] = ACTIONS(1267), - [anon_sym_isize] = ACTIONS(1267), - [anon_sym_usize] = ACTIONS(1267), - [anon_sym_f32] = ACTIONS(1267), - [anon_sym_f64] = ACTIONS(1267), - [anon_sym_bool] = ACTIONS(1267), - [anon_sym_str] = ACTIONS(1267), - [anon_sym_char] = ACTIONS(1267), - [anon_sym_DASH] = ACTIONS(1265), - [anon_sym_BANG] = ACTIONS(1265), - [anon_sym_AMP] = ACTIONS(1265), - [anon_sym_PIPE] = ACTIONS(1265), - [anon_sym_LT] = ACTIONS(1265), - [anon_sym_DOT_DOT] = ACTIONS(1265), - [anon_sym_COLON_COLON] = ACTIONS(1265), - [anon_sym_POUND] = ACTIONS(1265), - [anon_sym_SQUOTE] = ACTIONS(1267), - [anon_sym_async] = ACTIONS(1267), - [anon_sym_break] = ACTIONS(1267), - [anon_sym_const] = ACTIONS(1267), - [anon_sym_continue] = ACTIONS(1267), - [anon_sym_default] = ACTIONS(1267), - [anon_sym_enum] = ACTIONS(1267), - [anon_sym_fn] = ACTIONS(1267), - [anon_sym_for] = ACTIONS(1267), - [anon_sym_gen] = ACTIONS(1267), - [anon_sym_if] = ACTIONS(1267), - [anon_sym_impl] = ACTIONS(1267), - [anon_sym_let] = ACTIONS(1267), - [anon_sym_loop] = ACTIONS(1267), - [anon_sym_match] = ACTIONS(1267), - [anon_sym_mod] = ACTIONS(1267), - [anon_sym_pub] = ACTIONS(1267), - [anon_sym_return] = ACTIONS(1267), - [anon_sym_static] = ACTIONS(1267), - [anon_sym_struct] = ACTIONS(1267), - [anon_sym_trait] = ACTIONS(1267), - [anon_sym_type] = ACTIONS(1267), - [anon_sym_union] = ACTIONS(1267), - [anon_sym_unsafe] = ACTIONS(1267), - [anon_sym_use] = ACTIONS(1267), - [anon_sym_while] = ACTIONS(1267), - [anon_sym_extern] = ACTIONS(1267), - [anon_sym_yield] = ACTIONS(1267), - [anon_sym_move] = ACTIONS(1267), - [anon_sym_try] = ACTIONS(1267), - [sym_integer_literal] = ACTIONS(1265), - [aux_sym_string_literal_token1] = ACTIONS(1265), - [sym_char_literal] = ACTIONS(1265), - [anon_sym_true] = ACTIONS(1267), - [anon_sym_false] = ACTIONS(1267), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1267), - [sym_super] = ACTIONS(1267), - [sym_crate] = ACTIONS(1267), - [sym_metavariable] = ACTIONS(1265), - [sym__raw_string_literal_start] = ACTIONS(1265), - [sym_float_literal] = ACTIONS(1265), - }, - [651] = { - [sym_line_comment] = STATE(651), - [sym_block_comment] = STATE(651), - [ts_builtin_sym_end] = ACTIONS(1261), - [sym_identifier] = ACTIONS(1263), - [anon_sym_SEMI] = ACTIONS(1261), - [anon_sym_macro_rules_BANG] = ACTIONS(1261), - [anon_sym_LPAREN] = ACTIONS(1261), - [anon_sym_LBRACK] = ACTIONS(1261), - [anon_sym_LBRACE] = ACTIONS(1261), - [anon_sym_RBRACE] = ACTIONS(1261), - [anon_sym_STAR] = ACTIONS(1261), - [anon_sym_u8] = ACTIONS(1263), - [anon_sym_i8] = ACTIONS(1263), - [anon_sym_u16] = ACTIONS(1263), - [anon_sym_i16] = ACTIONS(1263), - [anon_sym_u32] = ACTIONS(1263), - [anon_sym_i32] = ACTIONS(1263), - [anon_sym_u64] = ACTIONS(1263), - [anon_sym_i64] = ACTIONS(1263), - [anon_sym_u128] = ACTIONS(1263), - [anon_sym_i128] = ACTIONS(1263), - [anon_sym_isize] = ACTIONS(1263), - [anon_sym_usize] = ACTIONS(1263), - [anon_sym_f32] = ACTIONS(1263), - [anon_sym_f64] = ACTIONS(1263), - [anon_sym_bool] = ACTIONS(1263), - [anon_sym_str] = ACTIONS(1263), - [anon_sym_char] = ACTIONS(1263), - [anon_sym_DASH] = ACTIONS(1261), - [anon_sym_BANG] = ACTIONS(1261), - [anon_sym_AMP] = ACTIONS(1261), - [anon_sym_PIPE] = ACTIONS(1261), - [anon_sym_LT] = ACTIONS(1261), - [anon_sym_DOT_DOT] = ACTIONS(1261), - [anon_sym_COLON_COLON] = ACTIONS(1261), - [anon_sym_POUND] = ACTIONS(1261), - [anon_sym_SQUOTE] = ACTIONS(1263), - [anon_sym_async] = ACTIONS(1263), - [anon_sym_break] = ACTIONS(1263), - [anon_sym_const] = ACTIONS(1263), - [anon_sym_continue] = ACTIONS(1263), - [anon_sym_default] = ACTIONS(1263), - [anon_sym_enum] = ACTIONS(1263), - [anon_sym_fn] = ACTIONS(1263), - [anon_sym_for] = ACTIONS(1263), - [anon_sym_gen] = ACTIONS(1263), - [anon_sym_if] = ACTIONS(1263), - [anon_sym_impl] = ACTIONS(1263), - [anon_sym_let] = ACTIONS(1263), - [anon_sym_loop] = ACTIONS(1263), - [anon_sym_match] = ACTIONS(1263), - [anon_sym_mod] = ACTIONS(1263), - [anon_sym_pub] = ACTIONS(1263), - [anon_sym_return] = ACTIONS(1263), - [anon_sym_static] = ACTIONS(1263), - [anon_sym_struct] = ACTIONS(1263), - [anon_sym_trait] = ACTIONS(1263), - [anon_sym_type] = ACTIONS(1263), - [anon_sym_union] = ACTIONS(1263), - [anon_sym_unsafe] = ACTIONS(1263), - [anon_sym_use] = ACTIONS(1263), - [anon_sym_while] = ACTIONS(1263), - [anon_sym_extern] = ACTIONS(1263), - [anon_sym_yield] = ACTIONS(1263), - [anon_sym_move] = ACTIONS(1263), - [anon_sym_try] = ACTIONS(1263), - [sym_integer_literal] = ACTIONS(1261), - [aux_sym_string_literal_token1] = ACTIONS(1261), - [sym_char_literal] = ACTIONS(1261), - [anon_sym_true] = ACTIONS(1263), - [anon_sym_false] = ACTIONS(1263), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1263), - [sym_super] = ACTIONS(1263), - [sym_crate] = ACTIONS(1263), - [sym_metavariable] = ACTIONS(1261), - [sym__raw_string_literal_start] = ACTIONS(1261), - [sym_float_literal] = ACTIONS(1261), - }, - [652] = { - [sym_line_comment] = STATE(652), - [sym_block_comment] = STATE(652), + [634] = { + [sym_line_comment] = STATE(634), + [sym_block_comment] = STATE(634), [ts_builtin_sym_end] = ACTIONS(2421), [sym_identifier] = ACTIONS(2423), [anon_sym_SEMI] = ACTIONS(2421), @@ -83646,9 +83804,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2421), [sym_float_literal] = ACTIONS(2421), }, - [653] = { - [sym_line_comment] = STATE(653), - [sym_block_comment] = STATE(653), + [635] = { + [sym_line_comment] = STATE(635), + [sym_block_comment] = STATE(635), [ts_builtin_sym_end] = ACTIONS(2425), [sym_identifier] = ACTIONS(2427), [anon_sym_SEMI] = ACTIONS(2425), @@ -83727,9 +83885,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2425), [sym_float_literal] = ACTIONS(2425), }, - [654] = { - [sym_line_comment] = STATE(654), - [sym_block_comment] = STATE(654), + [636] = { + [sym_line_comment] = STATE(636), + [sym_block_comment] = STATE(636), [ts_builtin_sym_end] = ACTIONS(2429), [sym_identifier] = ACTIONS(2431), [anon_sym_SEMI] = ACTIONS(2429), @@ -83808,9 +83966,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2429), [sym_float_literal] = ACTIONS(2429), }, - [655] = { - [sym_line_comment] = STATE(655), - [sym_block_comment] = STATE(655), + [637] = { + [sym_line_comment] = STATE(637), + [sym_block_comment] = STATE(637), [ts_builtin_sym_end] = ACTIONS(2433), [sym_identifier] = ACTIONS(2435), [anon_sym_SEMI] = ACTIONS(2433), @@ -83889,9 +84047,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2433), [sym_float_literal] = ACTIONS(2433), }, - [656] = { - [sym_line_comment] = STATE(656), - [sym_block_comment] = STATE(656), + [638] = { + [sym_line_comment] = STATE(638), + [sym_block_comment] = STATE(638), [ts_builtin_sym_end] = ACTIONS(2437), [sym_identifier] = ACTIONS(2439), [anon_sym_SEMI] = ACTIONS(2437), @@ -83970,9 +84128,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2437), [sym_float_literal] = ACTIONS(2437), }, - [657] = { - [sym_line_comment] = STATE(657), - [sym_block_comment] = STATE(657), + [639] = { + [sym_line_comment] = STATE(639), + [sym_block_comment] = STATE(639), + [ts_builtin_sym_end] = ACTIONS(1265), + [sym_identifier] = ACTIONS(1267), + [anon_sym_SEMI] = ACTIONS(1265), + [anon_sym_macro_rules_BANG] = ACTIONS(1265), + [anon_sym_LPAREN] = ACTIONS(1265), + [anon_sym_LBRACK] = ACTIONS(1265), + [anon_sym_LBRACE] = ACTIONS(1265), + [anon_sym_RBRACE] = ACTIONS(1265), + [anon_sym_STAR] = ACTIONS(1265), + [anon_sym_u8] = ACTIONS(1267), + [anon_sym_i8] = ACTIONS(1267), + [anon_sym_u16] = ACTIONS(1267), + [anon_sym_i16] = ACTIONS(1267), + [anon_sym_u32] = ACTIONS(1267), + [anon_sym_i32] = ACTIONS(1267), + [anon_sym_u64] = ACTIONS(1267), + [anon_sym_i64] = ACTIONS(1267), + [anon_sym_u128] = ACTIONS(1267), + [anon_sym_i128] = ACTIONS(1267), + [anon_sym_isize] = ACTIONS(1267), + [anon_sym_usize] = ACTIONS(1267), + [anon_sym_f32] = ACTIONS(1267), + [anon_sym_f64] = ACTIONS(1267), + [anon_sym_bool] = ACTIONS(1267), + [anon_sym_str] = ACTIONS(1267), + [anon_sym_char] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1265), + [anon_sym_BANG] = ACTIONS(1265), + [anon_sym_AMP] = ACTIONS(1265), + [anon_sym_PIPE] = ACTIONS(1265), + [anon_sym_LT] = ACTIONS(1265), + [anon_sym_DOT_DOT] = ACTIONS(1265), + [anon_sym_COLON_COLON] = ACTIONS(1265), + [anon_sym_POUND] = ACTIONS(1265), + [anon_sym_SQUOTE] = ACTIONS(1267), + [anon_sym_async] = ACTIONS(1267), + [anon_sym_break] = ACTIONS(1267), + [anon_sym_const] = ACTIONS(1267), + [anon_sym_continue] = ACTIONS(1267), + [anon_sym_default] = ACTIONS(1267), + [anon_sym_enum] = ACTIONS(1267), + [anon_sym_fn] = ACTIONS(1267), + [anon_sym_for] = ACTIONS(1267), + [anon_sym_gen] = ACTIONS(1267), + [anon_sym_if] = ACTIONS(1267), + [anon_sym_impl] = ACTIONS(1267), + [anon_sym_let] = ACTIONS(1267), + [anon_sym_loop] = ACTIONS(1267), + [anon_sym_match] = ACTIONS(1267), + [anon_sym_mod] = ACTIONS(1267), + [anon_sym_pub] = ACTIONS(1267), + [anon_sym_return] = ACTIONS(1267), + [anon_sym_static] = ACTIONS(1267), + [anon_sym_struct] = ACTIONS(1267), + [anon_sym_trait] = ACTIONS(1267), + [anon_sym_type] = ACTIONS(1267), + [anon_sym_union] = ACTIONS(1267), + [anon_sym_unsafe] = ACTIONS(1267), + [anon_sym_use] = ACTIONS(1267), + [anon_sym_while] = ACTIONS(1267), + [anon_sym_extern] = ACTIONS(1267), + [anon_sym_yield] = ACTIONS(1267), + [anon_sym_move] = ACTIONS(1267), + [anon_sym_try] = ACTIONS(1267), + [sym_integer_literal] = ACTIONS(1265), + [aux_sym_string_literal_token1] = ACTIONS(1265), + [sym_char_literal] = ACTIONS(1265), + [anon_sym_true] = ACTIONS(1267), + [anon_sym_false] = ACTIONS(1267), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1267), + [sym_super] = ACTIONS(1267), + [sym_crate] = ACTIONS(1267), + [sym_metavariable] = ACTIONS(1265), + [sym__raw_string_literal_start] = ACTIONS(1265), + [sym_float_literal] = ACTIONS(1265), + }, + [640] = { + [sym_line_comment] = STATE(640), + [sym_block_comment] = STATE(640), [ts_builtin_sym_end] = ACTIONS(2441), [sym_identifier] = ACTIONS(2443), [anon_sym_SEMI] = ACTIONS(2441), @@ -84051,9 +84290,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2441), [sym_float_literal] = ACTIONS(2441), }, - [658] = { - [sym_line_comment] = STATE(658), - [sym_block_comment] = STATE(658), + [641] = { + [sym_line_comment] = STATE(641), + [sym_block_comment] = STATE(641), [ts_builtin_sym_end] = ACTIONS(2445), [sym_identifier] = ACTIONS(2447), [anon_sym_SEMI] = ACTIONS(2445), @@ -84132,9 +84371,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2445), [sym_float_literal] = ACTIONS(2445), }, - [659] = { - [sym_line_comment] = STATE(659), - [sym_block_comment] = STATE(659), + [642] = { + [sym_line_comment] = STATE(642), + [sym_block_comment] = STATE(642), [ts_builtin_sym_end] = ACTIONS(2449), [sym_identifier] = ACTIONS(2451), [anon_sym_SEMI] = ACTIONS(2449), @@ -84213,9 +84452,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2449), [sym_float_literal] = ACTIONS(2449), }, - [660] = { - [sym_line_comment] = STATE(660), - [sym_block_comment] = STATE(660), + [643] = { + [sym_line_comment] = STATE(643), + [sym_block_comment] = STATE(643), [ts_builtin_sym_end] = ACTIONS(2453), [sym_identifier] = ACTIONS(2455), [anon_sym_SEMI] = ACTIONS(2453), @@ -84294,9 +84533,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2453), [sym_float_literal] = ACTIONS(2453), }, - [661] = { - [sym_line_comment] = STATE(661), - [sym_block_comment] = STATE(661), + [644] = { + [sym_line_comment] = STATE(644), + [sym_block_comment] = STATE(644), [ts_builtin_sym_end] = ACTIONS(2457), [sym_identifier] = ACTIONS(2459), [anon_sym_SEMI] = ACTIONS(2457), @@ -84375,90 +84614,1062 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2457), [sym_float_literal] = ACTIONS(2457), }, - [662] = { - [sym_empty_statement] = STATE(1072), - [sym_macro_definition] = STATE(1072), - [sym_attribute_item] = STATE(1072), - [sym_inner_attribute_item] = STATE(1072), - [sym_mod_item] = STATE(1072), - [sym_foreign_mod_item] = STATE(1072), - [sym_struct_item] = STATE(1072), - [sym_union_item] = STATE(1072), - [sym_enum_item] = STATE(1072), - [sym_extern_crate_declaration] = STATE(1072), - [sym_const_item] = STATE(1072), - [sym_static_item] = STATE(1072), - [sym_type_item] = STATE(1072), - [sym_function_item] = STATE(1072), - [sym_function_signature_item] = STATE(1072), - [sym_function_modifiers] = STATE(3622), - [sym_impl_item] = STATE(1072), - [sym_trait_item] = STATE(1072), - [sym_associated_type] = STATE(1072), - [sym_let_declaration] = STATE(1072), - [sym_use_declaration] = STATE(1072), - [sym_extern_modifier] = STATE(2165), - [sym_visibility_modifier] = STATE(1954), - [sym_bracketed_type] = STATE(3353), - [sym_generic_type_with_turbofish] = STATE(3379), - [sym_macro_invocation] = STATE(1072), - [sym_scoped_identifier] = STATE(3167), - [sym_line_comment] = STATE(662), - [sym_block_comment] = STATE(662), - [aux_sym_declaration_list_repeat1] = STATE(667), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(2461), - [anon_sym_SEMI] = ACTIONS(2463), + [645] = { + [sym_line_comment] = STATE(645), + [sym_block_comment] = STATE(645), + [ts_builtin_sym_end] = ACTIONS(2461), + [sym_identifier] = ACTIONS(2463), + [anon_sym_SEMI] = ACTIONS(2461), + [anon_sym_macro_rules_BANG] = ACTIONS(2461), + [anon_sym_LPAREN] = ACTIONS(2461), + [anon_sym_LBRACK] = ACTIONS(2461), + [anon_sym_LBRACE] = ACTIONS(2461), + [anon_sym_RBRACE] = ACTIONS(2461), + [anon_sym_STAR] = ACTIONS(2461), + [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), + [anon_sym_DASH] = ACTIONS(2461), + [anon_sym_BANG] = ACTIONS(2461), + [anon_sym_AMP] = ACTIONS(2461), + [anon_sym_PIPE] = ACTIONS(2461), + [anon_sym_LT] = ACTIONS(2461), + [anon_sym_DOT_DOT] = ACTIONS(2461), + [anon_sym_COLON_COLON] = ACTIONS(2461), + [anon_sym_POUND] = ACTIONS(2461), + [anon_sym_SQUOTE] = ACTIONS(2463), + [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2463), + [anon_sym_extern] = ACTIONS(2463), + [anon_sym_yield] = ACTIONS(2463), + [anon_sym_move] = ACTIONS(2463), + [anon_sym_try] = ACTIONS(2463), + [sym_integer_literal] = ACTIONS(2461), + [aux_sym_string_literal_token1] = ACTIONS(2461), + [sym_char_literal] = ACTIONS(2461), + [anon_sym_true] = ACTIONS(2463), + [anon_sym_false] = ACTIONS(2463), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2463), + [sym_super] = ACTIONS(2463), + [sym_crate] = ACTIONS(2463), + [sym_metavariable] = ACTIONS(2461), + [sym__raw_string_literal_start] = ACTIONS(2461), + [sym_float_literal] = ACTIONS(2461), + }, + [646] = { + [sym_line_comment] = STATE(646), + [sym_block_comment] = STATE(646), + [ts_builtin_sym_end] = ACTIONS(2465), + [sym_identifier] = ACTIONS(2467), + [anon_sym_SEMI] = ACTIONS(2465), [anon_sym_macro_rules_BANG] = ACTIONS(2465), - [anon_sym_RBRACE] = ACTIONS(2467), - [anon_sym_u8] = ACTIONS(2469), - [anon_sym_i8] = ACTIONS(2469), - [anon_sym_u16] = ACTIONS(2469), - [anon_sym_i16] = ACTIONS(2469), - [anon_sym_u32] = ACTIONS(2469), - [anon_sym_i32] = ACTIONS(2469), - [anon_sym_u64] = ACTIONS(2469), - [anon_sym_i64] = ACTIONS(2469), - [anon_sym_u128] = ACTIONS(2469), - [anon_sym_i128] = ACTIONS(2469), - [anon_sym_isize] = ACTIONS(2469), - [anon_sym_usize] = ACTIONS(2469), - [anon_sym_f32] = ACTIONS(2469), - [anon_sym_f64] = ACTIONS(2469), - [anon_sym_bool] = ACTIONS(2469), - [anon_sym_str] = ACTIONS(2469), - [anon_sym_char] = ACTIONS(2469), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(2471), + [anon_sym_LPAREN] = ACTIONS(2465), + [anon_sym_LBRACK] = ACTIONS(2465), + [anon_sym_LBRACE] = ACTIONS(2465), + [anon_sym_RBRACE] = ACTIONS(2465), + [anon_sym_STAR] = ACTIONS(2465), + [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), + [anon_sym_DASH] = ACTIONS(2465), + [anon_sym_BANG] = ACTIONS(2465), + [anon_sym_AMP] = ACTIONS(2465), + [anon_sym_PIPE] = ACTIONS(2465), + [anon_sym_LT] = ACTIONS(2465), + [anon_sym_DOT_DOT] = ACTIONS(2465), + [anon_sym_COLON_COLON] = ACTIONS(2465), + [anon_sym_POUND] = ACTIONS(2465), + [anon_sym_SQUOTE] = ACTIONS(2467), + [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2467), + [anon_sym_extern] = ACTIONS(2467), + [anon_sym_yield] = ACTIONS(2467), + [anon_sym_move] = ACTIONS(2467), + [anon_sym_try] = ACTIONS(2467), + [sym_integer_literal] = ACTIONS(2465), + [aux_sym_string_literal_token1] = ACTIONS(2465), + [sym_char_literal] = ACTIONS(2465), + [anon_sym_true] = ACTIONS(2467), + [anon_sym_false] = ACTIONS(2467), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2467), + [sym_super] = ACTIONS(2467), + [sym_crate] = ACTIONS(2467), + [sym_metavariable] = ACTIONS(2465), + [sym__raw_string_literal_start] = ACTIONS(2465), + [sym_float_literal] = ACTIONS(2465), + }, + [647] = { + [sym_line_comment] = STATE(647), + [sym_block_comment] = STATE(647), + [ts_builtin_sym_end] = ACTIONS(2469), + [sym_identifier] = ACTIONS(2471), + [anon_sym_SEMI] = ACTIONS(2469), + [anon_sym_macro_rules_BANG] = ACTIONS(2469), + [anon_sym_LPAREN] = ACTIONS(2469), + [anon_sym_LBRACK] = ACTIONS(2469), + [anon_sym_LBRACE] = ACTIONS(2469), + [anon_sym_RBRACE] = ACTIONS(2469), + [anon_sym_STAR] = ACTIONS(2469), + [anon_sym_u8] = ACTIONS(2471), + [anon_sym_i8] = ACTIONS(2471), + [anon_sym_u16] = ACTIONS(2471), + [anon_sym_i16] = ACTIONS(2471), + [anon_sym_u32] = ACTIONS(2471), + [anon_sym_i32] = ACTIONS(2471), + [anon_sym_u64] = ACTIONS(2471), + [anon_sym_i64] = ACTIONS(2471), + [anon_sym_u128] = ACTIONS(2471), + [anon_sym_i128] = ACTIONS(2471), + [anon_sym_isize] = ACTIONS(2471), + [anon_sym_usize] = ACTIONS(2471), + [anon_sym_f32] = ACTIONS(2471), + [anon_sym_f64] = ACTIONS(2471), + [anon_sym_bool] = ACTIONS(2471), + [anon_sym_str] = ACTIONS(2471), + [anon_sym_char] = ACTIONS(2471), + [anon_sym_DASH] = ACTIONS(2469), + [anon_sym_BANG] = ACTIONS(2469), + [anon_sym_AMP] = ACTIONS(2469), + [anon_sym_PIPE] = ACTIONS(2469), + [anon_sym_LT] = ACTIONS(2469), + [anon_sym_DOT_DOT] = ACTIONS(2469), + [anon_sym_COLON_COLON] = ACTIONS(2469), + [anon_sym_POUND] = ACTIONS(2469), + [anon_sym_SQUOTE] = ACTIONS(2471), + [anon_sym_async] = 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_gen] = 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_while] = ACTIONS(2471), + [anon_sym_extern] = ACTIONS(2471), + [anon_sym_yield] = ACTIONS(2471), + [anon_sym_move] = ACTIONS(2471), + [anon_sym_try] = ACTIONS(2471), + [sym_integer_literal] = ACTIONS(2469), + [aux_sym_string_literal_token1] = ACTIONS(2469), + [sym_char_literal] = ACTIONS(2469), + [anon_sym_true] = ACTIONS(2471), + [anon_sym_false] = ACTIONS(2471), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2471), + [sym_super] = ACTIONS(2471), + [sym_crate] = ACTIONS(2471), + [sym_metavariable] = ACTIONS(2469), + [sym__raw_string_literal_start] = ACTIONS(2469), + [sym_float_literal] = ACTIONS(2469), + }, + [648] = { + [sym_line_comment] = STATE(648), + [sym_block_comment] = STATE(648), + [ts_builtin_sym_end] = ACTIONS(2473), + [sym_identifier] = ACTIONS(2475), + [anon_sym_SEMI] = ACTIONS(2473), + [anon_sym_macro_rules_BANG] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(2473), + [anon_sym_LBRACK] = ACTIONS(2473), + [anon_sym_LBRACE] = ACTIONS(2473), + [anon_sym_RBRACE] = ACTIONS(2473), + [anon_sym_STAR] = ACTIONS(2473), + [anon_sym_u8] = ACTIONS(2475), + [anon_sym_i8] = ACTIONS(2475), + [anon_sym_u16] = ACTIONS(2475), + [anon_sym_i16] = ACTIONS(2475), + [anon_sym_u32] = ACTIONS(2475), + [anon_sym_i32] = ACTIONS(2475), + [anon_sym_u64] = ACTIONS(2475), + [anon_sym_i64] = ACTIONS(2475), + [anon_sym_u128] = ACTIONS(2475), + [anon_sym_i128] = ACTIONS(2475), + [anon_sym_isize] = ACTIONS(2475), + [anon_sym_usize] = ACTIONS(2475), + [anon_sym_f32] = ACTIONS(2475), + [anon_sym_f64] = ACTIONS(2475), + [anon_sym_bool] = ACTIONS(2475), + [anon_sym_str] = ACTIONS(2475), + [anon_sym_char] = ACTIONS(2475), + [anon_sym_DASH] = ACTIONS(2473), + [anon_sym_BANG] = ACTIONS(2473), + [anon_sym_AMP] = ACTIONS(2473), + [anon_sym_PIPE] = ACTIONS(2473), + [anon_sym_LT] = ACTIONS(2473), + [anon_sym_DOT_DOT] = ACTIONS(2473), + [anon_sym_COLON_COLON] = ACTIONS(2473), [anon_sym_POUND] = ACTIONS(2473), - [anon_sym_async] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(2475), + [anon_sym_async] = ACTIONS(2475), + [anon_sym_break] = ACTIONS(2475), [anon_sym_const] = ACTIONS(2475), - [anon_sym_default] = ACTIONS(2477), + [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_gen] = 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_while] = ACTIONS(2475), + [anon_sym_extern] = ACTIONS(2475), + [anon_sym_yield] = ACTIONS(2475), + [anon_sym_move] = ACTIONS(2475), + [anon_sym_try] = ACTIONS(2475), + [sym_integer_literal] = ACTIONS(2473), + [aux_sym_string_literal_token1] = ACTIONS(2473), + [sym_char_literal] = ACTIONS(2473), + [anon_sym_true] = ACTIONS(2475), + [anon_sym_false] = ACTIONS(2475), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2475), + [sym_super] = ACTIONS(2475), + [sym_crate] = ACTIONS(2475), + [sym_metavariable] = ACTIONS(2473), + [sym__raw_string_literal_start] = ACTIONS(2473), + [sym_float_literal] = ACTIONS(2473), + }, + [649] = { + [sym_line_comment] = STATE(649), + [sym_block_comment] = STATE(649), + [ts_builtin_sym_end] = ACTIONS(2477), + [sym_identifier] = ACTIONS(2479), + [anon_sym_SEMI] = ACTIONS(2477), + [anon_sym_macro_rules_BANG] = ACTIONS(2477), + [anon_sym_LPAREN] = ACTIONS(2477), + [anon_sym_LBRACK] = ACTIONS(2477), + [anon_sym_LBRACE] = ACTIONS(2477), + [anon_sym_RBRACE] = ACTIONS(2477), + [anon_sym_STAR] = ACTIONS(2477), + [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), + [anon_sym_DASH] = ACTIONS(2477), + [anon_sym_BANG] = ACTIONS(2477), + [anon_sym_AMP] = ACTIONS(2477), + [anon_sym_PIPE] = ACTIONS(2477), + [anon_sym_LT] = ACTIONS(2477), + [anon_sym_DOT_DOT] = ACTIONS(2477), + [anon_sym_COLON_COLON] = ACTIONS(2477), + [anon_sym_POUND] = ACTIONS(2477), + [anon_sym_SQUOTE] = ACTIONS(2479), + [anon_sym_async] = 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(2481), + [anon_sym_fn] = ACTIONS(2479), + [anon_sym_for] = ACTIONS(2479), + [anon_sym_gen] = 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_while] = ACTIONS(2479), + [anon_sym_extern] = ACTIONS(2479), + [anon_sym_yield] = ACTIONS(2479), + [anon_sym_move] = ACTIONS(2479), + [anon_sym_try] = ACTIONS(2479), + [sym_integer_literal] = ACTIONS(2477), + [aux_sym_string_literal_token1] = ACTIONS(2477), + [sym_char_literal] = ACTIONS(2477), + [anon_sym_true] = ACTIONS(2479), + [anon_sym_false] = ACTIONS(2479), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2479), + [sym_super] = ACTIONS(2479), + [sym_crate] = ACTIONS(2479), + [sym_metavariable] = ACTIONS(2477), + [sym__raw_string_literal_start] = ACTIONS(2477), + [sym_float_literal] = ACTIONS(2477), + }, + [650] = { + [sym_line_comment] = STATE(650), + [sym_block_comment] = STATE(650), + [ts_builtin_sym_end] = ACTIONS(2481), + [sym_identifier] = ACTIONS(2483), + [anon_sym_SEMI] = ACTIONS(2481), + [anon_sym_macro_rules_BANG] = ACTIONS(2481), + [anon_sym_LPAREN] = ACTIONS(2481), + [anon_sym_LBRACK] = ACTIONS(2481), + [anon_sym_LBRACE] = ACTIONS(2481), + [anon_sym_RBRACE] = ACTIONS(2481), + [anon_sym_STAR] = ACTIONS(2481), + [anon_sym_u8] = ACTIONS(2483), + [anon_sym_i8] = ACTIONS(2483), + [anon_sym_u16] = ACTIONS(2483), + [anon_sym_i16] = ACTIONS(2483), + [anon_sym_u32] = ACTIONS(2483), + [anon_sym_i32] = ACTIONS(2483), + [anon_sym_u64] = ACTIONS(2483), + [anon_sym_i64] = ACTIONS(2483), + [anon_sym_u128] = ACTIONS(2483), + [anon_sym_i128] = ACTIONS(2483), + [anon_sym_isize] = ACTIONS(2483), + [anon_sym_usize] = ACTIONS(2483), + [anon_sym_f32] = ACTIONS(2483), + [anon_sym_f64] = ACTIONS(2483), + [anon_sym_bool] = ACTIONS(2483), + [anon_sym_str] = ACTIONS(2483), + [anon_sym_char] = ACTIONS(2483), + [anon_sym_DASH] = ACTIONS(2481), + [anon_sym_BANG] = ACTIONS(2481), + [anon_sym_AMP] = ACTIONS(2481), + [anon_sym_PIPE] = ACTIONS(2481), + [anon_sym_LT] = ACTIONS(2481), + [anon_sym_DOT_DOT] = ACTIONS(2481), + [anon_sym_COLON_COLON] = ACTIONS(2481), + [anon_sym_POUND] = ACTIONS(2481), + [anon_sym_SQUOTE] = ACTIONS(2483), + [anon_sym_async] = ACTIONS(2483), + [anon_sym_break] = ACTIONS(2483), + [anon_sym_const] = ACTIONS(2483), + [anon_sym_continue] = ACTIONS(2483), + [anon_sym_default] = ACTIONS(2483), + [anon_sym_enum] = ACTIONS(2483), + [anon_sym_fn] = ACTIONS(2483), + [anon_sym_for] = ACTIONS(2483), [anon_sym_gen] = ACTIONS(2483), - [anon_sym_impl] = ACTIONS(2485), + [anon_sym_if] = ACTIONS(2483), + [anon_sym_impl] = ACTIONS(2483), + [anon_sym_let] = ACTIONS(2483), + [anon_sym_loop] = ACTIONS(2483), + [anon_sym_match] = ACTIONS(2483), + [anon_sym_mod] = ACTIONS(2483), + [anon_sym_pub] = ACTIONS(2483), + [anon_sym_return] = ACTIONS(2483), + [anon_sym_static] = ACTIONS(2483), + [anon_sym_struct] = ACTIONS(2483), + [anon_sym_trait] = ACTIONS(2483), + [anon_sym_type] = ACTIONS(2483), + [anon_sym_union] = ACTIONS(2483), + [anon_sym_unsafe] = ACTIONS(2483), + [anon_sym_use] = ACTIONS(2483), + [anon_sym_while] = ACTIONS(2483), + [anon_sym_extern] = ACTIONS(2483), + [anon_sym_yield] = ACTIONS(2483), + [anon_sym_move] = ACTIONS(2483), + [anon_sym_try] = ACTIONS(2483), + [sym_integer_literal] = ACTIONS(2481), + [aux_sym_string_literal_token1] = ACTIONS(2481), + [sym_char_literal] = ACTIONS(2481), + [anon_sym_true] = ACTIONS(2483), + [anon_sym_false] = ACTIONS(2483), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2483), + [sym_super] = ACTIONS(2483), + [sym_crate] = ACTIONS(2483), + [sym_metavariable] = ACTIONS(2481), + [sym__raw_string_literal_start] = ACTIONS(2481), + [sym_float_literal] = ACTIONS(2481), + }, + [651] = { + [sym_line_comment] = STATE(651), + [sym_block_comment] = STATE(651), + [ts_builtin_sym_end] = ACTIONS(2485), + [sym_identifier] = ACTIONS(2487), + [anon_sym_SEMI] = ACTIONS(2485), + [anon_sym_macro_rules_BANG] = ACTIONS(2485), + [anon_sym_LPAREN] = ACTIONS(2485), + [anon_sym_LBRACK] = ACTIONS(2485), + [anon_sym_LBRACE] = ACTIONS(2485), + [anon_sym_RBRACE] = ACTIONS(2485), + [anon_sym_STAR] = ACTIONS(2485), + [anon_sym_u8] = ACTIONS(2487), + [anon_sym_i8] = ACTIONS(2487), + [anon_sym_u16] = ACTIONS(2487), + [anon_sym_i16] = ACTIONS(2487), + [anon_sym_u32] = ACTIONS(2487), + [anon_sym_i32] = ACTIONS(2487), + [anon_sym_u64] = ACTIONS(2487), + [anon_sym_i64] = ACTIONS(2487), + [anon_sym_u128] = ACTIONS(2487), + [anon_sym_i128] = ACTIONS(2487), + [anon_sym_isize] = ACTIONS(2487), + [anon_sym_usize] = ACTIONS(2487), + [anon_sym_f32] = ACTIONS(2487), + [anon_sym_f64] = ACTIONS(2487), + [anon_sym_bool] = ACTIONS(2487), + [anon_sym_str] = ACTIONS(2487), + [anon_sym_char] = ACTIONS(2487), + [anon_sym_DASH] = ACTIONS(2485), + [anon_sym_BANG] = ACTIONS(2485), + [anon_sym_AMP] = ACTIONS(2485), + [anon_sym_PIPE] = ACTIONS(2485), + [anon_sym_LT] = ACTIONS(2485), + [anon_sym_DOT_DOT] = ACTIONS(2485), + [anon_sym_COLON_COLON] = ACTIONS(2485), + [anon_sym_POUND] = ACTIONS(2485), + [anon_sym_SQUOTE] = ACTIONS(2487), + [anon_sym_async] = ACTIONS(2487), + [anon_sym_break] = ACTIONS(2487), + [anon_sym_const] = ACTIONS(2487), + [anon_sym_continue] = ACTIONS(2487), + [anon_sym_default] = ACTIONS(2487), + [anon_sym_enum] = ACTIONS(2487), + [anon_sym_fn] = ACTIONS(2487), + [anon_sym_for] = ACTIONS(2487), + [anon_sym_gen] = ACTIONS(2487), + [anon_sym_if] = ACTIONS(2487), + [anon_sym_impl] = ACTIONS(2487), [anon_sym_let] = ACTIONS(2487), - [anon_sym_mod] = ACTIONS(2489), - [anon_sym_pub] = ACTIONS(69), + [anon_sym_loop] = ACTIONS(2487), + [anon_sym_match] = ACTIONS(2487), + [anon_sym_mod] = ACTIONS(2487), + [anon_sym_pub] = ACTIONS(2487), + [anon_sym_return] = ACTIONS(2487), + [anon_sym_static] = ACTIONS(2487), + [anon_sym_struct] = ACTIONS(2487), + [anon_sym_trait] = ACTIONS(2487), + [anon_sym_type] = ACTIONS(2487), + [anon_sym_union] = ACTIONS(2487), + [anon_sym_unsafe] = ACTIONS(2487), + [anon_sym_use] = ACTIONS(2487), + [anon_sym_while] = ACTIONS(2487), + [anon_sym_extern] = ACTIONS(2487), + [anon_sym_yield] = ACTIONS(2487), + [anon_sym_move] = ACTIONS(2487), + [anon_sym_try] = ACTIONS(2487), + [sym_integer_literal] = ACTIONS(2485), + [aux_sym_string_literal_token1] = ACTIONS(2485), + [sym_char_literal] = ACTIONS(2485), + [anon_sym_true] = ACTIONS(2487), + [anon_sym_false] = ACTIONS(2487), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2487), + [sym_super] = ACTIONS(2487), + [sym_crate] = ACTIONS(2487), + [sym_metavariable] = ACTIONS(2485), + [sym__raw_string_literal_start] = ACTIONS(2485), + [sym_float_literal] = ACTIONS(2485), + }, + [652] = { + [sym_line_comment] = STATE(652), + [sym_block_comment] = STATE(652), + [ts_builtin_sym_end] = ACTIONS(2489), + [sym_identifier] = ACTIONS(2491), + [anon_sym_SEMI] = ACTIONS(2489), + [anon_sym_macro_rules_BANG] = ACTIONS(2489), + [anon_sym_LPAREN] = ACTIONS(2489), + [anon_sym_LBRACK] = ACTIONS(2489), + [anon_sym_LBRACE] = ACTIONS(2489), + [anon_sym_RBRACE] = ACTIONS(2489), + [anon_sym_STAR] = ACTIONS(2489), + [anon_sym_u8] = ACTIONS(2491), + [anon_sym_i8] = ACTIONS(2491), + [anon_sym_u16] = ACTIONS(2491), + [anon_sym_i16] = ACTIONS(2491), + [anon_sym_u32] = ACTIONS(2491), + [anon_sym_i32] = ACTIONS(2491), + [anon_sym_u64] = ACTIONS(2491), + [anon_sym_i64] = ACTIONS(2491), + [anon_sym_u128] = ACTIONS(2491), + [anon_sym_i128] = ACTIONS(2491), + [anon_sym_isize] = ACTIONS(2491), + [anon_sym_usize] = ACTIONS(2491), + [anon_sym_f32] = ACTIONS(2491), + [anon_sym_f64] = ACTIONS(2491), + [anon_sym_bool] = ACTIONS(2491), + [anon_sym_str] = ACTIONS(2491), + [anon_sym_char] = ACTIONS(2491), + [anon_sym_DASH] = ACTIONS(2489), + [anon_sym_BANG] = ACTIONS(2489), + [anon_sym_AMP] = ACTIONS(2489), + [anon_sym_PIPE] = ACTIONS(2489), + [anon_sym_LT] = ACTIONS(2489), + [anon_sym_DOT_DOT] = ACTIONS(2489), + [anon_sym_COLON_COLON] = ACTIONS(2489), + [anon_sym_POUND] = ACTIONS(2489), + [anon_sym_SQUOTE] = ACTIONS(2491), + [anon_sym_async] = ACTIONS(2491), + [anon_sym_break] = ACTIONS(2491), + [anon_sym_const] = ACTIONS(2491), + [anon_sym_continue] = ACTIONS(2491), + [anon_sym_default] = ACTIONS(2491), + [anon_sym_enum] = ACTIONS(2491), + [anon_sym_fn] = ACTIONS(2491), + [anon_sym_for] = ACTIONS(2491), + [anon_sym_gen] = ACTIONS(2491), + [anon_sym_if] = ACTIONS(2491), + [anon_sym_impl] = ACTIONS(2491), + [anon_sym_let] = ACTIONS(2491), + [anon_sym_loop] = ACTIONS(2491), + [anon_sym_match] = ACTIONS(2491), + [anon_sym_mod] = ACTIONS(2491), + [anon_sym_pub] = ACTIONS(2491), + [anon_sym_return] = ACTIONS(2491), [anon_sym_static] = ACTIONS(2491), - [anon_sym_struct] = ACTIONS(2493), + [anon_sym_struct] = ACTIONS(2491), + [anon_sym_trait] = ACTIONS(2491), + [anon_sym_type] = ACTIONS(2491), + [anon_sym_union] = ACTIONS(2491), + [anon_sym_unsafe] = ACTIONS(2491), + [anon_sym_use] = ACTIONS(2491), + [anon_sym_while] = ACTIONS(2491), + [anon_sym_extern] = ACTIONS(2491), + [anon_sym_yield] = ACTIONS(2491), + [anon_sym_move] = ACTIONS(2491), + [anon_sym_try] = ACTIONS(2491), + [sym_integer_literal] = ACTIONS(2489), + [aux_sym_string_literal_token1] = ACTIONS(2489), + [sym_char_literal] = ACTIONS(2489), + [anon_sym_true] = ACTIONS(2491), + [anon_sym_false] = ACTIONS(2491), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2491), + [sym_super] = ACTIONS(2491), + [sym_crate] = ACTIONS(2491), + [sym_metavariable] = ACTIONS(2489), + [sym__raw_string_literal_start] = ACTIONS(2489), + [sym_float_literal] = ACTIONS(2489), + }, + [653] = { + [sym_line_comment] = STATE(653), + [sym_block_comment] = STATE(653), + [ts_builtin_sym_end] = ACTIONS(2493), + [sym_identifier] = ACTIONS(2495), + [anon_sym_SEMI] = ACTIONS(2493), + [anon_sym_macro_rules_BANG] = ACTIONS(2493), + [anon_sym_LPAREN] = ACTIONS(2493), + [anon_sym_LBRACK] = ACTIONS(2493), + [anon_sym_LBRACE] = ACTIONS(2493), + [anon_sym_RBRACE] = ACTIONS(2493), + [anon_sym_STAR] = ACTIONS(2493), + [anon_sym_u8] = ACTIONS(2495), + [anon_sym_i8] = ACTIONS(2495), + [anon_sym_u16] = ACTIONS(2495), + [anon_sym_i16] = ACTIONS(2495), + [anon_sym_u32] = ACTIONS(2495), + [anon_sym_i32] = ACTIONS(2495), + [anon_sym_u64] = ACTIONS(2495), + [anon_sym_i64] = ACTIONS(2495), + [anon_sym_u128] = ACTIONS(2495), + [anon_sym_i128] = ACTIONS(2495), + [anon_sym_isize] = ACTIONS(2495), + [anon_sym_usize] = ACTIONS(2495), + [anon_sym_f32] = ACTIONS(2495), + [anon_sym_f64] = ACTIONS(2495), + [anon_sym_bool] = ACTIONS(2495), + [anon_sym_str] = ACTIONS(2495), + [anon_sym_char] = ACTIONS(2495), + [anon_sym_DASH] = ACTIONS(2493), + [anon_sym_BANG] = ACTIONS(2493), + [anon_sym_AMP] = ACTIONS(2493), + [anon_sym_PIPE] = ACTIONS(2493), + [anon_sym_LT] = ACTIONS(2493), + [anon_sym_DOT_DOT] = ACTIONS(2493), + [anon_sym_COLON_COLON] = ACTIONS(2493), + [anon_sym_POUND] = ACTIONS(2493), + [anon_sym_SQUOTE] = ACTIONS(2495), + [anon_sym_async] = ACTIONS(2495), + [anon_sym_break] = ACTIONS(2495), + [anon_sym_const] = ACTIONS(2495), + [anon_sym_continue] = ACTIONS(2495), + [anon_sym_default] = ACTIONS(2495), + [anon_sym_enum] = ACTIONS(2495), + [anon_sym_fn] = ACTIONS(2495), + [anon_sym_for] = ACTIONS(2495), + [anon_sym_gen] = ACTIONS(2495), + [anon_sym_if] = ACTIONS(2495), + [anon_sym_impl] = ACTIONS(2495), + [anon_sym_let] = ACTIONS(2495), + [anon_sym_loop] = ACTIONS(2495), + [anon_sym_match] = ACTIONS(2495), + [anon_sym_mod] = ACTIONS(2495), + [anon_sym_pub] = ACTIONS(2495), + [anon_sym_return] = ACTIONS(2495), + [anon_sym_static] = ACTIONS(2495), + [anon_sym_struct] = ACTIONS(2495), [anon_sym_trait] = ACTIONS(2495), - [anon_sym_type] = ACTIONS(2497), + [anon_sym_type] = ACTIONS(2495), + [anon_sym_union] = ACTIONS(2495), + [anon_sym_unsafe] = ACTIONS(2495), + [anon_sym_use] = ACTIONS(2495), + [anon_sym_while] = ACTIONS(2495), + [anon_sym_extern] = ACTIONS(2495), + [anon_sym_yield] = ACTIONS(2495), + [anon_sym_move] = ACTIONS(2495), + [anon_sym_try] = ACTIONS(2495), + [sym_integer_literal] = ACTIONS(2493), + [aux_sym_string_literal_token1] = ACTIONS(2493), + [sym_char_literal] = ACTIONS(2493), + [anon_sym_true] = ACTIONS(2495), + [anon_sym_false] = ACTIONS(2495), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2495), + [sym_super] = ACTIONS(2495), + [sym_crate] = ACTIONS(2495), + [sym_metavariable] = ACTIONS(2493), + [sym__raw_string_literal_start] = ACTIONS(2493), + [sym_float_literal] = ACTIONS(2493), + }, + [654] = { + [sym_line_comment] = STATE(654), + [sym_block_comment] = STATE(654), + [ts_builtin_sym_end] = ACTIONS(2497), + [sym_identifier] = ACTIONS(2499), + [anon_sym_SEMI] = ACTIONS(2497), + [anon_sym_macro_rules_BANG] = ACTIONS(2497), + [anon_sym_LPAREN] = ACTIONS(2497), + [anon_sym_LBRACK] = ACTIONS(2497), + [anon_sym_LBRACE] = ACTIONS(2497), + [anon_sym_RBRACE] = ACTIONS(2497), + [anon_sym_STAR] = ACTIONS(2497), + [anon_sym_u8] = ACTIONS(2499), + [anon_sym_i8] = ACTIONS(2499), + [anon_sym_u16] = ACTIONS(2499), + [anon_sym_i16] = ACTIONS(2499), + [anon_sym_u32] = ACTIONS(2499), + [anon_sym_i32] = ACTIONS(2499), + [anon_sym_u64] = ACTIONS(2499), + [anon_sym_i64] = ACTIONS(2499), + [anon_sym_u128] = ACTIONS(2499), + [anon_sym_i128] = ACTIONS(2499), + [anon_sym_isize] = ACTIONS(2499), + [anon_sym_usize] = ACTIONS(2499), + [anon_sym_f32] = ACTIONS(2499), + [anon_sym_f64] = ACTIONS(2499), + [anon_sym_bool] = ACTIONS(2499), + [anon_sym_str] = ACTIONS(2499), + [anon_sym_char] = ACTIONS(2499), + [anon_sym_DASH] = ACTIONS(2497), + [anon_sym_BANG] = ACTIONS(2497), + [anon_sym_AMP] = ACTIONS(2497), + [anon_sym_PIPE] = ACTIONS(2497), + [anon_sym_LT] = ACTIONS(2497), + [anon_sym_DOT_DOT] = ACTIONS(2497), + [anon_sym_COLON_COLON] = ACTIONS(2497), + [anon_sym_POUND] = ACTIONS(2497), + [anon_sym_SQUOTE] = ACTIONS(2499), + [anon_sym_async] = ACTIONS(2499), + [anon_sym_break] = ACTIONS(2499), + [anon_sym_const] = ACTIONS(2499), + [anon_sym_continue] = ACTIONS(2499), + [anon_sym_default] = ACTIONS(2499), + [anon_sym_enum] = ACTIONS(2499), + [anon_sym_fn] = ACTIONS(2499), + [anon_sym_for] = ACTIONS(2499), + [anon_sym_gen] = ACTIONS(2499), + [anon_sym_if] = ACTIONS(2499), + [anon_sym_impl] = ACTIONS(2499), + [anon_sym_let] = ACTIONS(2499), + [anon_sym_loop] = ACTIONS(2499), + [anon_sym_match] = ACTIONS(2499), + [anon_sym_mod] = ACTIONS(2499), + [anon_sym_pub] = ACTIONS(2499), + [anon_sym_return] = ACTIONS(2499), + [anon_sym_static] = ACTIONS(2499), + [anon_sym_struct] = ACTIONS(2499), + [anon_sym_trait] = ACTIONS(2499), + [anon_sym_type] = ACTIONS(2499), [anon_sym_union] = ACTIONS(2499), - [anon_sym_unsafe] = ACTIONS(2501), + [anon_sym_unsafe] = ACTIONS(2499), + [anon_sym_use] = ACTIONS(2499), + [anon_sym_while] = ACTIONS(2499), + [anon_sym_extern] = ACTIONS(2499), + [anon_sym_yield] = ACTIONS(2499), + [anon_sym_move] = ACTIONS(2499), + [anon_sym_try] = ACTIONS(2499), + [sym_integer_literal] = ACTIONS(2497), + [aux_sym_string_literal_token1] = ACTIONS(2497), + [sym_char_literal] = ACTIONS(2497), + [anon_sym_true] = ACTIONS(2499), + [anon_sym_false] = ACTIONS(2499), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2499), + [sym_super] = ACTIONS(2499), + [sym_crate] = ACTIONS(2499), + [sym_metavariable] = ACTIONS(2497), + [sym__raw_string_literal_start] = ACTIONS(2497), + [sym_float_literal] = ACTIONS(2497), + }, + [655] = { + [sym_line_comment] = STATE(655), + [sym_block_comment] = STATE(655), + [ts_builtin_sym_end] = ACTIONS(2501), + [sym_identifier] = ACTIONS(2503), + [anon_sym_SEMI] = ACTIONS(2501), + [anon_sym_macro_rules_BANG] = ACTIONS(2501), + [anon_sym_LPAREN] = ACTIONS(2501), + [anon_sym_LBRACK] = ACTIONS(2501), + [anon_sym_LBRACE] = ACTIONS(2501), + [anon_sym_RBRACE] = ACTIONS(2501), + [anon_sym_STAR] = ACTIONS(2501), + [anon_sym_u8] = ACTIONS(2503), + [anon_sym_i8] = ACTIONS(2503), + [anon_sym_u16] = ACTIONS(2503), + [anon_sym_i16] = ACTIONS(2503), + [anon_sym_u32] = ACTIONS(2503), + [anon_sym_i32] = ACTIONS(2503), + [anon_sym_u64] = ACTIONS(2503), + [anon_sym_i64] = ACTIONS(2503), + [anon_sym_u128] = ACTIONS(2503), + [anon_sym_i128] = ACTIONS(2503), + [anon_sym_isize] = ACTIONS(2503), + [anon_sym_usize] = ACTIONS(2503), + [anon_sym_f32] = ACTIONS(2503), + [anon_sym_f64] = ACTIONS(2503), + [anon_sym_bool] = ACTIONS(2503), + [anon_sym_str] = ACTIONS(2503), + [anon_sym_char] = ACTIONS(2503), + [anon_sym_DASH] = ACTIONS(2501), + [anon_sym_BANG] = ACTIONS(2501), + [anon_sym_AMP] = ACTIONS(2501), + [anon_sym_PIPE] = ACTIONS(2501), + [anon_sym_LT] = ACTIONS(2501), + [anon_sym_DOT_DOT] = ACTIONS(2501), + [anon_sym_COLON_COLON] = ACTIONS(2501), + [anon_sym_POUND] = ACTIONS(2501), + [anon_sym_SQUOTE] = ACTIONS(2503), + [anon_sym_async] = ACTIONS(2503), + [anon_sym_break] = ACTIONS(2503), + [anon_sym_const] = ACTIONS(2503), + [anon_sym_continue] = ACTIONS(2503), + [anon_sym_default] = ACTIONS(2503), + [anon_sym_enum] = ACTIONS(2503), + [anon_sym_fn] = ACTIONS(2503), + [anon_sym_for] = ACTIONS(2503), + [anon_sym_gen] = ACTIONS(2503), + [anon_sym_if] = ACTIONS(2503), + [anon_sym_impl] = ACTIONS(2503), + [anon_sym_let] = ACTIONS(2503), + [anon_sym_loop] = ACTIONS(2503), + [anon_sym_match] = ACTIONS(2503), + [anon_sym_mod] = ACTIONS(2503), + [anon_sym_pub] = ACTIONS(2503), + [anon_sym_return] = ACTIONS(2503), + [anon_sym_static] = ACTIONS(2503), + [anon_sym_struct] = ACTIONS(2503), + [anon_sym_trait] = ACTIONS(2503), + [anon_sym_type] = ACTIONS(2503), + [anon_sym_union] = ACTIONS(2503), + [anon_sym_unsafe] = ACTIONS(2503), [anon_sym_use] = ACTIONS(2503), - [anon_sym_extern] = ACTIONS(2505), + [anon_sym_while] = ACTIONS(2503), + [anon_sym_extern] = ACTIONS(2503), + [anon_sym_yield] = ACTIONS(2503), + [anon_sym_move] = ACTIONS(2503), + [anon_sym_try] = ACTIONS(2503), + [sym_integer_literal] = ACTIONS(2501), + [aux_sym_string_literal_token1] = ACTIONS(2501), + [sym_char_literal] = ACTIONS(2501), + [anon_sym_true] = ACTIONS(2503), + [anon_sym_false] = ACTIONS(2503), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2503), + [sym_super] = ACTIONS(2503), + [sym_crate] = ACTIONS(2503), + [sym_metavariable] = ACTIONS(2501), + [sym__raw_string_literal_start] = ACTIONS(2501), + [sym_float_literal] = ACTIONS(2501), + }, + [656] = { + [sym_line_comment] = STATE(656), + [sym_block_comment] = STATE(656), + [ts_builtin_sym_end] = ACTIONS(2505), + [sym_identifier] = ACTIONS(2507), + [anon_sym_SEMI] = ACTIONS(2505), + [anon_sym_macro_rules_BANG] = ACTIONS(2505), + [anon_sym_LPAREN] = ACTIONS(2505), + [anon_sym_LBRACK] = ACTIONS(2505), + [anon_sym_LBRACE] = ACTIONS(2505), + [anon_sym_RBRACE] = ACTIONS(2505), + [anon_sym_STAR] = ACTIONS(2505), + [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_DASH] = ACTIONS(2505), + [anon_sym_BANG] = ACTIONS(2505), + [anon_sym_AMP] = ACTIONS(2505), + [anon_sym_PIPE] = ACTIONS(2505), + [anon_sym_LT] = ACTIONS(2505), + [anon_sym_DOT_DOT] = ACTIONS(2505), + [anon_sym_COLON_COLON] = ACTIONS(2505), + [anon_sym_POUND] = ACTIONS(2505), + [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_enum] = ACTIONS(2507), + [anon_sym_fn] = ACTIONS(2507), + [anon_sym_for] = ACTIONS(2507), + [anon_sym_gen] = ACTIONS(2507), + [anon_sym_if] = ACTIONS(2507), + [anon_sym_impl] = ACTIONS(2507), + [anon_sym_let] = ACTIONS(2507), + [anon_sym_loop] = ACTIONS(2507), + [anon_sym_match] = ACTIONS(2507), + [anon_sym_mod] = ACTIONS(2507), + [anon_sym_pub] = ACTIONS(2507), + [anon_sym_return] = ACTIONS(2507), + [anon_sym_static] = ACTIONS(2507), + [anon_sym_struct] = ACTIONS(2507), + [anon_sym_trait] = ACTIONS(2507), + [anon_sym_type] = ACTIONS(2507), + [anon_sym_union] = ACTIONS(2507), + [anon_sym_unsafe] = ACTIONS(2507), + [anon_sym_use] = ACTIONS(2507), + [anon_sym_while] = ACTIONS(2507), + [anon_sym_extern] = ACTIONS(2507), + [anon_sym_yield] = ACTIONS(2507), + [anon_sym_move] = ACTIONS(2507), + [anon_sym_try] = ACTIONS(2507), + [sym_integer_literal] = ACTIONS(2505), + [aux_sym_string_literal_token1] = ACTIONS(2505), + [sym_char_literal] = ACTIONS(2505), + [anon_sym_true] = ACTIONS(2507), + [anon_sym_false] = ACTIONS(2507), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(2507), [sym_super] = ACTIONS(2507), - [sym_crate] = ACTIONS(2509), - [sym_metavariable] = ACTIONS(2511), + [sym_crate] = ACTIONS(2507), + [sym_metavariable] = ACTIONS(2505), + [sym__raw_string_literal_start] = ACTIONS(2505), + [sym_float_literal] = ACTIONS(2505), }, - [663] = { - [sym_line_comment] = STATE(663), - [sym_block_comment] = STATE(663), + [657] = { + [sym_line_comment] = STATE(657), + [sym_block_comment] = STATE(657), + [ts_builtin_sym_end] = ACTIONS(2509), + [sym_identifier] = ACTIONS(2511), + [anon_sym_SEMI] = ACTIONS(2509), + [anon_sym_macro_rules_BANG] = ACTIONS(2509), + [anon_sym_LPAREN] = ACTIONS(2509), + [anon_sym_LBRACK] = ACTIONS(2509), + [anon_sym_LBRACE] = ACTIONS(2509), + [anon_sym_RBRACE] = ACTIONS(2509), + [anon_sym_STAR] = ACTIONS(2509), + [anon_sym_u8] = ACTIONS(2511), + [anon_sym_i8] = ACTIONS(2511), + [anon_sym_u16] = ACTIONS(2511), + [anon_sym_i16] = ACTIONS(2511), + [anon_sym_u32] = ACTIONS(2511), + [anon_sym_i32] = ACTIONS(2511), + [anon_sym_u64] = ACTIONS(2511), + [anon_sym_i64] = ACTIONS(2511), + [anon_sym_u128] = ACTIONS(2511), + [anon_sym_i128] = ACTIONS(2511), + [anon_sym_isize] = ACTIONS(2511), + [anon_sym_usize] = ACTIONS(2511), + [anon_sym_f32] = ACTIONS(2511), + [anon_sym_f64] = ACTIONS(2511), + [anon_sym_bool] = ACTIONS(2511), + [anon_sym_str] = ACTIONS(2511), + [anon_sym_char] = ACTIONS(2511), + [anon_sym_DASH] = ACTIONS(2509), + [anon_sym_BANG] = ACTIONS(2509), + [anon_sym_AMP] = ACTIONS(2509), + [anon_sym_PIPE] = ACTIONS(2509), + [anon_sym_LT] = ACTIONS(2509), + [anon_sym_DOT_DOT] = ACTIONS(2509), + [anon_sym_COLON_COLON] = ACTIONS(2509), + [anon_sym_POUND] = ACTIONS(2509), + [anon_sym_SQUOTE] = ACTIONS(2511), + [anon_sym_async] = ACTIONS(2511), + [anon_sym_break] = ACTIONS(2511), + [anon_sym_const] = ACTIONS(2511), + [anon_sym_continue] = ACTIONS(2511), + [anon_sym_default] = ACTIONS(2511), + [anon_sym_enum] = ACTIONS(2511), + [anon_sym_fn] = ACTIONS(2511), + [anon_sym_for] = ACTIONS(2511), + [anon_sym_gen] = ACTIONS(2511), + [anon_sym_if] = ACTIONS(2511), + [anon_sym_impl] = ACTIONS(2511), + [anon_sym_let] = ACTIONS(2511), + [anon_sym_loop] = ACTIONS(2511), + [anon_sym_match] = ACTIONS(2511), + [anon_sym_mod] = ACTIONS(2511), + [anon_sym_pub] = ACTIONS(2511), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_static] = ACTIONS(2511), + [anon_sym_struct] = ACTIONS(2511), + [anon_sym_trait] = ACTIONS(2511), + [anon_sym_type] = ACTIONS(2511), + [anon_sym_union] = ACTIONS(2511), + [anon_sym_unsafe] = ACTIONS(2511), + [anon_sym_use] = ACTIONS(2511), + [anon_sym_while] = ACTIONS(2511), + [anon_sym_extern] = ACTIONS(2511), + [anon_sym_yield] = ACTIONS(2511), + [anon_sym_move] = ACTIONS(2511), + [anon_sym_try] = ACTIONS(2511), + [sym_integer_literal] = ACTIONS(2509), + [aux_sym_string_literal_token1] = ACTIONS(2509), + [sym_char_literal] = ACTIONS(2509), + [anon_sym_true] = ACTIONS(2511), + [anon_sym_false] = ACTIONS(2511), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2511), + [sym_super] = ACTIONS(2511), + [sym_crate] = ACTIONS(2511), + [sym_metavariable] = ACTIONS(2509), + [sym__raw_string_literal_start] = ACTIONS(2509), + [sym_float_literal] = ACTIONS(2509), + }, + [658] = { + [sym_line_comment] = STATE(658), + [sym_block_comment] = STATE(658), [ts_builtin_sym_end] = ACTIONS(2513), [sym_identifier] = ACTIONS(2515), [anon_sym_SEMI] = ACTIONS(2513), @@ -84537,9 +85748,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2513), [sym_float_literal] = ACTIONS(2513), }, - [664] = { - [sym_line_comment] = STATE(664), - [sym_block_comment] = STATE(664), + [659] = { + [sym_line_comment] = STATE(659), + [sym_block_comment] = STATE(659), [ts_builtin_sym_end] = ACTIONS(2517), [sym_identifier] = ACTIONS(2519), [anon_sym_SEMI] = ACTIONS(2517), @@ -84618,90 +85829,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2517), [sym_float_literal] = ACTIONS(2517), }, - [665] = { - [sym_line_comment] = STATE(665), - [sym_block_comment] = STATE(665), - [ts_builtin_sym_end] = ACTIONS(1463), - [sym_identifier] = ACTIONS(1465), - [anon_sym_SEMI] = ACTIONS(1463), - [anon_sym_macro_rules_BANG] = ACTIONS(1463), - [anon_sym_LPAREN] = ACTIONS(1463), - [anon_sym_LBRACK] = ACTIONS(1463), - [anon_sym_LBRACE] = ACTIONS(1463), - [anon_sym_RBRACE] = ACTIONS(1463), - [anon_sym_STAR] = ACTIONS(1463), - [anon_sym_u8] = ACTIONS(1465), - [anon_sym_i8] = ACTIONS(1465), - [anon_sym_u16] = ACTIONS(1465), - [anon_sym_i16] = ACTIONS(1465), - [anon_sym_u32] = ACTIONS(1465), - [anon_sym_i32] = ACTIONS(1465), - [anon_sym_u64] = ACTIONS(1465), - [anon_sym_i64] = ACTIONS(1465), - [anon_sym_u128] = ACTIONS(1465), - [anon_sym_i128] = ACTIONS(1465), - [anon_sym_isize] = ACTIONS(1465), - [anon_sym_usize] = ACTIONS(1465), - [anon_sym_f32] = ACTIONS(1465), - [anon_sym_f64] = ACTIONS(1465), - [anon_sym_bool] = ACTIONS(1465), - [anon_sym_str] = ACTIONS(1465), - [anon_sym_char] = ACTIONS(1465), - [anon_sym_DASH] = ACTIONS(1463), - [anon_sym_BANG] = ACTIONS(1463), - [anon_sym_AMP] = ACTIONS(1463), - [anon_sym_PIPE] = ACTIONS(1463), - [anon_sym_LT] = ACTIONS(1463), - [anon_sym_DOT_DOT] = ACTIONS(1463), - [anon_sym_COLON_COLON] = ACTIONS(1463), - [anon_sym_POUND] = ACTIONS(1463), - [anon_sym_SQUOTE] = ACTIONS(1465), - [anon_sym_async] = ACTIONS(1465), - [anon_sym_break] = ACTIONS(1465), - [anon_sym_const] = ACTIONS(1465), - [anon_sym_continue] = ACTIONS(1465), - [anon_sym_default] = ACTIONS(1465), - [anon_sym_enum] = ACTIONS(1465), - [anon_sym_fn] = ACTIONS(1465), - [anon_sym_for] = ACTIONS(1465), - [anon_sym_gen] = ACTIONS(1465), - [anon_sym_if] = ACTIONS(1465), - [anon_sym_impl] = ACTIONS(1465), - [anon_sym_let] = ACTIONS(1465), - [anon_sym_loop] = ACTIONS(1465), - [anon_sym_match] = ACTIONS(1465), - [anon_sym_mod] = ACTIONS(1465), - [anon_sym_pub] = ACTIONS(1465), - [anon_sym_return] = ACTIONS(1465), - [anon_sym_static] = ACTIONS(1465), - [anon_sym_struct] = ACTIONS(1465), - [anon_sym_trait] = ACTIONS(1465), - [anon_sym_type] = ACTIONS(1465), - [anon_sym_union] = ACTIONS(1465), - [anon_sym_unsafe] = ACTIONS(1465), - [anon_sym_use] = ACTIONS(1465), - [anon_sym_while] = ACTIONS(1465), - [anon_sym_extern] = ACTIONS(1465), - [anon_sym_yield] = ACTIONS(1465), - [anon_sym_move] = ACTIONS(1465), - [anon_sym_try] = ACTIONS(1465), - [sym_integer_literal] = ACTIONS(1463), - [aux_sym_string_literal_token1] = ACTIONS(1463), - [sym_char_literal] = ACTIONS(1463), - [anon_sym_true] = ACTIONS(1465), - [anon_sym_false] = ACTIONS(1465), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1465), - [sym_super] = ACTIONS(1465), - [sym_crate] = ACTIONS(1465), - [sym_metavariable] = ACTIONS(1463), - [sym__raw_string_literal_start] = ACTIONS(1463), - [sym_float_literal] = ACTIONS(1463), - }, - [666] = { - [sym_line_comment] = STATE(666), - [sym_block_comment] = STATE(666), + [660] = { + [sym_line_comment] = STATE(660), + [sym_block_comment] = STATE(660), [ts_builtin_sym_end] = ACTIONS(2521), [sym_identifier] = ACTIONS(2523), [anon_sym_SEMI] = ACTIONS(2521), @@ -84780,657 +85910,576 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2521), [sym_float_literal] = ACTIONS(2521), }, - [667] = { - [sym_empty_statement] = STATE(1072), - [sym_macro_definition] = STATE(1072), - [sym_attribute_item] = STATE(1072), - [sym_inner_attribute_item] = STATE(1072), - [sym_mod_item] = STATE(1072), - [sym_foreign_mod_item] = STATE(1072), - [sym_struct_item] = STATE(1072), - [sym_union_item] = STATE(1072), - [sym_enum_item] = STATE(1072), - [sym_extern_crate_declaration] = STATE(1072), - [sym_const_item] = STATE(1072), - [sym_static_item] = STATE(1072), - [sym_type_item] = STATE(1072), - [sym_function_item] = STATE(1072), - [sym_function_signature_item] = STATE(1072), - [sym_function_modifiers] = STATE(3622), - [sym_impl_item] = STATE(1072), - [sym_trait_item] = STATE(1072), - [sym_associated_type] = STATE(1072), - [sym_let_declaration] = STATE(1072), - [sym_use_declaration] = STATE(1072), - [sym_extern_modifier] = STATE(2165), - [sym_visibility_modifier] = STATE(1954), - [sym_bracketed_type] = STATE(3353), - [sym_generic_type_with_turbofish] = STATE(3379), - [sym_macro_invocation] = STATE(1072), - [sym_scoped_identifier] = STATE(3167), - [sym_line_comment] = STATE(667), - [sym_block_comment] = STATE(667), - [aux_sym_declaration_list_repeat1] = STATE(639), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(2461), - [anon_sym_SEMI] = ACTIONS(2463), - [anon_sym_macro_rules_BANG] = ACTIONS(2465), + [661] = { + [sym_line_comment] = STATE(661), + [sym_block_comment] = STATE(661), + [ts_builtin_sym_end] = ACTIONS(2525), + [sym_identifier] = ACTIONS(2527), + [anon_sym_SEMI] = ACTIONS(2525), + [anon_sym_macro_rules_BANG] = ACTIONS(2525), + [anon_sym_LPAREN] = ACTIONS(2525), + [anon_sym_LBRACK] = ACTIONS(2525), + [anon_sym_LBRACE] = ACTIONS(2525), [anon_sym_RBRACE] = ACTIONS(2525), - [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_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(2471), - [anon_sym_POUND] = ACTIONS(2473), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(2475), - [anon_sym_default] = ACTIONS(2477), - [anon_sym_enum] = ACTIONS(2479), - [anon_sym_fn] = ACTIONS(2481), - [anon_sym_gen] = ACTIONS(2483), - [anon_sym_impl] = ACTIONS(2485), - [anon_sym_let] = ACTIONS(2487), - [anon_sym_mod] = ACTIONS(2489), - [anon_sym_pub] = ACTIONS(69), - [anon_sym_static] = ACTIONS(2491), - [anon_sym_struct] = ACTIONS(2493), - [anon_sym_trait] = ACTIONS(2495), - [anon_sym_type] = ACTIONS(2497), - [anon_sym_union] = ACTIONS(2499), - [anon_sym_unsafe] = ACTIONS(2501), - [anon_sym_use] = ACTIONS(2503), - [anon_sym_extern] = ACTIONS(2505), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2507), - [sym_super] = ACTIONS(2507), - [sym_crate] = ACTIONS(2509), - [sym_metavariable] = ACTIONS(2511), - }, - [668] = { - [sym_line_comment] = STATE(668), - [sym_block_comment] = STATE(668), - [ts_builtin_sym_end] = ACTIONS(2527), - [sym_identifier] = ACTIONS(2529), - [anon_sym_SEMI] = ACTIONS(2527), - [anon_sym_macro_rules_BANG] = ACTIONS(2527), - [anon_sym_LPAREN] = ACTIONS(2527), - [anon_sym_LBRACK] = ACTIONS(2527), - [anon_sym_LBRACE] = ACTIONS(2527), - [anon_sym_RBRACE] = ACTIONS(2527), - [anon_sym_STAR] = ACTIONS(2527), - [anon_sym_u8] = ACTIONS(2529), - [anon_sym_i8] = ACTIONS(2529), - [anon_sym_u16] = ACTIONS(2529), - [anon_sym_i16] = ACTIONS(2529), - [anon_sym_u32] = ACTIONS(2529), - [anon_sym_i32] = ACTIONS(2529), - [anon_sym_u64] = ACTIONS(2529), - [anon_sym_i64] = ACTIONS(2529), - [anon_sym_u128] = ACTIONS(2529), - [anon_sym_i128] = ACTIONS(2529), - [anon_sym_isize] = ACTIONS(2529), - [anon_sym_usize] = ACTIONS(2529), - [anon_sym_f32] = ACTIONS(2529), - [anon_sym_f64] = ACTIONS(2529), - [anon_sym_bool] = ACTIONS(2529), - [anon_sym_str] = ACTIONS(2529), - [anon_sym_char] = ACTIONS(2529), - [anon_sym_DASH] = ACTIONS(2527), - [anon_sym_BANG] = ACTIONS(2527), - [anon_sym_AMP] = ACTIONS(2527), - [anon_sym_PIPE] = ACTIONS(2527), - [anon_sym_LT] = ACTIONS(2527), - [anon_sym_DOT_DOT] = ACTIONS(2527), - [anon_sym_COLON_COLON] = ACTIONS(2527), - [anon_sym_POUND] = ACTIONS(2527), - [anon_sym_SQUOTE] = ACTIONS(2529), - [anon_sym_async] = ACTIONS(2529), - [anon_sym_break] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2529), - [anon_sym_continue] = ACTIONS(2529), - [anon_sym_default] = ACTIONS(2529), - [anon_sym_enum] = ACTIONS(2529), - [anon_sym_fn] = ACTIONS(2529), - [anon_sym_for] = ACTIONS(2529), - [anon_sym_gen] = ACTIONS(2529), - [anon_sym_if] = ACTIONS(2529), - [anon_sym_impl] = ACTIONS(2529), - [anon_sym_let] = ACTIONS(2529), - [anon_sym_loop] = ACTIONS(2529), - [anon_sym_match] = ACTIONS(2529), - [anon_sym_mod] = ACTIONS(2529), - [anon_sym_pub] = ACTIONS(2529), - [anon_sym_return] = ACTIONS(2529), - [anon_sym_static] = ACTIONS(2529), - [anon_sym_struct] = ACTIONS(2529), - [anon_sym_trait] = ACTIONS(2529), - [anon_sym_type] = ACTIONS(2529), - [anon_sym_union] = ACTIONS(2529), - [anon_sym_unsafe] = ACTIONS(2529), - [anon_sym_use] = ACTIONS(2529), - [anon_sym_while] = ACTIONS(2529), - [anon_sym_extern] = ACTIONS(2529), - [anon_sym_yield] = ACTIONS(2529), - [anon_sym_move] = ACTIONS(2529), - [anon_sym_try] = ACTIONS(2529), - [sym_integer_literal] = ACTIONS(2527), - [aux_sym_string_literal_token1] = ACTIONS(2527), - [sym_char_literal] = ACTIONS(2527), - [anon_sym_true] = ACTIONS(2529), - [anon_sym_false] = ACTIONS(2529), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2529), - [sym_super] = ACTIONS(2529), - [sym_crate] = ACTIONS(2529), - [sym_metavariable] = ACTIONS(2527), - [sym__raw_string_literal_start] = ACTIONS(2527), - [sym_float_literal] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(2525), + [anon_sym_u8] = ACTIONS(2527), + [anon_sym_i8] = ACTIONS(2527), + [anon_sym_u16] = ACTIONS(2527), + [anon_sym_i16] = ACTIONS(2527), + [anon_sym_u32] = ACTIONS(2527), + [anon_sym_i32] = ACTIONS(2527), + [anon_sym_u64] = ACTIONS(2527), + [anon_sym_i64] = ACTIONS(2527), + [anon_sym_u128] = ACTIONS(2527), + [anon_sym_i128] = ACTIONS(2527), + [anon_sym_isize] = ACTIONS(2527), + [anon_sym_usize] = ACTIONS(2527), + [anon_sym_f32] = ACTIONS(2527), + [anon_sym_f64] = ACTIONS(2527), + [anon_sym_bool] = ACTIONS(2527), + [anon_sym_str] = ACTIONS(2527), + [anon_sym_char] = ACTIONS(2527), + [anon_sym_DASH] = ACTIONS(2525), + [anon_sym_BANG] = ACTIONS(2525), + [anon_sym_AMP] = ACTIONS(2525), + [anon_sym_PIPE] = ACTIONS(2525), + [anon_sym_LT] = ACTIONS(2525), + [anon_sym_DOT_DOT] = ACTIONS(2525), + [anon_sym_COLON_COLON] = ACTIONS(2525), + [anon_sym_POUND] = ACTIONS(2525), + [anon_sym_SQUOTE] = ACTIONS(2527), + [anon_sym_async] = ACTIONS(2527), + [anon_sym_break] = ACTIONS(2527), + [anon_sym_const] = ACTIONS(2527), + [anon_sym_continue] = ACTIONS(2527), + [anon_sym_default] = ACTIONS(2527), + [anon_sym_enum] = ACTIONS(2527), + [anon_sym_fn] = ACTIONS(2527), + [anon_sym_for] = ACTIONS(2527), + [anon_sym_gen] = ACTIONS(2527), + [anon_sym_if] = ACTIONS(2527), + [anon_sym_impl] = ACTIONS(2527), + [anon_sym_let] = ACTIONS(2527), + [anon_sym_loop] = ACTIONS(2527), + [anon_sym_match] = ACTIONS(2527), + [anon_sym_mod] = ACTIONS(2527), + [anon_sym_pub] = ACTIONS(2527), + [anon_sym_return] = ACTIONS(2527), + [anon_sym_static] = ACTIONS(2527), + [anon_sym_struct] = ACTIONS(2527), + [anon_sym_trait] = ACTIONS(2527), + [anon_sym_type] = ACTIONS(2527), + [anon_sym_union] = ACTIONS(2527), + [anon_sym_unsafe] = ACTIONS(2527), + [anon_sym_use] = ACTIONS(2527), + [anon_sym_while] = ACTIONS(2527), + [anon_sym_extern] = ACTIONS(2527), + [anon_sym_yield] = ACTIONS(2527), + [anon_sym_move] = ACTIONS(2527), + [anon_sym_try] = ACTIONS(2527), + [sym_integer_literal] = ACTIONS(2525), + [aux_sym_string_literal_token1] = ACTIONS(2525), + [sym_char_literal] = ACTIONS(2525), + [anon_sym_true] = ACTIONS(2527), + [anon_sym_false] = ACTIONS(2527), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2527), + [sym_super] = ACTIONS(2527), + [sym_crate] = ACTIONS(2527), + [sym_metavariable] = ACTIONS(2525), + [sym__raw_string_literal_start] = ACTIONS(2525), + [sym_float_literal] = ACTIONS(2525), }, - [669] = { - [sym_line_comment] = STATE(669), - [sym_block_comment] = STATE(669), - [ts_builtin_sym_end] = ACTIONS(2531), - [sym_identifier] = ACTIONS(2533), - [anon_sym_SEMI] = ACTIONS(2531), - [anon_sym_macro_rules_BANG] = ACTIONS(2531), - [anon_sym_LPAREN] = ACTIONS(2531), - [anon_sym_LBRACK] = ACTIONS(2531), - [anon_sym_LBRACE] = ACTIONS(2531), - [anon_sym_RBRACE] = ACTIONS(2531), - [anon_sym_STAR] = ACTIONS(2531), - [anon_sym_u8] = ACTIONS(2533), - [anon_sym_i8] = ACTIONS(2533), - [anon_sym_u16] = ACTIONS(2533), - [anon_sym_i16] = ACTIONS(2533), - [anon_sym_u32] = ACTIONS(2533), - [anon_sym_i32] = ACTIONS(2533), - [anon_sym_u64] = ACTIONS(2533), - [anon_sym_i64] = ACTIONS(2533), - [anon_sym_u128] = ACTIONS(2533), - [anon_sym_i128] = ACTIONS(2533), - [anon_sym_isize] = ACTIONS(2533), - [anon_sym_usize] = ACTIONS(2533), - [anon_sym_f32] = ACTIONS(2533), - [anon_sym_f64] = ACTIONS(2533), - [anon_sym_bool] = ACTIONS(2533), - [anon_sym_str] = ACTIONS(2533), - [anon_sym_char] = ACTIONS(2533), - [anon_sym_DASH] = ACTIONS(2531), - [anon_sym_BANG] = ACTIONS(2531), - [anon_sym_AMP] = ACTIONS(2531), - [anon_sym_PIPE] = ACTIONS(2531), - [anon_sym_LT] = ACTIONS(2531), - [anon_sym_DOT_DOT] = ACTIONS(2531), - [anon_sym_COLON_COLON] = ACTIONS(2531), - [anon_sym_POUND] = ACTIONS(2531), - [anon_sym_SQUOTE] = ACTIONS(2533), - [anon_sym_async] = ACTIONS(2533), - [anon_sym_break] = ACTIONS(2533), - [anon_sym_const] = ACTIONS(2533), - [anon_sym_continue] = ACTIONS(2533), - [anon_sym_default] = ACTIONS(2533), - [anon_sym_enum] = ACTIONS(2533), - [anon_sym_fn] = ACTIONS(2533), - [anon_sym_for] = ACTIONS(2533), - [anon_sym_gen] = ACTIONS(2533), - [anon_sym_if] = ACTIONS(2533), - [anon_sym_impl] = ACTIONS(2533), - [anon_sym_let] = ACTIONS(2533), - [anon_sym_loop] = ACTIONS(2533), - [anon_sym_match] = ACTIONS(2533), - [anon_sym_mod] = ACTIONS(2533), - [anon_sym_pub] = ACTIONS(2533), - [anon_sym_return] = ACTIONS(2533), - [anon_sym_static] = ACTIONS(2533), - [anon_sym_struct] = ACTIONS(2533), - [anon_sym_trait] = ACTIONS(2533), - [anon_sym_type] = ACTIONS(2533), - [anon_sym_union] = ACTIONS(2533), - [anon_sym_unsafe] = ACTIONS(2533), - [anon_sym_use] = ACTIONS(2533), - [anon_sym_while] = ACTIONS(2533), - [anon_sym_extern] = ACTIONS(2533), - [anon_sym_yield] = ACTIONS(2533), - [anon_sym_move] = ACTIONS(2533), - [anon_sym_try] = ACTIONS(2533), - [sym_integer_literal] = ACTIONS(2531), - [aux_sym_string_literal_token1] = ACTIONS(2531), - [sym_char_literal] = ACTIONS(2531), - [anon_sym_true] = ACTIONS(2533), - [anon_sym_false] = ACTIONS(2533), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2533), - [sym_super] = ACTIONS(2533), - [sym_crate] = ACTIONS(2533), - [sym_metavariable] = ACTIONS(2531), - [sym__raw_string_literal_start] = ACTIONS(2531), - [sym_float_literal] = ACTIONS(2531), + [662] = { + [sym_line_comment] = STATE(662), + [sym_block_comment] = STATE(662), + [ts_builtin_sym_end] = ACTIONS(2529), + [sym_identifier] = ACTIONS(2531), + [anon_sym_SEMI] = ACTIONS(2529), + [anon_sym_macro_rules_BANG] = ACTIONS(2529), + [anon_sym_LPAREN] = ACTIONS(2529), + [anon_sym_LBRACK] = ACTIONS(2529), + [anon_sym_LBRACE] = ACTIONS(2529), + [anon_sym_RBRACE] = ACTIONS(2529), + [anon_sym_STAR] = ACTIONS(2529), + [anon_sym_u8] = ACTIONS(2531), + [anon_sym_i8] = ACTIONS(2531), + [anon_sym_u16] = ACTIONS(2531), + [anon_sym_i16] = ACTIONS(2531), + [anon_sym_u32] = ACTIONS(2531), + [anon_sym_i32] = ACTIONS(2531), + [anon_sym_u64] = ACTIONS(2531), + [anon_sym_i64] = ACTIONS(2531), + [anon_sym_u128] = ACTIONS(2531), + [anon_sym_i128] = ACTIONS(2531), + [anon_sym_isize] = ACTIONS(2531), + [anon_sym_usize] = ACTIONS(2531), + [anon_sym_f32] = ACTIONS(2531), + [anon_sym_f64] = ACTIONS(2531), + [anon_sym_bool] = ACTIONS(2531), + [anon_sym_str] = ACTIONS(2531), + [anon_sym_char] = ACTIONS(2531), + [anon_sym_DASH] = ACTIONS(2529), + [anon_sym_BANG] = ACTIONS(2529), + [anon_sym_AMP] = ACTIONS(2529), + [anon_sym_PIPE] = ACTIONS(2529), + [anon_sym_LT] = ACTIONS(2529), + [anon_sym_DOT_DOT] = ACTIONS(2529), + [anon_sym_COLON_COLON] = ACTIONS(2529), + [anon_sym_POUND] = ACTIONS(2529), + [anon_sym_SQUOTE] = ACTIONS(2531), + [anon_sym_async] = ACTIONS(2531), + [anon_sym_break] = ACTIONS(2531), + [anon_sym_const] = ACTIONS(2531), + [anon_sym_continue] = ACTIONS(2531), + [anon_sym_default] = ACTIONS(2531), + [anon_sym_enum] = ACTIONS(2531), + [anon_sym_fn] = ACTIONS(2531), + [anon_sym_for] = ACTIONS(2531), + [anon_sym_gen] = ACTIONS(2531), + [anon_sym_if] = ACTIONS(2531), + [anon_sym_impl] = ACTIONS(2531), + [anon_sym_let] = ACTIONS(2531), + [anon_sym_loop] = ACTIONS(2531), + [anon_sym_match] = ACTIONS(2531), + [anon_sym_mod] = ACTIONS(2531), + [anon_sym_pub] = ACTIONS(2531), + [anon_sym_return] = ACTIONS(2531), + [anon_sym_static] = ACTIONS(2531), + [anon_sym_struct] = ACTIONS(2531), + [anon_sym_trait] = ACTIONS(2531), + [anon_sym_type] = ACTIONS(2531), + [anon_sym_union] = ACTIONS(2531), + [anon_sym_unsafe] = ACTIONS(2531), + [anon_sym_use] = ACTIONS(2531), + [anon_sym_while] = ACTIONS(2531), + [anon_sym_extern] = ACTIONS(2531), + [anon_sym_yield] = ACTIONS(2531), + [anon_sym_move] = ACTIONS(2531), + [anon_sym_try] = ACTIONS(2531), + [sym_integer_literal] = ACTIONS(2529), + [aux_sym_string_literal_token1] = ACTIONS(2529), + [sym_char_literal] = ACTIONS(2529), + [anon_sym_true] = ACTIONS(2531), + [anon_sym_false] = ACTIONS(2531), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2531), + [sym_super] = ACTIONS(2531), + [sym_crate] = ACTIONS(2531), + [sym_metavariable] = ACTIONS(2529), + [sym__raw_string_literal_start] = ACTIONS(2529), + [sym_float_literal] = ACTIONS(2529), }, - [670] = { - [sym_line_comment] = STATE(670), - [sym_block_comment] = STATE(670), - [ts_builtin_sym_end] = ACTIONS(2535), - [sym_identifier] = ACTIONS(2537), - [anon_sym_SEMI] = ACTIONS(2535), - [anon_sym_macro_rules_BANG] = ACTIONS(2535), - [anon_sym_LPAREN] = ACTIONS(2535), - [anon_sym_LBRACK] = ACTIONS(2535), - [anon_sym_LBRACE] = ACTIONS(2535), - [anon_sym_RBRACE] = ACTIONS(2535), - [anon_sym_STAR] = ACTIONS(2535), - [anon_sym_u8] = ACTIONS(2537), - [anon_sym_i8] = ACTIONS(2537), - [anon_sym_u16] = ACTIONS(2537), - [anon_sym_i16] = ACTIONS(2537), - [anon_sym_u32] = ACTIONS(2537), - [anon_sym_i32] = ACTIONS(2537), - [anon_sym_u64] = ACTIONS(2537), - [anon_sym_i64] = ACTIONS(2537), - [anon_sym_u128] = ACTIONS(2537), - [anon_sym_i128] = ACTIONS(2537), - [anon_sym_isize] = ACTIONS(2537), - [anon_sym_usize] = ACTIONS(2537), - [anon_sym_f32] = ACTIONS(2537), - [anon_sym_f64] = ACTIONS(2537), - [anon_sym_bool] = ACTIONS(2537), - [anon_sym_str] = ACTIONS(2537), - [anon_sym_char] = ACTIONS(2537), - [anon_sym_DASH] = ACTIONS(2535), - [anon_sym_BANG] = ACTIONS(2535), - [anon_sym_AMP] = ACTIONS(2535), - [anon_sym_PIPE] = ACTIONS(2535), - [anon_sym_LT] = ACTIONS(2535), - [anon_sym_DOT_DOT] = ACTIONS(2535), - [anon_sym_COLON_COLON] = ACTIONS(2535), - [anon_sym_POUND] = ACTIONS(2535), - [anon_sym_SQUOTE] = ACTIONS(2537), - [anon_sym_async] = ACTIONS(2537), - [anon_sym_break] = ACTIONS(2537), - [anon_sym_const] = ACTIONS(2537), - [anon_sym_continue] = ACTIONS(2537), - [anon_sym_default] = ACTIONS(2537), - [anon_sym_enum] = ACTIONS(2537), - [anon_sym_fn] = ACTIONS(2537), - [anon_sym_for] = ACTIONS(2537), - [anon_sym_gen] = ACTIONS(2537), - [anon_sym_if] = ACTIONS(2537), - [anon_sym_impl] = ACTIONS(2537), - [anon_sym_let] = ACTIONS(2537), - [anon_sym_loop] = ACTIONS(2537), - [anon_sym_match] = ACTIONS(2537), - [anon_sym_mod] = ACTIONS(2537), - [anon_sym_pub] = ACTIONS(2537), - [anon_sym_return] = ACTIONS(2537), - [anon_sym_static] = ACTIONS(2537), - [anon_sym_struct] = ACTIONS(2537), - [anon_sym_trait] = ACTIONS(2537), - [anon_sym_type] = ACTIONS(2537), - [anon_sym_union] = ACTIONS(2537), - [anon_sym_unsafe] = ACTIONS(2537), - [anon_sym_use] = ACTIONS(2537), - [anon_sym_while] = ACTIONS(2537), - [anon_sym_extern] = ACTIONS(2537), - [anon_sym_yield] = ACTIONS(2537), - [anon_sym_move] = ACTIONS(2537), - [anon_sym_try] = ACTIONS(2537), - [sym_integer_literal] = ACTIONS(2535), - [aux_sym_string_literal_token1] = ACTIONS(2535), - [sym_char_literal] = ACTIONS(2535), - [anon_sym_true] = ACTIONS(2537), - [anon_sym_false] = ACTIONS(2537), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2537), - [sym_super] = ACTIONS(2537), - [sym_crate] = ACTIONS(2537), - [sym_metavariable] = ACTIONS(2535), - [sym__raw_string_literal_start] = ACTIONS(2535), - [sym_float_literal] = ACTIONS(2535), + [663] = { + [sym_line_comment] = STATE(663), + [sym_block_comment] = STATE(663), + [ts_builtin_sym_end] = ACTIONS(2533), + [sym_identifier] = ACTIONS(2535), + [anon_sym_SEMI] = ACTIONS(2533), + [anon_sym_macro_rules_BANG] = ACTIONS(2533), + [anon_sym_LPAREN] = ACTIONS(2533), + [anon_sym_LBRACK] = ACTIONS(2533), + [anon_sym_LBRACE] = ACTIONS(2533), + [anon_sym_RBRACE] = ACTIONS(2533), + [anon_sym_STAR] = ACTIONS(2533), + [anon_sym_u8] = ACTIONS(2535), + [anon_sym_i8] = ACTIONS(2535), + [anon_sym_u16] = ACTIONS(2535), + [anon_sym_i16] = ACTIONS(2535), + [anon_sym_u32] = ACTIONS(2535), + [anon_sym_i32] = ACTIONS(2535), + [anon_sym_u64] = ACTIONS(2535), + [anon_sym_i64] = ACTIONS(2535), + [anon_sym_u128] = ACTIONS(2535), + [anon_sym_i128] = ACTIONS(2535), + [anon_sym_isize] = ACTIONS(2535), + [anon_sym_usize] = ACTIONS(2535), + [anon_sym_f32] = ACTIONS(2535), + [anon_sym_f64] = ACTIONS(2535), + [anon_sym_bool] = ACTIONS(2535), + [anon_sym_str] = ACTIONS(2535), + [anon_sym_char] = ACTIONS(2535), + [anon_sym_DASH] = ACTIONS(2533), + [anon_sym_BANG] = ACTIONS(2533), + [anon_sym_AMP] = ACTIONS(2533), + [anon_sym_PIPE] = ACTIONS(2533), + [anon_sym_LT] = ACTIONS(2533), + [anon_sym_DOT_DOT] = ACTIONS(2533), + [anon_sym_COLON_COLON] = ACTIONS(2533), + [anon_sym_POUND] = ACTIONS(2533), + [anon_sym_SQUOTE] = ACTIONS(2535), + [anon_sym_async] = ACTIONS(2535), + [anon_sym_break] = ACTIONS(2535), + [anon_sym_const] = ACTIONS(2535), + [anon_sym_continue] = ACTIONS(2535), + [anon_sym_default] = ACTIONS(2535), + [anon_sym_enum] = ACTIONS(2535), + [anon_sym_fn] = ACTIONS(2535), + [anon_sym_for] = ACTIONS(2535), + [anon_sym_gen] = ACTIONS(2535), + [anon_sym_if] = ACTIONS(2535), + [anon_sym_impl] = ACTIONS(2535), + [anon_sym_let] = ACTIONS(2535), + [anon_sym_loop] = ACTIONS(2535), + [anon_sym_match] = ACTIONS(2535), + [anon_sym_mod] = ACTIONS(2535), + [anon_sym_pub] = ACTIONS(2535), + [anon_sym_return] = ACTIONS(2535), + [anon_sym_static] = ACTIONS(2535), + [anon_sym_struct] = ACTIONS(2535), + [anon_sym_trait] = ACTIONS(2535), + [anon_sym_type] = ACTIONS(2535), + [anon_sym_union] = ACTIONS(2535), + [anon_sym_unsafe] = ACTIONS(2535), + [anon_sym_use] = ACTIONS(2535), + [anon_sym_while] = ACTIONS(2535), + [anon_sym_extern] = ACTIONS(2535), + [anon_sym_yield] = ACTIONS(2535), + [anon_sym_move] = ACTIONS(2535), + [anon_sym_try] = ACTIONS(2535), + [sym_integer_literal] = ACTIONS(2533), + [aux_sym_string_literal_token1] = ACTIONS(2533), + [sym_char_literal] = ACTIONS(2533), + [anon_sym_true] = ACTIONS(2535), + [anon_sym_false] = ACTIONS(2535), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2535), + [sym_super] = ACTIONS(2535), + [sym_crate] = ACTIONS(2535), + [sym_metavariable] = ACTIONS(2533), + [sym__raw_string_literal_start] = ACTIONS(2533), + [sym_float_literal] = ACTIONS(2533), }, - [671] = { - [sym_line_comment] = STATE(671), - [sym_block_comment] = STATE(671), - [ts_builtin_sym_end] = ACTIONS(2539), - [sym_identifier] = ACTIONS(2541), - [anon_sym_SEMI] = ACTIONS(2539), - [anon_sym_macro_rules_BANG] = ACTIONS(2539), - [anon_sym_LPAREN] = ACTIONS(2539), - [anon_sym_LBRACK] = ACTIONS(2539), - [anon_sym_LBRACE] = ACTIONS(2539), - [anon_sym_RBRACE] = ACTIONS(2539), - [anon_sym_STAR] = ACTIONS(2539), - [anon_sym_u8] = ACTIONS(2541), - [anon_sym_i8] = ACTIONS(2541), - [anon_sym_u16] = ACTIONS(2541), - [anon_sym_i16] = ACTIONS(2541), - [anon_sym_u32] = ACTIONS(2541), - [anon_sym_i32] = ACTIONS(2541), - [anon_sym_u64] = ACTIONS(2541), - [anon_sym_i64] = ACTIONS(2541), - [anon_sym_u128] = ACTIONS(2541), - [anon_sym_i128] = ACTIONS(2541), - [anon_sym_isize] = ACTIONS(2541), - [anon_sym_usize] = ACTIONS(2541), - [anon_sym_f32] = ACTIONS(2541), - [anon_sym_f64] = ACTIONS(2541), - [anon_sym_bool] = ACTIONS(2541), - [anon_sym_str] = ACTIONS(2541), - [anon_sym_char] = ACTIONS(2541), - [anon_sym_DASH] = ACTIONS(2539), - [anon_sym_BANG] = ACTIONS(2539), - [anon_sym_AMP] = ACTIONS(2539), - [anon_sym_PIPE] = ACTIONS(2539), - [anon_sym_LT] = ACTIONS(2539), - [anon_sym_DOT_DOT] = ACTIONS(2539), - [anon_sym_COLON_COLON] = ACTIONS(2539), - [anon_sym_POUND] = ACTIONS(2539), - [anon_sym_SQUOTE] = ACTIONS(2541), - [anon_sym_async] = ACTIONS(2541), - [anon_sym_break] = ACTIONS(2541), - [anon_sym_const] = ACTIONS(2541), - [anon_sym_continue] = ACTIONS(2541), - [anon_sym_default] = ACTIONS(2541), - [anon_sym_enum] = ACTIONS(2541), - [anon_sym_fn] = ACTIONS(2541), - [anon_sym_for] = ACTIONS(2541), - [anon_sym_gen] = ACTIONS(2541), - [anon_sym_if] = ACTIONS(2541), - [anon_sym_impl] = ACTIONS(2541), - [anon_sym_let] = ACTIONS(2541), - [anon_sym_loop] = ACTIONS(2541), - [anon_sym_match] = ACTIONS(2541), - [anon_sym_mod] = ACTIONS(2541), - [anon_sym_pub] = ACTIONS(2541), - [anon_sym_return] = ACTIONS(2541), - [anon_sym_static] = ACTIONS(2541), - [anon_sym_struct] = ACTIONS(2541), - [anon_sym_trait] = ACTIONS(2541), - [anon_sym_type] = ACTIONS(2541), - [anon_sym_union] = ACTIONS(2541), - [anon_sym_unsafe] = ACTIONS(2541), - [anon_sym_use] = ACTIONS(2541), - [anon_sym_while] = ACTIONS(2541), - [anon_sym_extern] = ACTIONS(2541), - [anon_sym_yield] = ACTIONS(2541), - [anon_sym_move] = ACTIONS(2541), - [anon_sym_try] = ACTIONS(2541), - [sym_integer_literal] = ACTIONS(2539), - [aux_sym_string_literal_token1] = ACTIONS(2539), - [sym_char_literal] = ACTIONS(2539), - [anon_sym_true] = ACTIONS(2541), - [anon_sym_false] = ACTIONS(2541), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2541), - [sym_super] = ACTIONS(2541), - [sym_crate] = ACTIONS(2541), - [sym_metavariable] = ACTIONS(2539), - [sym__raw_string_literal_start] = ACTIONS(2539), - [sym_float_literal] = ACTIONS(2539), + [664] = { + [sym_line_comment] = STATE(664), + [sym_block_comment] = STATE(664), + [ts_builtin_sym_end] = ACTIONS(2537), + [sym_identifier] = ACTIONS(2539), + [anon_sym_SEMI] = ACTIONS(2537), + [anon_sym_macro_rules_BANG] = ACTIONS(2537), + [anon_sym_LPAREN] = ACTIONS(2537), + [anon_sym_LBRACK] = ACTIONS(2537), + [anon_sym_LBRACE] = ACTIONS(2537), + [anon_sym_RBRACE] = ACTIONS(2537), + [anon_sym_STAR] = ACTIONS(2537), + [anon_sym_u8] = ACTIONS(2539), + [anon_sym_i8] = ACTIONS(2539), + [anon_sym_u16] = ACTIONS(2539), + [anon_sym_i16] = ACTIONS(2539), + [anon_sym_u32] = ACTIONS(2539), + [anon_sym_i32] = ACTIONS(2539), + [anon_sym_u64] = ACTIONS(2539), + [anon_sym_i64] = ACTIONS(2539), + [anon_sym_u128] = ACTIONS(2539), + [anon_sym_i128] = ACTIONS(2539), + [anon_sym_isize] = ACTIONS(2539), + [anon_sym_usize] = ACTIONS(2539), + [anon_sym_f32] = ACTIONS(2539), + [anon_sym_f64] = ACTIONS(2539), + [anon_sym_bool] = ACTIONS(2539), + [anon_sym_str] = ACTIONS(2539), + [anon_sym_char] = ACTIONS(2539), + [anon_sym_DASH] = ACTIONS(2537), + [anon_sym_BANG] = ACTIONS(2537), + [anon_sym_AMP] = ACTIONS(2537), + [anon_sym_PIPE] = ACTIONS(2537), + [anon_sym_LT] = ACTIONS(2537), + [anon_sym_DOT_DOT] = ACTIONS(2537), + [anon_sym_COLON_COLON] = ACTIONS(2537), + [anon_sym_POUND] = ACTIONS(2537), + [anon_sym_SQUOTE] = ACTIONS(2539), + [anon_sym_async] = ACTIONS(2539), + [anon_sym_break] = ACTIONS(2539), + [anon_sym_const] = ACTIONS(2539), + [anon_sym_continue] = ACTIONS(2539), + [anon_sym_default] = ACTIONS(2539), + [anon_sym_enum] = ACTIONS(2539), + [anon_sym_fn] = ACTIONS(2539), + [anon_sym_for] = ACTIONS(2539), + [anon_sym_gen] = ACTIONS(2539), + [anon_sym_if] = ACTIONS(2539), + [anon_sym_impl] = ACTIONS(2539), + [anon_sym_let] = ACTIONS(2539), + [anon_sym_loop] = ACTIONS(2539), + [anon_sym_match] = ACTIONS(2539), + [anon_sym_mod] = ACTIONS(2539), + [anon_sym_pub] = ACTIONS(2539), + [anon_sym_return] = ACTIONS(2539), + [anon_sym_static] = ACTIONS(2539), + [anon_sym_struct] = ACTIONS(2539), + [anon_sym_trait] = ACTIONS(2539), + [anon_sym_type] = ACTIONS(2539), + [anon_sym_union] = ACTIONS(2539), + [anon_sym_unsafe] = ACTIONS(2539), + [anon_sym_use] = ACTIONS(2539), + [anon_sym_while] = ACTIONS(2539), + [anon_sym_extern] = ACTIONS(2539), + [anon_sym_yield] = ACTIONS(2539), + [anon_sym_move] = ACTIONS(2539), + [anon_sym_try] = ACTIONS(2539), + [sym_integer_literal] = ACTIONS(2537), + [aux_sym_string_literal_token1] = ACTIONS(2537), + [sym_char_literal] = ACTIONS(2537), + [anon_sym_true] = ACTIONS(2539), + [anon_sym_false] = ACTIONS(2539), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2539), + [sym_super] = ACTIONS(2539), + [sym_crate] = ACTIONS(2539), + [sym_metavariable] = ACTIONS(2537), + [sym__raw_string_literal_start] = ACTIONS(2537), + [sym_float_literal] = ACTIONS(2537), }, - [672] = { - [sym_line_comment] = STATE(672), - [sym_block_comment] = STATE(672), - [ts_builtin_sym_end] = ACTIONS(2543), - [sym_identifier] = ACTIONS(2545), - [anon_sym_SEMI] = ACTIONS(2543), - [anon_sym_macro_rules_BANG] = ACTIONS(2543), - [anon_sym_LPAREN] = ACTIONS(2543), - [anon_sym_LBRACK] = ACTIONS(2543), - [anon_sym_LBRACE] = ACTIONS(2543), - [anon_sym_RBRACE] = ACTIONS(2543), - [anon_sym_STAR] = ACTIONS(2543), - [anon_sym_u8] = ACTIONS(2545), - [anon_sym_i8] = ACTIONS(2545), - [anon_sym_u16] = ACTIONS(2545), - [anon_sym_i16] = ACTIONS(2545), - [anon_sym_u32] = ACTIONS(2545), - [anon_sym_i32] = ACTIONS(2545), - [anon_sym_u64] = ACTIONS(2545), - [anon_sym_i64] = ACTIONS(2545), - [anon_sym_u128] = ACTIONS(2545), - [anon_sym_i128] = ACTIONS(2545), - [anon_sym_isize] = ACTIONS(2545), - [anon_sym_usize] = ACTIONS(2545), - [anon_sym_f32] = ACTIONS(2545), - [anon_sym_f64] = ACTIONS(2545), - [anon_sym_bool] = ACTIONS(2545), - [anon_sym_str] = ACTIONS(2545), - [anon_sym_char] = ACTIONS(2545), - [anon_sym_DASH] = ACTIONS(2543), - [anon_sym_BANG] = ACTIONS(2543), - [anon_sym_AMP] = ACTIONS(2543), - [anon_sym_PIPE] = ACTIONS(2543), - [anon_sym_LT] = ACTIONS(2543), - [anon_sym_DOT_DOT] = ACTIONS(2543), - [anon_sym_COLON_COLON] = ACTIONS(2543), - [anon_sym_POUND] = ACTIONS(2543), - [anon_sym_SQUOTE] = ACTIONS(2545), - [anon_sym_async] = ACTIONS(2545), - [anon_sym_break] = ACTIONS(2545), - [anon_sym_const] = ACTIONS(2545), - [anon_sym_continue] = ACTIONS(2545), - [anon_sym_default] = ACTIONS(2545), - [anon_sym_enum] = ACTIONS(2545), - [anon_sym_fn] = ACTIONS(2545), - [anon_sym_for] = ACTIONS(2545), - [anon_sym_gen] = ACTIONS(2545), - [anon_sym_if] = ACTIONS(2545), - [anon_sym_impl] = ACTIONS(2545), - [anon_sym_let] = ACTIONS(2545), - [anon_sym_loop] = ACTIONS(2545), - [anon_sym_match] = ACTIONS(2545), - [anon_sym_mod] = ACTIONS(2545), - [anon_sym_pub] = ACTIONS(2545), - [anon_sym_return] = ACTIONS(2545), - [anon_sym_static] = ACTIONS(2545), - [anon_sym_struct] = ACTIONS(2545), - [anon_sym_trait] = ACTIONS(2545), - [anon_sym_type] = ACTIONS(2545), - [anon_sym_union] = ACTIONS(2545), - [anon_sym_unsafe] = ACTIONS(2545), - [anon_sym_use] = ACTIONS(2545), - [anon_sym_while] = ACTIONS(2545), - [anon_sym_extern] = ACTIONS(2545), - [anon_sym_yield] = ACTIONS(2545), - [anon_sym_move] = ACTIONS(2545), - [anon_sym_try] = ACTIONS(2545), - [sym_integer_literal] = ACTIONS(2543), - [aux_sym_string_literal_token1] = ACTIONS(2543), - [sym_char_literal] = ACTIONS(2543), - [anon_sym_true] = ACTIONS(2545), - [anon_sym_false] = ACTIONS(2545), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2545), - [sym_super] = ACTIONS(2545), - [sym_crate] = ACTIONS(2545), - [sym_metavariable] = ACTIONS(2543), - [sym__raw_string_literal_start] = ACTIONS(2543), - [sym_float_literal] = ACTIONS(2543), + [665] = { + [sym_line_comment] = STATE(665), + [sym_block_comment] = STATE(665), + [ts_builtin_sym_end] = ACTIONS(2541), + [sym_identifier] = ACTIONS(2543), + [anon_sym_SEMI] = ACTIONS(2541), + [anon_sym_macro_rules_BANG] = ACTIONS(2541), + [anon_sym_LPAREN] = ACTIONS(2541), + [anon_sym_LBRACK] = ACTIONS(2541), + [anon_sym_LBRACE] = ACTIONS(2541), + [anon_sym_RBRACE] = ACTIONS(2541), + [anon_sym_STAR] = ACTIONS(2541), + [anon_sym_u8] = ACTIONS(2543), + [anon_sym_i8] = ACTIONS(2543), + [anon_sym_u16] = ACTIONS(2543), + [anon_sym_i16] = ACTIONS(2543), + [anon_sym_u32] = ACTIONS(2543), + [anon_sym_i32] = ACTIONS(2543), + [anon_sym_u64] = ACTIONS(2543), + [anon_sym_i64] = ACTIONS(2543), + [anon_sym_u128] = ACTIONS(2543), + [anon_sym_i128] = ACTIONS(2543), + [anon_sym_isize] = ACTIONS(2543), + [anon_sym_usize] = ACTIONS(2543), + [anon_sym_f32] = ACTIONS(2543), + [anon_sym_f64] = ACTIONS(2543), + [anon_sym_bool] = ACTIONS(2543), + [anon_sym_str] = ACTIONS(2543), + [anon_sym_char] = ACTIONS(2543), + [anon_sym_DASH] = ACTIONS(2541), + [anon_sym_BANG] = ACTIONS(2541), + [anon_sym_AMP] = ACTIONS(2541), + [anon_sym_PIPE] = ACTIONS(2541), + [anon_sym_LT] = ACTIONS(2541), + [anon_sym_DOT_DOT] = ACTIONS(2541), + [anon_sym_COLON_COLON] = ACTIONS(2541), + [anon_sym_POUND] = ACTIONS(2541), + [anon_sym_SQUOTE] = ACTIONS(2543), + [anon_sym_async] = ACTIONS(2543), + [anon_sym_break] = ACTIONS(2543), + [anon_sym_const] = ACTIONS(2543), + [anon_sym_continue] = ACTIONS(2543), + [anon_sym_default] = ACTIONS(2543), + [anon_sym_enum] = ACTIONS(2543), + [anon_sym_fn] = ACTIONS(2543), + [anon_sym_for] = ACTIONS(2543), + [anon_sym_gen] = ACTIONS(2543), + [anon_sym_if] = ACTIONS(2543), + [anon_sym_impl] = ACTIONS(2543), + [anon_sym_let] = ACTIONS(2543), + [anon_sym_loop] = ACTIONS(2543), + [anon_sym_match] = ACTIONS(2543), + [anon_sym_mod] = ACTIONS(2543), + [anon_sym_pub] = ACTIONS(2543), + [anon_sym_return] = ACTIONS(2543), + [anon_sym_static] = ACTIONS(2543), + [anon_sym_struct] = ACTIONS(2543), + [anon_sym_trait] = ACTIONS(2543), + [anon_sym_type] = ACTIONS(2543), + [anon_sym_union] = ACTIONS(2543), + [anon_sym_unsafe] = ACTIONS(2543), + [anon_sym_use] = ACTIONS(2543), + [anon_sym_while] = ACTIONS(2543), + [anon_sym_extern] = ACTIONS(2543), + [anon_sym_yield] = ACTIONS(2543), + [anon_sym_move] = ACTIONS(2543), + [anon_sym_try] = ACTIONS(2543), + [sym_integer_literal] = ACTIONS(2541), + [aux_sym_string_literal_token1] = ACTIONS(2541), + [sym_char_literal] = ACTIONS(2541), + [anon_sym_true] = ACTIONS(2543), + [anon_sym_false] = ACTIONS(2543), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2543), + [sym_super] = ACTIONS(2543), + [sym_crate] = ACTIONS(2543), + [sym_metavariable] = ACTIONS(2541), + [sym__raw_string_literal_start] = ACTIONS(2541), + [sym_float_literal] = ACTIONS(2541), }, - [673] = { - [sym_line_comment] = STATE(673), - [sym_block_comment] = STATE(673), - [ts_builtin_sym_end] = ACTIONS(2547), - [sym_identifier] = ACTIONS(2549), - [anon_sym_SEMI] = ACTIONS(2547), - [anon_sym_macro_rules_BANG] = ACTIONS(2547), - [anon_sym_LPAREN] = ACTIONS(2547), - [anon_sym_LBRACK] = ACTIONS(2547), - [anon_sym_LBRACE] = ACTIONS(2547), - [anon_sym_RBRACE] = ACTIONS(2547), - [anon_sym_STAR] = ACTIONS(2547), - [anon_sym_u8] = ACTIONS(2549), - [anon_sym_i8] = ACTIONS(2549), - [anon_sym_u16] = ACTIONS(2549), - [anon_sym_i16] = ACTIONS(2549), - [anon_sym_u32] = ACTIONS(2549), - [anon_sym_i32] = ACTIONS(2549), - [anon_sym_u64] = ACTIONS(2549), - [anon_sym_i64] = ACTIONS(2549), - [anon_sym_u128] = ACTIONS(2549), - [anon_sym_i128] = ACTIONS(2549), - [anon_sym_isize] = ACTIONS(2549), - [anon_sym_usize] = ACTIONS(2549), - [anon_sym_f32] = ACTIONS(2549), - [anon_sym_f64] = ACTIONS(2549), - [anon_sym_bool] = ACTIONS(2549), - [anon_sym_str] = ACTIONS(2549), - [anon_sym_char] = ACTIONS(2549), - [anon_sym_DASH] = ACTIONS(2547), - [anon_sym_BANG] = ACTIONS(2547), - [anon_sym_AMP] = ACTIONS(2547), - [anon_sym_PIPE] = ACTIONS(2547), - [anon_sym_LT] = ACTIONS(2547), - [anon_sym_DOT_DOT] = ACTIONS(2547), - [anon_sym_COLON_COLON] = ACTIONS(2547), - [anon_sym_POUND] = ACTIONS(2547), - [anon_sym_SQUOTE] = ACTIONS(2549), - [anon_sym_async] = ACTIONS(2549), - [anon_sym_break] = ACTIONS(2549), - [anon_sym_const] = ACTIONS(2549), - [anon_sym_continue] = ACTIONS(2549), - [anon_sym_default] = ACTIONS(2549), - [anon_sym_enum] = ACTIONS(2549), - [anon_sym_fn] = ACTIONS(2549), - [anon_sym_for] = ACTIONS(2549), - [anon_sym_gen] = ACTIONS(2549), - [anon_sym_if] = ACTIONS(2549), - [anon_sym_impl] = ACTIONS(2549), - [anon_sym_let] = ACTIONS(2549), - [anon_sym_loop] = ACTIONS(2549), - [anon_sym_match] = ACTIONS(2549), - [anon_sym_mod] = ACTIONS(2549), - [anon_sym_pub] = ACTIONS(2549), - [anon_sym_return] = ACTIONS(2549), - [anon_sym_static] = ACTIONS(2549), - [anon_sym_struct] = ACTIONS(2549), - [anon_sym_trait] = ACTIONS(2549), - [anon_sym_type] = ACTIONS(2549), - [anon_sym_union] = ACTIONS(2549), - [anon_sym_unsafe] = ACTIONS(2549), - [anon_sym_use] = ACTIONS(2549), - [anon_sym_while] = ACTIONS(2549), - [anon_sym_extern] = ACTIONS(2549), - [anon_sym_yield] = ACTIONS(2549), - [anon_sym_move] = ACTIONS(2549), - [anon_sym_try] = ACTIONS(2549), - [sym_integer_literal] = ACTIONS(2547), - [aux_sym_string_literal_token1] = ACTIONS(2547), - [sym_char_literal] = ACTIONS(2547), - [anon_sym_true] = ACTIONS(2549), - [anon_sym_false] = ACTIONS(2549), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2549), - [sym_super] = ACTIONS(2549), - [sym_crate] = ACTIONS(2549), - [sym_metavariable] = ACTIONS(2547), - [sym__raw_string_literal_start] = ACTIONS(2547), - [sym_float_literal] = ACTIONS(2547), + [666] = { + [sym_line_comment] = STATE(666), + [sym_block_comment] = STATE(666), + [ts_builtin_sym_end] = ACTIONS(2545), + [sym_identifier] = ACTIONS(2547), + [anon_sym_SEMI] = ACTIONS(2545), + [anon_sym_macro_rules_BANG] = ACTIONS(2545), + [anon_sym_LPAREN] = ACTIONS(2545), + [anon_sym_LBRACK] = ACTIONS(2545), + [anon_sym_LBRACE] = ACTIONS(2545), + [anon_sym_RBRACE] = ACTIONS(2545), + [anon_sym_STAR] = ACTIONS(2545), + [anon_sym_u8] = ACTIONS(2547), + [anon_sym_i8] = ACTIONS(2547), + [anon_sym_u16] = ACTIONS(2547), + [anon_sym_i16] = ACTIONS(2547), + [anon_sym_u32] = ACTIONS(2547), + [anon_sym_i32] = ACTIONS(2547), + [anon_sym_u64] = ACTIONS(2547), + [anon_sym_i64] = ACTIONS(2547), + [anon_sym_u128] = ACTIONS(2547), + [anon_sym_i128] = ACTIONS(2547), + [anon_sym_isize] = ACTIONS(2547), + [anon_sym_usize] = ACTIONS(2547), + [anon_sym_f32] = ACTIONS(2547), + [anon_sym_f64] = ACTIONS(2547), + [anon_sym_bool] = ACTIONS(2547), + [anon_sym_str] = ACTIONS(2547), + [anon_sym_char] = ACTIONS(2547), + [anon_sym_DASH] = ACTIONS(2545), + [anon_sym_BANG] = ACTIONS(2545), + [anon_sym_AMP] = ACTIONS(2545), + [anon_sym_PIPE] = ACTIONS(2545), + [anon_sym_LT] = ACTIONS(2545), + [anon_sym_DOT_DOT] = ACTIONS(2545), + [anon_sym_COLON_COLON] = ACTIONS(2545), + [anon_sym_POUND] = ACTIONS(2545), + [anon_sym_SQUOTE] = ACTIONS(2547), + [anon_sym_async] = ACTIONS(2547), + [anon_sym_break] = ACTIONS(2547), + [anon_sym_const] = ACTIONS(2547), + [anon_sym_continue] = ACTIONS(2547), + [anon_sym_default] = ACTIONS(2547), + [anon_sym_enum] = ACTIONS(2547), + [anon_sym_fn] = ACTIONS(2547), + [anon_sym_for] = ACTIONS(2547), + [anon_sym_gen] = ACTIONS(2547), + [anon_sym_if] = ACTIONS(2547), + [anon_sym_impl] = ACTIONS(2547), + [anon_sym_let] = ACTIONS(2547), + [anon_sym_loop] = ACTIONS(2547), + [anon_sym_match] = ACTIONS(2547), + [anon_sym_mod] = ACTIONS(2547), + [anon_sym_pub] = ACTIONS(2547), + [anon_sym_return] = ACTIONS(2547), + [anon_sym_static] = ACTIONS(2547), + [anon_sym_struct] = ACTIONS(2547), + [anon_sym_trait] = ACTIONS(2547), + [anon_sym_type] = ACTIONS(2547), + [anon_sym_union] = ACTIONS(2547), + [anon_sym_unsafe] = ACTIONS(2547), + [anon_sym_use] = ACTIONS(2547), + [anon_sym_while] = ACTIONS(2547), + [anon_sym_extern] = ACTIONS(2547), + [anon_sym_yield] = ACTIONS(2547), + [anon_sym_move] = ACTIONS(2547), + [anon_sym_try] = ACTIONS(2547), + [sym_integer_literal] = ACTIONS(2545), + [aux_sym_string_literal_token1] = ACTIONS(2545), + [sym_char_literal] = ACTIONS(2545), + [anon_sym_true] = ACTIONS(2547), + [anon_sym_false] = ACTIONS(2547), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2547), + [sym_super] = ACTIONS(2547), + [sym_crate] = ACTIONS(2547), + [sym_metavariable] = ACTIONS(2545), + [sym__raw_string_literal_start] = ACTIONS(2545), + [sym_float_literal] = ACTIONS(2545), }, - [674] = { - [sym_empty_statement] = STATE(1072), - [sym_macro_definition] = STATE(1072), - [sym_attribute_item] = STATE(1072), - [sym_inner_attribute_item] = STATE(1072), - [sym_mod_item] = STATE(1072), - [sym_foreign_mod_item] = STATE(1072), - [sym_struct_item] = STATE(1072), - [sym_union_item] = STATE(1072), - [sym_enum_item] = STATE(1072), - [sym_extern_crate_declaration] = STATE(1072), - [sym_const_item] = STATE(1072), - [sym_static_item] = STATE(1072), - [sym_type_item] = STATE(1072), - [sym_function_item] = STATE(1072), - [sym_function_signature_item] = STATE(1072), - [sym_function_modifiers] = STATE(3622), - [sym_impl_item] = STATE(1072), - [sym_trait_item] = STATE(1072), - [sym_associated_type] = STATE(1072), - [sym_let_declaration] = STATE(1072), - [sym_use_declaration] = STATE(1072), - [sym_extern_modifier] = STATE(2165), - [sym_visibility_modifier] = STATE(1954), - [sym_bracketed_type] = STATE(3353), - [sym_generic_type_with_turbofish] = STATE(3379), - [sym_macro_invocation] = STATE(1072), - [sym_scoped_identifier] = STATE(3167), - [sym_line_comment] = STATE(674), - [sym_block_comment] = STATE(674), - [aux_sym_declaration_list_repeat1] = STATE(700), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(2461), - [anon_sym_SEMI] = ACTIONS(2463), - [anon_sym_macro_rules_BANG] = ACTIONS(2465), - [anon_sym_RBRACE] = ACTIONS(2551), - [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_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(2471), - [anon_sym_POUND] = ACTIONS(2473), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(2475), - [anon_sym_default] = ACTIONS(2477), - [anon_sym_enum] = ACTIONS(2479), - [anon_sym_fn] = ACTIONS(2481), - [anon_sym_gen] = ACTIONS(2483), - [anon_sym_impl] = ACTIONS(2485), - [anon_sym_let] = ACTIONS(2487), - [anon_sym_mod] = ACTIONS(2489), - [anon_sym_pub] = ACTIONS(69), - [anon_sym_static] = ACTIONS(2491), - [anon_sym_struct] = ACTIONS(2493), - [anon_sym_trait] = ACTIONS(2495), - [anon_sym_type] = ACTIONS(2497), - [anon_sym_union] = ACTIONS(2499), - [anon_sym_unsafe] = ACTIONS(2501), - [anon_sym_use] = ACTIONS(2503), - [anon_sym_extern] = ACTIONS(2505), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2507), - [sym_super] = ACTIONS(2507), - [sym_crate] = ACTIONS(2509), - [sym_metavariable] = ACTIONS(2511), + [667] = { + [sym_line_comment] = STATE(667), + [sym_block_comment] = STATE(667), + [ts_builtin_sym_end] = ACTIONS(2549), + [sym_identifier] = ACTIONS(2551), + [anon_sym_SEMI] = ACTIONS(2549), + [anon_sym_macro_rules_BANG] = ACTIONS(2549), + [anon_sym_LPAREN] = ACTIONS(2549), + [anon_sym_LBRACK] = ACTIONS(2549), + [anon_sym_LBRACE] = ACTIONS(2549), + [anon_sym_RBRACE] = ACTIONS(2549), + [anon_sym_STAR] = ACTIONS(2549), + [anon_sym_u8] = ACTIONS(2551), + [anon_sym_i8] = ACTIONS(2551), + [anon_sym_u16] = ACTIONS(2551), + [anon_sym_i16] = ACTIONS(2551), + [anon_sym_u32] = ACTIONS(2551), + [anon_sym_i32] = ACTIONS(2551), + [anon_sym_u64] = ACTIONS(2551), + [anon_sym_i64] = ACTIONS(2551), + [anon_sym_u128] = ACTIONS(2551), + [anon_sym_i128] = ACTIONS(2551), + [anon_sym_isize] = ACTIONS(2551), + [anon_sym_usize] = ACTIONS(2551), + [anon_sym_f32] = ACTIONS(2551), + [anon_sym_f64] = ACTIONS(2551), + [anon_sym_bool] = ACTIONS(2551), + [anon_sym_str] = ACTIONS(2551), + [anon_sym_char] = ACTIONS(2551), + [anon_sym_DASH] = ACTIONS(2549), + [anon_sym_BANG] = ACTIONS(2549), + [anon_sym_AMP] = ACTIONS(2549), + [anon_sym_PIPE] = ACTIONS(2549), + [anon_sym_LT] = ACTIONS(2549), + [anon_sym_DOT_DOT] = ACTIONS(2549), + [anon_sym_COLON_COLON] = ACTIONS(2549), + [anon_sym_POUND] = ACTIONS(2549), + [anon_sym_SQUOTE] = ACTIONS(2551), + [anon_sym_async] = ACTIONS(2551), + [anon_sym_break] = ACTIONS(2551), + [anon_sym_const] = ACTIONS(2551), + [anon_sym_continue] = ACTIONS(2551), + [anon_sym_default] = ACTIONS(2551), + [anon_sym_enum] = ACTIONS(2551), + [anon_sym_fn] = ACTIONS(2551), + [anon_sym_for] = ACTIONS(2551), + [anon_sym_gen] = ACTIONS(2551), + [anon_sym_if] = ACTIONS(2551), + [anon_sym_impl] = ACTIONS(2551), + [anon_sym_let] = ACTIONS(2551), + [anon_sym_loop] = ACTIONS(2551), + [anon_sym_match] = ACTIONS(2551), + [anon_sym_mod] = ACTIONS(2551), + [anon_sym_pub] = ACTIONS(2551), + [anon_sym_return] = ACTIONS(2551), + [anon_sym_static] = ACTIONS(2551), + [anon_sym_struct] = ACTIONS(2551), + [anon_sym_trait] = ACTIONS(2551), + [anon_sym_type] = ACTIONS(2551), + [anon_sym_union] = ACTIONS(2551), + [anon_sym_unsafe] = ACTIONS(2551), + [anon_sym_use] = ACTIONS(2551), + [anon_sym_while] = ACTIONS(2551), + [anon_sym_extern] = ACTIONS(2551), + [anon_sym_yield] = ACTIONS(2551), + [anon_sym_move] = ACTIONS(2551), + [anon_sym_try] = ACTIONS(2551), + [sym_integer_literal] = ACTIONS(2549), + [aux_sym_string_literal_token1] = ACTIONS(2549), + [sym_char_literal] = ACTIONS(2549), + [anon_sym_true] = ACTIONS(2551), + [anon_sym_false] = ACTIONS(2551), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2551), + [sym_super] = ACTIONS(2551), + [sym_crate] = ACTIONS(2551), + [sym_metavariable] = ACTIONS(2549), + [sym__raw_string_literal_start] = ACTIONS(2549), + [sym_float_literal] = ACTIONS(2549), }, - [675] = { - [sym_line_comment] = STATE(675), - [sym_block_comment] = STATE(675), + [668] = { + [sym_line_comment] = STATE(668), + [sym_block_comment] = STATE(668), [ts_builtin_sym_end] = ACTIONS(2553), [sym_identifier] = ACTIONS(2555), [anon_sym_SEMI] = ACTIONS(2553), @@ -85509,9 +86558,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2553), [sym_float_literal] = ACTIONS(2553), }, - [676] = { - [sym_line_comment] = STATE(676), - [sym_block_comment] = STATE(676), + [669] = { + [sym_line_comment] = STATE(669), + [sym_block_comment] = STATE(669), [ts_builtin_sym_end] = ACTIONS(2557), [sym_identifier] = ACTIONS(2559), [anon_sym_SEMI] = ACTIONS(2557), @@ -85590,9 +86639,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2557), [sym_float_literal] = ACTIONS(2557), }, - [677] = { - [sym_line_comment] = STATE(677), - [sym_block_comment] = STATE(677), + [670] = { + [sym_line_comment] = STATE(670), + [sym_block_comment] = STATE(670), [ts_builtin_sym_end] = ACTIONS(2561), [sym_identifier] = ACTIONS(2563), [anon_sym_SEMI] = ACTIONS(2561), @@ -85671,9 +86720,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2561), [sym_float_literal] = ACTIONS(2561), }, - [678] = { - [sym_line_comment] = STATE(678), - [sym_block_comment] = STATE(678), + [671] = { + [sym_line_comment] = STATE(671), + [sym_block_comment] = STATE(671), [ts_builtin_sym_end] = ACTIONS(2565), [sym_identifier] = ACTIONS(2567), [anon_sym_SEMI] = ACTIONS(2565), @@ -85752,9 +86801,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2565), [sym_float_literal] = ACTIONS(2565), }, - [679] = { - [sym_line_comment] = STATE(679), - [sym_block_comment] = STATE(679), + [672] = { + [sym_line_comment] = STATE(672), + [sym_block_comment] = STATE(672), [ts_builtin_sym_end] = ACTIONS(2569), [sym_identifier] = ACTIONS(2571), [anon_sym_SEMI] = ACTIONS(2569), @@ -85833,9 +86882,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2569), [sym_float_literal] = ACTIONS(2569), }, - [680] = { - [sym_line_comment] = STATE(680), - [sym_block_comment] = STATE(680), + [673] = { + [sym_line_comment] = STATE(673), + [sym_block_comment] = STATE(673), [ts_builtin_sym_end] = ACTIONS(2573), [sym_identifier] = ACTIONS(2575), [anon_sym_SEMI] = ACTIONS(2573), @@ -85914,9 +86963,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2573), [sym_float_literal] = ACTIONS(2573), }, - [681] = { - [sym_line_comment] = STATE(681), - [sym_block_comment] = STATE(681), + [674] = { + [sym_line_comment] = STATE(674), + [sym_block_comment] = STATE(674), [ts_builtin_sym_end] = ACTIONS(2577), [sym_identifier] = ACTIONS(2579), [anon_sym_SEMI] = ACTIONS(2577), @@ -85995,9 +87044,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2577), [sym_float_literal] = ACTIONS(2577), }, - [682] = { - [sym_line_comment] = STATE(682), - [sym_block_comment] = STATE(682), + [675] = { + [sym_line_comment] = STATE(675), + [sym_block_comment] = STATE(675), [ts_builtin_sym_end] = ACTIONS(2581), [sym_identifier] = ACTIONS(2583), [anon_sym_SEMI] = ACTIONS(2581), @@ -86076,9 +87125,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2581), [sym_float_literal] = ACTIONS(2581), }, - [683] = { - [sym_line_comment] = STATE(683), - [sym_block_comment] = STATE(683), + [676] = { + [sym_line_comment] = STATE(676), + [sym_block_comment] = STATE(676), [ts_builtin_sym_end] = ACTIONS(2585), [sym_identifier] = ACTIONS(2587), [anon_sym_SEMI] = ACTIONS(2585), @@ -86157,9 +87206,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2585), [sym_float_literal] = ACTIONS(2585), }, - [684] = { - [sym_line_comment] = STATE(684), - [sym_block_comment] = STATE(684), + [677] = { + [sym_line_comment] = STATE(677), + [sym_block_comment] = STATE(677), [ts_builtin_sym_end] = ACTIONS(2589), [sym_identifier] = ACTIONS(2591), [anon_sym_SEMI] = ACTIONS(2589), @@ -86238,9 +87287,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2589), [sym_float_literal] = ACTIONS(2589), }, - [685] = { - [sym_line_comment] = STATE(685), - [sym_block_comment] = STATE(685), + [678] = { + [sym_line_comment] = STATE(678), + [sym_block_comment] = STATE(678), [ts_builtin_sym_end] = ACTIONS(2593), [sym_identifier] = ACTIONS(2595), [anon_sym_SEMI] = ACTIONS(2593), @@ -86319,9 +87368,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2593), [sym_float_literal] = ACTIONS(2593), }, - [686] = { - [sym_line_comment] = STATE(686), - [sym_block_comment] = STATE(686), + [679] = { + [sym_line_comment] = STATE(679), + [sym_block_comment] = STATE(679), [ts_builtin_sym_end] = ACTIONS(2597), [sym_identifier] = ACTIONS(2599), [anon_sym_SEMI] = ACTIONS(2597), @@ -86400,9 +87449,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2597), [sym_float_literal] = ACTIONS(2597), }, - [687] = { - [sym_line_comment] = STATE(687), - [sym_block_comment] = STATE(687), + [680] = { + [sym_line_comment] = STATE(680), + [sym_block_comment] = STATE(680), [ts_builtin_sym_end] = ACTIONS(2601), [sym_identifier] = ACTIONS(2603), [anon_sym_SEMI] = ACTIONS(2601), @@ -86481,9 +87530,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2601), [sym_float_literal] = ACTIONS(2601), }, - [688] = { - [sym_line_comment] = STATE(688), - [sym_block_comment] = STATE(688), + [681] = { + [sym_line_comment] = STATE(681), + [sym_block_comment] = STATE(681), [ts_builtin_sym_end] = ACTIONS(2605), [sym_identifier] = ACTIONS(2607), [anon_sym_SEMI] = ACTIONS(2605), @@ -86562,9 +87611,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2605), [sym_float_literal] = ACTIONS(2605), }, - [689] = { - [sym_line_comment] = STATE(689), - [sym_block_comment] = STATE(689), + [682] = { + [sym_line_comment] = STATE(682), + [sym_block_comment] = STATE(682), [ts_builtin_sym_end] = ACTIONS(2609), [sym_identifier] = ACTIONS(2611), [anon_sym_SEMI] = ACTIONS(2609), @@ -86643,9 +87692,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2609), [sym_float_literal] = ACTIONS(2609), }, - [690] = { - [sym_line_comment] = STATE(690), - [sym_block_comment] = STATE(690), + [683] = { + [sym_line_comment] = STATE(683), + [sym_block_comment] = STATE(683), [ts_builtin_sym_end] = ACTIONS(2613), [sym_identifier] = ACTIONS(2615), [anon_sym_SEMI] = ACTIONS(2613), @@ -86724,9 +87773,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2613), [sym_float_literal] = ACTIONS(2613), }, - [691] = { - [sym_line_comment] = STATE(691), - [sym_block_comment] = STATE(691), + [684] = { + [sym_line_comment] = STATE(684), + [sym_block_comment] = STATE(684), [ts_builtin_sym_end] = ACTIONS(2617), [sym_identifier] = ACTIONS(2619), [anon_sym_SEMI] = ACTIONS(2617), @@ -86805,9 +87854,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2617), [sym_float_literal] = ACTIONS(2617), }, - [692] = { - [sym_line_comment] = STATE(692), - [sym_block_comment] = STATE(692), + [685] = { + [sym_line_comment] = STATE(685), + [sym_block_comment] = STATE(685), [ts_builtin_sym_end] = ACTIONS(2621), [sym_identifier] = ACTIONS(2623), [anon_sym_SEMI] = ACTIONS(2621), @@ -86886,9 +87935,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2621), [sym_float_literal] = ACTIONS(2621), }, - [693] = { - [sym_line_comment] = STATE(693), - [sym_block_comment] = STATE(693), + [686] = { + [sym_line_comment] = STATE(686), + [sym_block_comment] = STATE(686), [ts_builtin_sym_end] = ACTIONS(2625), [sym_identifier] = ACTIONS(2627), [anon_sym_SEMI] = ACTIONS(2625), @@ -86967,9 +88016,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2625), [sym_float_literal] = ACTIONS(2625), }, - [694] = { - [sym_line_comment] = STATE(694), - [sym_block_comment] = STATE(694), + [687] = { + [sym_line_comment] = STATE(687), + [sym_block_comment] = STATE(687), [ts_builtin_sym_end] = ACTIONS(2629), [sym_identifier] = ACTIONS(2631), [anon_sym_SEMI] = ACTIONS(2629), @@ -87048,9 +88097,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2629), [sym_float_literal] = ACTIONS(2629), }, - [695] = { - [sym_line_comment] = STATE(695), - [sym_block_comment] = STATE(695), + [688] = { + [sym_line_comment] = STATE(688), + [sym_block_comment] = STATE(688), [ts_builtin_sym_end] = ACTIONS(2633), [sym_identifier] = ACTIONS(2635), [anon_sym_SEMI] = ACTIONS(2633), @@ -87129,9 +88178,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2633), [sym_float_literal] = ACTIONS(2633), }, - [696] = { - [sym_line_comment] = STATE(696), - [sym_block_comment] = STATE(696), + [689] = { + [sym_line_comment] = STATE(689), + [sym_block_comment] = STATE(689), [ts_builtin_sym_end] = ACTIONS(2637), [sym_identifier] = ACTIONS(2639), [anon_sym_SEMI] = ACTIONS(2637), @@ -87210,9 +88259,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2637), [sym_float_literal] = ACTIONS(2637), }, - [697] = { - [sym_line_comment] = STATE(697), - [sym_block_comment] = STATE(697), + [690] = { + [sym_line_comment] = STATE(690), + [sym_block_comment] = STATE(690), [ts_builtin_sym_end] = ACTIONS(2641), [sym_identifier] = ACTIONS(2643), [anon_sym_SEMI] = ACTIONS(2641), @@ -87291,9 +88340,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2641), [sym_float_literal] = ACTIONS(2641), }, - [698] = { - [sym_line_comment] = STATE(698), - [sym_block_comment] = STATE(698), + [691] = { + [sym_line_comment] = STATE(691), + [sym_block_comment] = STATE(691), [ts_builtin_sym_end] = ACTIONS(2645), [sym_identifier] = ACTIONS(2647), [anon_sym_SEMI] = ACTIONS(2645), @@ -87372,171 +88421,1386 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2645), [sym_float_literal] = ACTIONS(2645), }, + [692] = { + [sym_line_comment] = STATE(692), + [sym_block_comment] = STATE(692), + [ts_builtin_sym_end] = ACTIONS(2649), + [sym_identifier] = ACTIONS(2651), + [anon_sym_SEMI] = ACTIONS(2649), + [anon_sym_macro_rules_BANG] = ACTIONS(2649), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_LBRACK] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(2649), + [anon_sym_RBRACE] = ACTIONS(2649), + [anon_sym_STAR] = ACTIONS(2649), + [anon_sym_u8] = ACTIONS(2651), + [anon_sym_i8] = ACTIONS(2651), + [anon_sym_u16] = ACTIONS(2651), + [anon_sym_i16] = ACTIONS(2651), + [anon_sym_u32] = ACTIONS(2651), + [anon_sym_i32] = ACTIONS(2651), + [anon_sym_u64] = ACTIONS(2651), + [anon_sym_i64] = ACTIONS(2651), + [anon_sym_u128] = ACTIONS(2651), + [anon_sym_i128] = ACTIONS(2651), + [anon_sym_isize] = ACTIONS(2651), + [anon_sym_usize] = ACTIONS(2651), + [anon_sym_f32] = ACTIONS(2651), + [anon_sym_f64] = ACTIONS(2651), + [anon_sym_bool] = ACTIONS(2651), + [anon_sym_str] = ACTIONS(2651), + [anon_sym_char] = ACTIONS(2651), + [anon_sym_DASH] = ACTIONS(2649), + [anon_sym_BANG] = ACTIONS(2649), + [anon_sym_AMP] = ACTIONS(2649), + [anon_sym_PIPE] = ACTIONS(2649), + [anon_sym_LT] = ACTIONS(2649), + [anon_sym_DOT_DOT] = ACTIONS(2649), + [anon_sym_COLON_COLON] = ACTIONS(2649), + [anon_sym_POUND] = ACTIONS(2649), + [anon_sym_SQUOTE] = ACTIONS(2651), + [anon_sym_async] = ACTIONS(2651), + [anon_sym_break] = ACTIONS(2651), + [anon_sym_const] = ACTIONS(2651), + [anon_sym_continue] = ACTIONS(2651), + [anon_sym_default] = ACTIONS(2651), + [anon_sym_enum] = ACTIONS(2651), + [anon_sym_fn] = ACTIONS(2651), + [anon_sym_for] = ACTIONS(2651), + [anon_sym_gen] = ACTIONS(2651), + [anon_sym_if] = ACTIONS(2651), + [anon_sym_impl] = ACTIONS(2651), + [anon_sym_let] = ACTIONS(2651), + [anon_sym_loop] = ACTIONS(2651), + [anon_sym_match] = ACTIONS(2651), + [anon_sym_mod] = ACTIONS(2651), + [anon_sym_pub] = ACTIONS(2651), + [anon_sym_return] = ACTIONS(2651), + [anon_sym_static] = ACTIONS(2651), + [anon_sym_struct] = ACTIONS(2651), + [anon_sym_trait] = ACTIONS(2651), + [anon_sym_type] = ACTIONS(2651), + [anon_sym_union] = ACTIONS(2651), + [anon_sym_unsafe] = ACTIONS(2651), + [anon_sym_use] = ACTIONS(2651), + [anon_sym_while] = ACTIONS(2651), + [anon_sym_extern] = ACTIONS(2651), + [anon_sym_yield] = ACTIONS(2651), + [anon_sym_move] = ACTIONS(2651), + [anon_sym_try] = ACTIONS(2651), + [sym_integer_literal] = ACTIONS(2649), + [aux_sym_string_literal_token1] = ACTIONS(2649), + [sym_char_literal] = ACTIONS(2649), + [anon_sym_true] = ACTIONS(2651), + [anon_sym_false] = ACTIONS(2651), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2651), + [sym_super] = ACTIONS(2651), + [sym_crate] = ACTIONS(2651), + [sym_metavariable] = ACTIONS(2649), + [sym__raw_string_literal_start] = ACTIONS(2649), + [sym_float_literal] = ACTIONS(2649), + }, + [693] = { + [sym_line_comment] = STATE(693), + [sym_block_comment] = STATE(693), + [ts_builtin_sym_end] = ACTIONS(2653), + [sym_identifier] = ACTIONS(2655), + [anon_sym_SEMI] = ACTIONS(2653), + [anon_sym_macro_rules_BANG] = ACTIONS(2653), + [anon_sym_LPAREN] = ACTIONS(2653), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_LBRACE] = ACTIONS(2653), + [anon_sym_RBRACE] = ACTIONS(2653), + [anon_sym_STAR] = ACTIONS(2653), + [anon_sym_u8] = ACTIONS(2655), + [anon_sym_i8] = ACTIONS(2655), + [anon_sym_u16] = ACTIONS(2655), + [anon_sym_i16] = ACTIONS(2655), + [anon_sym_u32] = ACTIONS(2655), + [anon_sym_i32] = ACTIONS(2655), + [anon_sym_u64] = ACTIONS(2655), + [anon_sym_i64] = ACTIONS(2655), + [anon_sym_u128] = ACTIONS(2655), + [anon_sym_i128] = ACTIONS(2655), + [anon_sym_isize] = ACTIONS(2655), + [anon_sym_usize] = ACTIONS(2655), + [anon_sym_f32] = ACTIONS(2655), + [anon_sym_f64] = ACTIONS(2655), + [anon_sym_bool] = ACTIONS(2655), + [anon_sym_str] = ACTIONS(2655), + [anon_sym_char] = ACTIONS(2655), + [anon_sym_DASH] = ACTIONS(2653), + [anon_sym_BANG] = ACTIONS(2653), + [anon_sym_AMP] = ACTIONS(2653), + [anon_sym_PIPE] = ACTIONS(2653), + [anon_sym_LT] = ACTIONS(2653), + [anon_sym_DOT_DOT] = ACTIONS(2653), + [anon_sym_COLON_COLON] = ACTIONS(2653), + [anon_sym_POUND] = ACTIONS(2653), + [anon_sym_SQUOTE] = ACTIONS(2655), + [anon_sym_async] = ACTIONS(2655), + [anon_sym_break] = ACTIONS(2655), + [anon_sym_const] = ACTIONS(2655), + [anon_sym_continue] = ACTIONS(2655), + [anon_sym_default] = ACTIONS(2655), + [anon_sym_enum] = ACTIONS(2655), + [anon_sym_fn] = ACTIONS(2655), + [anon_sym_for] = ACTIONS(2655), + [anon_sym_gen] = ACTIONS(2655), + [anon_sym_if] = ACTIONS(2655), + [anon_sym_impl] = ACTIONS(2655), + [anon_sym_let] = ACTIONS(2655), + [anon_sym_loop] = ACTIONS(2655), + [anon_sym_match] = ACTIONS(2655), + [anon_sym_mod] = ACTIONS(2655), + [anon_sym_pub] = ACTIONS(2655), + [anon_sym_return] = ACTIONS(2655), + [anon_sym_static] = ACTIONS(2655), + [anon_sym_struct] = ACTIONS(2655), + [anon_sym_trait] = ACTIONS(2655), + [anon_sym_type] = ACTIONS(2655), + [anon_sym_union] = ACTIONS(2655), + [anon_sym_unsafe] = ACTIONS(2655), + [anon_sym_use] = ACTIONS(2655), + [anon_sym_while] = ACTIONS(2655), + [anon_sym_extern] = ACTIONS(2655), + [anon_sym_yield] = ACTIONS(2655), + [anon_sym_move] = ACTIONS(2655), + [anon_sym_try] = ACTIONS(2655), + [sym_integer_literal] = ACTIONS(2653), + [aux_sym_string_literal_token1] = ACTIONS(2653), + [sym_char_literal] = ACTIONS(2653), + [anon_sym_true] = ACTIONS(2655), + [anon_sym_false] = ACTIONS(2655), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2655), + [sym_super] = ACTIONS(2655), + [sym_crate] = ACTIONS(2655), + [sym_metavariable] = ACTIONS(2653), + [sym__raw_string_literal_start] = ACTIONS(2653), + [sym_float_literal] = ACTIONS(2653), + }, + [694] = { + [sym_line_comment] = STATE(694), + [sym_block_comment] = STATE(694), + [ts_builtin_sym_end] = ACTIONS(2657), + [sym_identifier] = ACTIONS(2659), + [anon_sym_SEMI] = ACTIONS(2657), + [anon_sym_macro_rules_BANG] = ACTIONS(2657), + [anon_sym_LPAREN] = ACTIONS(2657), + [anon_sym_LBRACK] = ACTIONS(2657), + [anon_sym_LBRACE] = ACTIONS(2657), + [anon_sym_RBRACE] = ACTIONS(2657), + [anon_sym_STAR] = ACTIONS(2657), + [anon_sym_u8] = ACTIONS(2659), + [anon_sym_i8] = ACTIONS(2659), + [anon_sym_u16] = ACTIONS(2659), + [anon_sym_i16] = ACTIONS(2659), + [anon_sym_u32] = ACTIONS(2659), + [anon_sym_i32] = ACTIONS(2659), + [anon_sym_u64] = ACTIONS(2659), + [anon_sym_i64] = ACTIONS(2659), + [anon_sym_u128] = ACTIONS(2659), + [anon_sym_i128] = ACTIONS(2659), + [anon_sym_isize] = ACTIONS(2659), + [anon_sym_usize] = ACTIONS(2659), + [anon_sym_f32] = ACTIONS(2659), + [anon_sym_f64] = ACTIONS(2659), + [anon_sym_bool] = ACTIONS(2659), + [anon_sym_str] = ACTIONS(2659), + [anon_sym_char] = ACTIONS(2659), + [anon_sym_DASH] = ACTIONS(2657), + [anon_sym_BANG] = ACTIONS(2657), + [anon_sym_AMP] = ACTIONS(2657), + [anon_sym_PIPE] = ACTIONS(2657), + [anon_sym_LT] = ACTIONS(2657), + [anon_sym_DOT_DOT] = ACTIONS(2657), + [anon_sym_COLON_COLON] = ACTIONS(2657), + [anon_sym_POUND] = ACTIONS(2657), + [anon_sym_SQUOTE] = ACTIONS(2659), + [anon_sym_async] = ACTIONS(2659), + [anon_sym_break] = ACTIONS(2659), + [anon_sym_const] = ACTIONS(2659), + [anon_sym_continue] = ACTIONS(2659), + [anon_sym_default] = ACTIONS(2659), + [anon_sym_enum] = ACTIONS(2659), + [anon_sym_fn] = ACTIONS(2659), + [anon_sym_for] = ACTIONS(2659), + [anon_sym_gen] = ACTIONS(2659), + [anon_sym_if] = ACTIONS(2659), + [anon_sym_impl] = ACTIONS(2659), + [anon_sym_let] = ACTIONS(2659), + [anon_sym_loop] = ACTIONS(2659), + [anon_sym_match] = ACTIONS(2659), + [anon_sym_mod] = ACTIONS(2659), + [anon_sym_pub] = ACTIONS(2659), + [anon_sym_return] = ACTIONS(2659), + [anon_sym_static] = ACTIONS(2659), + [anon_sym_struct] = ACTIONS(2659), + [anon_sym_trait] = ACTIONS(2659), + [anon_sym_type] = ACTIONS(2659), + [anon_sym_union] = ACTIONS(2659), + [anon_sym_unsafe] = ACTIONS(2659), + [anon_sym_use] = ACTIONS(2659), + [anon_sym_while] = ACTIONS(2659), + [anon_sym_extern] = ACTIONS(2659), + [anon_sym_yield] = ACTIONS(2659), + [anon_sym_move] = ACTIONS(2659), + [anon_sym_try] = ACTIONS(2659), + [sym_integer_literal] = ACTIONS(2657), + [aux_sym_string_literal_token1] = ACTIONS(2657), + [sym_char_literal] = ACTIONS(2657), + [anon_sym_true] = ACTIONS(2659), + [anon_sym_false] = ACTIONS(2659), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2659), + [sym_super] = ACTIONS(2659), + [sym_crate] = ACTIONS(2659), + [sym_metavariable] = ACTIONS(2657), + [sym__raw_string_literal_start] = ACTIONS(2657), + [sym_float_literal] = ACTIONS(2657), + }, + [695] = { + [sym_line_comment] = STATE(695), + [sym_block_comment] = STATE(695), + [ts_builtin_sym_end] = ACTIONS(2661), + [sym_identifier] = ACTIONS(2663), + [anon_sym_SEMI] = ACTIONS(2661), + [anon_sym_macro_rules_BANG] = ACTIONS(2661), + [anon_sym_LPAREN] = ACTIONS(2661), + [anon_sym_LBRACK] = ACTIONS(2661), + [anon_sym_LBRACE] = ACTIONS(2661), + [anon_sym_RBRACE] = ACTIONS(2661), + [anon_sym_STAR] = ACTIONS(2661), + [anon_sym_u8] = ACTIONS(2663), + [anon_sym_i8] = ACTIONS(2663), + [anon_sym_u16] = ACTIONS(2663), + [anon_sym_i16] = ACTIONS(2663), + [anon_sym_u32] = ACTIONS(2663), + [anon_sym_i32] = ACTIONS(2663), + [anon_sym_u64] = ACTIONS(2663), + [anon_sym_i64] = ACTIONS(2663), + [anon_sym_u128] = ACTIONS(2663), + [anon_sym_i128] = ACTIONS(2663), + [anon_sym_isize] = ACTIONS(2663), + [anon_sym_usize] = ACTIONS(2663), + [anon_sym_f32] = ACTIONS(2663), + [anon_sym_f64] = ACTIONS(2663), + [anon_sym_bool] = ACTIONS(2663), + [anon_sym_str] = ACTIONS(2663), + [anon_sym_char] = ACTIONS(2663), + [anon_sym_DASH] = ACTIONS(2661), + [anon_sym_BANG] = ACTIONS(2661), + [anon_sym_AMP] = ACTIONS(2661), + [anon_sym_PIPE] = ACTIONS(2661), + [anon_sym_LT] = ACTIONS(2661), + [anon_sym_DOT_DOT] = ACTIONS(2661), + [anon_sym_COLON_COLON] = ACTIONS(2661), + [anon_sym_POUND] = ACTIONS(2661), + [anon_sym_SQUOTE] = ACTIONS(2663), + [anon_sym_async] = ACTIONS(2663), + [anon_sym_break] = ACTIONS(2663), + [anon_sym_const] = ACTIONS(2663), + [anon_sym_continue] = ACTIONS(2663), + [anon_sym_default] = ACTIONS(2663), + [anon_sym_enum] = ACTIONS(2663), + [anon_sym_fn] = ACTIONS(2663), + [anon_sym_for] = ACTIONS(2663), + [anon_sym_gen] = ACTIONS(2663), + [anon_sym_if] = ACTIONS(2663), + [anon_sym_impl] = ACTIONS(2663), + [anon_sym_let] = ACTIONS(2663), + [anon_sym_loop] = ACTIONS(2663), + [anon_sym_match] = ACTIONS(2663), + [anon_sym_mod] = ACTIONS(2663), + [anon_sym_pub] = ACTIONS(2663), + [anon_sym_return] = ACTIONS(2663), + [anon_sym_static] = ACTIONS(2663), + [anon_sym_struct] = ACTIONS(2663), + [anon_sym_trait] = ACTIONS(2663), + [anon_sym_type] = ACTIONS(2663), + [anon_sym_union] = ACTIONS(2663), + [anon_sym_unsafe] = ACTIONS(2663), + [anon_sym_use] = ACTIONS(2663), + [anon_sym_while] = ACTIONS(2663), + [anon_sym_extern] = ACTIONS(2663), + [anon_sym_yield] = ACTIONS(2663), + [anon_sym_move] = ACTIONS(2663), + [anon_sym_try] = ACTIONS(2663), + [sym_integer_literal] = ACTIONS(2661), + [aux_sym_string_literal_token1] = ACTIONS(2661), + [sym_char_literal] = ACTIONS(2661), + [anon_sym_true] = ACTIONS(2663), + [anon_sym_false] = ACTIONS(2663), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2663), + [sym_super] = ACTIONS(2663), + [sym_crate] = ACTIONS(2663), + [sym_metavariable] = ACTIONS(2661), + [sym__raw_string_literal_start] = ACTIONS(2661), + [sym_float_literal] = ACTIONS(2661), + }, + [696] = { + [sym_line_comment] = STATE(696), + [sym_block_comment] = STATE(696), + [ts_builtin_sym_end] = ACTIONS(2665), + [sym_identifier] = ACTIONS(2667), + [anon_sym_SEMI] = ACTIONS(2665), + [anon_sym_macro_rules_BANG] = ACTIONS(2665), + [anon_sym_LPAREN] = ACTIONS(2665), + [anon_sym_LBRACK] = ACTIONS(2665), + [anon_sym_LBRACE] = ACTIONS(2665), + [anon_sym_RBRACE] = ACTIONS(2665), + [anon_sym_STAR] = ACTIONS(2665), + [anon_sym_u8] = ACTIONS(2667), + [anon_sym_i8] = ACTIONS(2667), + [anon_sym_u16] = ACTIONS(2667), + [anon_sym_i16] = ACTIONS(2667), + [anon_sym_u32] = ACTIONS(2667), + [anon_sym_i32] = ACTIONS(2667), + [anon_sym_u64] = ACTIONS(2667), + [anon_sym_i64] = ACTIONS(2667), + [anon_sym_u128] = ACTIONS(2667), + [anon_sym_i128] = ACTIONS(2667), + [anon_sym_isize] = ACTIONS(2667), + [anon_sym_usize] = ACTIONS(2667), + [anon_sym_f32] = ACTIONS(2667), + [anon_sym_f64] = ACTIONS(2667), + [anon_sym_bool] = ACTIONS(2667), + [anon_sym_str] = ACTIONS(2667), + [anon_sym_char] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2665), + [anon_sym_BANG] = ACTIONS(2665), + [anon_sym_AMP] = ACTIONS(2665), + [anon_sym_PIPE] = ACTIONS(2665), + [anon_sym_LT] = ACTIONS(2665), + [anon_sym_DOT_DOT] = ACTIONS(2665), + [anon_sym_COLON_COLON] = ACTIONS(2665), + [anon_sym_POUND] = ACTIONS(2665), + [anon_sym_SQUOTE] = ACTIONS(2667), + [anon_sym_async] = ACTIONS(2667), + [anon_sym_break] = ACTIONS(2667), + [anon_sym_const] = ACTIONS(2667), + [anon_sym_continue] = ACTIONS(2667), + [anon_sym_default] = ACTIONS(2667), + [anon_sym_enum] = ACTIONS(2667), + [anon_sym_fn] = ACTIONS(2667), + [anon_sym_for] = ACTIONS(2667), + [anon_sym_gen] = ACTIONS(2667), + [anon_sym_if] = ACTIONS(2667), + [anon_sym_impl] = ACTIONS(2667), + [anon_sym_let] = ACTIONS(2667), + [anon_sym_loop] = ACTIONS(2667), + [anon_sym_match] = ACTIONS(2667), + [anon_sym_mod] = ACTIONS(2667), + [anon_sym_pub] = ACTIONS(2667), + [anon_sym_return] = ACTIONS(2667), + [anon_sym_static] = ACTIONS(2667), + [anon_sym_struct] = ACTIONS(2667), + [anon_sym_trait] = ACTIONS(2667), + [anon_sym_type] = ACTIONS(2667), + [anon_sym_union] = ACTIONS(2667), + [anon_sym_unsafe] = ACTIONS(2667), + [anon_sym_use] = ACTIONS(2667), + [anon_sym_while] = ACTIONS(2667), + [anon_sym_extern] = ACTIONS(2667), + [anon_sym_yield] = ACTIONS(2667), + [anon_sym_move] = ACTIONS(2667), + [anon_sym_try] = ACTIONS(2667), + [sym_integer_literal] = ACTIONS(2665), + [aux_sym_string_literal_token1] = ACTIONS(2665), + [sym_char_literal] = ACTIONS(2665), + [anon_sym_true] = ACTIONS(2667), + [anon_sym_false] = ACTIONS(2667), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2667), + [sym_super] = ACTIONS(2667), + [sym_crate] = ACTIONS(2667), + [sym_metavariable] = ACTIONS(2665), + [sym__raw_string_literal_start] = ACTIONS(2665), + [sym_float_literal] = ACTIONS(2665), + }, + [697] = { + [sym_line_comment] = STATE(697), + [sym_block_comment] = STATE(697), + [ts_builtin_sym_end] = ACTIONS(2669), + [sym_identifier] = ACTIONS(2671), + [anon_sym_SEMI] = ACTIONS(2669), + [anon_sym_macro_rules_BANG] = ACTIONS(2669), + [anon_sym_LPAREN] = ACTIONS(2669), + [anon_sym_LBRACK] = ACTIONS(2669), + [anon_sym_LBRACE] = ACTIONS(2669), + [anon_sym_RBRACE] = ACTIONS(2669), + [anon_sym_STAR] = ACTIONS(2669), + [anon_sym_u8] = ACTIONS(2671), + [anon_sym_i8] = ACTIONS(2671), + [anon_sym_u16] = ACTIONS(2671), + [anon_sym_i16] = ACTIONS(2671), + [anon_sym_u32] = ACTIONS(2671), + [anon_sym_i32] = ACTIONS(2671), + [anon_sym_u64] = ACTIONS(2671), + [anon_sym_i64] = ACTIONS(2671), + [anon_sym_u128] = ACTIONS(2671), + [anon_sym_i128] = ACTIONS(2671), + [anon_sym_isize] = ACTIONS(2671), + [anon_sym_usize] = ACTIONS(2671), + [anon_sym_f32] = ACTIONS(2671), + [anon_sym_f64] = ACTIONS(2671), + [anon_sym_bool] = ACTIONS(2671), + [anon_sym_str] = ACTIONS(2671), + [anon_sym_char] = ACTIONS(2671), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_BANG] = ACTIONS(2669), + [anon_sym_AMP] = ACTIONS(2669), + [anon_sym_PIPE] = ACTIONS(2669), + [anon_sym_LT] = ACTIONS(2669), + [anon_sym_DOT_DOT] = ACTIONS(2669), + [anon_sym_COLON_COLON] = ACTIONS(2669), + [anon_sym_POUND] = ACTIONS(2669), + [anon_sym_SQUOTE] = ACTIONS(2671), + [anon_sym_async] = ACTIONS(2671), + [anon_sym_break] = ACTIONS(2671), + [anon_sym_const] = ACTIONS(2671), + [anon_sym_continue] = ACTIONS(2671), + [anon_sym_default] = ACTIONS(2671), + [anon_sym_enum] = ACTIONS(2671), + [anon_sym_fn] = ACTIONS(2671), + [anon_sym_for] = ACTIONS(2671), + [anon_sym_gen] = ACTIONS(2671), + [anon_sym_if] = ACTIONS(2671), + [anon_sym_impl] = ACTIONS(2671), + [anon_sym_let] = ACTIONS(2671), + [anon_sym_loop] = ACTIONS(2671), + [anon_sym_match] = ACTIONS(2671), + [anon_sym_mod] = ACTIONS(2671), + [anon_sym_pub] = ACTIONS(2671), + [anon_sym_return] = ACTIONS(2671), + [anon_sym_static] = ACTIONS(2671), + [anon_sym_struct] = ACTIONS(2671), + [anon_sym_trait] = ACTIONS(2671), + [anon_sym_type] = ACTIONS(2671), + [anon_sym_union] = ACTIONS(2671), + [anon_sym_unsafe] = ACTIONS(2671), + [anon_sym_use] = ACTIONS(2671), + [anon_sym_while] = ACTIONS(2671), + [anon_sym_extern] = ACTIONS(2671), + [anon_sym_yield] = ACTIONS(2671), + [anon_sym_move] = ACTIONS(2671), + [anon_sym_try] = ACTIONS(2671), + [sym_integer_literal] = ACTIONS(2669), + [aux_sym_string_literal_token1] = ACTIONS(2669), + [sym_char_literal] = ACTIONS(2669), + [anon_sym_true] = ACTIONS(2671), + [anon_sym_false] = ACTIONS(2671), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2671), + [sym_super] = ACTIONS(2671), + [sym_crate] = ACTIONS(2671), + [sym_metavariable] = ACTIONS(2669), + [sym__raw_string_literal_start] = ACTIONS(2669), + [sym_float_literal] = ACTIONS(2669), + }, + [698] = { + [sym_line_comment] = STATE(698), + [sym_block_comment] = STATE(698), + [ts_builtin_sym_end] = ACTIONS(2673), + [sym_identifier] = ACTIONS(2675), + [anon_sym_SEMI] = ACTIONS(2673), + [anon_sym_macro_rules_BANG] = ACTIONS(2673), + [anon_sym_LPAREN] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(2673), + [anon_sym_LBRACE] = ACTIONS(2673), + [anon_sym_RBRACE] = ACTIONS(2673), + [anon_sym_STAR] = ACTIONS(2673), + [anon_sym_u8] = ACTIONS(2675), + [anon_sym_i8] = ACTIONS(2675), + [anon_sym_u16] = ACTIONS(2675), + [anon_sym_i16] = ACTIONS(2675), + [anon_sym_u32] = ACTIONS(2675), + [anon_sym_i32] = ACTIONS(2675), + [anon_sym_u64] = ACTIONS(2675), + [anon_sym_i64] = ACTIONS(2675), + [anon_sym_u128] = ACTIONS(2675), + [anon_sym_i128] = ACTIONS(2675), + [anon_sym_isize] = ACTIONS(2675), + [anon_sym_usize] = ACTIONS(2675), + [anon_sym_f32] = ACTIONS(2675), + [anon_sym_f64] = ACTIONS(2675), + [anon_sym_bool] = ACTIONS(2675), + [anon_sym_str] = ACTIONS(2675), + [anon_sym_char] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2673), + [anon_sym_BANG] = ACTIONS(2673), + [anon_sym_AMP] = ACTIONS(2673), + [anon_sym_PIPE] = ACTIONS(2673), + [anon_sym_LT] = ACTIONS(2673), + [anon_sym_DOT_DOT] = ACTIONS(2673), + [anon_sym_COLON_COLON] = ACTIONS(2673), + [anon_sym_POUND] = ACTIONS(2673), + [anon_sym_SQUOTE] = ACTIONS(2675), + [anon_sym_async] = ACTIONS(2675), + [anon_sym_break] = ACTIONS(2675), + [anon_sym_const] = ACTIONS(2675), + [anon_sym_continue] = ACTIONS(2675), + [anon_sym_default] = ACTIONS(2675), + [anon_sym_enum] = ACTIONS(2675), + [anon_sym_fn] = ACTIONS(2675), + [anon_sym_for] = ACTIONS(2675), + [anon_sym_gen] = ACTIONS(2675), + [anon_sym_if] = ACTIONS(2675), + [anon_sym_impl] = ACTIONS(2675), + [anon_sym_let] = ACTIONS(2675), + [anon_sym_loop] = ACTIONS(2675), + [anon_sym_match] = ACTIONS(2675), + [anon_sym_mod] = ACTIONS(2675), + [anon_sym_pub] = ACTIONS(2675), + [anon_sym_return] = ACTIONS(2675), + [anon_sym_static] = ACTIONS(2675), + [anon_sym_struct] = ACTIONS(2675), + [anon_sym_trait] = ACTIONS(2675), + [anon_sym_type] = ACTIONS(2675), + [anon_sym_union] = ACTIONS(2675), + [anon_sym_unsafe] = ACTIONS(2675), + [anon_sym_use] = ACTIONS(2675), + [anon_sym_while] = ACTIONS(2675), + [anon_sym_extern] = ACTIONS(2675), + [anon_sym_yield] = ACTIONS(2675), + [anon_sym_move] = ACTIONS(2675), + [anon_sym_try] = ACTIONS(2675), + [sym_integer_literal] = ACTIONS(2673), + [aux_sym_string_literal_token1] = ACTIONS(2673), + [sym_char_literal] = ACTIONS(2673), + [anon_sym_true] = ACTIONS(2675), + [anon_sym_false] = ACTIONS(2675), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2675), + [sym_super] = ACTIONS(2675), + [sym_crate] = ACTIONS(2675), + [sym_metavariable] = ACTIONS(2673), + [sym__raw_string_literal_start] = ACTIONS(2673), + [sym_float_literal] = ACTIONS(2673), + }, [699] = { - [sym_attribute_item] = STATE(1468), - [sym_inner_attribute_item] = STATE(1468), - [sym_bracketed_type] = STATE(3553), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3287), - [sym_macro_invocation] = STATE(2757), - [sym_scoped_identifier] = STATE(2151), - [sym_scoped_type_identifier] = STATE(2982), - [sym_match_arm] = STATE(1469), - [sym_match_pattern] = STATE(3616), - [sym_const_block] = STATE(2757), - [sym__pattern] = STATE(2907), - [sym_tuple_pattern] = STATE(2757), - [sym_slice_pattern] = STATE(2757), - [sym_tuple_struct_pattern] = STATE(2757), - [sym_struct_pattern] = STATE(2757), - [sym_remaining_field_pattern] = STATE(2757), - [sym_mut_pattern] = STATE(2757), - [sym_range_pattern] = STATE(2757), - [sym_ref_pattern] = STATE(2757), - [sym_captured_pattern] = STATE(2757), - [sym_reference_pattern] = STATE(2757), - [sym_or_pattern] = STATE(2757), - [sym__literal_pattern] = STATE(2330), - [sym_negative_literal] = STATE(2364), - [sym_string_literal] = STATE(2364), - [sym_raw_string_literal] = STATE(2364), - [sym_boolean_literal] = STATE(2364), [sym_line_comment] = STATE(699), [sym_block_comment] = STATE(699), - [aux_sym_match_block_repeat1] = STATE(699), - [aux_sym_match_arm_repeat1] = STATE(769), - [sym_identifier] = ACTIONS(2649), - [anon_sym_LPAREN] = ACTIONS(2652), - [anon_sym_LBRACK] = ACTIONS(2655), - [anon_sym_u8] = ACTIONS(2658), - [anon_sym_i8] = ACTIONS(2658), - [anon_sym_u16] = ACTIONS(2658), - [anon_sym_i16] = ACTIONS(2658), - [anon_sym_u32] = ACTIONS(2658), - [anon_sym_i32] = ACTIONS(2658), - [anon_sym_u64] = ACTIONS(2658), - [anon_sym_i64] = ACTIONS(2658), - [anon_sym_u128] = ACTIONS(2658), - [anon_sym_i128] = ACTIONS(2658), - [anon_sym_isize] = ACTIONS(2658), - [anon_sym_usize] = ACTIONS(2658), - [anon_sym_f32] = ACTIONS(2658), - [anon_sym_f64] = ACTIONS(2658), - [anon_sym_bool] = ACTIONS(2658), - [anon_sym_str] = ACTIONS(2658), - [anon_sym_char] = ACTIONS(2658), - [anon_sym_DASH] = ACTIONS(2661), - [anon_sym_AMP] = ACTIONS(2664), - [anon_sym_PIPE] = ACTIONS(2667), - [anon_sym_LT] = ACTIONS(2670), - [anon_sym__] = ACTIONS(2673), - [anon_sym_DOT_DOT] = ACTIONS(2676), - [anon_sym_COLON_COLON] = ACTIONS(2679), - [anon_sym_POUND] = ACTIONS(2682), - [anon_sym_const] = ACTIONS(2685), - [anon_sym_default] = ACTIONS(2688), - [anon_sym_gen] = ACTIONS(2688), - [anon_sym_union] = ACTIONS(2688), - [anon_sym_ref] = ACTIONS(2691), - [sym_mutable_specifier] = ACTIONS(2694), + [ts_builtin_sym_end] = ACTIONS(2677), + [sym_identifier] = ACTIONS(2679), + [anon_sym_SEMI] = ACTIONS(2677), + [anon_sym_macro_rules_BANG] = ACTIONS(2677), + [anon_sym_LPAREN] = ACTIONS(2677), + [anon_sym_LBRACK] = ACTIONS(2677), + [anon_sym_LBRACE] = ACTIONS(2677), + [anon_sym_RBRACE] = ACTIONS(2677), + [anon_sym_STAR] = ACTIONS(2677), + [anon_sym_u8] = ACTIONS(2679), + [anon_sym_i8] = ACTIONS(2679), + [anon_sym_u16] = ACTIONS(2679), + [anon_sym_i16] = ACTIONS(2679), + [anon_sym_u32] = ACTIONS(2679), + [anon_sym_i32] = ACTIONS(2679), + [anon_sym_u64] = ACTIONS(2679), + [anon_sym_i64] = ACTIONS(2679), + [anon_sym_u128] = ACTIONS(2679), + [anon_sym_i128] = ACTIONS(2679), + [anon_sym_isize] = ACTIONS(2679), + [anon_sym_usize] = ACTIONS(2679), + [anon_sym_f32] = ACTIONS(2679), + [anon_sym_f64] = ACTIONS(2679), + [anon_sym_bool] = ACTIONS(2679), + [anon_sym_str] = ACTIONS(2679), + [anon_sym_char] = ACTIONS(2679), + [anon_sym_DASH] = ACTIONS(2677), + [anon_sym_BANG] = ACTIONS(2677), + [anon_sym_AMP] = ACTIONS(2677), + [anon_sym_PIPE] = ACTIONS(2677), + [anon_sym_LT] = ACTIONS(2677), + [anon_sym_DOT_DOT] = ACTIONS(2677), + [anon_sym_COLON_COLON] = ACTIONS(2677), + [anon_sym_POUND] = ACTIONS(2677), + [anon_sym_SQUOTE] = ACTIONS(2679), + [anon_sym_async] = ACTIONS(2679), + [anon_sym_break] = ACTIONS(2679), + [anon_sym_const] = ACTIONS(2679), + [anon_sym_continue] = ACTIONS(2679), + [anon_sym_default] = ACTIONS(2679), + [anon_sym_enum] = ACTIONS(2679), + [anon_sym_fn] = ACTIONS(2679), + [anon_sym_for] = ACTIONS(2679), + [anon_sym_gen] = ACTIONS(2679), + [anon_sym_if] = ACTIONS(2679), + [anon_sym_impl] = ACTIONS(2679), + [anon_sym_let] = ACTIONS(2679), + [anon_sym_loop] = ACTIONS(2679), + [anon_sym_match] = ACTIONS(2679), + [anon_sym_mod] = ACTIONS(2679), + [anon_sym_pub] = ACTIONS(2679), + [anon_sym_return] = ACTIONS(2679), + [anon_sym_static] = ACTIONS(2679), + [anon_sym_struct] = ACTIONS(2679), + [anon_sym_trait] = ACTIONS(2679), + [anon_sym_type] = ACTIONS(2679), + [anon_sym_union] = ACTIONS(2679), + [anon_sym_unsafe] = ACTIONS(2679), + [anon_sym_use] = ACTIONS(2679), + [anon_sym_while] = ACTIONS(2679), + [anon_sym_extern] = ACTIONS(2679), + [anon_sym_yield] = ACTIONS(2679), + [anon_sym_move] = ACTIONS(2679), + [anon_sym_try] = ACTIONS(2679), + [sym_integer_literal] = ACTIONS(2677), + [aux_sym_string_literal_token1] = ACTIONS(2677), + [sym_char_literal] = ACTIONS(2677), + [anon_sym_true] = ACTIONS(2679), + [anon_sym_false] = ACTIONS(2679), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2679), + [sym_super] = ACTIONS(2679), + [sym_crate] = ACTIONS(2679), + [sym_metavariable] = ACTIONS(2677), + [sym__raw_string_literal_start] = ACTIONS(2677), + [sym_float_literal] = ACTIONS(2677), + }, + [700] = { + [sym_line_comment] = STATE(700), + [sym_block_comment] = STATE(700), + [ts_builtin_sym_end] = ACTIONS(2681), + [sym_identifier] = ACTIONS(2683), + [anon_sym_SEMI] = ACTIONS(2681), + [anon_sym_macro_rules_BANG] = ACTIONS(2681), + [anon_sym_LPAREN] = ACTIONS(2681), + [anon_sym_LBRACK] = ACTIONS(2681), + [anon_sym_LBRACE] = ACTIONS(2681), + [anon_sym_RBRACE] = ACTIONS(2681), + [anon_sym_STAR] = ACTIONS(2681), + [anon_sym_u8] = ACTIONS(2683), + [anon_sym_i8] = ACTIONS(2683), + [anon_sym_u16] = ACTIONS(2683), + [anon_sym_i16] = ACTIONS(2683), + [anon_sym_u32] = ACTIONS(2683), + [anon_sym_i32] = ACTIONS(2683), + [anon_sym_u64] = ACTIONS(2683), + [anon_sym_i64] = ACTIONS(2683), + [anon_sym_u128] = ACTIONS(2683), + [anon_sym_i128] = ACTIONS(2683), + [anon_sym_isize] = ACTIONS(2683), + [anon_sym_usize] = ACTIONS(2683), + [anon_sym_f32] = ACTIONS(2683), + [anon_sym_f64] = ACTIONS(2683), + [anon_sym_bool] = ACTIONS(2683), + [anon_sym_str] = ACTIONS(2683), + [anon_sym_char] = ACTIONS(2683), + [anon_sym_DASH] = ACTIONS(2681), + [anon_sym_BANG] = ACTIONS(2681), + [anon_sym_AMP] = ACTIONS(2681), + [anon_sym_PIPE] = ACTIONS(2681), + [anon_sym_LT] = ACTIONS(2681), + [anon_sym_DOT_DOT] = ACTIONS(2681), + [anon_sym_COLON_COLON] = ACTIONS(2681), + [anon_sym_POUND] = ACTIONS(2681), + [anon_sym_SQUOTE] = ACTIONS(2683), + [anon_sym_async] = ACTIONS(2683), + [anon_sym_break] = ACTIONS(2683), + [anon_sym_const] = ACTIONS(2683), + [anon_sym_continue] = ACTIONS(2683), + [anon_sym_default] = ACTIONS(2683), + [anon_sym_enum] = ACTIONS(2683), + [anon_sym_fn] = ACTIONS(2683), + [anon_sym_for] = ACTIONS(2683), + [anon_sym_gen] = ACTIONS(2683), + [anon_sym_if] = ACTIONS(2683), + [anon_sym_impl] = ACTIONS(2683), + [anon_sym_let] = ACTIONS(2683), + [anon_sym_loop] = ACTIONS(2683), + [anon_sym_match] = ACTIONS(2683), + [anon_sym_mod] = ACTIONS(2683), + [anon_sym_pub] = ACTIONS(2683), + [anon_sym_return] = ACTIONS(2683), + [anon_sym_static] = ACTIONS(2683), + [anon_sym_struct] = ACTIONS(2683), + [anon_sym_trait] = ACTIONS(2683), + [anon_sym_type] = ACTIONS(2683), + [anon_sym_union] = ACTIONS(2683), + [anon_sym_unsafe] = ACTIONS(2683), + [anon_sym_use] = ACTIONS(2683), + [anon_sym_while] = ACTIONS(2683), + [anon_sym_extern] = ACTIONS(2683), + [anon_sym_yield] = ACTIONS(2683), + [anon_sym_move] = ACTIONS(2683), + [anon_sym_try] = ACTIONS(2683), + [sym_integer_literal] = ACTIONS(2681), + [aux_sym_string_literal_token1] = ACTIONS(2681), + [sym_char_literal] = ACTIONS(2681), + [anon_sym_true] = ACTIONS(2683), + [anon_sym_false] = ACTIONS(2683), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2683), + [sym_super] = ACTIONS(2683), + [sym_crate] = ACTIONS(2683), + [sym_metavariable] = ACTIONS(2681), + [sym__raw_string_literal_start] = ACTIONS(2681), + [sym_float_literal] = ACTIONS(2681), + }, + [701] = { + [sym_line_comment] = STATE(701), + [sym_block_comment] = STATE(701), + [ts_builtin_sym_end] = ACTIONS(2685), + [sym_identifier] = ACTIONS(2687), + [anon_sym_SEMI] = ACTIONS(2685), + [anon_sym_macro_rules_BANG] = ACTIONS(2685), + [anon_sym_LPAREN] = ACTIONS(2685), + [anon_sym_LBRACK] = ACTIONS(2685), + [anon_sym_LBRACE] = ACTIONS(2685), + [anon_sym_RBRACE] = ACTIONS(2685), + [anon_sym_STAR] = ACTIONS(2685), + [anon_sym_u8] = ACTIONS(2687), + [anon_sym_i8] = ACTIONS(2687), + [anon_sym_u16] = ACTIONS(2687), + [anon_sym_i16] = ACTIONS(2687), + [anon_sym_u32] = ACTIONS(2687), + [anon_sym_i32] = ACTIONS(2687), + [anon_sym_u64] = ACTIONS(2687), + [anon_sym_i64] = ACTIONS(2687), + [anon_sym_u128] = ACTIONS(2687), + [anon_sym_i128] = ACTIONS(2687), + [anon_sym_isize] = ACTIONS(2687), + [anon_sym_usize] = ACTIONS(2687), + [anon_sym_f32] = ACTIONS(2687), + [anon_sym_f64] = ACTIONS(2687), + [anon_sym_bool] = ACTIONS(2687), + [anon_sym_str] = ACTIONS(2687), + [anon_sym_char] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(2685), + [anon_sym_BANG] = ACTIONS(2685), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_PIPE] = ACTIONS(2685), + [anon_sym_LT] = ACTIONS(2685), + [anon_sym_DOT_DOT] = ACTIONS(2685), + [anon_sym_COLON_COLON] = ACTIONS(2685), + [anon_sym_POUND] = ACTIONS(2685), + [anon_sym_SQUOTE] = ACTIONS(2687), + [anon_sym_async] = ACTIONS(2687), + [anon_sym_break] = ACTIONS(2687), + [anon_sym_const] = ACTIONS(2687), + [anon_sym_continue] = ACTIONS(2687), + [anon_sym_default] = ACTIONS(2687), + [anon_sym_enum] = ACTIONS(2687), + [anon_sym_fn] = ACTIONS(2687), + [anon_sym_for] = ACTIONS(2687), + [anon_sym_gen] = ACTIONS(2687), + [anon_sym_if] = ACTIONS(2687), + [anon_sym_impl] = ACTIONS(2687), + [anon_sym_let] = ACTIONS(2687), + [anon_sym_loop] = ACTIONS(2687), + [anon_sym_match] = ACTIONS(2687), + [anon_sym_mod] = ACTIONS(2687), + [anon_sym_pub] = ACTIONS(2687), + [anon_sym_return] = ACTIONS(2687), + [anon_sym_static] = ACTIONS(2687), + [anon_sym_struct] = ACTIONS(2687), + [anon_sym_trait] = ACTIONS(2687), + [anon_sym_type] = ACTIONS(2687), + [anon_sym_union] = ACTIONS(2687), + [anon_sym_unsafe] = ACTIONS(2687), + [anon_sym_use] = ACTIONS(2687), + [anon_sym_while] = ACTIONS(2687), + [anon_sym_extern] = ACTIONS(2687), + [anon_sym_yield] = ACTIONS(2687), + [anon_sym_move] = ACTIONS(2687), + [anon_sym_try] = ACTIONS(2687), + [sym_integer_literal] = ACTIONS(2685), + [aux_sym_string_literal_token1] = ACTIONS(2685), + [sym_char_literal] = ACTIONS(2685), + [anon_sym_true] = ACTIONS(2687), + [anon_sym_false] = ACTIONS(2687), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2687), + [sym_super] = ACTIONS(2687), + [sym_crate] = ACTIONS(2687), + [sym_metavariable] = ACTIONS(2685), + [sym__raw_string_literal_start] = ACTIONS(2685), + [sym_float_literal] = ACTIONS(2685), + }, + [702] = { + [sym_line_comment] = STATE(702), + [sym_block_comment] = STATE(702), + [ts_builtin_sym_end] = ACTIONS(2689), + [sym_identifier] = ACTIONS(2691), + [anon_sym_SEMI] = ACTIONS(2689), + [anon_sym_macro_rules_BANG] = ACTIONS(2689), + [anon_sym_LPAREN] = ACTIONS(2689), + [anon_sym_LBRACK] = ACTIONS(2689), + [anon_sym_LBRACE] = ACTIONS(2689), + [anon_sym_RBRACE] = ACTIONS(2689), + [anon_sym_STAR] = ACTIONS(2689), + [anon_sym_u8] = ACTIONS(2691), + [anon_sym_i8] = ACTIONS(2691), + [anon_sym_u16] = ACTIONS(2691), + [anon_sym_i16] = ACTIONS(2691), + [anon_sym_u32] = ACTIONS(2691), + [anon_sym_i32] = ACTIONS(2691), + [anon_sym_u64] = ACTIONS(2691), + [anon_sym_i64] = ACTIONS(2691), + [anon_sym_u128] = ACTIONS(2691), + [anon_sym_i128] = ACTIONS(2691), + [anon_sym_isize] = ACTIONS(2691), + [anon_sym_usize] = ACTIONS(2691), + [anon_sym_f32] = ACTIONS(2691), + [anon_sym_f64] = ACTIONS(2691), + [anon_sym_bool] = ACTIONS(2691), + [anon_sym_str] = ACTIONS(2691), + [anon_sym_char] = ACTIONS(2691), + [anon_sym_DASH] = ACTIONS(2689), + [anon_sym_BANG] = ACTIONS(2689), + [anon_sym_AMP] = ACTIONS(2689), + [anon_sym_PIPE] = ACTIONS(2689), + [anon_sym_LT] = ACTIONS(2689), + [anon_sym_DOT_DOT] = ACTIONS(2689), + [anon_sym_COLON_COLON] = ACTIONS(2689), + [anon_sym_POUND] = ACTIONS(2689), + [anon_sym_SQUOTE] = ACTIONS(2691), + [anon_sym_async] = ACTIONS(2691), + [anon_sym_break] = ACTIONS(2691), + [anon_sym_const] = ACTIONS(2691), + [anon_sym_continue] = ACTIONS(2691), + [anon_sym_default] = ACTIONS(2691), + [anon_sym_enum] = ACTIONS(2691), + [anon_sym_fn] = ACTIONS(2691), + [anon_sym_for] = ACTIONS(2691), + [anon_sym_gen] = ACTIONS(2691), + [anon_sym_if] = ACTIONS(2691), + [anon_sym_impl] = ACTIONS(2691), + [anon_sym_let] = ACTIONS(2691), + [anon_sym_loop] = ACTIONS(2691), + [anon_sym_match] = ACTIONS(2691), + [anon_sym_mod] = ACTIONS(2691), + [anon_sym_pub] = ACTIONS(2691), + [anon_sym_return] = ACTIONS(2691), + [anon_sym_static] = ACTIONS(2691), + [anon_sym_struct] = ACTIONS(2691), + [anon_sym_trait] = ACTIONS(2691), + [anon_sym_type] = ACTIONS(2691), + [anon_sym_union] = ACTIONS(2691), + [anon_sym_unsafe] = ACTIONS(2691), + [anon_sym_use] = ACTIONS(2691), + [anon_sym_while] = ACTIONS(2691), + [anon_sym_extern] = ACTIONS(2691), + [anon_sym_yield] = ACTIONS(2691), + [anon_sym_move] = ACTIONS(2691), + [anon_sym_try] = ACTIONS(2691), + [sym_integer_literal] = ACTIONS(2689), + [aux_sym_string_literal_token1] = ACTIONS(2689), + [sym_char_literal] = ACTIONS(2689), + [anon_sym_true] = ACTIONS(2691), + [anon_sym_false] = ACTIONS(2691), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2691), + [sym_super] = ACTIONS(2691), + [sym_crate] = ACTIONS(2691), + [sym_metavariable] = ACTIONS(2689), + [sym__raw_string_literal_start] = ACTIONS(2689), + [sym_float_literal] = ACTIONS(2689), + }, + [703] = { + [sym_line_comment] = STATE(703), + [sym_block_comment] = STATE(703), + [ts_builtin_sym_end] = ACTIONS(2693), + [sym_identifier] = ACTIONS(2695), + [anon_sym_SEMI] = ACTIONS(2693), + [anon_sym_macro_rules_BANG] = ACTIONS(2693), + [anon_sym_LPAREN] = ACTIONS(2693), + [anon_sym_LBRACK] = ACTIONS(2693), + [anon_sym_LBRACE] = ACTIONS(2693), + [anon_sym_RBRACE] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2693), + [anon_sym_u8] = ACTIONS(2695), + [anon_sym_i8] = ACTIONS(2695), + [anon_sym_u16] = ACTIONS(2695), + [anon_sym_i16] = ACTIONS(2695), + [anon_sym_u32] = ACTIONS(2695), + [anon_sym_i32] = ACTIONS(2695), + [anon_sym_u64] = ACTIONS(2695), + [anon_sym_i64] = ACTIONS(2695), + [anon_sym_u128] = ACTIONS(2695), + [anon_sym_i128] = ACTIONS(2695), + [anon_sym_isize] = ACTIONS(2695), + [anon_sym_usize] = ACTIONS(2695), + [anon_sym_f32] = ACTIONS(2695), + [anon_sym_f64] = ACTIONS(2695), + [anon_sym_bool] = ACTIONS(2695), + [anon_sym_str] = ACTIONS(2695), + [anon_sym_char] = ACTIONS(2695), + [anon_sym_DASH] = ACTIONS(2693), + [anon_sym_BANG] = ACTIONS(2693), + [anon_sym_AMP] = ACTIONS(2693), + [anon_sym_PIPE] = ACTIONS(2693), + [anon_sym_LT] = ACTIONS(2693), + [anon_sym_DOT_DOT] = ACTIONS(2693), + [anon_sym_COLON_COLON] = ACTIONS(2693), + [anon_sym_POUND] = ACTIONS(2693), + [anon_sym_SQUOTE] = ACTIONS(2695), + [anon_sym_async] = ACTIONS(2695), + [anon_sym_break] = ACTIONS(2695), + [anon_sym_const] = ACTIONS(2695), + [anon_sym_continue] = ACTIONS(2695), + [anon_sym_default] = ACTIONS(2695), + [anon_sym_enum] = ACTIONS(2695), + [anon_sym_fn] = ACTIONS(2695), + [anon_sym_for] = ACTIONS(2695), + [anon_sym_gen] = ACTIONS(2695), + [anon_sym_if] = ACTIONS(2695), + [anon_sym_impl] = ACTIONS(2695), + [anon_sym_let] = ACTIONS(2695), + [anon_sym_loop] = ACTIONS(2695), + [anon_sym_match] = ACTIONS(2695), + [anon_sym_mod] = ACTIONS(2695), + [anon_sym_pub] = ACTIONS(2695), + [anon_sym_return] = ACTIONS(2695), + [anon_sym_static] = ACTIONS(2695), + [anon_sym_struct] = ACTIONS(2695), + [anon_sym_trait] = ACTIONS(2695), + [anon_sym_type] = ACTIONS(2695), + [anon_sym_union] = ACTIONS(2695), + [anon_sym_unsafe] = ACTIONS(2695), + [anon_sym_use] = ACTIONS(2695), + [anon_sym_while] = ACTIONS(2695), + [anon_sym_extern] = ACTIONS(2695), + [anon_sym_yield] = ACTIONS(2695), + [anon_sym_move] = ACTIONS(2695), + [anon_sym_try] = ACTIONS(2695), + [sym_integer_literal] = ACTIONS(2693), + [aux_sym_string_literal_token1] = ACTIONS(2693), + [sym_char_literal] = ACTIONS(2693), + [anon_sym_true] = ACTIONS(2695), + [anon_sym_false] = ACTIONS(2695), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2695), + [sym_super] = ACTIONS(2695), + [sym_crate] = ACTIONS(2695), + [sym_metavariable] = ACTIONS(2693), + [sym__raw_string_literal_start] = ACTIONS(2693), + [sym_float_literal] = ACTIONS(2693), + }, + [704] = { + [sym_line_comment] = STATE(704), + [sym_block_comment] = STATE(704), + [ts_builtin_sym_end] = ACTIONS(2697), + [sym_identifier] = ACTIONS(2699), + [anon_sym_SEMI] = ACTIONS(2697), + [anon_sym_macro_rules_BANG] = ACTIONS(2697), + [anon_sym_LPAREN] = ACTIONS(2697), + [anon_sym_LBRACK] = ACTIONS(2697), + [anon_sym_LBRACE] = ACTIONS(2697), + [anon_sym_RBRACE] = ACTIONS(2697), + [anon_sym_STAR] = ACTIONS(2697), + [anon_sym_u8] = ACTIONS(2699), + [anon_sym_i8] = ACTIONS(2699), + [anon_sym_u16] = ACTIONS(2699), + [anon_sym_i16] = ACTIONS(2699), + [anon_sym_u32] = ACTIONS(2699), + [anon_sym_i32] = ACTIONS(2699), + [anon_sym_u64] = ACTIONS(2699), + [anon_sym_i64] = ACTIONS(2699), + [anon_sym_u128] = ACTIONS(2699), + [anon_sym_i128] = ACTIONS(2699), + [anon_sym_isize] = ACTIONS(2699), + [anon_sym_usize] = ACTIONS(2699), + [anon_sym_f32] = ACTIONS(2699), + [anon_sym_f64] = ACTIONS(2699), + [anon_sym_bool] = ACTIONS(2699), + [anon_sym_str] = ACTIONS(2699), + [anon_sym_char] = ACTIONS(2699), + [anon_sym_DASH] = ACTIONS(2697), + [anon_sym_BANG] = ACTIONS(2697), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym_PIPE] = ACTIONS(2697), + [anon_sym_LT] = ACTIONS(2697), + [anon_sym_DOT_DOT] = ACTIONS(2697), + [anon_sym_COLON_COLON] = ACTIONS(2697), + [anon_sym_POUND] = ACTIONS(2697), + [anon_sym_SQUOTE] = ACTIONS(2699), + [anon_sym_async] = ACTIONS(2699), + [anon_sym_break] = ACTIONS(2699), + [anon_sym_const] = ACTIONS(2699), + [anon_sym_continue] = ACTIONS(2699), + [anon_sym_default] = ACTIONS(2699), + [anon_sym_enum] = ACTIONS(2699), + [anon_sym_fn] = ACTIONS(2699), + [anon_sym_for] = ACTIONS(2699), + [anon_sym_gen] = ACTIONS(2699), + [anon_sym_if] = ACTIONS(2699), + [anon_sym_impl] = ACTIONS(2699), + [anon_sym_let] = ACTIONS(2699), + [anon_sym_loop] = ACTIONS(2699), + [anon_sym_match] = ACTIONS(2699), + [anon_sym_mod] = ACTIONS(2699), + [anon_sym_pub] = ACTIONS(2699), + [anon_sym_return] = ACTIONS(2699), + [anon_sym_static] = ACTIONS(2699), + [anon_sym_struct] = ACTIONS(2699), + [anon_sym_trait] = ACTIONS(2699), + [anon_sym_type] = ACTIONS(2699), + [anon_sym_union] = ACTIONS(2699), + [anon_sym_unsafe] = ACTIONS(2699), + [anon_sym_use] = ACTIONS(2699), + [anon_sym_while] = ACTIONS(2699), + [anon_sym_extern] = ACTIONS(2699), + [anon_sym_yield] = ACTIONS(2699), + [anon_sym_move] = ACTIONS(2699), + [anon_sym_try] = ACTIONS(2699), [sym_integer_literal] = ACTIONS(2697), - [aux_sym_string_literal_token1] = ACTIONS(2700), + [aux_sym_string_literal_token1] = ACTIONS(2697), [sym_char_literal] = ACTIONS(2697), - [anon_sym_true] = ACTIONS(2703), - [anon_sym_false] = ACTIONS(2703), + [anon_sym_true] = ACTIONS(2699), + [anon_sym_false] = ACTIONS(2699), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2706), - [sym_super] = ACTIONS(2706), - [sym_crate] = ACTIONS(2706), - [sym_metavariable] = ACTIONS(2709), - [sym__raw_string_literal_start] = ACTIONS(2712), + [sym_self] = ACTIONS(2699), + [sym_super] = ACTIONS(2699), + [sym_crate] = ACTIONS(2699), + [sym_metavariable] = ACTIONS(2697), + [sym__raw_string_literal_start] = ACTIONS(2697), [sym_float_literal] = ACTIONS(2697), }, - [700] = { - [sym_empty_statement] = STATE(1072), - [sym_macro_definition] = STATE(1072), - [sym_attribute_item] = STATE(1072), - [sym_inner_attribute_item] = STATE(1072), - [sym_mod_item] = STATE(1072), - [sym_foreign_mod_item] = STATE(1072), - [sym_struct_item] = STATE(1072), - [sym_union_item] = STATE(1072), - [sym_enum_item] = STATE(1072), - [sym_extern_crate_declaration] = STATE(1072), - [sym_const_item] = STATE(1072), - [sym_static_item] = STATE(1072), - [sym_type_item] = STATE(1072), - [sym_function_item] = STATE(1072), - [sym_function_signature_item] = STATE(1072), - [sym_function_modifiers] = STATE(3622), - [sym_impl_item] = STATE(1072), - [sym_trait_item] = STATE(1072), - [sym_associated_type] = STATE(1072), - [sym_let_declaration] = STATE(1072), - [sym_use_declaration] = STATE(1072), - [sym_extern_modifier] = STATE(2165), - [sym_visibility_modifier] = STATE(1954), - [sym_bracketed_type] = STATE(3353), - [sym_generic_type_with_turbofish] = STATE(3379), - [sym_macro_invocation] = STATE(1072), - [sym_scoped_identifier] = STATE(3167), - [sym_line_comment] = STATE(700), - [sym_block_comment] = STATE(700), - [aux_sym_declaration_list_repeat1] = STATE(639), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(2461), - [anon_sym_SEMI] = ACTIONS(2463), - [anon_sym_macro_rules_BANG] = ACTIONS(2465), - [anon_sym_RBRACE] = ACTIONS(2715), - [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_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(2471), - [anon_sym_POUND] = ACTIONS(2473), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(2475), - [anon_sym_default] = ACTIONS(2477), - [anon_sym_enum] = ACTIONS(2479), - [anon_sym_fn] = ACTIONS(2481), - [anon_sym_gen] = ACTIONS(2483), - [anon_sym_impl] = ACTIONS(2485), - [anon_sym_let] = ACTIONS(2487), - [anon_sym_mod] = ACTIONS(2489), - [anon_sym_pub] = ACTIONS(69), - [anon_sym_static] = ACTIONS(2491), - [anon_sym_struct] = ACTIONS(2493), - [anon_sym_trait] = ACTIONS(2495), - [anon_sym_type] = ACTIONS(2497), - [anon_sym_union] = ACTIONS(2499), - [anon_sym_unsafe] = ACTIONS(2501), - [anon_sym_use] = ACTIONS(2503), - [anon_sym_extern] = ACTIONS(2505), + [705] = { + [sym_line_comment] = STATE(705), + [sym_block_comment] = STATE(705), + [ts_builtin_sym_end] = ACTIONS(2701), + [sym_identifier] = ACTIONS(2703), + [anon_sym_SEMI] = ACTIONS(2701), + [anon_sym_macro_rules_BANG] = ACTIONS(2701), + [anon_sym_LPAREN] = ACTIONS(2701), + [anon_sym_LBRACK] = ACTIONS(2701), + [anon_sym_LBRACE] = ACTIONS(2701), + [anon_sym_RBRACE] = ACTIONS(2701), + [anon_sym_STAR] = ACTIONS(2701), + [anon_sym_u8] = ACTIONS(2703), + [anon_sym_i8] = ACTIONS(2703), + [anon_sym_u16] = ACTIONS(2703), + [anon_sym_i16] = ACTIONS(2703), + [anon_sym_u32] = ACTIONS(2703), + [anon_sym_i32] = ACTIONS(2703), + [anon_sym_u64] = ACTIONS(2703), + [anon_sym_i64] = ACTIONS(2703), + [anon_sym_u128] = ACTIONS(2703), + [anon_sym_i128] = ACTIONS(2703), + [anon_sym_isize] = ACTIONS(2703), + [anon_sym_usize] = ACTIONS(2703), + [anon_sym_f32] = ACTIONS(2703), + [anon_sym_f64] = ACTIONS(2703), + [anon_sym_bool] = ACTIONS(2703), + [anon_sym_str] = ACTIONS(2703), + [anon_sym_char] = ACTIONS(2703), + [anon_sym_DASH] = ACTIONS(2701), + [anon_sym_BANG] = ACTIONS(2701), + [anon_sym_AMP] = ACTIONS(2701), + [anon_sym_PIPE] = ACTIONS(2701), + [anon_sym_LT] = ACTIONS(2701), + [anon_sym_DOT_DOT] = ACTIONS(2701), + [anon_sym_COLON_COLON] = ACTIONS(2701), + [anon_sym_POUND] = ACTIONS(2701), + [anon_sym_SQUOTE] = ACTIONS(2703), + [anon_sym_async] = ACTIONS(2703), + [anon_sym_break] = ACTIONS(2703), + [anon_sym_const] = ACTIONS(2703), + [anon_sym_continue] = ACTIONS(2703), + [anon_sym_default] = ACTIONS(2703), + [anon_sym_enum] = ACTIONS(2703), + [anon_sym_fn] = ACTIONS(2703), + [anon_sym_for] = ACTIONS(2703), + [anon_sym_gen] = ACTIONS(2703), + [anon_sym_if] = ACTIONS(2703), + [anon_sym_impl] = ACTIONS(2703), + [anon_sym_let] = ACTIONS(2703), + [anon_sym_loop] = ACTIONS(2703), + [anon_sym_match] = ACTIONS(2703), + [anon_sym_mod] = ACTIONS(2703), + [anon_sym_pub] = ACTIONS(2703), + [anon_sym_return] = ACTIONS(2703), + [anon_sym_static] = ACTIONS(2703), + [anon_sym_struct] = ACTIONS(2703), + [anon_sym_trait] = ACTIONS(2703), + [anon_sym_type] = ACTIONS(2703), + [anon_sym_union] = ACTIONS(2703), + [anon_sym_unsafe] = ACTIONS(2703), + [anon_sym_use] = ACTIONS(2703), + [anon_sym_while] = ACTIONS(2703), + [anon_sym_extern] = ACTIONS(2703), + [anon_sym_yield] = ACTIONS(2703), + [anon_sym_move] = ACTIONS(2703), + [anon_sym_try] = ACTIONS(2703), + [sym_integer_literal] = ACTIONS(2701), + [aux_sym_string_literal_token1] = ACTIONS(2701), + [sym_char_literal] = ACTIONS(2701), + [anon_sym_true] = ACTIONS(2703), + [anon_sym_false] = ACTIONS(2703), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2507), - [sym_super] = ACTIONS(2507), - [sym_crate] = ACTIONS(2509), - [sym_metavariable] = ACTIONS(2511), + [sym_self] = ACTIONS(2703), + [sym_super] = ACTIONS(2703), + [sym_crate] = ACTIONS(2703), + [sym_metavariable] = ACTIONS(2701), + [sym__raw_string_literal_start] = ACTIONS(2701), + [sym_float_literal] = ACTIONS(2701), }, - [701] = { - [sym_line_comment] = STATE(701), - [sym_block_comment] = STATE(701), + [706] = { + [sym_line_comment] = STATE(706), + [sym_block_comment] = STATE(706), + [ts_builtin_sym_end] = ACTIONS(2705), + [sym_identifier] = ACTIONS(2707), + [anon_sym_SEMI] = ACTIONS(2705), + [anon_sym_macro_rules_BANG] = ACTIONS(2705), + [anon_sym_LPAREN] = ACTIONS(2705), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_LBRACE] = ACTIONS(2705), + [anon_sym_RBRACE] = ACTIONS(2705), + [anon_sym_STAR] = ACTIONS(2705), + [anon_sym_u8] = ACTIONS(2707), + [anon_sym_i8] = ACTIONS(2707), + [anon_sym_u16] = ACTIONS(2707), + [anon_sym_i16] = ACTIONS(2707), + [anon_sym_u32] = ACTIONS(2707), + [anon_sym_i32] = ACTIONS(2707), + [anon_sym_u64] = ACTIONS(2707), + [anon_sym_i64] = ACTIONS(2707), + [anon_sym_u128] = ACTIONS(2707), + [anon_sym_i128] = ACTIONS(2707), + [anon_sym_isize] = ACTIONS(2707), + [anon_sym_usize] = ACTIONS(2707), + [anon_sym_f32] = ACTIONS(2707), + [anon_sym_f64] = ACTIONS(2707), + [anon_sym_bool] = ACTIONS(2707), + [anon_sym_str] = ACTIONS(2707), + [anon_sym_char] = ACTIONS(2707), + [anon_sym_DASH] = ACTIONS(2705), + [anon_sym_BANG] = ACTIONS(2705), + [anon_sym_AMP] = ACTIONS(2705), + [anon_sym_PIPE] = ACTIONS(2705), + [anon_sym_LT] = ACTIONS(2705), + [anon_sym_DOT_DOT] = ACTIONS(2705), + [anon_sym_COLON_COLON] = ACTIONS(2705), + [anon_sym_POUND] = ACTIONS(2705), + [anon_sym_SQUOTE] = ACTIONS(2707), + [anon_sym_async] = ACTIONS(2707), + [anon_sym_break] = ACTIONS(2707), + [anon_sym_const] = ACTIONS(2707), + [anon_sym_continue] = ACTIONS(2707), + [anon_sym_default] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(2707), + [anon_sym_fn] = ACTIONS(2707), + [anon_sym_for] = ACTIONS(2707), + [anon_sym_gen] = ACTIONS(2707), + [anon_sym_if] = ACTIONS(2707), + [anon_sym_impl] = ACTIONS(2707), + [anon_sym_let] = ACTIONS(2707), + [anon_sym_loop] = ACTIONS(2707), + [anon_sym_match] = ACTIONS(2707), + [anon_sym_mod] = ACTIONS(2707), + [anon_sym_pub] = ACTIONS(2707), + [anon_sym_return] = ACTIONS(2707), + [anon_sym_static] = ACTIONS(2707), + [anon_sym_struct] = ACTIONS(2707), + [anon_sym_trait] = ACTIONS(2707), + [anon_sym_type] = ACTIONS(2707), + [anon_sym_union] = ACTIONS(2707), + [anon_sym_unsafe] = ACTIONS(2707), + [anon_sym_use] = ACTIONS(2707), + [anon_sym_while] = ACTIONS(2707), + [anon_sym_extern] = ACTIONS(2707), + [anon_sym_yield] = ACTIONS(2707), + [anon_sym_move] = ACTIONS(2707), + [anon_sym_try] = ACTIONS(2707), + [sym_integer_literal] = ACTIONS(2705), + [aux_sym_string_literal_token1] = ACTIONS(2705), + [sym_char_literal] = ACTIONS(2705), + [anon_sym_true] = ACTIONS(2707), + [anon_sym_false] = ACTIONS(2707), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2707), + [sym_super] = ACTIONS(2707), + [sym_crate] = ACTIONS(2707), + [sym_metavariable] = ACTIONS(2705), + [sym__raw_string_literal_start] = ACTIONS(2705), + [sym_float_literal] = ACTIONS(2705), + }, + [707] = { + [sym_line_comment] = STATE(707), + [sym_block_comment] = STATE(707), + [ts_builtin_sym_end] = ACTIONS(2709), + [sym_identifier] = ACTIONS(2711), + [anon_sym_SEMI] = ACTIONS(2709), + [anon_sym_macro_rules_BANG] = ACTIONS(2709), + [anon_sym_LPAREN] = ACTIONS(2709), + [anon_sym_LBRACK] = ACTIONS(2709), + [anon_sym_LBRACE] = ACTIONS(2709), + [anon_sym_RBRACE] = ACTIONS(2709), + [anon_sym_STAR] = ACTIONS(2709), + [anon_sym_u8] = ACTIONS(2711), + [anon_sym_i8] = ACTIONS(2711), + [anon_sym_u16] = ACTIONS(2711), + [anon_sym_i16] = ACTIONS(2711), + [anon_sym_u32] = ACTIONS(2711), + [anon_sym_i32] = ACTIONS(2711), + [anon_sym_u64] = ACTIONS(2711), + [anon_sym_i64] = ACTIONS(2711), + [anon_sym_u128] = ACTIONS(2711), + [anon_sym_i128] = ACTIONS(2711), + [anon_sym_isize] = ACTIONS(2711), + [anon_sym_usize] = ACTIONS(2711), + [anon_sym_f32] = ACTIONS(2711), + [anon_sym_f64] = ACTIONS(2711), + [anon_sym_bool] = ACTIONS(2711), + [anon_sym_str] = ACTIONS(2711), + [anon_sym_char] = ACTIONS(2711), + [anon_sym_DASH] = ACTIONS(2709), + [anon_sym_BANG] = ACTIONS(2709), + [anon_sym_AMP] = ACTIONS(2709), + [anon_sym_PIPE] = ACTIONS(2709), + [anon_sym_LT] = ACTIONS(2709), + [anon_sym_DOT_DOT] = ACTIONS(2709), + [anon_sym_COLON_COLON] = ACTIONS(2709), + [anon_sym_POUND] = ACTIONS(2709), + [anon_sym_SQUOTE] = ACTIONS(2711), + [anon_sym_async] = ACTIONS(2711), + [anon_sym_break] = ACTIONS(2711), + [anon_sym_const] = ACTIONS(2711), + [anon_sym_continue] = ACTIONS(2711), + [anon_sym_default] = ACTIONS(2711), + [anon_sym_enum] = ACTIONS(2711), + [anon_sym_fn] = ACTIONS(2711), + [anon_sym_for] = ACTIONS(2711), + [anon_sym_gen] = ACTIONS(2711), + [anon_sym_if] = ACTIONS(2711), + [anon_sym_impl] = ACTIONS(2711), + [anon_sym_let] = ACTIONS(2711), + [anon_sym_loop] = ACTIONS(2711), + [anon_sym_match] = ACTIONS(2711), + [anon_sym_mod] = ACTIONS(2711), + [anon_sym_pub] = ACTIONS(2711), + [anon_sym_return] = ACTIONS(2711), + [anon_sym_static] = ACTIONS(2711), + [anon_sym_struct] = ACTIONS(2711), + [anon_sym_trait] = ACTIONS(2711), + [anon_sym_type] = ACTIONS(2711), + [anon_sym_union] = ACTIONS(2711), + [anon_sym_unsafe] = ACTIONS(2711), + [anon_sym_use] = ACTIONS(2711), + [anon_sym_while] = ACTIONS(2711), + [anon_sym_extern] = ACTIONS(2711), + [anon_sym_yield] = ACTIONS(2711), + [anon_sym_move] = ACTIONS(2711), + [anon_sym_try] = ACTIONS(2711), + [sym_integer_literal] = ACTIONS(2709), + [aux_sym_string_literal_token1] = ACTIONS(2709), + [sym_char_literal] = ACTIONS(2709), + [anon_sym_true] = ACTIONS(2711), + [anon_sym_false] = ACTIONS(2711), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2711), + [sym_super] = ACTIONS(2711), + [sym_crate] = ACTIONS(2711), + [sym_metavariable] = ACTIONS(2709), + [sym__raw_string_literal_start] = ACTIONS(2709), + [sym_float_literal] = ACTIONS(2709), + }, + [708] = { + [sym_line_comment] = STATE(708), + [sym_block_comment] = STATE(708), + [ts_builtin_sym_end] = ACTIONS(2713), + [sym_identifier] = ACTIONS(2715), + [anon_sym_SEMI] = ACTIONS(2713), + [anon_sym_macro_rules_BANG] = ACTIONS(2713), + [anon_sym_LPAREN] = ACTIONS(2713), + [anon_sym_LBRACK] = ACTIONS(2713), + [anon_sym_LBRACE] = ACTIONS(2713), + [anon_sym_RBRACE] = ACTIONS(2713), + [anon_sym_STAR] = ACTIONS(2713), + [anon_sym_u8] = ACTIONS(2715), + [anon_sym_i8] = ACTIONS(2715), + [anon_sym_u16] = ACTIONS(2715), + [anon_sym_i16] = ACTIONS(2715), + [anon_sym_u32] = ACTIONS(2715), + [anon_sym_i32] = ACTIONS(2715), + [anon_sym_u64] = ACTIONS(2715), + [anon_sym_i64] = ACTIONS(2715), + [anon_sym_u128] = ACTIONS(2715), + [anon_sym_i128] = ACTIONS(2715), + [anon_sym_isize] = ACTIONS(2715), + [anon_sym_usize] = ACTIONS(2715), + [anon_sym_f32] = ACTIONS(2715), + [anon_sym_f64] = ACTIONS(2715), + [anon_sym_bool] = ACTIONS(2715), + [anon_sym_str] = ACTIONS(2715), + [anon_sym_char] = ACTIONS(2715), + [anon_sym_DASH] = ACTIONS(2713), + [anon_sym_BANG] = ACTIONS(2713), + [anon_sym_AMP] = ACTIONS(2713), + [anon_sym_PIPE] = ACTIONS(2713), + [anon_sym_LT] = ACTIONS(2713), + [anon_sym_DOT_DOT] = ACTIONS(2713), + [anon_sym_COLON_COLON] = ACTIONS(2713), + [anon_sym_POUND] = ACTIONS(2713), + [anon_sym_SQUOTE] = ACTIONS(2715), + [anon_sym_async] = ACTIONS(2715), + [anon_sym_break] = ACTIONS(2715), + [anon_sym_const] = ACTIONS(2715), + [anon_sym_continue] = ACTIONS(2715), + [anon_sym_default] = ACTIONS(2715), + [anon_sym_enum] = ACTIONS(2715), + [anon_sym_fn] = ACTIONS(2715), + [anon_sym_for] = ACTIONS(2715), + [anon_sym_gen] = ACTIONS(2715), + [anon_sym_if] = ACTIONS(2715), + [anon_sym_impl] = ACTIONS(2715), + [anon_sym_let] = ACTIONS(2715), + [anon_sym_loop] = ACTIONS(2715), + [anon_sym_match] = ACTIONS(2715), + [anon_sym_mod] = ACTIONS(2715), + [anon_sym_pub] = ACTIONS(2715), + [anon_sym_return] = ACTIONS(2715), + [anon_sym_static] = ACTIONS(2715), + [anon_sym_struct] = ACTIONS(2715), + [anon_sym_trait] = ACTIONS(2715), + [anon_sym_type] = ACTIONS(2715), + [anon_sym_union] = ACTIONS(2715), + [anon_sym_unsafe] = ACTIONS(2715), + [anon_sym_use] = ACTIONS(2715), + [anon_sym_while] = ACTIONS(2715), + [anon_sym_extern] = ACTIONS(2715), + [anon_sym_yield] = ACTIONS(2715), + [anon_sym_move] = ACTIONS(2715), + [anon_sym_try] = ACTIONS(2715), + [sym_integer_literal] = ACTIONS(2713), + [aux_sym_string_literal_token1] = ACTIONS(2713), + [sym_char_literal] = ACTIONS(2713), + [anon_sym_true] = ACTIONS(2715), + [anon_sym_false] = ACTIONS(2715), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2715), + [sym_super] = ACTIONS(2715), + [sym_crate] = ACTIONS(2715), + [sym_metavariable] = ACTIONS(2713), + [sym__raw_string_literal_start] = ACTIONS(2713), + [sym_float_literal] = ACTIONS(2713), + }, + [709] = { + [sym_line_comment] = STATE(709), + [sym_block_comment] = STATE(709), [ts_builtin_sym_end] = ACTIONS(2717), [sym_identifier] = ACTIONS(2719), [anon_sym_SEMI] = ACTIONS(2717), @@ -87615,9 +89879,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2717), [sym_float_literal] = ACTIONS(2717), }, - [702] = { - [sym_line_comment] = STATE(702), - [sym_block_comment] = STATE(702), + [710] = { + [sym_line_comment] = STATE(710), + [sym_block_comment] = STATE(710), [ts_builtin_sym_end] = ACTIONS(2721), [sym_identifier] = ACTIONS(2723), [anon_sym_SEMI] = ACTIONS(2721), @@ -87696,9 +89960,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2721), [sym_float_literal] = ACTIONS(2721), }, - [703] = { - [sym_line_comment] = STATE(703), - [sym_block_comment] = STATE(703), + [711] = { + [sym_line_comment] = STATE(711), + [sym_block_comment] = STATE(711), [ts_builtin_sym_end] = ACTIONS(2725), [sym_identifier] = ACTIONS(2727), [anon_sym_SEMI] = ACTIONS(2725), @@ -87777,9 +90041,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2725), [sym_float_literal] = ACTIONS(2725), }, - [704] = { - [sym_line_comment] = STATE(704), - [sym_block_comment] = STATE(704), + [712] = { + [sym_line_comment] = STATE(712), + [sym_block_comment] = STATE(712), [ts_builtin_sym_end] = ACTIONS(2729), [sym_identifier] = ACTIONS(2731), [anon_sym_SEMI] = ACTIONS(2729), @@ -87858,9 +90122,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2729), [sym_float_literal] = ACTIONS(2729), }, - [705] = { - [sym_line_comment] = STATE(705), - [sym_block_comment] = STATE(705), + [713] = { + [sym_line_comment] = STATE(713), + [sym_block_comment] = STATE(713), [ts_builtin_sym_end] = ACTIONS(2733), [sym_identifier] = ACTIONS(2735), [anon_sym_SEMI] = ACTIONS(2733), @@ -87939,9 +90203,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2733), [sym_float_literal] = ACTIONS(2733), }, - [706] = { - [sym_line_comment] = STATE(706), - [sym_block_comment] = STATE(706), + [714] = { + [sym_line_comment] = STATE(714), + [sym_block_comment] = STATE(714), [ts_builtin_sym_end] = ACTIONS(2737), [sym_identifier] = ACTIONS(2739), [anon_sym_SEMI] = ACTIONS(2737), @@ -88020,9 +90284,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2737), [sym_float_literal] = ACTIONS(2737), }, - [707] = { - [sym_line_comment] = STATE(707), - [sym_block_comment] = STATE(707), + [715] = { + [sym_line_comment] = STATE(715), + [sym_block_comment] = STATE(715), [ts_builtin_sym_end] = ACTIONS(2741), [sym_identifier] = ACTIONS(2743), [anon_sym_SEMI] = ACTIONS(2741), @@ -88101,9 +90365,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2741), [sym_float_literal] = ACTIONS(2741), }, - [708] = { - [sym_line_comment] = STATE(708), - [sym_block_comment] = STATE(708), + [716] = { + [sym_line_comment] = STATE(716), + [sym_block_comment] = STATE(716), [ts_builtin_sym_end] = ACTIONS(2745), [sym_identifier] = ACTIONS(2747), [anon_sym_SEMI] = ACTIONS(2745), @@ -88182,9 +90446,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2745), [sym_float_literal] = ACTIONS(2745), }, - [709] = { - [sym_line_comment] = STATE(709), - [sym_block_comment] = STATE(709), + [717] = { + [sym_line_comment] = STATE(717), + [sym_block_comment] = STATE(717), [ts_builtin_sym_end] = ACTIONS(2749), [sym_identifier] = ACTIONS(2751), [anon_sym_SEMI] = ACTIONS(2749), @@ -88263,9 +90527,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2749), [sym_float_literal] = ACTIONS(2749), }, - [710] = { - [sym_line_comment] = STATE(710), - [sym_block_comment] = STATE(710), + [718] = { + [sym_line_comment] = STATE(718), + [sym_block_comment] = STATE(718), [ts_builtin_sym_end] = ACTIONS(2753), [sym_identifier] = ACTIONS(2755), [anon_sym_SEMI] = ACTIONS(2753), @@ -88344,9 +90608,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2753), [sym_float_literal] = ACTIONS(2753), }, - [711] = { - [sym_line_comment] = STATE(711), - [sym_block_comment] = STATE(711), + [719] = { + [sym_line_comment] = STATE(719), + [sym_block_comment] = STATE(719), [ts_builtin_sym_end] = ACTIONS(2757), [sym_identifier] = ACTIONS(2759), [anon_sym_SEMI] = ACTIONS(2757), @@ -88425,9 +90689,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2757), [sym_float_literal] = ACTIONS(2757), }, - [712] = { - [sym_line_comment] = STATE(712), - [sym_block_comment] = STATE(712), + [720] = { + [sym_line_comment] = STATE(720), + [sym_block_comment] = STATE(720), [ts_builtin_sym_end] = ACTIONS(2761), [sym_identifier] = ACTIONS(2763), [anon_sym_SEMI] = ACTIONS(2761), @@ -88506,9 +90770,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2761), [sym_float_literal] = ACTIONS(2761), }, - [713] = { - [sym_line_comment] = STATE(713), - [sym_block_comment] = STATE(713), + [721] = { + [sym_line_comment] = STATE(721), + [sym_block_comment] = STATE(721), [ts_builtin_sym_end] = ACTIONS(2765), [sym_identifier] = ACTIONS(2767), [anon_sym_SEMI] = ACTIONS(2765), @@ -88587,9 +90851,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2765), [sym_float_literal] = ACTIONS(2765), }, - [714] = { - [sym_line_comment] = STATE(714), - [sym_block_comment] = STATE(714), + [722] = { + [sym_line_comment] = STATE(722), + [sym_block_comment] = STATE(722), [ts_builtin_sym_end] = ACTIONS(2769), [sym_identifier] = ACTIONS(2771), [anon_sym_SEMI] = ACTIONS(2769), @@ -88668,9 +90932,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2769), [sym_float_literal] = ACTIONS(2769), }, - [715] = { - [sym_line_comment] = STATE(715), - [sym_block_comment] = STATE(715), + [723] = { + [sym_line_comment] = STATE(723), + [sym_block_comment] = STATE(723), [ts_builtin_sym_end] = ACTIONS(2773), [sym_identifier] = ACTIONS(2775), [anon_sym_SEMI] = ACTIONS(2773), @@ -88749,9 +91013,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2773), [sym_float_literal] = ACTIONS(2773), }, - [716] = { - [sym_line_comment] = STATE(716), - [sym_block_comment] = STATE(716), + [724] = { + [sym_line_comment] = STATE(724), + [sym_block_comment] = STATE(724), [ts_builtin_sym_end] = ACTIONS(2777), [sym_identifier] = ACTIONS(2779), [anon_sym_SEMI] = ACTIONS(2777), @@ -88830,9 +91094,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2777), [sym_float_literal] = ACTIONS(2777), }, - [717] = { - [sym_line_comment] = STATE(717), - [sym_block_comment] = STATE(717), + [725] = { + [sym_line_comment] = STATE(725), + [sym_block_comment] = STATE(725), [ts_builtin_sym_end] = ACTIONS(2781), [sym_identifier] = ACTIONS(2783), [anon_sym_SEMI] = ACTIONS(2781), @@ -88911,9 +91175,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2781), [sym_float_literal] = ACTIONS(2781), }, - [718] = { - [sym_line_comment] = STATE(718), - [sym_block_comment] = STATE(718), + [726] = { + [sym_line_comment] = STATE(726), + [sym_block_comment] = STATE(726), [ts_builtin_sym_end] = ACTIONS(2785), [sym_identifier] = ACTIONS(2787), [anon_sym_SEMI] = ACTIONS(2785), @@ -88992,9 +91256,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2785), [sym_float_literal] = ACTIONS(2785), }, - [719] = { - [sym_line_comment] = STATE(719), - [sym_block_comment] = STATE(719), + [727] = { + [sym_line_comment] = STATE(727), + [sym_block_comment] = STATE(727), [ts_builtin_sym_end] = ACTIONS(2789), [sym_identifier] = ACTIONS(2791), [anon_sym_SEMI] = ACTIONS(2789), @@ -89073,9 +91337,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2789), [sym_float_literal] = ACTIONS(2789), }, - [720] = { - [sym_line_comment] = STATE(720), - [sym_block_comment] = STATE(720), + [728] = { + [sym_line_comment] = STATE(728), + [sym_block_comment] = STATE(728), [ts_builtin_sym_end] = ACTIONS(2793), [sym_identifier] = ACTIONS(2795), [anon_sym_SEMI] = ACTIONS(2793), @@ -89154,9 +91418,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2793), [sym_float_literal] = ACTIONS(2793), }, - [721] = { - [sym_line_comment] = STATE(721), - [sym_block_comment] = STATE(721), + [729] = { + [sym_line_comment] = STATE(729), + [sym_block_comment] = STATE(729), [ts_builtin_sym_end] = ACTIONS(2797), [sym_identifier] = ACTIONS(2799), [anon_sym_SEMI] = ACTIONS(2797), @@ -89235,9 +91499,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2797), [sym_float_literal] = ACTIONS(2797), }, - [722] = { - [sym_line_comment] = STATE(722), - [sym_block_comment] = STATE(722), + [730] = { + [sym_line_comment] = STATE(730), + [sym_block_comment] = STATE(730), [ts_builtin_sym_end] = ACTIONS(2801), [sym_identifier] = ACTIONS(2803), [anon_sym_SEMI] = ACTIONS(2801), @@ -89316,9 +91580,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2801), [sym_float_literal] = ACTIONS(2801), }, - [723] = { - [sym_line_comment] = STATE(723), - [sym_block_comment] = STATE(723), + [731] = { + [sym_line_comment] = STATE(731), + [sym_block_comment] = STATE(731), [ts_builtin_sym_end] = ACTIONS(2805), [sym_identifier] = ACTIONS(2807), [anon_sym_SEMI] = ACTIONS(2805), @@ -89397,9 +91661,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2805), [sym_float_literal] = ACTIONS(2805), }, - [724] = { - [sym_line_comment] = STATE(724), - [sym_block_comment] = STATE(724), + [732] = { + [sym_line_comment] = STATE(732), + [sym_block_comment] = STATE(732), [ts_builtin_sym_end] = ACTIONS(2809), [sym_identifier] = ACTIONS(2811), [anon_sym_SEMI] = ACTIONS(2809), @@ -89478,9 +91742,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2809), [sym_float_literal] = ACTIONS(2809), }, - [725] = { - [sym_line_comment] = STATE(725), - [sym_block_comment] = STATE(725), + [733] = { + [sym_line_comment] = STATE(733), + [sym_block_comment] = STATE(733), [ts_builtin_sym_end] = ACTIONS(2813), [sym_identifier] = ACTIONS(2815), [anon_sym_SEMI] = ACTIONS(2813), @@ -89559,9 +91823,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2813), [sym_float_literal] = ACTIONS(2813), }, - [726] = { - [sym_line_comment] = STATE(726), - [sym_block_comment] = STATE(726), + [734] = { + [sym_line_comment] = STATE(734), + [sym_block_comment] = STATE(734), [ts_builtin_sym_end] = ACTIONS(2817), [sym_identifier] = ACTIONS(2819), [anon_sym_SEMI] = ACTIONS(2817), @@ -89640,9 +91904,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2817), [sym_float_literal] = ACTIONS(2817), }, - [727] = { - [sym_line_comment] = STATE(727), - [sym_block_comment] = STATE(727), + [735] = { + [sym_line_comment] = STATE(735), + [sym_block_comment] = STATE(735), [ts_builtin_sym_end] = ACTIONS(2821), [sym_identifier] = ACTIONS(2823), [anon_sym_SEMI] = ACTIONS(2821), @@ -89721,9 +91985,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2821), [sym_float_literal] = ACTIONS(2821), }, - [728] = { - [sym_line_comment] = STATE(728), - [sym_block_comment] = STATE(728), + [736] = { + [sym_line_comment] = STATE(736), + [sym_block_comment] = STATE(736), [ts_builtin_sym_end] = ACTIONS(2825), [sym_identifier] = ACTIONS(2827), [anon_sym_SEMI] = ACTIONS(2825), @@ -89802,9 +92066,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2825), [sym_float_literal] = ACTIONS(2825), }, - [729] = { - [sym_line_comment] = STATE(729), - [sym_block_comment] = STATE(729), + [737] = { + [sym_line_comment] = STATE(737), + [sym_block_comment] = STATE(737), [ts_builtin_sym_end] = ACTIONS(2829), [sym_identifier] = ACTIONS(2831), [anon_sym_SEMI] = ACTIONS(2829), @@ -89883,9 +92147,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2829), [sym_float_literal] = ACTIONS(2829), }, - [730] = { - [sym_line_comment] = STATE(730), - [sym_block_comment] = STATE(730), + [738] = { + [sym_line_comment] = STATE(738), + [sym_block_comment] = STATE(738), [ts_builtin_sym_end] = ACTIONS(2833), [sym_identifier] = ACTIONS(2835), [anon_sym_SEMI] = ACTIONS(2833), @@ -89964,9 +92228,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2833), [sym_float_literal] = ACTIONS(2833), }, - [731] = { - [sym_line_comment] = STATE(731), - [sym_block_comment] = STATE(731), + [739] = { + [sym_line_comment] = STATE(739), + [sym_block_comment] = STATE(739), [ts_builtin_sym_end] = ACTIONS(2837), [sym_identifier] = ACTIONS(2839), [anon_sym_SEMI] = ACTIONS(2837), @@ -90045,9 +92309,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2837), [sym_float_literal] = ACTIONS(2837), }, - [732] = { - [sym_line_comment] = STATE(732), - [sym_block_comment] = STATE(732), + [740] = { + [sym_line_comment] = STATE(740), + [sym_block_comment] = STATE(740), [ts_builtin_sym_end] = ACTIONS(2841), [sym_identifier] = ACTIONS(2843), [anon_sym_SEMI] = ACTIONS(2841), @@ -90126,9 +92390,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2841), [sym_float_literal] = ACTIONS(2841), }, - [733] = { - [sym_line_comment] = STATE(733), - [sym_block_comment] = STATE(733), + [741] = { + [sym_line_comment] = STATE(741), + [sym_block_comment] = STATE(741), [ts_builtin_sym_end] = ACTIONS(2845), [sym_identifier] = ACTIONS(2847), [anon_sym_SEMI] = ACTIONS(2845), @@ -90207,9 +92471,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2845), [sym_float_literal] = ACTIONS(2845), }, - [734] = { - [sym_line_comment] = STATE(734), - [sym_block_comment] = STATE(734), + [742] = { + [sym_line_comment] = STATE(742), + [sym_block_comment] = STATE(742), [ts_builtin_sym_end] = ACTIONS(2849), [sym_identifier] = ACTIONS(2851), [anon_sym_SEMI] = ACTIONS(2849), @@ -90288,9 +92552,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2849), [sym_float_literal] = ACTIONS(2849), }, - [735] = { - [sym_line_comment] = STATE(735), - [sym_block_comment] = STATE(735), + [743] = { + [sym_line_comment] = STATE(743), + [sym_block_comment] = STATE(743), [ts_builtin_sym_end] = ACTIONS(2853), [sym_identifier] = ACTIONS(2855), [anon_sym_SEMI] = ACTIONS(2853), @@ -90369,9 +92633,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2853), [sym_float_literal] = ACTIONS(2853), }, - [736] = { - [sym_line_comment] = STATE(736), - [sym_block_comment] = STATE(736), + [744] = { + [sym_line_comment] = STATE(744), + [sym_block_comment] = STATE(744), [ts_builtin_sym_end] = ACTIONS(2857), [sym_identifier] = ACTIONS(2859), [anon_sym_SEMI] = ACTIONS(2857), @@ -90450,9 +92714,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2857), [sym_float_literal] = ACTIONS(2857), }, - [737] = { - [sym_line_comment] = STATE(737), - [sym_block_comment] = STATE(737), + [745] = { + [sym_line_comment] = STATE(745), + [sym_block_comment] = STATE(745), [ts_builtin_sym_end] = ACTIONS(2861), [sym_identifier] = ACTIONS(2863), [anon_sym_SEMI] = ACTIONS(2861), @@ -90531,9 +92795,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2861), [sym_float_literal] = ACTIONS(2861), }, - [738] = { - [sym_line_comment] = STATE(738), - [sym_block_comment] = STATE(738), + [746] = { + [sym_line_comment] = STATE(746), + [sym_block_comment] = STATE(746), [ts_builtin_sym_end] = ACTIONS(2865), [sym_identifier] = ACTIONS(2867), [anon_sym_SEMI] = ACTIONS(2865), @@ -90612,9 +92876,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2865), [sym_float_literal] = ACTIONS(2865), }, - [739] = { - [sym_line_comment] = STATE(739), - [sym_block_comment] = STATE(739), + [747] = { + [sym_line_comment] = STATE(747), + [sym_block_comment] = STATE(747), [ts_builtin_sym_end] = ACTIONS(2869), [sym_identifier] = ACTIONS(2871), [anon_sym_SEMI] = ACTIONS(2869), @@ -90693,9 +92957,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2869), [sym_float_literal] = ACTIONS(2869), }, - [740] = { - [sym_line_comment] = STATE(740), - [sym_block_comment] = STATE(740), + [748] = { + [sym_line_comment] = STATE(748), + [sym_block_comment] = STATE(748), [ts_builtin_sym_end] = ACTIONS(2873), [sym_identifier] = ACTIONS(2875), [anon_sym_SEMI] = ACTIONS(2873), @@ -90774,9 +93038,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2873), [sym_float_literal] = ACTIONS(2873), }, - [741] = { - [sym_line_comment] = STATE(741), - [sym_block_comment] = STATE(741), + [749] = { + [sym_line_comment] = STATE(749), + [sym_block_comment] = STATE(749), [ts_builtin_sym_end] = ACTIONS(2877), [sym_identifier] = ACTIONS(2879), [anon_sym_SEMI] = ACTIONS(2877), @@ -90855,9 +93119,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2877), [sym_float_literal] = ACTIONS(2877), }, - [742] = { - [sym_line_comment] = STATE(742), - [sym_block_comment] = STATE(742), + [750] = { + [sym_line_comment] = STATE(750), + [sym_block_comment] = STATE(750), [ts_builtin_sym_end] = ACTIONS(2881), [sym_identifier] = ACTIONS(2883), [anon_sym_SEMI] = ACTIONS(2881), @@ -90936,9 +93200,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2881), [sym_float_literal] = ACTIONS(2881), }, - [743] = { - [sym_line_comment] = STATE(743), - [sym_block_comment] = STATE(743), + [751] = { + [sym_line_comment] = STATE(751), + [sym_block_comment] = STATE(751), [ts_builtin_sym_end] = ACTIONS(2885), [sym_identifier] = ACTIONS(2887), [anon_sym_SEMI] = ACTIONS(2885), @@ -91017,9 +93281,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2885), [sym_float_literal] = ACTIONS(2885), }, - [744] = { - [sym_line_comment] = STATE(744), - [sym_block_comment] = STATE(744), + [752] = { + [sym_line_comment] = STATE(752), + [sym_block_comment] = STATE(752), [ts_builtin_sym_end] = ACTIONS(2889), [sym_identifier] = ACTIONS(2891), [anon_sym_SEMI] = ACTIONS(2889), @@ -91098,9 +93362,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2889), [sym_float_literal] = ACTIONS(2889), }, - [745] = { - [sym_line_comment] = STATE(745), - [sym_block_comment] = STATE(745), + [753] = { + [sym_line_comment] = STATE(753), + [sym_block_comment] = STATE(753), [ts_builtin_sym_end] = ACTIONS(2893), [sym_identifier] = ACTIONS(2895), [anon_sym_SEMI] = ACTIONS(2893), @@ -91179,9 +93443,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2893), [sym_float_literal] = ACTIONS(2893), }, - [746] = { - [sym_line_comment] = STATE(746), - [sym_block_comment] = STATE(746), + [754] = { + [sym_line_comment] = STATE(754), + [sym_block_comment] = STATE(754), [ts_builtin_sym_end] = ACTIONS(2897), [sym_identifier] = ACTIONS(2899), [anon_sym_SEMI] = ACTIONS(2897), @@ -91260,9 +93524,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2897), [sym_float_literal] = ACTIONS(2897), }, - [747] = { - [sym_line_comment] = STATE(747), - [sym_block_comment] = STATE(747), + [755] = { + [sym_line_comment] = STATE(755), + [sym_block_comment] = STATE(755), [ts_builtin_sym_end] = ACTIONS(2901), [sym_identifier] = ACTIONS(2903), [anon_sym_SEMI] = ACTIONS(2901), @@ -91341,9 +93605,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2901), [sym_float_literal] = ACTIONS(2901), }, - [748] = { - [sym_line_comment] = STATE(748), - [sym_block_comment] = STATE(748), + [756] = { + [sym_line_comment] = STATE(756), + [sym_block_comment] = STATE(756), [ts_builtin_sym_end] = ACTIONS(2905), [sym_identifier] = ACTIONS(2907), [anon_sym_SEMI] = ACTIONS(2905), @@ -91422,9 +93686,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2905), [sym_float_literal] = ACTIONS(2905), }, - [749] = { - [sym_line_comment] = STATE(749), - [sym_block_comment] = STATE(749), + [757] = { + [sym_line_comment] = STATE(757), + [sym_block_comment] = STATE(757), [ts_builtin_sym_end] = ACTIONS(2909), [sym_identifier] = ACTIONS(2911), [anon_sym_SEMI] = ACTIONS(2909), @@ -91503,9 +93767,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2909), [sym_float_literal] = ACTIONS(2909), }, - [750] = { - [sym_line_comment] = STATE(750), - [sym_block_comment] = STATE(750), + [758] = { + [sym_line_comment] = STATE(758), + [sym_block_comment] = STATE(758), [ts_builtin_sym_end] = ACTIONS(2913), [sym_identifier] = ACTIONS(2915), [anon_sym_SEMI] = ACTIONS(2913), @@ -91584,9 +93848,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2913), [sym_float_literal] = ACTIONS(2913), }, - [751] = { - [sym_line_comment] = STATE(751), - [sym_block_comment] = STATE(751), + [759] = { + [sym_line_comment] = STATE(759), + [sym_block_comment] = STATE(759), [ts_builtin_sym_end] = ACTIONS(2917), [sym_identifier] = ACTIONS(2919), [anon_sym_SEMI] = ACTIONS(2917), @@ -91665,9 +93929,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2917), [sym_float_literal] = ACTIONS(2917), }, - [752] = { - [sym_line_comment] = STATE(752), - [sym_block_comment] = STATE(752), + [760] = { + [sym_line_comment] = STATE(760), + [sym_block_comment] = STATE(760), [ts_builtin_sym_end] = ACTIONS(2921), [sym_identifier] = ACTIONS(2923), [anon_sym_SEMI] = ACTIONS(2921), @@ -91746,9 +94010,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2921), [sym_float_literal] = ACTIONS(2921), }, - [753] = { - [sym_line_comment] = STATE(753), - [sym_block_comment] = STATE(753), + [761] = { + [sym_line_comment] = STATE(761), + [sym_block_comment] = STATE(761), [ts_builtin_sym_end] = ACTIONS(2925), [sym_identifier] = ACTIONS(2927), [anon_sym_SEMI] = ACTIONS(2925), @@ -91827,9 +94091,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2925), [sym_float_literal] = ACTIONS(2925), }, - [754] = { - [sym_line_comment] = STATE(754), - [sym_block_comment] = STATE(754), + [762] = { + [sym_line_comment] = STATE(762), + [sym_block_comment] = STATE(762), [ts_builtin_sym_end] = ACTIONS(2929), [sym_identifier] = ACTIONS(2931), [anon_sym_SEMI] = ACTIONS(2929), @@ -91908,9 +94172,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2929), [sym_float_literal] = ACTIONS(2929), }, - [755] = { - [sym_line_comment] = STATE(755), - [sym_block_comment] = STATE(755), + [763] = { + [sym_line_comment] = STATE(763), + [sym_block_comment] = STATE(763), [ts_builtin_sym_end] = ACTIONS(2933), [sym_identifier] = ACTIONS(2935), [anon_sym_SEMI] = ACTIONS(2933), @@ -91989,9 +94253,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2933), [sym_float_literal] = ACTIONS(2933), }, - [756] = { - [sym_line_comment] = STATE(756), - [sym_block_comment] = STATE(756), + [764] = { + [sym_line_comment] = STATE(764), + [sym_block_comment] = STATE(764), [ts_builtin_sym_end] = ACTIONS(2937), [sym_identifier] = ACTIONS(2939), [anon_sym_SEMI] = ACTIONS(2937), @@ -92070,9 +94334,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2937), [sym_float_literal] = ACTIONS(2937), }, - [757] = { - [sym_line_comment] = STATE(757), - [sym_block_comment] = STATE(757), + [765] = { + [sym_line_comment] = STATE(765), + [sym_block_comment] = STATE(765), [ts_builtin_sym_end] = ACTIONS(2941), [sym_identifier] = ACTIONS(2943), [anon_sym_SEMI] = ACTIONS(2941), @@ -92151,9 +94415,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2941), [sym_float_literal] = ACTIONS(2941), }, - [758] = { - [sym_line_comment] = STATE(758), - [sym_block_comment] = STATE(758), + [766] = { + [sym_line_comment] = STATE(766), + [sym_block_comment] = STATE(766), [ts_builtin_sym_end] = ACTIONS(2945), [sym_identifier] = ACTIONS(2947), [anon_sym_SEMI] = ACTIONS(2945), @@ -92232,9 +94496,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2945), [sym_float_literal] = ACTIONS(2945), }, - [759] = { - [sym_line_comment] = STATE(759), - [sym_block_comment] = STATE(759), + [767] = { + [sym_line_comment] = STATE(767), + [sym_block_comment] = STATE(767), [ts_builtin_sym_end] = ACTIONS(2949), [sym_identifier] = ACTIONS(2951), [anon_sym_SEMI] = ACTIONS(2949), @@ -92313,9 +94577,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2949), [sym_float_literal] = ACTIONS(2949), }, - [760] = { - [sym_line_comment] = STATE(760), - [sym_block_comment] = STATE(760), + [768] = { + [sym_line_comment] = STATE(768), + [sym_block_comment] = STATE(768), [ts_builtin_sym_end] = ACTIONS(2953), [sym_identifier] = ACTIONS(2955), [anon_sym_SEMI] = ACTIONS(2953), @@ -92394,9 +94658,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2953), [sym_float_literal] = ACTIONS(2953), }, - [761] = { - [sym_line_comment] = STATE(761), - [sym_block_comment] = STATE(761), + [769] = { + [sym_line_comment] = STATE(769), + [sym_block_comment] = STATE(769), [ts_builtin_sym_end] = ACTIONS(2957), [sym_identifier] = ACTIONS(2959), [anon_sym_SEMI] = ACTIONS(2957), @@ -92475,5694 +94739,9099 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2957), [sym_float_literal] = ACTIONS(2957), }, - [762] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym_closure_expression] = STATE(3019), - [sym_closure_parameters] = STATE(220), - [sym__pattern] = STATE(2737), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), - [sym_line_comment] = STATE(762), - [sym_block_comment] = STATE(762), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_RPAREN] = ACTIONS(2965), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1515), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COMMA] = ACTIONS(2973), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_static] = ACTIONS(1523), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), - [sym_mutable_specifier] = ACTIONS(1525), - [anon_sym_move] = ACTIONS(1527), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [763] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym_closure_expression] = STATE(2866), - [sym_closure_parameters] = STATE(220), - [sym__pattern] = STATE(2724), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), - [sym_line_comment] = STATE(763), - [sym_block_comment] = STATE(763), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_RPAREN] = ACTIONS(2985), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1515), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COMMA] = ACTIONS(1521), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_static] = ACTIONS(1523), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), - [sym_mutable_specifier] = ACTIONS(1525), - [anon_sym_move] = ACTIONS(1527), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [764] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym_closure_expression] = STATE(3177), - [sym_closure_parameters] = STATE(220), - [sym__pattern] = STATE(2962), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), - [sym_line_comment] = STATE(764), - [sym_block_comment] = STATE(764), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_RPAREN] = ACTIONS(2987), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1515), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_static] = ACTIONS(1523), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), - [sym_mutable_specifier] = ACTIONS(1525), - [anon_sym_move] = ACTIONS(1527), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [765] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym_closure_expression] = STATE(3177), - [sym_closure_parameters] = STATE(220), - [sym__pattern] = STATE(2962), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), - [sym_line_comment] = STATE(765), - [sym_block_comment] = STATE(765), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_RPAREN] = ACTIONS(2989), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1515), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_static] = ACTIONS(1523), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), - [sym_mutable_specifier] = ACTIONS(1525), - [anon_sym_move] = ACTIONS(1527), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [766] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym_closure_expression] = STATE(3177), - [sym_closure_parameters] = STATE(220), - [sym__pattern] = STATE(2962), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), - [sym_line_comment] = STATE(766), - [sym_block_comment] = STATE(766), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_RPAREN] = ACTIONS(2991), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1515), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_static] = ACTIONS(1523), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), - [sym_mutable_specifier] = ACTIONS(1525), - [anon_sym_move] = ACTIONS(1527), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [767] = { - [sym_attribute_item] = STATE(1468), - [sym_inner_attribute_item] = STATE(1468), - [sym_bracketed_type] = STATE(3553), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3287), - [sym_macro_invocation] = STATE(2757), - [sym_scoped_identifier] = STATE(2151), - [sym_scoped_type_identifier] = STATE(2982), - [sym_match_pattern] = STATE(3444), - [sym_const_block] = STATE(2757), - [sym__pattern] = STATE(2907), - [sym_tuple_pattern] = STATE(2757), - [sym_slice_pattern] = STATE(2757), - [sym_tuple_struct_pattern] = STATE(2757), - [sym_struct_pattern] = STATE(2757), - [sym_remaining_field_pattern] = STATE(2757), - [sym_mut_pattern] = STATE(2757), - [sym_range_pattern] = STATE(2757), - [sym_ref_pattern] = STATE(2757), - [sym_captured_pattern] = STATE(2757), - [sym_reference_pattern] = STATE(2757), - [sym_or_pattern] = STATE(2757), - [sym__literal_pattern] = STATE(2330), - [sym_negative_literal] = STATE(2364), - [sym_string_literal] = STATE(2364), - [sym_raw_string_literal] = STATE(2364), - [sym_boolean_literal] = STATE(2364), - [sym_line_comment] = STATE(767), - [sym_block_comment] = STATE(767), - [aux_sym_match_arm_repeat1] = STATE(1045), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1649), - [anon_sym_u8] = ACTIONS(1653), - [anon_sym_i8] = ACTIONS(1653), - [anon_sym_u16] = ACTIONS(1653), - [anon_sym_i16] = ACTIONS(1653), - [anon_sym_u32] = ACTIONS(1653), - [anon_sym_i32] = ACTIONS(1653), - [anon_sym_u64] = ACTIONS(1653), - [anon_sym_i64] = ACTIONS(1653), - [anon_sym_u128] = ACTIONS(1653), - [anon_sym_i128] = ACTIONS(1653), - [anon_sym_isize] = ACTIONS(1653), - [anon_sym_usize] = ACTIONS(1653), - [anon_sym_f32] = ACTIONS(1653), - [anon_sym_f64] = ACTIONS(1653), - [anon_sym_bool] = ACTIONS(1653), - [anon_sym_str] = ACTIONS(1653), - [anon_sym_char] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_PIPE] = ACTIONS(1659), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1661), - [anon_sym_DOT_DOT] = ACTIONS(1663), - [anon_sym_COLON_COLON] = ACTIONS(1665), - [anon_sym_POUND] = ACTIONS(1667), - [anon_sym_const] = ACTIONS(1669), - [anon_sym_default] = ACTIONS(1671), - [anon_sym_gen] = ACTIONS(1671), - [anon_sym_union] = ACTIONS(1671), - [anon_sym_ref] = ACTIONS(1673), - [sym_mutable_specifier] = ACTIONS(1675), - [sym_integer_literal] = ACTIONS(1677), - [aux_sym_string_literal_token1] = ACTIONS(1679), - [sym_char_literal] = ACTIONS(1677), - [anon_sym_true] = ACTIONS(1681), - [anon_sym_false] = ACTIONS(1681), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1683), - [sym_super] = ACTIONS(1683), - [sym_crate] = ACTIONS(1683), - [sym_metavariable] = ACTIONS(1685), - [sym__raw_string_literal_start] = ACTIONS(1687), - [sym_float_literal] = ACTIONS(1677), - }, - [768] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym_closure_expression] = STATE(3177), - [sym_closure_parameters] = STATE(220), - [sym__pattern] = STATE(2962), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), - [sym_line_comment] = STATE(768), - [sym_block_comment] = STATE(768), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_RPAREN] = ACTIONS(2993), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1515), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_static] = ACTIONS(1523), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), - [sym_mutable_specifier] = ACTIONS(1525), - [anon_sym_move] = ACTIONS(1527), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), - }, - [769] = { - [sym_attribute_item] = STATE(1468), - [sym_inner_attribute_item] = STATE(1468), - [sym_bracketed_type] = STATE(3553), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3287), - [sym_macro_invocation] = STATE(2757), - [sym_scoped_identifier] = STATE(2151), - [sym_scoped_type_identifier] = STATE(2982), - [sym_match_pattern] = STATE(3596), - [sym_const_block] = STATE(2757), - [sym__pattern] = STATE(2907), - [sym_tuple_pattern] = STATE(2757), - [sym_slice_pattern] = STATE(2757), - [sym_tuple_struct_pattern] = STATE(2757), - [sym_struct_pattern] = STATE(2757), - [sym_remaining_field_pattern] = STATE(2757), - [sym_mut_pattern] = STATE(2757), - [sym_range_pattern] = STATE(2757), - [sym_ref_pattern] = STATE(2757), - [sym_captured_pattern] = STATE(2757), - [sym_reference_pattern] = STATE(2757), - [sym_or_pattern] = STATE(2757), - [sym__literal_pattern] = STATE(2330), - [sym_negative_literal] = STATE(2364), - [sym_string_literal] = STATE(2364), - [sym_raw_string_literal] = STATE(2364), - [sym_boolean_literal] = STATE(2364), - [sym_line_comment] = STATE(769), - [sym_block_comment] = STATE(769), - [aux_sym_match_arm_repeat1] = STATE(1045), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1649), - [anon_sym_u8] = ACTIONS(1653), - [anon_sym_i8] = ACTIONS(1653), - [anon_sym_u16] = ACTIONS(1653), - [anon_sym_i16] = ACTIONS(1653), - [anon_sym_u32] = ACTIONS(1653), - [anon_sym_i32] = ACTIONS(1653), - [anon_sym_u64] = ACTIONS(1653), - [anon_sym_i64] = ACTIONS(1653), - [anon_sym_u128] = ACTIONS(1653), - [anon_sym_i128] = ACTIONS(1653), - [anon_sym_isize] = ACTIONS(1653), - [anon_sym_usize] = ACTIONS(1653), - [anon_sym_f32] = ACTIONS(1653), - [anon_sym_f64] = ACTIONS(1653), - [anon_sym_bool] = ACTIONS(1653), - [anon_sym_str] = ACTIONS(1653), - [anon_sym_char] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_PIPE] = ACTIONS(1659), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1661), - [anon_sym_DOT_DOT] = ACTIONS(1663), - [anon_sym_COLON_COLON] = ACTIONS(1665), - [anon_sym_POUND] = ACTIONS(1667), - [anon_sym_const] = ACTIONS(1669), - [anon_sym_default] = ACTIONS(1671), - [anon_sym_gen] = ACTIONS(1671), - [anon_sym_union] = ACTIONS(1671), - [anon_sym_ref] = ACTIONS(1673), - [sym_mutable_specifier] = ACTIONS(1675), - [sym_integer_literal] = ACTIONS(1677), - [aux_sym_string_literal_token1] = ACTIONS(1679), - [sym_char_literal] = ACTIONS(1677), - [anon_sym_true] = ACTIONS(1681), - [anon_sym_false] = ACTIONS(1681), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1683), - [sym_super] = ACTIONS(1683), - [sym_crate] = ACTIONS(1683), - [sym_metavariable] = ACTIONS(1685), - [sym__raw_string_literal_start] = ACTIONS(1687), - [sym_float_literal] = ACTIONS(1677), - }, [770] = { - [sym_attribute_item] = STATE(1405), - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_const_parameter] = STATE(2953), - [sym_constrained_type_parameter] = STATE(2540), - [sym_optional_type_parameter] = STATE(2953), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2994), - [sym_bracketed_type] = STATE(3361), - [sym_qualified_type] = STATE(3468), - [sym_lifetime] = STATE(2338), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), [sym_line_comment] = STATE(770), [sym_block_comment] = STATE(770), - [aux_sym_enum_variant_list_repeat1] = STATE(2077), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(2995), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_POUND] = ACTIONS(2997), - [anon_sym_SQUOTE] = ACTIONS(2999), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(3001), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(3003), + [ts_builtin_sym_end] = ACTIONS(2961), + [sym_identifier] = ACTIONS(2963), + [anon_sym_SEMI] = ACTIONS(2961), + [anon_sym_macro_rules_BANG] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2961), + [anon_sym_LBRACK] = ACTIONS(2961), + [anon_sym_LBRACE] = ACTIONS(2961), + [anon_sym_RBRACE] = ACTIONS(2961), + [anon_sym_STAR] = ACTIONS(2961), + [anon_sym_u8] = ACTIONS(2963), + [anon_sym_i8] = ACTIONS(2963), + [anon_sym_u16] = ACTIONS(2963), + [anon_sym_i16] = ACTIONS(2963), + [anon_sym_u32] = ACTIONS(2963), + [anon_sym_i32] = ACTIONS(2963), + [anon_sym_u64] = ACTIONS(2963), + [anon_sym_i64] = ACTIONS(2963), + [anon_sym_u128] = ACTIONS(2963), + [anon_sym_i128] = ACTIONS(2963), + [anon_sym_isize] = ACTIONS(2963), + [anon_sym_usize] = ACTIONS(2963), + [anon_sym_f32] = ACTIONS(2963), + [anon_sym_f64] = ACTIONS(2963), + [anon_sym_bool] = ACTIONS(2963), + [anon_sym_str] = ACTIONS(2963), + [anon_sym_char] = ACTIONS(2963), + [anon_sym_DASH] = ACTIONS(2961), + [anon_sym_BANG] = ACTIONS(2961), + [anon_sym_AMP] = ACTIONS(2961), + [anon_sym_PIPE] = ACTIONS(2961), + [anon_sym_LT] = ACTIONS(2961), + [anon_sym_DOT_DOT] = ACTIONS(2961), + [anon_sym_COLON_COLON] = ACTIONS(2961), + [anon_sym_POUND] = ACTIONS(2961), + [anon_sym_SQUOTE] = ACTIONS(2963), + [anon_sym_async] = ACTIONS(2963), + [anon_sym_break] = ACTIONS(2963), + [anon_sym_const] = ACTIONS(2963), + [anon_sym_continue] = ACTIONS(2963), + [anon_sym_default] = ACTIONS(2963), + [anon_sym_enum] = ACTIONS(2963), + [anon_sym_fn] = ACTIONS(2963), + [anon_sym_for] = ACTIONS(2963), + [anon_sym_gen] = ACTIONS(2963), + [anon_sym_if] = ACTIONS(2963), + [anon_sym_impl] = ACTIONS(2963), + [anon_sym_let] = ACTIONS(2963), + [anon_sym_loop] = ACTIONS(2963), + [anon_sym_match] = ACTIONS(2963), + [anon_sym_mod] = ACTIONS(2963), + [anon_sym_pub] = ACTIONS(2963), + [anon_sym_return] = ACTIONS(2963), + [anon_sym_static] = ACTIONS(2963), + [anon_sym_struct] = ACTIONS(2963), + [anon_sym_trait] = ACTIONS(2963), + [anon_sym_type] = ACTIONS(2963), + [anon_sym_union] = ACTIONS(2963), + [anon_sym_unsafe] = ACTIONS(2963), + [anon_sym_use] = ACTIONS(2963), + [anon_sym_while] = ACTIONS(2963), + [anon_sym_extern] = ACTIONS(2963), + [anon_sym_yield] = ACTIONS(2963), + [anon_sym_move] = ACTIONS(2963), + [anon_sym_try] = ACTIONS(2963), + [sym_integer_literal] = ACTIONS(2961), + [aux_sym_string_literal_token1] = ACTIONS(2961), + [sym_char_literal] = ACTIONS(2961), + [anon_sym_true] = ACTIONS(2963), + [anon_sym_false] = ACTIONS(2963), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2963), + [sym_super] = ACTIONS(2963), + [sym_crate] = ACTIONS(2963), + [sym_metavariable] = ACTIONS(2961), + [sym__raw_string_literal_start] = ACTIONS(2961), + [sym_float_literal] = ACTIONS(2961), }, [771] = { - [sym_attribute_item] = STATE(1405), - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym_visibility_modifier] = STATE(913), - [sym__type] = STATE(2514), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), [sym_line_comment] = STATE(771), [sym_block_comment] = STATE(771), - [aux_sym_enum_variant_list_repeat1] = STATE(782), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(3007), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COMMA] = ACTIONS(3009), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_POUND] = ACTIONS(2997), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_pub] = ACTIONS(3013), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(3015), - [sym_metavariable] = ACTIONS(1621), + [ts_builtin_sym_end] = ACTIONS(2965), + [sym_identifier] = ACTIONS(2967), + [anon_sym_SEMI] = ACTIONS(2965), + [anon_sym_macro_rules_BANG] = ACTIONS(2965), + [anon_sym_LPAREN] = ACTIONS(2965), + [anon_sym_LBRACK] = ACTIONS(2965), + [anon_sym_LBRACE] = ACTIONS(2965), + [anon_sym_RBRACE] = ACTIONS(2965), + [anon_sym_STAR] = ACTIONS(2965), + [anon_sym_u8] = ACTIONS(2967), + [anon_sym_i8] = ACTIONS(2967), + [anon_sym_u16] = ACTIONS(2967), + [anon_sym_i16] = ACTIONS(2967), + [anon_sym_u32] = ACTIONS(2967), + [anon_sym_i32] = ACTIONS(2967), + [anon_sym_u64] = ACTIONS(2967), + [anon_sym_i64] = ACTIONS(2967), + [anon_sym_u128] = ACTIONS(2967), + [anon_sym_i128] = ACTIONS(2967), + [anon_sym_isize] = ACTIONS(2967), + [anon_sym_usize] = ACTIONS(2967), + [anon_sym_f32] = ACTIONS(2967), + [anon_sym_f64] = ACTIONS(2967), + [anon_sym_bool] = ACTIONS(2967), + [anon_sym_str] = ACTIONS(2967), + [anon_sym_char] = ACTIONS(2967), + [anon_sym_DASH] = ACTIONS(2965), + [anon_sym_BANG] = ACTIONS(2965), + [anon_sym_AMP] = ACTIONS(2965), + [anon_sym_PIPE] = ACTIONS(2965), + [anon_sym_LT] = ACTIONS(2965), + [anon_sym_DOT_DOT] = ACTIONS(2965), + [anon_sym_COLON_COLON] = ACTIONS(2965), + [anon_sym_POUND] = ACTIONS(2965), + [anon_sym_SQUOTE] = ACTIONS(2967), + [anon_sym_async] = ACTIONS(2967), + [anon_sym_break] = ACTIONS(2967), + [anon_sym_const] = ACTIONS(2967), + [anon_sym_continue] = ACTIONS(2967), + [anon_sym_default] = ACTIONS(2967), + [anon_sym_enum] = ACTIONS(2967), + [anon_sym_fn] = ACTIONS(2967), + [anon_sym_for] = ACTIONS(2967), + [anon_sym_gen] = ACTIONS(2967), + [anon_sym_if] = ACTIONS(2967), + [anon_sym_impl] = ACTIONS(2967), + [anon_sym_let] = ACTIONS(2967), + [anon_sym_loop] = ACTIONS(2967), + [anon_sym_match] = ACTIONS(2967), + [anon_sym_mod] = ACTIONS(2967), + [anon_sym_pub] = ACTIONS(2967), + [anon_sym_return] = ACTIONS(2967), + [anon_sym_static] = ACTIONS(2967), + [anon_sym_struct] = ACTIONS(2967), + [anon_sym_trait] = ACTIONS(2967), + [anon_sym_type] = ACTIONS(2967), + [anon_sym_union] = ACTIONS(2967), + [anon_sym_unsafe] = ACTIONS(2967), + [anon_sym_use] = ACTIONS(2967), + [anon_sym_while] = ACTIONS(2967), + [anon_sym_extern] = ACTIONS(2967), + [anon_sym_yield] = ACTIONS(2967), + [anon_sym_move] = ACTIONS(2967), + [anon_sym_try] = ACTIONS(2967), + [sym_integer_literal] = ACTIONS(2965), + [aux_sym_string_literal_token1] = ACTIONS(2965), + [sym_char_literal] = ACTIONS(2965), + [anon_sym_true] = ACTIONS(2967), + [anon_sym_false] = ACTIONS(2967), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2967), + [sym_super] = ACTIONS(2967), + [sym_crate] = ACTIONS(2967), + [sym_metavariable] = ACTIONS(2965), + [sym__raw_string_literal_start] = ACTIONS(2965), + [sym_float_literal] = ACTIONS(2965), }, [772] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym_closure_expression] = STATE(3177), - [sym_closure_parameters] = STATE(220), - [sym__pattern] = STATE(2962), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), [sym_line_comment] = STATE(772), [sym_block_comment] = STATE(772), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1515), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_static] = ACTIONS(1523), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), - [sym_mutable_specifier] = ACTIONS(1525), - [anon_sym_move] = ACTIONS(1527), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), + [ts_builtin_sym_end] = ACTIONS(2969), + [sym_identifier] = ACTIONS(2971), + [anon_sym_SEMI] = ACTIONS(2969), + [anon_sym_macro_rules_BANG] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2969), + [anon_sym_LBRACK] = ACTIONS(2969), + [anon_sym_LBRACE] = ACTIONS(2969), + [anon_sym_RBRACE] = ACTIONS(2969), + [anon_sym_STAR] = ACTIONS(2969), + [anon_sym_u8] = ACTIONS(2971), + [anon_sym_i8] = ACTIONS(2971), + [anon_sym_u16] = ACTIONS(2971), + [anon_sym_i16] = ACTIONS(2971), + [anon_sym_u32] = ACTIONS(2971), + [anon_sym_i32] = ACTIONS(2971), + [anon_sym_u64] = ACTIONS(2971), + [anon_sym_i64] = ACTIONS(2971), + [anon_sym_u128] = ACTIONS(2971), + [anon_sym_i128] = ACTIONS(2971), + [anon_sym_isize] = ACTIONS(2971), + [anon_sym_usize] = ACTIONS(2971), + [anon_sym_f32] = ACTIONS(2971), + [anon_sym_f64] = ACTIONS(2971), + [anon_sym_bool] = ACTIONS(2971), + [anon_sym_str] = ACTIONS(2971), + [anon_sym_char] = ACTIONS(2971), + [anon_sym_DASH] = ACTIONS(2969), + [anon_sym_BANG] = ACTIONS(2969), + [anon_sym_AMP] = ACTIONS(2969), + [anon_sym_PIPE] = ACTIONS(2969), + [anon_sym_LT] = ACTIONS(2969), + [anon_sym_DOT_DOT] = ACTIONS(2969), + [anon_sym_COLON_COLON] = ACTIONS(2969), + [anon_sym_POUND] = ACTIONS(2969), + [anon_sym_SQUOTE] = ACTIONS(2971), + [anon_sym_async] = ACTIONS(2971), + [anon_sym_break] = ACTIONS(2971), + [anon_sym_const] = ACTIONS(2971), + [anon_sym_continue] = ACTIONS(2971), + [anon_sym_default] = ACTIONS(2971), + [anon_sym_enum] = ACTIONS(2971), + [anon_sym_fn] = ACTIONS(2971), + [anon_sym_for] = ACTIONS(2971), + [anon_sym_gen] = ACTIONS(2971), + [anon_sym_if] = ACTIONS(2971), + [anon_sym_impl] = ACTIONS(2971), + [anon_sym_let] = ACTIONS(2971), + [anon_sym_loop] = ACTIONS(2971), + [anon_sym_match] = ACTIONS(2971), + [anon_sym_mod] = ACTIONS(2971), + [anon_sym_pub] = ACTIONS(2971), + [anon_sym_return] = ACTIONS(2971), + [anon_sym_static] = ACTIONS(2971), + [anon_sym_struct] = ACTIONS(2971), + [anon_sym_trait] = ACTIONS(2971), + [anon_sym_type] = ACTIONS(2971), + [anon_sym_union] = ACTIONS(2971), + [anon_sym_unsafe] = ACTIONS(2971), + [anon_sym_use] = ACTIONS(2971), + [anon_sym_while] = ACTIONS(2971), + [anon_sym_extern] = ACTIONS(2971), + [anon_sym_yield] = ACTIONS(2971), + [anon_sym_move] = ACTIONS(2971), + [anon_sym_try] = ACTIONS(2971), + [sym_integer_literal] = ACTIONS(2969), + [aux_sym_string_literal_token1] = ACTIONS(2969), + [sym_char_literal] = ACTIONS(2969), + [anon_sym_true] = ACTIONS(2971), + [anon_sym_false] = ACTIONS(2971), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2971), + [sym_super] = ACTIONS(2971), + [sym_crate] = ACTIONS(2971), + [sym_metavariable] = ACTIONS(2969), + [sym__raw_string_literal_start] = ACTIONS(2969), + [sym_float_literal] = ACTIONS(2969), }, [773] = { - [sym_attribute_item] = STATE(1405), - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym_visibility_modifier] = STATE(916), - [sym__type] = STATE(2990), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), [sym_line_comment] = STATE(773), [sym_block_comment] = STATE(773), - [aux_sym_enum_variant_list_repeat1] = STATE(783), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(3017), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_POUND] = ACTIONS(2997), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_pub] = ACTIONS(3013), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(3015), - [sym_metavariable] = ACTIONS(1621), + [ts_builtin_sym_end] = ACTIONS(2973), + [sym_identifier] = ACTIONS(2975), + [anon_sym_SEMI] = ACTIONS(2973), + [anon_sym_macro_rules_BANG] = ACTIONS(2973), + [anon_sym_LPAREN] = ACTIONS(2973), + [anon_sym_LBRACK] = ACTIONS(2973), + [anon_sym_LBRACE] = ACTIONS(2973), + [anon_sym_RBRACE] = ACTIONS(2973), + [anon_sym_STAR] = ACTIONS(2973), + [anon_sym_u8] = ACTIONS(2975), + [anon_sym_i8] = ACTIONS(2975), + [anon_sym_u16] = ACTIONS(2975), + [anon_sym_i16] = ACTIONS(2975), + [anon_sym_u32] = ACTIONS(2975), + [anon_sym_i32] = ACTIONS(2975), + [anon_sym_u64] = ACTIONS(2975), + [anon_sym_i64] = ACTIONS(2975), + [anon_sym_u128] = ACTIONS(2975), + [anon_sym_i128] = ACTIONS(2975), + [anon_sym_isize] = ACTIONS(2975), + [anon_sym_usize] = ACTIONS(2975), + [anon_sym_f32] = ACTIONS(2975), + [anon_sym_f64] = ACTIONS(2975), + [anon_sym_bool] = ACTIONS(2975), + [anon_sym_str] = ACTIONS(2975), + [anon_sym_char] = ACTIONS(2975), + [anon_sym_DASH] = ACTIONS(2973), + [anon_sym_BANG] = ACTIONS(2973), + [anon_sym_AMP] = ACTIONS(2973), + [anon_sym_PIPE] = ACTIONS(2973), + [anon_sym_LT] = ACTIONS(2973), + [anon_sym_DOT_DOT] = ACTIONS(2973), + [anon_sym_COLON_COLON] = ACTIONS(2973), + [anon_sym_POUND] = ACTIONS(2973), + [anon_sym_SQUOTE] = ACTIONS(2975), + [anon_sym_async] = ACTIONS(2975), + [anon_sym_break] = ACTIONS(2975), + [anon_sym_const] = ACTIONS(2975), + [anon_sym_continue] = ACTIONS(2975), + [anon_sym_default] = ACTIONS(2975), + [anon_sym_enum] = ACTIONS(2975), + [anon_sym_fn] = ACTIONS(2975), + [anon_sym_for] = ACTIONS(2975), + [anon_sym_gen] = ACTIONS(2975), + [anon_sym_if] = ACTIONS(2975), + [anon_sym_impl] = ACTIONS(2975), + [anon_sym_let] = ACTIONS(2975), + [anon_sym_loop] = ACTIONS(2975), + [anon_sym_match] = ACTIONS(2975), + [anon_sym_mod] = ACTIONS(2975), + [anon_sym_pub] = ACTIONS(2975), + [anon_sym_return] = ACTIONS(2975), + [anon_sym_static] = ACTIONS(2975), + [anon_sym_struct] = ACTIONS(2975), + [anon_sym_trait] = ACTIONS(2975), + [anon_sym_type] = ACTIONS(2975), + [anon_sym_union] = ACTIONS(2975), + [anon_sym_unsafe] = ACTIONS(2975), + [anon_sym_use] = ACTIONS(2975), + [anon_sym_while] = ACTIONS(2975), + [anon_sym_extern] = ACTIONS(2975), + [anon_sym_yield] = ACTIONS(2975), + [anon_sym_move] = ACTIONS(2975), + [anon_sym_try] = ACTIONS(2975), + [sym_integer_literal] = ACTIONS(2973), + [aux_sym_string_literal_token1] = ACTIONS(2973), + [sym_char_literal] = ACTIONS(2973), + [anon_sym_true] = ACTIONS(2975), + [anon_sym_false] = ACTIONS(2975), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2975), + [sym_super] = ACTIONS(2975), + [sym_crate] = ACTIONS(2975), + [sym_metavariable] = ACTIONS(2973), + [sym__raw_string_literal_start] = ACTIONS(2973), + [sym_float_literal] = ACTIONS(2973), }, [774] = { - [sym_attribute_item] = STATE(1405), - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym_visibility_modifier] = STATE(916), - [sym__type] = STATE(2990), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), [sym_line_comment] = STATE(774), [sym_block_comment] = STATE(774), - [aux_sym_enum_variant_list_repeat1] = STATE(783), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(3019), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_POUND] = ACTIONS(2997), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_pub] = ACTIONS(3013), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(3015), - [sym_metavariable] = ACTIONS(1621), + [ts_builtin_sym_end] = ACTIONS(2977), + [sym_identifier] = ACTIONS(2979), + [anon_sym_SEMI] = ACTIONS(2977), + [anon_sym_macro_rules_BANG] = ACTIONS(2977), + [anon_sym_LPAREN] = ACTIONS(2977), + [anon_sym_LBRACK] = ACTIONS(2977), + [anon_sym_LBRACE] = ACTIONS(2977), + [anon_sym_RBRACE] = ACTIONS(2977), + [anon_sym_STAR] = ACTIONS(2977), + [anon_sym_u8] = ACTIONS(2979), + [anon_sym_i8] = ACTIONS(2979), + [anon_sym_u16] = ACTIONS(2979), + [anon_sym_i16] = ACTIONS(2979), + [anon_sym_u32] = ACTIONS(2979), + [anon_sym_i32] = ACTIONS(2979), + [anon_sym_u64] = ACTIONS(2979), + [anon_sym_i64] = ACTIONS(2979), + [anon_sym_u128] = ACTIONS(2979), + [anon_sym_i128] = ACTIONS(2979), + [anon_sym_isize] = ACTIONS(2979), + [anon_sym_usize] = ACTIONS(2979), + [anon_sym_f32] = ACTIONS(2979), + [anon_sym_f64] = ACTIONS(2979), + [anon_sym_bool] = ACTIONS(2979), + [anon_sym_str] = ACTIONS(2979), + [anon_sym_char] = ACTIONS(2979), + [anon_sym_DASH] = ACTIONS(2977), + [anon_sym_BANG] = ACTIONS(2977), + [anon_sym_AMP] = ACTIONS(2977), + [anon_sym_PIPE] = ACTIONS(2977), + [anon_sym_LT] = ACTIONS(2977), + [anon_sym_DOT_DOT] = ACTIONS(2977), + [anon_sym_COLON_COLON] = ACTIONS(2977), + [anon_sym_POUND] = ACTIONS(2977), + [anon_sym_SQUOTE] = ACTIONS(2979), + [anon_sym_async] = ACTIONS(2979), + [anon_sym_break] = ACTIONS(2979), + [anon_sym_const] = ACTIONS(2979), + [anon_sym_continue] = ACTIONS(2979), + [anon_sym_default] = ACTIONS(2979), + [anon_sym_enum] = ACTIONS(2979), + [anon_sym_fn] = ACTIONS(2979), + [anon_sym_for] = ACTIONS(2979), + [anon_sym_gen] = ACTIONS(2979), + [anon_sym_if] = ACTIONS(2979), + [anon_sym_impl] = ACTIONS(2979), + [anon_sym_let] = ACTIONS(2979), + [anon_sym_loop] = ACTIONS(2979), + [anon_sym_match] = ACTIONS(2979), + [anon_sym_mod] = ACTIONS(2979), + [anon_sym_pub] = ACTIONS(2979), + [anon_sym_return] = ACTIONS(2979), + [anon_sym_static] = ACTIONS(2979), + [anon_sym_struct] = ACTIONS(2979), + [anon_sym_trait] = ACTIONS(2979), + [anon_sym_type] = ACTIONS(2979), + [anon_sym_union] = ACTIONS(2979), + [anon_sym_unsafe] = ACTIONS(2979), + [anon_sym_use] = ACTIONS(2979), + [anon_sym_while] = ACTIONS(2979), + [anon_sym_extern] = ACTIONS(2979), + [anon_sym_yield] = ACTIONS(2979), + [anon_sym_move] = ACTIONS(2979), + [anon_sym_try] = ACTIONS(2979), + [sym_integer_literal] = ACTIONS(2977), + [aux_sym_string_literal_token1] = ACTIONS(2977), + [sym_char_literal] = ACTIONS(2977), + [anon_sym_true] = ACTIONS(2979), + [anon_sym_false] = ACTIONS(2979), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2979), + [sym_super] = ACTIONS(2979), + [sym_crate] = ACTIONS(2979), + [sym_metavariable] = ACTIONS(2977), + [sym__raw_string_literal_start] = ACTIONS(2977), + [sym_float_literal] = ACTIONS(2977), }, [775] = { - [sym_attribute_item] = STATE(1405), - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym_visibility_modifier] = STATE(916), - [sym__type] = STATE(2990), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), [sym_line_comment] = STATE(775), [sym_block_comment] = STATE(775), - [aux_sym_enum_variant_list_repeat1] = STATE(783), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(3021), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_POUND] = ACTIONS(2997), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_pub] = ACTIONS(3013), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(3015), - [sym_metavariable] = ACTIONS(1621), + [ts_builtin_sym_end] = ACTIONS(2981), + [sym_identifier] = ACTIONS(2983), + [anon_sym_SEMI] = ACTIONS(2981), + [anon_sym_macro_rules_BANG] = ACTIONS(2981), + [anon_sym_LPAREN] = ACTIONS(2981), + [anon_sym_LBRACK] = ACTIONS(2981), + [anon_sym_LBRACE] = ACTIONS(2981), + [anon_sym_RBRACE] = ACTIONS(2981), + [anon_sym_STAR] = ACTIONS(2981), + [anon_sym_u8] = ACTIONS(2983), + [anon_sym_i8] = ACTIONS(2983), + [anon_sym_u16] = ACTIONS(2983), + [anon_sym_i16] = ACTIONS(2983), + [anon_sym_u32] = ACTIONS(2983), + [anon_sym_i32] = ACTIONS(2983), + [anon_sym_u64] = ACTIONS(2983), + [anon_sym_i64] = ACTIONS(2983), + [anon_sym_u128] = ACTIONS(2983), + [anon_sym_i128] = ACTIONS(2983), + [anon_sym_isize] = ACTIONS(2983), + [anon_sym_usize] = ACTIONS(2983), + [anon_sym_f32] = ACTIONS(2983), + [anon_sym_f64] = ACTIONS(2983), + [anon_sym_bool] = ACTIONS(2983), + [anon_sym_str] = ACTIONS(2983), + [anon_sym_char] = ACTIONS(2983), + [anon_sym_DASH] = ACTIONS(2981), + [anon_sym_BANG] = ACTIONS(2981), + [anon_sym_AMP] = ACTIONS(2981), + [anon_sym_PIPE] = ACTIONS(2981), + [anon_sym_LT] = ACTIONS(2981), + [anon_sym_DOT_DOT] = ACTIONS(2981), + [anon_sym_COLON_COLON] = ACTIONS(2981), + [anon_sym_POUND] = ACTIONS(2981), + [anon_sym_SQUOTE] = ACTIONS(2983), + [anon_sym_async] = ACTIONS(2983), + [anon_sym_break] = ACTIONS(2983), + [anon_sym_const] = ACTIONS(2983), + [anon_sym_continue] = ACTIONS(2983), + [anon_sym_default] = ACTIONS(2983), + [anon_sym_enum] = ACTIONS(2983), + [anon_sym_fn] = ACTIONS(2983), + [anon_sym_for] = ACTIONS(2983), + [anon_sym_gen] = ACTIONS(2983), + [anon_sym_if] = ACTIONS(2983), + [anon_sym_impl] = ACTIONS(2983), + [anon_sym_let] = ACTIONS(2983), + [anon_sym_loop] = ACTIONS(2983), + [anon_sym_match] = ACTIONS(2983), + [anon_sym_mod] = ACTIONS(2983), + [anon_sym_pub] = ACTIONS(2983), + [anon_sym_return] = ACTIONS(2983), + [anon_sym_static] = ACTIONS(2983), + [anon_sym_struct] = ACTIONS(2983), + [anon_sym_trait] = ACTIONS(2983), + [anon_sym_type] = ACTIONS(2983), + [anon_sym_union] = ACTIONS(2983), + [anon_sym_unsafe] = ACTIONS(2983), + [anon_sym_use] = ACTIONS(2983), + [anon_sym_while] = ACTIONS(2983), + [anon_sym_extern] = ACTIONS(2983), + [anon_sym_yield] = ACTIONS(2983), + [anon_sym_move] = ACTIONS(2983), + [anon_sym_try] = ACTIONS(2983), + [sym_integer_literal] = ACTIONS(2981), + [aux_sym_string_literal_token1] = ACTIONS(2981), + [sym_char_literal] = ACTIONS(2981), + [anon_sym_true] = ACTIONS(2983), + [anon_sym_false] = ACTIONS(2983), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2983), + [sym_super] = ACTIONS(2983), + [sym_crate] = ACTIONS(2983), + [sym_metavariable] = ACTIONS(2981), + [sym__raw_string_literal_start] = ACTIONS(2981), + [sym_float_literal] = ACTIONS(2981), }, [776] = { - [sym_attribute_item] = STATE(1405), - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym_visibility_modifier] = STATE(916), - [sym__type] = STATE(2990), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), [sym_line_comment] = STATE(776), [sym_block_comment] = STATE(776), - [aux_sym_enum_variant_list_repeat1] = STATE(783), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_POUND] = ACTIONS(2997), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_pub] = ACTIONS(3013), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(3015), - [sym_metavariable] = ACTIONS(1621), + [ts_builtin_sym_end] = ACTIONS(2985), + [sym_identifier] = ACTIONS(2987), + [anon_sym_SEMI] = ACTIONS(2985), + [anon_sym_macro_rules_BANG] = ACTIONS(2985), + [anon_sym_LPAREN] = ACTIONS(2985), + [anon_sym_LBRACK] = ACTIONS(2985), + [anon_sym_LBRACE] = ACTIONS(2985), + [anon_sym_RBRACE] = ACTIONS(2985), + [anon_sym_STAR] = ACTIONS(2985), + [anon_sym_u8] = ACTIONS(2987), + [anon_sym_i8] = ACTIONS(2987), + [anon_sym_u16] = ACTIONS(2987), + [anon_sym_i16] = ACTIONS(2987), + [anon_sym_u32] = ACTIONS(2987), + [anon_sym_i32] = ACTIONS(2987), + [anon_sym_u64] = ACTIONS(2987), + [anon_sym_i64] = ACTIONS(2987), + [anon_sym_u128] = ACTIONS(2987), + [anon_sym_i128] = ACTIONS(2987), + [anon_sym_isize] = ACTIONS(2987), + [anon_sym_usize] = ACTIONS(2987), + [anon_sym_f32] = ACTIONS(2987), + [anon_sym_f64] = ACTIONS(2987), + [anon_sym_bool] = ACTIONS(2987), + [anon_sym_str] = ACTIONS(2987), + [anon_sym_char] = ACTIONS(2987), + [anon_sym_DASH] = ACTIONS(2985), + [anon_sym_BANG] = ACTIONS(2985), + [anon_sym_AMP] = ACTIONS(2985), + [anon_sym_PIPE] = ACTIONS(2985), + [anon_sym_LT] = ACTIONS(2985), + [anon_sym_DOT_DOT] = ACTIONS(2985), + [anon_sym_COLON_COLON] = ACTIONS(2985), + [anon_sym_POUND] = ACTIONS(2985), + [anon_sym_SQUOTE] = ACTIONS(2987), + [anon_sym_async] = ACTIONS(2987), + [anon_sym_break] = ACTIONS(2987), + [anon_sym_const] = ACTIONS(2987), + [anon_sym_continue] = ACTIONS(2987), + [anon_sym_default] = ACTIONS(2987), + [anon_sym_enum] = ACTIONS(2987), + [anon_sym_fn] = ACTIONS(2987), + [anon_sym_for] = ACTIONS(2987), + [anon_sym_gen] = ACTIONS(2987), + [anon_sym_if] = ACTIONS(2987), + [anon_sym_impl] = ACTIONS(2987), + [anon_sym_let] = ACTIONS(2987), + [anon_sym_loop] = ACTIONS(2987), + [anon_sym_match] = ACTIONS(2987), + [anon_sym_mod] = ACTIONS(2987), + [anon_sym_pub] = ACTIONS(2987), + [anon_sym_return] = ACTIONS(2987), + [anon_sym_static] = ACTIONS(2987), + [anon_sym_struct] = ACTIONS(2987), + [anon_sym_trait] = ACTIONS(2987), + [anon_sym_type] = ACTIONS(2987), + [anon_sym_union] = ACTIONS(2987), + [anon_sym_unsafe] = ACTIONS(2987), + [anon_sym_use] = ACTIONS(2987), + [anon_sym_while] = ACTIONS(2987), + [anon_sym_extern] = ACTIONS(2987), + [anon_sym_yield] = ACTIONS(2987), + [anon_sym_move] = ACTIONS(2987), + [anon_sym_try] = ACTIONS(2987), + [sym_integer_literal] = ACTIONS(2985), + [aux_sym_string_literal_token1] = ACTIONS(2985), + [sym_char_literal] = ACTIONS(2985), + [anon_sym_true] = ACTIONS(2987), + [anon_sym_false] = ACTIONS(2987), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2987), + [sym_super] = ACTIONS(2987), + [sym_crate] = ACTIONS(2987), + [sym_metavariable] = ACTIONS(2985), + [sym__raw_string_literal_start] = ACTIONS(2985), + [sym_float_literal] = ACTIONS(2985), }, [777] = { - [sym_attribute_item] = STATE(1405), - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym_visibility_modifier] = STATE(916), - [sym__type] = STATE(2990), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), [sym_line_comment] = STATE(777), [sym_block_comment] = STATE(777), - [aux_sym_enum_variant_list_repeat1] = STATE(783), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(3025), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_POUND] = ACTIONS(2997), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_pub] = ACTIONS(3013), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(3015), - [sym_metavariable] = ACTIONS(1621), + [ts_builtin_sym_end] = ACTIONS(2989), + [sym_identifier] = ACTIONS(2991), + [anon_sym_SEMI] = ACTIONS(2989), + [anon_sym_macro_rules_BANG] = ACTIONS(2989), + [anon_sym_LPAREN] = ACTIONS(2989), + [anon_sym_LBRACK] = ACTIONS(2989), + [anon_sym_LBRACE] = ACTIONS(2989), + [anon_sym_RBRACE] = ACTIONS(2989), + [anon_sym_STAR] = ACTIONS(2989), + [anon_sym_u8] = ACTIONS(2991), + [anon_sym_i8] = ACTIONS(2991), + [anon_sym_u16] = ACTIONS(2991), + [anon_sym_i16] = ACTIONS(2991), + [anon_sym_u32] = ACTIONS(2991), + [anon_sym_i32] = ACTIONS(2991), + [anon_sym_u64] = ACTIONS(2991), + [anon_sym_i64] = ACTIONS(2991), + [anon_sym_u128] = ACTIONS(2991), + [anon_sym_i128] = ACTIONS(2991), + [anon_sym_isize] = ACTIONS(2991), + [anon_sym_usize] = ACTIONS(2991), + [anon_sym_f32] = ACTIONS(2991), + [anon_sym_f64] = ACTIONS(2991), + [anon_sym_bool] = ACTIONS(2991), + [anon_sym_str] = ACTIONS(2991), + [anon_sym_char] = ACTIONS(2991), + [anon_sym_DASH] = ACTIONS(2989), + [anon_sym_BANG] = ACTIONS(2989), + [anon_sym_AMP] = ACTIONS(2989), + [anon_sym_PIPE] = ACTIONS(2989), + [anon_sym_LT] = ACTIONS(2989), + [anon_sym_DOT_DOT] = ACTIONS(2989), + [anon_sym_COLON_COLON] = ACTIONS(2989), + [anon_sym_POUND] = ACTIONS(2989), + [anon_sym_SQUOTE] = ACTIONS(2991), + [anon_sym_async] = ACTIONS(2991), + [anon_sym_break] = ACTIONS(2991), + [anon_sym_const] = ACTIONS(2991), + [anon_sym_continue] = ACTIONS(2991), + [anon_sym_default] = ACTIONS(2991), + [anon_sym_enum] = ACTIONS(2991), + [anon_sym_fn] = ACTIONS(2991), + [anon_sym_for] = ACTIONS(2991), + [anon_sym_gen] = ACTIONS(2991), + [anon_sym_if] = ACTIONS(2991), + [anon_sym_impl] = ACTIONS(2991), + [anon_sym_let] = ACTIONS(2991), + [anon_sym_loop] = ACTIONS(2991), + [anon_sym_match] = ACTIONS(2991), + [anon_sym_mod] = ACTIONS(2991), + [anon_sym_pub] = ACTIONS(2991), + [anon_sym_return] = ACTIONS(2991), + [anon_sym_static] = ACTIONS(2991), + [anon_sym_struct] = ACTIONS(2991), + [anon_sym_trait] = ACTIONS(2991), + [anon_sym_type] = ACTIONS(2991), + [anon_sym_union] = ACTIONS(2991), + [anon_sym_unsafe] = ACTIONS(2991), + [anon_sym_use] = ACTIONS(2991), + [anon_sym_while] = ACTIONS(2991), + [anon_sym_extern] = ACTIONS(2991), + [anon_sym_yield] = ACTIONS(2991), + [anon_sym_move] = ACTIONS(2991), + [anon_sym_try] = ACTIONS(2991), + [sym_integer_literal] = ACTIONS(2989), + [aux_sym_string_literal_token1] = ACTIONS(2989), + [sym_char_literal] = ACTIONS(2989), + [anon_sym_true] = ACTIONS(2991), + [anon_sym_false] = ACTIONS(2991), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2991), + [sym_super] = ACTIONS(2991), + [sym_crate] = ACTIONS(2991), + [sym_metavariable] = ACTIONS(2989), + [sym__raw_string_literal_start] = ACTIONS(2989), + [sym_float_literal] = ACTIONS(2989), }, [778] = { - [sym_attribute_item] = STATE(1405), - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym_visibility_modifier] = STATE(916), - [sym__type] = STATE(2990), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), [sym_line_comment] = STATE(778), [sym_block_comment] = STATE(778), - [aux_sym_enum_variant_list_repeat1] = STATE(783), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_POUND] = ACTIONS(2997), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_pub] = ACTIONS(3013), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(3015), - [sym_metavariable] = ACTIONS(1621), + [ts_builtin_sym_end] = ACTIONS(2993), + [sym_identifier] = ACTIONS(2995), + [anon_sym_SEMI] = ACTIONS(2993), + [anon_sym_macro_rules_BANG] = ACTIONS(2993), + [anon_sym_LPAREN] = ACTIONS(2993), + [anon_sym_LBRACK] = ACTIONS(2993), + [anon_sym_LBRACE] = ACTIONS(2993), + [anon_sym_RBRACE] = ACTIONS(2993), + [anon_sym_STAR] = ACTIONS(2993), + [anon_sym_u8] = ACTIONS(2995), + [anon_sym_i8] = ACTIONS(2995), + [anon_sym_u16] = ACTIONS(2995), + [anon_sym_i16] = ACTIONS(2995), + [anon_sym_u32] = ACTIONS(2995), + [anon_sym_i32] = ACTIONS(2995), + [anon_sym_u64] = ACTIONS(2995), + [anon_sym_i64] = ACTIONS(2995), + [anon_sym_u128] = ACTIONS(2995), + [anon_sym_i128] = ACTIONS(2995), + [anon_sym_isize] = ACTIONS(2995), + [anon_sym_usize] = ACTIONS(2995), + [anon_sym_f32] = ACTIONS(2995), + [anon_sym_f64] = ACTIONS(2995), + [anon_sym_bool] = ACTIONS(2995), + [anon_sym_str] = ACTIONS(2995), + [anon_sym_char] = ACTIONS(2995), + [anon_sym_DASH] = ACTIONS(2993), + [anon_sym_BANG] = ACTIONS(2993), + [anon_sym_AMP] = ACTIONS(2993), + [anon_sym_PIPE] = ACTIONS(2993), + [anon_sym_LT] = ACTIONS(2993), + [anon_sym_DOT_DOT] = ACTIONS(2993), + [anon_sym_COLON_COLON] = ACTIONS(2993), + [anon_sym_POUND] = ACTIONS(2993), + [anon_sym_SQUOTE] = ACTIONS(2995), + [anon_sym_async] = ACTIONS(2995), + [anon_sym_break] = ACTIONS(2995), + [anon_sym_const] = ACTIONS(2995), + [anon_sym_continue] = ACTIONS(2995), + [anon_sym_default] = ACTIONS(2995), + [anon_sym_enum] = ACTIONS(2995), + [anon_sym_fn] = ACTIONS(2995), + [anon_sym_for] = ACTIONS(2995), + [anon_sym_gen] = ACTIONS(2995), + [anon_sym_if] = ACTIONS(2995), + [anon_sym_impl] = ACTIONS(2995), + [anon_sym_let] = ACTIONS(2995), + [anon_sym_loop] = ACTIONS(2995), + [anon_sym_match] = ACTIONS(2995), + [anon_sym_mod] = ACTIONS(2995), + [anon_sym_pub] = ACTIONS(2995), + [anon_sym_return] = ACTIONS(2995), + [anon_sym_static] = ACTIONS(2995), + [anon_sym_struct] = ACTIONS(2995), + [anon_sym_trait] = ACTIONS(2995), + [anon_sym_type] = ACTIONS(2995), + [anon_sym_union] = ACTIONS(2995), + [anon_sym_unsafe] = ACTIONS(2995), + [anon_sym_use] = ACTIONS(2995), + [anon_sym_while] = ACTIONS(2995), + [anon_sym_extern] = ACTIONS(2995), + [anon_sym_yield] = ACTIONS(2995), + [anon_sym_move] = ACTIONS(2995), + [anon_sym_try] = ACTIONS(2995), + [sym_integer_literal] = ACTIONS(2993), + [aux_sym_string_literal_token1] = ACTIONS(2993), + [sym_char_literal] = ACTIONS(2993), + [anon_sym_true] = ACTIONS(2995), + [anon_sym_false] = ACTIONS(2995), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2995), + [sym_super] = ACTIONS(2995), + [sym_crate] = ACTIONS(2995), + [sym_metavariable] = ACTIONS(2993), + [sym__raw_string_literal_start] = ACTIONS(2993), + [sym_float_literal] = ACTIONS(2993), }, [779] = { - [sym_attribute_item] = STATE(1405), - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym_visibility_modifier] = STATE(916), - [sym__type] = STATE(2990), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), [sym_line_comment] = STATE(779), [sym_block_comment] = STATE(779), - [aux_sym_enum_variant_list_repeat1] = STATE(783), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), + [ts_builtin_sym_end] = ACTIONS(2997), + [sym_identifier] = ACTIONS(2999), + [anon_sym_SEMI] = ACTIONS(2997), + [anon_sym_macro_rules_BANG] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2997), + [anon_sym_RBRACE] = ACTIONS(2997), + [anon_sym_STAR] = ACTIONS(2997), + [anon_sym_u8] = ACTIONS(2999), + [anon_sym_i8] = ACTIONS(2999), + [anon_sym_u16] = ACTIONS(2999), + [anon_sym_i16] = ACTIONS(2999), + [anon_sym_u32] = ACTIONS(2999), + [anon_sym_i32] = ACTIONS(2999), + [anon_sym_u64] = ACTIONS(2999), + [anon_sym_i64] = ACTIONS(2999), + [anon_sym_u128] = ACTIONS(2999), + [anon_sym_i128] = ACTIONS(2999), + [anon_sym_isize] = ACTIONS(2999), + [anon_sym_usize] = ACTIONS(2999), + [anon_sym_f32] = ACTIONS(2999), + [anon_sym_f64] = ACTIONS(2999), + [anon_sym_bool] = ACTIONS(2999), + [anon_sym_str] = ACTIONS(2999), + [anon_sym_char] = ACTIONS(2999), + [anon_sym_DASH] = ACTIONS(2997), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_AMP] = ACTIONS(2997), + [anon_sym_PIPE] = ACTIONS(2997), + [anon_sym_LT] = ACTIONS(2997), + [anon_sym_DOT_DOT] = ACTIONS(2997), + [anon_sym_COLON_COLON] = ACTIONS(2997), [anon_sym_POUND] = ACTIONS(2997), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_pub] = ACTIONS(3013), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(3015), - [sym_metavariable] = ACTIONS(1621), + [anon_sym_SQUOTE] = ACTIONS(2999), + [anon_sym_async] = ACTIONS(2999), + [anon_sym_break] = ACTIONS(2999), + [anon_sym_const] = ACTIONS(2999), + [anon_sym_continue] = ACTIONS(2999), + [anon_sym_default] = ACTIONS(2999), + [anon_sym_enum] = ACTIONS(2999), + [anon_sym_fn] = ACTIONS(2999), + [anon_sym_for] = ACTIONS(2999), + [anon_sym_gen] = ACTIONS(2999), + [anon_sym_if] = ACTIONS(2999), + [anon_sym_impl] = ACTIONS(2999), + [anon_sym_let] = ACTIONS(2999), + [anon_sym_loop] = ACTIONS(2999), + [anon_sym_match] = ACTIONS(2999), + [anon_sym_mod] = ACTIONS(2999), + [anon_sym_pub] = ACTIONS(2999), + [anon_sym_return] = ACTIONS(2999), + [anon_sym_static] = ACTIONS(2999), + [anon_sym_struct] = ACTIONS(2999), + [anon_sym_trait] = ACTIONS(2999), + [anon_sym_type] = ACTIONS(2999), + [anon_sym_union] = ACTIONS(2999), + [anon_sym_unsafe] = ACTIONS(2999), + [anon_sym_use] = ACTIONS(2999), + [anon_sym_while] = ACTIONS(2999), + [anon_sym_extern] = ACTIONS(2999), + [anon_sym_yield] = ACTIONS(2999), + [anon_sym_move] = ACTIONS(2999), + [anon_sym_try] = ACTIONS(2999), + [sym_integer_literal] = ACTIONS(2997), + [aux_sym_string_literal_token1] = ACTIONS(2997), + [sym_char_literal] = ACTIONS(2997), + [anon_sym_true] = ACTIONS(2999), + [anon_sym_false] = ACTIONS(2999), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(2999), + [sym_super] = ACTIONS(2999), + [sym_crate] = ACTIONS(2999), + [sym_metavariable] = ACTIONS(2997), + [sym__raw_string_literal_start] = ACTIONS(2997), + [sym_float_literal] = ACTIONS(2997), }, [780] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2738), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), [sym_line_comment] = STATE(780), [sym_block_comment] = STATE(780), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_RBRACK] = ACTIONS(3029), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COMMA] = ACTIONS(3031), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), - [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), + [ts_builtin_sym_end] = ACTIONS(3001), + [sym_identifier] = ACTIONS(3003), + [anon_sym_SEMI] = ACTIONS(3001), + [anon_sym_macro_rules_BANG] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(3001), + [anon_sym_LBRACK] = ACTIONS(3001), + [anon_sym_LBRACE] = ACTIONS(3001), + [anon_sym_RBRACE] = ACTIONS(3001), + [anon_sym_STAR] = ACTIONS(3001), + [anon_sym_u8] = ACTIONS(3003), + [anon_sym_i8] = ACTIONS(3003), + [anon_sym_u16] = ACTIONS(3003), + [anon_sym_i16] = ACTIONS(3003), + [anon_sym_u32] = ACTIONS(3003), + [anon_sym_i32] = ACTIONS(3003), + [anon_sym_u64] = ACTIONS(3003), + [anon_sym_i64] = ACTIONS(3003), + [anon_sym_u128] = ACTIONS(3003), + [anon_sym_i128] = ACTIONS(3003), + [anon_sym_isize] = ACTIONS(3003), + [anon_sym_usize] = ACTIONS(3003), + [anon_sym_f32] = ACTIONS(3003), + [anon_sym_f64] = ACTIONS(3003), + [anon_sym_bool] = ACTIONS(3003), + [anon_sym_str] = ACTIONS(3003), + [anon_sym_char] = ACTIONS(3003), + [anon_sym_DASH] = ACTIONS(3001), + [anon_sym_BANG] = ACTIONS(3001), + [anon_sym_AMP] = ACTIONS(3001), + [anon_sym_PIPE] = ACTIONS(3001), + [anon_sym_LT] = ACTIONS(3001), + [anon_sym_DOT_DOT] = ACTIONS(3001), + [anon_sym_COLON_COLON] = ACTIONS(3001), + [anon_sym_POUND] = ACTIONS(3001), + [anon_sym_SQUOTE] = ACTIONS(3003), + [anon_sym_async] = ACTIONS(3003), + [anon_sym_break] = ACTIONS(3003), + [anon_sym_const] = ACTIONS(3003), + [anon_sym_continue] = ACTIONS(3003), + [anon_sym_default] = ACTIONS(3003), + [anon_sym_enum] = ACTIONS(3003), + [anon_sym_fn] = ACTIONS(3003), + [anon_sym_for] = ACTIONS(3003), + [anon_sym_gen] = ACTIONS(3003), + [anon_sym_if] = ACTIONS(3003), + [anon_sym_impl] = ACTIONS(3003), + [anon_sym_let] = ACTIONS(3003), + [anon_sym_loop] = ACTIONS(3003), + [anon_sym_match] = ACTIONS(3003), + [anon_sym_mod] = ACTIONS(3003), + [anon_sym_pub] = ACTIONS(3003), + [anon_sym_return] = ACTIONS(3003), + [anon_sym_static] = ACTIONS(3003), + [anon_sym_struct] = ACTIONS(3003), + [anon_sym_trait] = ACTIONS(3003), + [anon_sym_type] = ACTIONS(3003), + [anon_sym_union] = ACTIONS(3003), + [anon_sym_unsafe] = ACTIONS(3003), + [anon_sym_use] = ACTIONS(3003), + [anon_sym_while] = ACTIONS(3003), + [anon_sym_extern] = ACTIONS(3003), + [anon_sym_yield] = ACTIONS(3003), + [anon_sym_move] = ACTIONS(3003), + [anon_sym_try] = ACTIONS(3003), + [sym_integer_literal] = ACTIONS(3001), + [aux_sym_string_literal_token1] = ACTIONS(3001), + [sym_char_literal] = ACTIONS(3001), + [anon_sym_true] = ACTIONS(3003), + [anon_sym_false] = ACTIONS(3003), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3003), + [sym_super] = ACTIONS(3003), + [sym_crate] = ACTIONS(3003), + [sym_metavariable] = ACTIONS(3001), + [sym__raw_string_literal_start] = ACTIONS(3001), + [sym_float_literal] = ACTIONS(3001), }, [781] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2669), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), [sym_line_comment] = STATE(781), [sym_block_comment] = STATE(781), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_RPAREN] = ACTIONS(3033), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COMMA] = ACTIONS(3035), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), - [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), + [ts_builtin_sym_end] = ACTIONS(3005), + [sym_identifier] = ACTIONS(3007), + [anon_sym_SEMI] = ACTIONS(3005), + [anon_sym_macro_rules_BANG] = ACTIONS(3005), + [anon_sym_LPAREN] = ACTIONS(3005), + [anon_sym_LBRACK] = ACTIONS(3005), + [anon_sym_LBRACE] = ACTIONS(3005), + [anon_sym_RBRACE] = ACTIONS(3005), + [anon_sym_STAR] = ACTIONS(3005), + [anon_sym_u8] = ACTIONS(3007), + [anon_sym_i8] = ACTIONS(3007), + [anon_sym_u16] = ACTIONS(3007), + [anon_sym_i16] = ACTIONS(3007), + [anon_sym_u32] = ACTIONS(3007), + [anon_sym_i32] = ACTIONS(3007), + [anon_sym_u64] = ACTIONS(3007), + [anon_sym_i64] = ACTIONS(3007), + [anon_sym_u128] = ACTIONS(3007), + [anon_sym_i128] = ACTIONS(3007), + [anon_sym_isize] = ACTIONS(3007), + [anon_sym_usize] = ACTIONS(3007), + [anon_sym_f32] = ACTIONS(3007), + [anon_sym_f64] = ACTIONS(3007), + [anon_sym_bool] = ACTIONS(3007), + [anon_sym_str] = ACTIONS(3007), + [anon_sym_char] = ACTIONS(3007), + [anon_sym_DASH] = ACTIONS(3005), + [anon_sym_BANG] = ACTIONS(3005), + [anon_sym_AMP] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(3005), + [anon_sym_LT] = ACTIONS(3005), + [anon_sym_DOT_DOT] = ACTIONS(3005), + [anon_sym_COLON_COLON] = ACTIONS(3005), + [anon_sym_POUND] = ACTIONS(3005), + [anon_sym_SQUOTE] = ACTIONS(3007), + [anon_sym_async] = ACTIONS(3007), + [anon_sym_break] = ACTIONS(3007), + [anon_sym_const] = ACTIONS(3007), + [anon_sym_continue] = ACTIONS(3007), + [anon_sym_default] = ACTIONS(3007), + [anon_sym_enum] = ACTIONS(3007), + [anon_sym_fn] = ACTIONS(3007), + [anon_sym_for] = ACTIONS(3007), + [anon_sym_gen] = ACTIONS(3007), + [anon_sym_if] = ACTIONS(3007), + [anon_sym_impl] = ACTIONS(3007), + [anon_sym_let] = ACTIONS(3007), + [anon_sym_loop] = ACTIONS(3007), + [anon_sym_match] = ACTIONS(3007), + [anon_sym_mod] = ACTIONS(3007), + [anon_sym_pub] = ACTIONS(3007), + [anon_sym_return] = ACTIONS(3007), + [anon_sym_static] = ACTIONS(3007), + [anon_sym_struct] = ACTIONS(3007), + [anon_sym_trait] = ACTIONS(3007), + [anon_sym_type] = ACTIONS(3007), + [anon_sym_union] = ACTIONS(3007), + [anon_sym_unsafe] = ACTIONS(3007), + [anon_sym_use] = ACTIONS(3007), + [anon_sym_while] = ACTIONS(3007), + [anon_sym_extern] = ACTIONS(3007), + [anon_sym_yield] = ACTIONS(3007), + [anon_sym_move] = ACTIONS(3007), + [anon_sym_try] = ACTIONS(3007), + [sym_integer_literal] = ACTIONS(3005), + [aux_sym_string_literal_token1] = ACTIONS(3005), + [sym_char_literal] = ACTIONS(3005), + [anon_sym_true] = ACTIONS(3007), + [anon_sym_false] = ACTIONS(3007), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3007), + [sym_super] = ACTIONS(3007), + [sym_crate] = ACTIONS(3007), + [sym_metavariable] = ACTIONS(3005), + [sym__raw_string_literal_start] = ACTIONS(3005), + [sym_float_literal] = ACTIONS(3005), }, [782] = { - [sym_attribute_item] = STATE(1405), - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym_visibility_modifier] = STATE(904), - [sym__type] = STATE(2589), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), [sym_line_comment] = STATE(782), [sym_block_comment] = STATE(782), - [aux_sym_enum_variant_list_repeat1] = STATE(1061), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_POUND] = ACTIONS(2997), + [ts_builtin_sym_end] = ACTIONS(3009), + [sym_identifier] = ACTIONS(3011), + [anon_sym_SEMI] = ACTIONS(3009), + [anon_sym_macro_rules_BANG] = ACTIONS(3009), + [anon_sym_LPAREN] = ACTIONS(3009), + [anon_sym_LBRACK] = ACTIONS(3009), + [anon_sym_LBRACE] = ACTIONS(3009), + [anon_sym_RBRACE] = ACTIONS(3009), + [anon_sym_STAR] = ACTIONS(3009), + [anon_sym_u8] = ACTIONS(3011), + [anon_sym_i8] = ACTIONS(3011), + [anon_sym_u16] = ACTIONS(3011), + [anon_sym_i16] = ACTIONS(3011), + [anon_sym_u32] = ACTIONS(3011), + [anon_sym_i32] = ACTIONS(3011), + [anon_sym_u64] = ACTIONS(3011), + [anon_sym_i64] = ACTIONS(3011), + [anon_sym_u128] = ACTIONS(3011), + [anon_sym_i128] = ACTIONS(3011), + [anon_sym_isize] = ACTIONS(3011), + [anon_sym_usize] = ACTIONS(3011), + [anon_sym_f32] = ACTIONS(3011), + [anon_sym_f64] = ACTIONS(3011), + [anon_sym_bool] = ACTIONS(3011), + [anon_sym_str] = ACTIONS(3011), + [anon_sym_char] = ACTIONS(3011), + [anon_sym_DASH] = ACTIONS(3009), + [anon_sym_BANG] = ACTIONS(3009), + [anon_sym_AMP] = ACTIONS(3009), + [anon_sym_PIPE] = ACTIONS(3009), + [anon_sym_LT] = ACTIONS(3009), + [anon_sym_DOT_DOT] = ACTIONS(3009), + [anon_sym_COLON_COLON] = ACTIONS(3009), + [anon_sym_POUND] = ACTIONS(3009), [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_pub] = ACTIONS(3013), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(3015), - [sym_metavariable] = ACTIONS(1621), + [anon_sym_async] = ACTIONS(3011), + [anon_sym_break] = ACTIONS(3011), + [anon_sym_const] = ACTIONS(3011), + [anon_sym_continue] = ACTIONS(3011), + [anon_sym_default] = ACTIONS(3011), + [anon_sym_enum] = ACTIONS(3011), + [anon_sym_fn] = ACTIONS(3011), + [anon_sym_for] = ACTIONS(3011), + [anon_sym_gen] = ACTIONS(3011), + [anon_sym_if] = ACTIONS(3011), + [anon_sym_impl] = ACTIONS(3011), + [anon_sym_let] = ACTIONS(3011), + [anon_sym_loop] = ACTIONS(3011), + [anon_sym_match] = ACTIONS(3011), + [anon_sym_mod] = ACTIONS(3011), + [anon_sym_pub] = ACTIONS(3011), + [anon_sym_return] = ACTIONS(3011), + [anon_sym_static] = ACTIONS(3011), + [anon_sym_struct] = ACTIONS(3011), + [anon_sym_trait] = ACTIONS(3011), + [anon_sym_type] = ACTIONS(3011), + [anon_sym_union] = ACTIONS(3011), + [anon_sym_unsafe] = ACTIONS(3011), + [anon_sym_use] = ACTIONS(3011), + [anon_sym_while] = ACTIONS(3011), + [anon_sym_extern] = ACTIONS(3011), + [anon_sym_yield] = ACTIONS(3011), + [anon_sym_move] = ACTIONS(3011), + [anon_sym_try] = ACTIONS(3011), + [sym_integer_literal] = ACTIONS(3009), + [aux_sym_string_literal_token1] = ACTIONS(3009), + [sym_char_literal] = ACTIONS(3009), + [anon_sym_true] = ACTIONS(3011), + [anon_sym_false] = ACTIONS(3011), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3011), + [sym_super] = ACTIONS(3011), + [sym_crate] = ACTIONS(3011), + [sym_metavariable] = ACTIONS(3009), + [sym__raw_string_literal_start] = ACTIONS(3009), + [sym_float_literal] = ACTIONS(3009), }, [783] = { - [sym_attribute_item] = STATE(1405), - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym_visibility_modifier] = STATE(907), - [sym__type] = STATE(2916), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), [sym_line_comment] = STATE(783), [sym_block_comment] = STATE(783), - [aux_sym_enum_variant_list_repeat1] = STATE(1061), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_POUND] = ACTIONS(2997), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_pub] = ACTIONS(3013), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), + [ts_builtin_sym_end] = ACTIONS(3013), + [sym_identifier] = ACTIONS(3015), + [anon_sym_SEMI] = ACTIONS(3013), + [anon_sym_macro_rules_BANG] = ACTIONS(3013), + [anon_sym_LPAREN] = ACTIONS(3013), + [anon_sym_LBRACK] = ACTIONS(3013), + [anon_sym_LBRACE] = ACTIONS(3013), + [anon_sym_RBRACE] = ACTIONS(3013), + [anon_sym_STAR] = ACTIONS(3013), + [anon_sym_u8] = ACTIONS(3015), + [anon_sym_i8] = ACTIONS(3015), + [anon_sym_u16] = ACTIONS(3015), + [anon_sym_i16] = ACTIONS(3015), + [anon_sym_u32] = ACTIONS(3015), + [anon_sym_i32] = ACTIONS(3015), + [anon_sym_u64] = ACTIONS(3015), + [anon_sym_i64] = ACTIONS(3015), + [anon_sym_u128] = ACTIONS(3015), + [anon_sym_i128] = ACTIONS(3015), + [anon_sym_isize] = ACTIONS(3015), + [anon_sym_usize] = ACTIONS(3015), + [anon_sym_f32] = ACTIONS(3015), + [anon_sym_f64] = ACTIONS(3015), + [anon_sym_bool] = ACTIONS(3015), + [anon_sym_str] = ACTIONS(3015), + [anon_sym_char] = ACTIONS(3015), + [anon_sym_DASH] = ACTIONS(3013), + [anon_sym_BANG] = ACTIONS(3013), + [anon_sym_AMP] = ACTIONS(3013), + [anon_sym_PIPE] = ACTIONS(3013), + [anon_sym_LT] = ACTIONS(3013), + [anon_sym_DOT_DOT] = ACTIONS(3013), + [anon_sym_COLON_COLON] = ACTIONS(3013), + [anon_sym_POUND] = ACTIONS(3013), + [anon_sym_SQUOTE] = ACTIONS(3015), + [anon_sym_async] = ACTIONS(3015), + [anon_sym_break] = ACTIONS(3015), + [anon_sym_const] = ACTIONS(3015), + [anon_sym_continue] = ACTIONS(3015), + [anon_sym_default] = ACTIONS(3015), + [anon_sym_enum] = ACTIONS(3015), + [anon_sym_fn] = ACTIONS(3015), + [anon_sym_for] = ACTIONS(3015), + [anon_sym_gen] = ACTIONS(3015), + [anon_sym_if] = ACTIONS(3015), + [anon_sym_impl] = ACTIONS(3015), + [anon_sym_let] = ACTIONS(3015), + [anon_sym_loop] = ACTIONS(3015), + [anon_sym_match] = ACTIONS(3015), + [anon_sym_mod] = ACTIONS(3015), + [anon_sym_pub] = ACTIONS(3015), + [anon_sym_return] = ACTIONS(3015), + [anon_sym_static] = ACTIONS(3015), + [anon_sym_struct] = ACTIONS(3015), + [anon_sym_trait] = ACTIONS(3015), + [anon_sym_type] = ACTIONS(3015), + [anon_sym_union] = ACTIONS(3015), + [anon_sym_unsafe] = ACTIONS(3015), + [anon_sym_use] = ACTIONS(3015), + [anon_sym_while] = ACTIONS(3015), + [anon_sym_extern] = ACTIONS(3015), + [anon_sym_yield] = ACTIONS(3015), + [anon_sym_move] = ACTIONS(3015), + [anon_sym_try] = ACTIONS(3015), + [sym_integer_literal] = ACTIONS(3013), + [aux_sym_string_literal_token1] = ACTIONS(3013), + [sym_char_literal] = ACTIONS(3013), + [anon_sym_true] = ACTIONS(3015), + [anon_sym_false] = ACTIONS(3015), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3015), + [sym_super] = ACTIONS(3015), [sym_crate] = ACTIONS(3015), - [sym_metavariable] = ACTIONS(1621), + [sym_metavariable] = ACTIONS(3013), + [sym__raw_string_literal_start] = ACTIONS(3013), + [sym_float_literal] = ACTIONS(3013), }, [784] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2671), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), [sym_line_comment] = STATE(784), [sym_block_comment] = STATE(784), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_RPAREN] = ACTIONS(3037), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COMMA] = ACTIONS(3039), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), - [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), + [ts_builtin_sym_end] = ACTIONS(3017), + [sym_identifier] = ACTIONS(3019), + [anon_sym_SEMI] = ACTIONS(3017), + [anon_sym_macro_rules_BANG] = ACTIONS(3017), + [anon_sym_LPAREN] = ACTIONS(3017), + [anon_sym_LBRACK] = ACTIONS(3017), + [anon_sym_LBRACE] = ACTIONS(3017), + [anon_sym_RBRACE] = ACTIONS(3017), + [anon_sym_STAR] = ACTIONS(3017), + [anon_sym_u8] = ACTIONS(3019), + [anon_sym_i8] = ACTIONS(3019), + [anon_sym_u16] = ACTIONS(3019), + [anon_sym_i16] = ACTIONS(3019), + [anon_sym_u32] = ACTIONS(3019), + [anon_sym_i32] = ACTIONS(3019), + [anon_sym_u64] = ACTIONS(3019), + [anon_sym_i64] = ACTIONS(3019), + [anon_sym_u128] = ACTIONS(3019), + [anon_sym_i128] = ACTIONS(3019), + [anon_sym_isize] = ACTIONS(3019), + [anon_sym_usize] = ACTIONS(3019), + [anon_sym_f32] = ACTIONS(3019), + [anon_sym_f64] = ACTIONS(3019), + [anon_sym_bool] = ACTIONS(3019), + [anon_sym_str] = ACTIONS(3019), + [anon_sym_char] = ACTIONS(3019), + [anon_sym_DASH] = ACTIONS(3017), + [anon_sym_BANG] = ACTIONS(3017), + [anon_sym_AMP] = ACTIONS(3017), + [anon_sym_PIPE] = ACTIONS(3017), + [anon_sym_LT] = ACTIONS(3017), + [anon_sym_DOT_DOT] = ACTIONS(3017), + [anon_sym_COLON_COLON] = ACTIONS(3017), + [anon_sym_POUND] = ACTIONS(3017), + [anon_sym_SQUOTE] = ACTIONS(3019), + [anon_sym_async] = ACTIONS(3019), + [anon_sym_break] = ACTIONS(3019), + [anon_sym_const] = ACTIONS(3019), + [anon_sym_continue] = ACTIONS(3019), + [anon_sym_default] = ACTIONS(3019), + [anon_sym_enum] = ACTIONS(3019), + [anon_sym_fn] = ACTIONS(3019), + [anon_sym_for] = ACTIONS(3019), + [anon_sym_gen] = ACTIONS(3019), + [anon_sym_if] = ACTIONS(3019), + [anon_sym_impl] = ACTIONS(3019), + [anon_sym_let] = ACTIONS(3019), + [anon_sym_loop] = ACTIONS(3019), + [anon_sym_match] = ACTIONS(3019), + [anon_sym_mod] = ACTIONS(3019), + [anon_sym_pub] = ACTIONS(3019), + [anon_sym_return] = ACTIONS(3019), + [anon_sym_static] = ACTIONS(3019), + [anon_sym_struct] = ACTIONS(3019), + [anon_sym_trait] = ACTIONS(3019), + [anon_sym_type] = ACTIONS(3019), + [anon_sym_union] = ACTIONS(3019), + [anon_sym_unsafe] = ACTIONS(3019), + [anon_sym_use] = ACTIONS(3019), + [anon_sym_while] = ACTIONS(3019), + [anon_sym_extern] = ACTIONS(3019), + [anon_sym_yield] = ACTIONS(3019), + [anon_sym_move] = ACTIONS(3019), + [anon_sym_try] = ACTIONS(3019), + [sym_integer_literal] = ACTIONS(3017), + [aux_sym_string_literal_token1] = ACTIONS(3017), + [sym_char_literal] = ACTIONS(3017), + [anon_sym_true] = ACTIONS(3019), + [anon_sym_false] = ACTIONS(3019), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3019), + [sym_super] = ACTIONS(3019), + [sym_crate] = ACTIONS(3019), + [sym_metavariable] = ACTIONS(3017), + [sym__raw_string_literal_start] = ACTIONS(3017), + [sym_float_literal] = ACTIONS(3017), }, [785] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2700), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), [sym_line_comment] = STATE(785), [sym_block_comment] = STATE(785), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_RPAREN] = ACTIONS(3041), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COMMA] = ACTIONS(3043), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), - [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), + [ts_builtin_sym_end] = ACTIONS(3021), + [sym_identifier] = ACTIONS(3023), + [anon_sym_SEMI] = ACTIONS(3021), + [anon_sym_macro_rules_BANG] = ACTIONS(3021), + [anon_sym_LPAREN] = ACTIONS(3021), + [anon_sym_LBRACK] = ACTIONS(3021), + [anon_sym_LBRACE] = ACTIONS(3021), + [anon_sym_RBRACE] = ACTIONS(3021), + [anon_sym_STAR] = ACTIONS(3021), + [anon_sym_u8] = ACTIONS(3023), + [anon_sym_i8] = ACTIONS(3023), + [anon_sym_u16] = ACTIONS(3023), + [anon_sym_i16] = ACTIONS(3023), + [anon_sym_u32] = ACTIONS(3023), + [anon_sym_i32] = ACTIONS(3023), + [anon_sym_u64] = ACTIONS(3023), + [anon_sym_i64] = ACTIONS(3023), + [anon_sym_u128] = ACTIONS(3023), + [anon_sym_i128] = ACTIONS(3023), + [anon_sym_isize] = ACTIONS(3023), + [anon_sym_usize] = ACTIONS(3023), + [anon_sym_f32] = ACTIONS(3023), + [anon_sym_f64] = ACTIONS(3023), + [anon_sym_bool] = ACTIONS(3023), + [anon_sym_str] = ACTIONS(3023), + [anon_sym_char] = ACTIONS(3023), + [anon_sym_DASH] = ACTIONS(3021), + [anon_sym_BANG] = ACTIONS(3021), + [anon_sym_AMP] = ACTIONS(3021), + [anon_sym_PIPE] = ACTIONS(3021), + [anon_sym_LT] = ACTIONS(3021), + [anon_sym_DOT_DOT] = ACTIONS(3021), + [anon_sym_COLON_COLON] = ACTIONS(3021), + [anon_sym_POUND] = ACTIONS(3021), + [anon_sym_SQUOTE] = ACTIONS(3023), + [anon_sym_async] = ACTIONS(3023), + [anon_sym_break] = ACTIONS(3023), + [anon_sym_const] = ACTIONS(3023), + [anon_sym_continue] = ACTIONS(3023), + [anon_sym_default] = ACTIONS(3023), + [anon_sym_enum] = ACTIONS(3023), + [anon_sym_fn] = ACTIONS(3023), + [anon_sym_for] = ACTIONS(3023), + [anon_sym_gen] = ACTIONS(3023), + [anon_sym_if] = ACTIONS(3023), + [anon_sym_impl] = ACTIONS(3023), + [anon_sym_let] = ACTIONS(3023), + [anon_sym_loop] = ACTIONS(3023), + [anon_sym_match] = ACTIONS(3023), + [anon_sym_mod] = ACTIONS(3023), + [anon_sym_pub] = ACTIONS(3023), + [anon_sym_return] = ACTIONS(3023), + [anon_sym_static] = ACTIONS(3023), + [anon_sym_struct] = ACTIONS(3023), + [anon_sym_trait] = ACTIONS(3023), + [anon_sym_type] = ACTIONS(3023), + [anon_sym_union] = ACTIONS(3023), + [anon_sym_unsafe] = ACTIONS(3023), + [anon_sym_use] = ACTIONS(3023), + [anon_sym_while] = ACTIONS(3023), + [anon_sym_extern] = ACTIONS(3023), + [anon_sym_yield] = ACTIONS(3023), + [anon_sym_move] = ACTIONS(3023), + [anon_sym_try] = ACTIONS(3023), + [sym_integer_literal] = ACTIONS(3021), + [aux_sym_string_literal_token1] = ACTIONS(3021), + [sym_char_literal] = ACTIONS(3021), + [anon_sym_true] = ACTIONS(3023), + [anon_sym_false] = ACTIONS(3023), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3023), + [sym_super] = ACTIONS(3023), + [sym_crate] = ACTIONS(3023), + [sym_metavariable] = ACTIONS(3021), + [sym__raw_string_literal_start] = ACTIONS(3021), + [sym_float_literal] = ACTIONS(3021), }, [786] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2670), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), [sym_line_comment] = STATE(786), [sym_block_comment] = STATE(786), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_RBRACK] = ACTIONS(1545), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COMMA] = ACTIONS(1551), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), - [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), + [ts_builtin_sym_end] = ACTIONS(3025), + [sym_identifier] = ACTIONS(3027), + [anon_sym_SEMI] = ACTIONS(3025), + [anon_sym_macro_rules_BANG] = ACTIONS(3025), + [anon_sym_LPAREN] = ACTIONS(3025), + [anon_sym_LBRACK] = ACTIONS(3025), + [anon_sym_LBRACE] = ACTIONS(3025), + [anon_sym_RBRACE] = ACTIONS(3025), + [anon_sym_STAR] = ACTIONS(3025), + [anon_sym_u8] = ACTIONS(3027), + [anon_sym_i8] = ACTIONS(3027), + [anon_sym_u16] = ACTIONS(3027), + [anon_sym_i16] = ACTIONS(3027), + [anon_sym_u32] = ACTIONS(3027), + [anon_sym_i32] = ACTIONS(3027), + [anon_sym_u64] = ACTIONS(3027), + [anon_sym_i64] = ACTIONS(3027), + [anon_sym_u128] = ACTIONS(3027), + [anon_sym_i128] = ACTIONS(3027), + [anon_sym_isize] = ACTIONS(3027), + [anon_sym_usize] = ACTIONS(3027), + [anon_sym_f32] = ACTIONS(3027), + [anon_sym_f64] = ACTIONS(3027), + [anon_sym_bool] = ACTIONS(3027), + [anon_sym_str] = ACTIONS(3027), + [anon_sym_char] = ACTIONS(3027), + [anon_sym_DASH] = ACTIONS(3025), + [anon_sym_BANG] = ACTIONS(3025), + [anon_sym_AMP] = ACTIONS(3025), + [anon_sym_PIPE] = ACTIONS(3025), + [anon_sym_LT] = ACTIONS(3025), + [anon_sym_DOT_DOT] = ACTIONS(3025), + [anon_sym_COLON_COLON] = ACTIONS(3025), + [anon_sym_POUND] = ACTIONS(3025), + [anon_sym_SQUOTE] = ACTIONS(3027), + [anon_sym_async] = ACTIONS(3027), + [anon_sym_break] = ACTIONS(3027), + [anon_sym_const] = ACTIONS(3027), + [anon_sym_continue] = ACTIONS(3027), + [anon_sym_default] = ACTIONS(3027), + [anon_sym_enum] = ACTIONS(3027), + [anon_sym_fn] = ACTIONS(3027), + [anon_sym_for] = ACTIONS(3027), + [anon_sym_gen] = ACTIONS(3027), + [anon_sym_if] = ACTIONS(3027), + [anon_sym_impl] = ACTIONS(3027), + [anon_sym_let] = ACTIONS(3027), + [anon_sym_loop] = ACTIONS(3027), + [anon_sym_match] = ACTIONS(3027), + [anon_sym_mod] = ACTIONS(3027), + [anon_sym_pub] = ACTIONS(3027), + [anon_sym_return] = ACTIONS(3027), + [anon_sym_static] = ACTIONS(3027), + [anon_sym_struct] = ACTIONS(3027), + [anon_sym_trait] = ACTIONS(3027), + [anon_sym_type] = ACTIONS(3027), + [anon_sym_union] = ACTIONS(3027), + [anon_sym_unsafe] = ACTIONS(3027), + [anon_sym_use] = ACTIONS(3027), + [anon_sym_while] = ACTIONS(3027), + [anon_sym_extern] = ACTIONS(3027), + [anon_sym_yield] = ACTIONS(3027), + [anon_sym_move] = ACTIONS(3027), + [anon_sym_try] = ACTIONS(3027), + [sym_integer_literal] = ACTIONS(3025), + [aux_sym_string_literal_token1] = ACTIONS(3025), + [sym_char_literal] = ACTIONS(3025), + [anon_sym_true] = ACTIONS(3027), + [anon_sym_false] = ACTIONS(3027), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3027), + [sym_super] = ACTIONS(3027), + [sym_crate] = ACTIONS(3027), + [sym_metavariable] = ACTIONS(3025), + [sym__raw_string_literal_start] = ACTIONS(3025), + [sym_float_literal] = ACTIONS(3025), }, [787] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2723), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), [sym_line_comment] = STATE(787), [sym_block_comment] = STATE(787), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_RPAREN] = ACTIONS(3045), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COMMA] = ACTIONS(3047), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), - [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), + [ts_builtin_sym_end] = ACTIONS(3029), + [sym_identifier] = ACTIONS(3031), + [anon_sym_SEMI] = ACTIONS(3029), + [anon_sym_macro_rules_BANG] = ACTIONS(3029), + [anon_sym_LPAREN] = ACTIONS(3029), + [anon_sym_LBRACK] = ACTIONS(3029), + [anon_sym_LBRACE] = ACTIONS(3029), + [anon_sym_RBRACE] = ACTIONS(3029), + [anon_sym_STAR] = ACTIONS(3029), + [anon_sym_u8] = ACTIONS(3031), + [anon_sym_i8] = ACTIONS(3031), + [anon_sym_u16] = ACTIONS(3031), + [anon_sym_i16] = ACTIONS(3031), + [anon_sym_u32] = ACTIONS(3031), + [anon_sym_i32] = ACTIONS(3031), + [anon_sym_u64] = ACTIONS(3031), + [anon_sym_i64] = ACTIONS(3031), + [anon_sym_u128] = ACTIONS(3031), + [anon_sym_i128] = ACTIONS(3031), + [anon_sym_isize] = ACTIONS(3031), + [anon_sym_usize] = ACTIONS(3031), + [anon_sym_f32] = ACTIONS(3031), + [anon_sym_f64] = ACTIONS(3031), + [anon_sym_bool] = ACTIONS(3031), + [anon_sym_str] = ACTIONS(3031), + [anon_sym_char] = ACTIONS(3031), + [anon_sym_DASH] = ACTIONS(3029), + [anon_sym_BANG] = ACTIONS(3029), + [anon_sym_AMP] = ACTIONS(3029), + [anon_sym_PIPE] = ACTIONS(3029), + [anon_sym_LT] = ACTIONS(3029), + [anon_sym_DOT_DOT] = ACTIONS(3029), + [anon_sym_COLON_COLON] = ACTIONS(3029), + [anon_sym_POUND] = ACTIONS(3029), + [anon_sym_SQUOTE] = ACTIONS(3031), + [anon_sym_async] = ACTIONS(3031), + [anon_sym_break] = ACTIONS(3031), + [anon_sym_const] = ACTIONS(3031), + [anon_sym_continue] = ACTIONS(3031), + [anon_sym_default] = ACTIONS(3031), + [anon_sym_enum] = ACTIONS(3031), + [anon_sym_fn] = ACTIONS(3031), + [anon_sym_for] = ACTIONS(3031), + [anon_sym_gen] = ACTIONS(3031), + [anon_sym_if] = ACTIONS(3031), + [anon_sym_impl] = ACTIONS(3031), + [anon_sym_let] = ACTIONS(3031), + [anon_sym_loop] = ACTIONS(3031), + [anon_sym_match] = ACTIONS(3031), + [anon_sym_mod] = ACTIONS(3031), + [anon_sym_pub] = ACTIONS(3031), + [anon_sym_return] = ACTIONS(3031), + [anon_sym_static] = ACTIONS(3031), + [anon_sym_struct] = ACTIONS(3031), + [anon_sym_trait] = ACTIONS(3031), + [anon_sym_type] = ACTIONS(3031), + [anon_sym_union] = ACTIONS(3031), + [anon_sym_unsafe] = ACTIONS(3031), + [anon_sym_use] = ACTIONS(3031), + [anon_sym_while] = ACTIONS(3031), + [anon_sym_extern] = ACTIONS(3031), + [anon_sym_yield] = ACTIONS(3031), + [anon_sym_move] = ACTIONS(3031), + [anon_sym_try] = ACTIONS(3031), + [sym_integer_literal] = ACTIONS(3029), + [aux_sym_string_literal_token1] = ACTIONS(3029), + [sym_char_literal] = ACTIONS(3029), + [anon_sym_true] = ACTIONS(3031), + [anon_sym_false] = ACTIONS(3031), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3031), + [sym_super] = ACTIONS(3031), + [sym_crate] = ACTIONS(3031), + [sym_metavariable] = ACTIONS(3029), + [sym__raw_string_literal_start] = ACTIONS(3029), + [sym_float_literal] = ACTIONS(3029), }, [788] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2638), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), [sym_line_comment] = STATE(788), [sym_block_comment] = STATE(788), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_RPAREN] = ACTIONS(3049), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), - [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), + [ts_builtin_sym_end] = ACTIONS(3033), + [sym_identifier] = ACTIONS(3035), + [anon_sym_SEMI] = ACTIONS(3033), + [anon_sym_macro_rules_BANG] = ACTIONS(3033), + [anon_sym_LPAREN] = ACTIONS(3033), + [anon_sym_LBRACK] = ACTIONS(3033), + [anon_sym_LBRACE] = ACTIONS(3033), + [anon_sym_RBRACE] = ACTIONS(3033), + [anon_sym_STAR] = ACTIONS(3033), + [anon_sym_u8] = ACTIONS(3035), + [anon_sym_i8] = ACTIONS(3035), + [anon_sym_u16] = ACTIONS(3035), + [anon_sym_i16] = ACTIONS(3035), + [anon_sym_u32] = ACTIONS(3035), + [anon_sym_i32] = ACTIONS(3035), + [anon_sym_u64] = ACTIONS(3035), + [anon_sym_i64] = ACTIONS(3035), + [anon_sym_u128] = ACTIONS(3035), + [anon_sym_i128] = ACTIONS(3035), + [anon_sym_isize] = ACTIONS(3035), + [anon_sym_usize] = ACTIONS(3035), + [anon_sym_f32] = ACTIONS(3035), + [anon_sym_f64] = ACTIONS(3035), + [anon_sym_bool] = ACTIONS(3035), + [anon_sym_str] = ACTIONS(3035), + [anon_sym_char] = ACTIONS(3035), + [anon_sym_DASH] = ACTIONS(3033), + [anon_sym_BANG] = ACTIONS(3033), + [anon_sym_AMP] = ACTIONS(3033), + [anon_sym_PIPE] = ACTIONS(3033), + [anon_sym_LT] = ACTIONS(3033), + [anon_sym_DOT_DOT] = ACTIONS(3033), + [anon_sym_COLON_COLON] = ACTIONS(3033), + [anon_sym_POUND] = ACTIONS(3033), + [anon_sym_SQUOTE] = ACTIONS(3035), + [anon_sym_async] = ACTIONS(3035), + [anon_sym_break] = ACTIONS(3035), + [anon_sym_const] = ACTIONS(3035), + [anon_sym_continue] = ACTIONS(3035), + [anon_sym_default] = ACTIONS(3035), + [anon_sym_enum] = ACTIONS(3035), + [anon_sym_fn] = ACTIONS(3035), + [anon_sym_for] = ACTIONS(3035), + [anon_sym_gen] = ACTIONS(3035), + [anon_sym_if] = ACTIONS(3035), + [anon_sym_impl] = ACTIONS(3035), + [anon_sym_let] = ACTIONS(3035), + [anon_sym_loop] = ACTIONS(3035), + [anon_sym_match] = ACTIONS(3035), + [anon_sym_mod] = ACTIONS(3035), + [anon_sym_pub] = ACTIONS(3035), + [anon_sym_return] = ACTIONS(3035), + [anon_sym_static] = ACTIONS(3035), + [anon_sym_struct] = ACTIONS(3035), + [anon_sym_trait] = ACTIONS(3035), + [anon_sym_type] = ACTIONS(3035), + [anon_sym_union] = ACTIONS(3035), + [anon_sym_unsafe] = ACTIONS(3035), + [anon_sym_use] = ACTIONS(3035), + [anon_sym_while] = ACTIONS(3035), + [anon_sym_extern] = ACTIONS(3035), + [anon_sym_yield] = ACTIONS(3035), + [anon_sym_move] = ACTIONS(3035), + [anon_sym_try] = ACTIONS(3035), + [sym_integer_literal] = ACTIONS(3033), + [aux_sym_string_literal_token1] = ACTIONS(3033), + [sym_char_literal] = ACTIONS(3033), + [anon_sym_true] = ACTIONS(3035), + [anon_sym_false] = ACTIONS(3035), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3035), + [sym_super] = ACTIONS(3035), + [sym_crate] = ACTIONS(3035), + [sym_metavariable] = ACTIONS(3033), + [sym__raw_string_literal_start] = ACTIONS(3033), + [sym_float_literal] = ACTIONS(3033), }, [789] = { - [sym_parameter] = STATE(2768), - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2593), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), [sym_line_comment] = STATE(789), [sym_block_comment] = STATE(789), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(3051), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), - [sym_mutable_specifier] = ACTIONS(3053), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3055), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), + [ts_builtin_sym_end] = ACTIONS(3037), + [sym_identifier] = ACTIONS(3039), + [anon_sym_SEMI] = ACTIONS(3037), + [anon_sym_macro_rules_BANG] = ACTIONS(3037), + [anon_sym_LPAREN] = ACTIONS(3037), + [anon_sym_LBRACK] = ACTIONS(3037), + [anon_sym_LBRACE] = ACTIONS(3037), + [anon_sym_RBRACE] = ACTIONS(3037), + [anon_sym_STAR] = ACTIONS(3037), + [anon_sym_u8] = ACTIONS(3039), + [anon_sym_i8] = ACTIONS(3039), + [anon_sym_u16] = ACTIONS(3039), + [anon_sym_i16] = ACTIONS(3039), + [anon_sym_u32] = ACTIONS(3039), + [anon_sym_i32] = ACTIONS(3039), + [anon_sym_u64] = ACTIONS(3039), + [anon_sym_i64] = ACTIONS(3039), + [anon_sym_u128] = ACTIONS(3039), + [anon_sym_i128] = ACTIONS(3039), + [anon_sym_isize] = ACTIONS(3039), + [anon_sym_usize] = ACTIONS(3039), + [anon_sym_f32] = ACTIONS(3039), + [anon_sym_f64] = ACTIONS(3039), + [anon_sym_bool] = ACTIONS(3039), + [anon_sym_str] = ACTIONS(3039), + [anon_sym_char] = ACTIONS(3039), + [anon_sym_DASH] = ACTIONS(3037), + [anon_sym_BANG] = ACTIONS(3037), + [anon_sym_AMP] = ACTIONS(3037), + [anon_sym_PIPE] = ACTIONS(3037), + [anon_sym_LT] = ACTIONS(3037), + [anon_sym_DOT_DOT] = ACTIONS(3037), + [anon_sym_COLON_COLON] = ACTIONS(3037), + [anon_sym_POUND] = ACTIONS(3037), + [anon_sym_SQUOTE] = ACTIONS(3039), + [anon_sym_async] = ACTIONS(3039), + [anon_sym_break] = ACTIONS(3039), + [anon_sym_const] = ACTIONS(3039), + [anon_sym_continue] = ACTIONS(3039), + [anon_sym_default] = ACTIONS(3039), + [anon_sym_enum] = ACTIONS(3039), + [anon_sym_fn] = ACTIONS(3039), + [anon_sym_for] = ACTIONS(3039), + [anon_sym_gen] = ACTIONS(3039), + [anon_sym_if] = ACTIONS(3039), + [anon_sym_impl] = ACTIONS(3039), + [anon_sym_let] = ACTIONS(3039), + [anon_sym_loop] = ACTIONS(3039), + [anon_sym_match] = ACTIONS(3039), + [anon_sym_mod] = ACTIONS(3039), + [anon_sym_pub] = ACTIONS(3039), + [anon_sym_return] = ACTIONS(3039), + [anon_sym_static] = ACTIONS(3039), + [anon_sym_struct] = ACTIONS(3039), + [anon_sym_trait] = ACTIONS(3039), + [anon_sym_type] = ACTIONS(3039), + [anon_sym_union] = ACTIONS(3039), + [anon_sym_unsafe] = ACTIONS(3039), + [anon_sym_use] = ACTIONS(3039), + [anon_sym_while] = ACTIONS(3039), + [anon_sym_extern] = ACTIONS(3039), + [anon_sym_yield] = ACTIONS(3039), + [anon_sym_move] = ACTIONS(3039), + [anon_sym_try] = ACTIONS(3039), + [sym_integer_literal] = ACTIONS(3037), + [aux_sym_string_literal_token1] = ACTIONS(3037), + [sym_char_literal] = ACTIONS(3037), + [anon_sym_true] = ACTIONS(3039), + [anon_sym_false] = ACTIONS(3039), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3039), + [sym_super] = ACTIONS(3039), + [sym_crate] = ACTIONS(3039), + [sym_metavariable] = ACTIONS(3037), + [sym__raw_string_literal_start] = ACTIONS(3037), + [sym_float_literal] = ACTIONS(3037), }, [790] = { - [sym_parameter] = STATE(3214), - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2980), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), [sym_line_comment] = STATE(790), [sym_block_comment] = STATE(790), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), - [sym_mutable_specifier] = ACTIONS(3053), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3055), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), + [ts_builtin_sym_end] = ACTIONS(3041), + [sym_identifier] = ACTIONS(3043), + [anon_sym_SEMI] = ACTIONS(3041), + [anon_sym_macro_rules_BANG] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(3041), + [anon_sym_LBRACK] = ACTIONS(3041), + [anon_sym_LBRACE] = ACTIONS(3041), + [anon_sym_RBRACE] = ACTIONS(3041), + [anon_sym_STAR] = ACTIONS(3041), + [anon_sym_u8] = ACTIONS(3043), + [anon_sym_i8] = ACTIONS(3043), + [anon_sym_u16] = ACTIONS(3043), + [anon_sym_i16] = ACTIONS(3043), + [anon_sym_u32] = ACTIONS(3043), + [anon_sym_i32] = ACTIONS(3043), + [anon_sym_u64] = ACTIONS(3043), + [anon_sym_i64] = ACTIONS(3043), + [anon_sym_u128] = ACTIONS(3043), + [anon_sym_i128] = ACTIONS(3043), + [anon_sym_isize] = ACTIONS(3043), + [anon_sym_usize] = ACTIONS(3043), + [anon_sym_f32] = ACTIONS(3043), + [anon_sym_f64] = ACTIONS(3043), + [anon_sym_bool] = ACTIONS(3043), + [anon_sym_str] = ACTIONS(3043), + [anon_sym_char] = ACTIONS(3043), + [anon_sym_DASH] = ACTIONS(3041), + [anon_sym_BANG] = ACTIONS(3041), + [anon_sym_AMP] = ACTIONS(3041), + [anon_sym_PIPE] = ACTIONS(3041), + [anon_sym_LT] = ACTIONS(3041), + [anon_sym_DOT_DOT] = ACTIONS(3041), + [anon_sym_COLON_COLON] = ACTIONS(3041), + [anon_sym_POUND] = ACTIONS(3041), + [anon_sym_SQUOTE] = ACTIONS(3043), + [anon_sym_async] = ACTIONS(3043), + [anon_sym_break] = ACTIONS(3043), + [anon_sym_const] = ACTIONS(3043), + [anon_sym_continue] = ACTIONS(3043), + [anon_sym_default] = ACTIONS(3043), + [anon_sym_enum] = ACTIONS(3043), + [anon_sym_fn] = ACTIONS(3043), + [anon_sym_for] = ACTIONS(3043), + [anon_sym_gen] = ACTIONS(3043), + [anon_sym_if] = ACTIONS(3043), + [anon_sym_impl] = ACTIONS(3043), + [anon_sym_let] = ACTIONS(3043), + [anon_sym_loop] = ACTIONS(3043), + [anon_sym_match] = ACTIONS(3043), + [anon_sym_mod] = ACTIONS(3043), + [anon_sym_pub] = ACTIONS(3043), + [anon_sym_return] = ACTIONS(3043), + [anon_sym_static] = ACTIONS(3043), + [anon_sym_struct] = ACTIONS(3043), + [anon_sym_trait] = ACTIONS(3043), + [anon_sym_type] = ACTIONS(3043), + [anon_sym_union] = ACTIONS(3043), + [anon_sym_unsafe] = ACTIONS(3043), + [anon_sym_use] = ACTIONS(3043), + [anon_sym_while] = ACTIONS(3043), + [anon_sym_extern] = ACTIONS(3043), + [anon_sym_yield] = ACTIONS(3043), + [anon_sym_move] = ACTIONS(3043), + [anon_sym_try] = ACTIONS(3043), + [sym_integer_literal] = ACTIONS(3041), + [aux_sym_string_literal_token1] = ACTIONS(3041), + [sym_char_literal] = ACTIONS(3041), + [anon_sym_true] = ACTIONS(3043), + [anon_sym_false] = ACTIONS(3043), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3043), + [sym_super] = ACTIONS(3043), + [sym_crate] = ACTIONS(3043), + [sym_metavariable] = ACTIONS(3041), + [sym__raw_string_literal_start] = ACTIONS(3041), + [sym_float_literal] = ACTIONS(3041), }, [791] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2638), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), [sym_line_comment] = STATE(791), [sym_block_comment] = STATE(791), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_RBRACK] = ACTIONS(3057), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), - [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), + [ts_builtin_sym_end] = ACTIONS(3045), + [sym_identifier] = ACTIONS(3047), + [anon_sym_SEMI] = ACTIONS(3045), + [anon_sym_macro_rules_BANG] = ACTIONS(3045), + [anon_sym_LPAREN] = ACTIONS(3045), + [anon_sym_LBRACK] = ACTIONS(3045), + [anon_sym_LBRACE] = ACTIONS(3045), + [anon_sym_RBRACE] = ACTIONS(3045), + [anon_sym_STAR] = ACTIONS(3045), + [anon_sym_u8] = ACTIONS(3047), + [anon_sym_i8] = ACTIONS(3047), + [anon_sym_u16] = ACTIONS(3047), + [anon_sym_i16] = ACTIONS(3047), + [anon_sym_u32] = ACTIONS(3047), + [anon_sym_i32] = ACTIONS(3047), + [anon_sym_u64] = ACTIONS(3047), + [anon_sym_i64] = ACTIONS(3047), + [anon_sym_u128] = ACTIONS(3047), + [anon_sym_i128] = ACTIONS(3047), + [anon_sym_isize] = ACTIONS(3047), + [anon_sym_usize] = ACTIONS(3047), + [anon_sym_f32] = ACTIONS(3047), + [anon_sym_f64] = ACTIONS(3047), + [anon_sym_bool] = ACTIONS(3047), + [anon_sym_str] = ACTIONS(3047), + [anon_sym_char] = ACTIONS(3047), + [anon_sym_DASH] = ACTIONS(3045), + [anon_sym_BANG] = ACTIONS(3045), + [anon_sym_AMP] = ACTIONS(3045), + [anon_sym_PIPE] = ACTIONS(3045), + [anon_sym_LT] = ACTIONS(3045), + [anon_sym_DOT_DOT] = ACTIONS(3045), + [anon_sym_COLON_COLON] = ACTIONS(3045), + [anon_sym_POUND] = ACTIONS(3045), + [anon_sym_SQUOTE] = ACTIONS(3047), + [anon_sym_async] = ACTIONS(3047), + [anon_sym_break] = ACTIONS(3047), + [anon_sym_const] = ACTIONS(3047), + [anon_sym_continue] = ACTIONS(3047), + [anon_sym_default] = ACTIONS(3047), + [anon_sym_enum] = ACTIONS(3047), + [anon_sym_fn] = ACTIONS(3047), + [anon_sym_for] = ACTIONS(3047), + [anon_sym_gen] = ACTIONS(3047), + [anon_sym_if] = ACTIONS(3047), + [anon_sym_impl] = ACTIONS(3047), + [anon_sym_let] = ACTIONS(3047), + [anon_sym_loop] = ACTIONS(3047), + [anon_sym_match] = ACTIONS(3047), + [anon_sym_mod] = ACTIONS(3047), + [anon_sym_pub] = ACTIONS(3047), + [anon_sym_return] = ACTIONS(3047), + [anon_sym_static] = ACTIONS(3047), + [anon_sym_struct] = ACTIONS(3047), + [anon_sym_trait] = ACTIONS(3047), + [anon_sym_type] = ACTIONS(3047), + [anon_sym_union] = ACTIONS(3047), + [anon_sym_unsafe] = ACTIONS(3047), + [anon_sym_use] = ACTIONS(3047), + [anon_sym_while] = ACTIONS(3047), + [anon_sym_extern] = ACTIONS(3047), + [anon_sym_yield] = ACTIONS(3047), + [anon_sym_move] = ACTIONS(3047), + [anon_sym_try] = ACTIONS(3047), + [sym_integer_literal] = ACTIONS(3045), + [aux_sym_string_literal_token1] = ACTIONS(3045), + [sym_char_literal] = ACTIONS(3045), + [anon_sym_true] = ACTIONS(3047), + [anon_sym_false] = ACTIONS(3047), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3047), + [sym_super] = ACTIONS(3047), + [sym_crate] = ACTIONS(3047), + [sym_metavariable] = ACTIONS(3045), + [sym__raw_string_literal_start] = ACTIONS(3045), + [sym_float_literal] = ACTIONS(3045), }, [792] = { - [sym_parameter] = STATE(2768), - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2417), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), [sym_line_comment] = STATE(792), [sym_block_comment] = STATE(792), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(3051), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), - [sym_mutable_specifier] = ACTIONS(3053), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3055), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), + [ts_builtin_sym_end] = ACTIONS(3049), + [sym_identifier] = ACTIONS(3051), + [anon_sym_SEMI] = ACTIONS(3049), + [anon_sym_macro_rules_BANG] = ACTIONS(3049), + [anon_sym_LPAREN] = ACTIONS(3049), + [anon_sym_LBRACK] = ACTIONS(3049), + [anon_sym_LBRACE] = ACTIONS(3049), + [anon_sym_RBRACE] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3049), + [anon_sym_u8] = ACTIONS(3051), + [anon_sym_i8] = ACTIONS(3051), + [anon_sym_u16] = ACTIONS(3051), + [anon_sym_i16] = ACTIONS(3051), + [anon_sym_u32] = ACTIONS(3051), + [anon_sym_i32] = ACTIONS(3051), + [anon_sym_u64] = ACTIONS(3051), + [anon_sym_i64] = ACTIONS(3051), + [anon_sym_u128] = ACTIONS(3051), + [anon_sym_i128] = ACTIONS(3051), + [anon_sym_isize] = ACTIONS(3051), + [anon_sym_usize] = ACTIONS(3051), + [anon_sym_f32] = ACTIONS(3051), + [anon_sym_f64] = ACTIONS(3051), + [anon_sym_bool] = ACTIONS(3051), + [anon_sym_str] = ACTIONS(3051), + [anon_sym_char] = ACTIONS(3051), + [anon_sym_DASH] = ACTIONS(3049), + [anon_sym_BANG] = ACTIONS(3049), + [anon_sym_AMP] = ACTIONS(3049), + [anon_sym_PIPE] = ACTIONS(3049), + [anon_sym_LT] = ACTIONS(3049), + [anon_sym_DOT_DOT] = ACTIONS(3049), + [anon_sym_COLON_COLON] = ACTIONS(3049), + [anon_sym_POUND] = ACTIONS(3049), + [anon_sym_SQUOTE] = ACTIONS(3051), + [anon_sym_async] = ACTIONS(3051), + [anon_sym_break] = ACTIONS(3051), + [anon_sym_const] = ACTIONS(3051), + [anon_sym_continue] = ACTIONS(3051), + [anon_sym_default] = ACTIONS(3051), + [anon_sym_enum] = ACTIONS(3051), + [anon_sym_fn] = ACTIONS(3051), + [anon_sym_for] = ACTIONS(3051), + [anon_sym_gen] = ACTIONS(3051), + [anon_sym_if] = ACTIONS(3051), + [anon_sym_impl] = ACTIONS(3051), + [anon_sym_let] = ACTIONS(3051), + [anon_sym_loop] = ACTIONS(3051), + [anon_sym_match] = ACTIONS(3051), + [anon_sym_mod] = ACTIONS(3051), + [anon_sym_pub] = ACTIONS(3051), + [anon_sym_return] = ACTIONS(3051), + [anon_sym_static] = ACTIONS(3051), + [anon_sym_struct] = ACTIONS(3051), + [anon_sym_trait] = ACTIONS(3051), + [anon_sym_type] = ACTIONS(3051), + [anon_sym_union] = ACTIONS(3051), + [anon_sym_unsafe] = ACTIONS(3051), + [anon_sym_use] = ACTIONS(3051), + [anon_sym_while] = ACTIONS(3051), + [anon_sym_extern] = ACTIONS(3051), + [anon_sym_yield] = ACTIONS(3051), + [anon_sym_move] = ACTIONS(3051), + [anon_sym_try] = ACTIONS(3051), + [sym_integer_literal] = ACTIONS(3049), + [aux_sym_string_literal_token1] = ACTIONS(3049), + [sym_char_literal] = ACTIONS(3049), + [anon_sym_true] = ACTIONS(3051), + [anon_sym_false] = ACTIONS(3051), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3051), + [sym_super] = ACTIONS(3051), + [sym_crate] = ACTIONS(3051), + [sym_metavariable] = ACTIONS(3049), + [sym__raw_string_literal_start] = ACTIONS(3049), + [sym_float_literal] = ACTIONS(3049), }, [793] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2690), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), [sym_line_comment] = STATE(793), [sym_block_comment] = STATE(793), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1305), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3059), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), - [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), + [ts_builtin_sym_end] = ACTIONS(3053), + [sym_identifier] = ACTIONS(3055), + [anon_sym_SEMI] = ACTIONS(3053), + [anon_sym_macro_rules_BANG] = ACTIONS(3053), + [anon_sym_LPAREN] = ACTIONS(3053), + [anon_sym_LBRACK] = ACTIONS(3053), + [anon_sym_LBRACE] = ACTIONS(3053), + [anon_sym_RBRACE] = ACTIONS(3053), + [anon_sym_STAR] = ACTIONS(3053), + [anon_sym_u8] = ACTIONS(3055), + [anon_sym_i8] = ACTIONS(3055), + [anon_sym_u16] = ACTIONS(3055), + [anon_sym_i16] = ACTIONS(3055), + [anon_sym_u32] = ACTIONS(3055), + [anon_sym_i32] = ACTIONS(3055), + [anon_sym_u64] = ACTIONS(3055), + [anon_sym_i64] = ACTIONS(3055), + [anon_sym_u128] = ACTIONS(3055), + [anon_sym_i128] = ACTIONS(3055), + [anon_sym_isize] = ACTIONS(3055), + [anon_sym_usize] = ACTIONS(3055), + [anon_sym_f32] = ACTIONS(3055), + [anon_sym_f64] = ACTIONS(3055), + [anon_sym_bool] = ACTIONS(3055), + [anon_sym_str] = ACTIONS(3055), + [anon_sym_char] = ACTIONS(3055), + [anon_sym_DASH] = ACTIONS(3053), + [anon_sym_BANG] = ACTIONS(3053), + [anon_sym_AMP] = ACTIONS(3053), + [anon_sym_PIPE] = ACTIONS(3053), + [anon_sym_LT] = ACTIONS(3053), + [anon_sym_DOT_DOT] = ACTIONS(3053), + [anon_sym_COLON_COLON] = ACTIONS(3053), + [anon_sym_POUND] = ACTIONS(3053), + [anon_sym_SQUOTE] = ACTIONS(3055), + [anon_sym_async] = ACTIONS(3055), + [anon_sym_break] = ACTIONS(3055), + [anon_sym_const] = ACTIONS(3055), + [anon_sym_continue] = ACTIONS(3055), + [anon_sym_default] = ACTIONS(3055), + [anon_sym_enum] = ACTIONS(3055), + [anon_sym_fn] = ACTIONS(3055), + [anon_sym_for] = ACTIONS(3055), + [anon_sym_gen] = ACTIONS(3055), + [anon_sym_if] = ACTIONS(3055), + [anon_sym_impl] = ACTIONS(3055), + [anon_sym_let] = ACTIONS(3055), + [anon_sym_loop] = ACTIONS(3055), + [anon_sym_match] = ACTIONS(3055), + [anon_sym_mod] = ACTIONS(3055), + [anon_sym_pub] = ACTIONS(3055), + [anon_sym_return] = ACTIONS(3055), + [anon_sym_static] = ACTIONS(3055), + [anon_sym_struct] = ACTIONS(3055), + [anon_sym_trait] = ACTIONS(3055), + [anon_sym_type] = ACTIONS(3055), + [anon_sym_union] = ACTIONS(3055), + [anon_sym_unsafe] = ACTIONS(3055), + [anon_sym_use] = ACTIONS(3055), + [anon_sym_while] = ACTIONS(3055), + [anon_sym_extern] = ACTIONS(3055), + [anon_sym_yield] = ACTIONS(3055), + [anon_sym_move] = ACTIONS(3055), + [anon_sym_try] = ACTIONS(3055), + [sym_integer_literal] = ACTIONS(3053), + [aux_sym_string_literal_token1] = ACTIONS(3053), + [sym_char_literal] = ACTIONS(3053), + [anon_sym_true] = ACTIONS(3055), + [anon_sym_false] = ACTIONS(3055), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3061), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), + [sym_self] = ACTIONS(3055), + [sym_super] = ACTIONS(3055), + [sym_crate] = ACTIONS(3055), + [sym_metavariable] = ACTIONS(3053), + [sym__raw_string_literal_start] = ACTIONS(3053), + [sym_float_literal] = ACTIONS(3053), }, [794] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2638), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), [sym_line_comment] = STATE(794), [sym_block_comment] = STATE(794), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_RPAREN] = ACTIONS(3063), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), - [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), + [ts_builtin_sym_end] = ACTIONS(3057), + [sym_identifier] = ACTIONS(3059), + [anon_sym_SEMI] = ACTIONS(3057), + [anon_sym_macro_rules_BANG] = ACTIONS(3057), + [anon_sym_LPAREN] = ACTIONS(3057), + [anon_sym_LBRACK] = ACTIONS(3057), + [anon_sym_LBRACE] = ACTIONS(3057), + [anon_sym_RBRACE] = ACTIONS(3057), + [anon_sym_STAR] = ACTIONS(3057), + [anon_sym_u8] = ACTIONS(3059), + [anon_sym_i8] = ACTIONS(3059), + [anon_sym_u16] = ACTIONS(3059), + [anon_sym_i16] = ACTIONS(3059), + [anon_sym_u32] = ACTIONS(3059), + [anon_sym_i32] = ACTIONS(3059), + [anon_sym_u64] = ACTIONS(3059), + [anon_sym_i64] = ACTIONS(3059), + [anon_sym_u128] = ACTIONS(3059), + [anon_sym_i128] = ACTIONS(3059), + [anon_sym_isize] = ACTIONS(3059), + [anon_sym_usize] = ACTIONS(3059), + [anon_sym_f32] = ACTIONS(3059), + [anon_sym_f64] = ACTIONS(3059), + [anon_sym_bool] = ACTIONS(3059), + [anon_sym_str] = ACTIONS(3059), + [anon_sym_char] = ACTIONS(3059), + [anon_sym_DASH] = ACTIONS(3057), + [anon_sym_BANG] = ACTIONS(3057), + [anon_sym_AMP] = ACTIONS(3057), + [anon_sym_PIPE] = ACTIONS(3057), + [anon_sym_LT] = ACTIONS(3057), + [anon_sym_DOT_DOT] = ACTIONS(3057), + [anon_sym_COLON_COLON] = ACTIONS(3057), + [anon_sym_POUND] = ACTIONS(3057), + [anon_sym_SQUOTE] = ACTIONS(3059), + [anon_sym_async] = ACTIONS(3059), + [anon_sym_break] = ACTIONS(3059), + [anon_sym_const] = ACTIONS(3059), + [anon_sym_continue] = ACTIONS(3059), + [anon_sym_default] = ACTIONS(3059), + [anon_sym_enum] = ACTIONS(3059), + [anon_sym_fn] = ACTIONS(3059), + [anon_sym_for] = ACTIONS(3059), + [anon_sym_gen] = ACTIONS(3059), + [anon_sym_if] = ACTIONS(3059), + [anon_sym_impl] = ACTIONS(3059), + [anon_sym_let] = ACTIONS(3059), + [anon_sym_loop] = ACTIONS(3059), + [anon_sym_match] = ACTIONS(3059), + [anon_sym_mod] = ACTIONS(3059), + [anon_sym_pub] = ACTIONS(3059), + [anon_sym_return] = ACTIONS(3059), + [anon_sym_static] = ACTIONS(3059), + [anon_sym_struct] = ACTIONS(3059), + [anon_sym_trait] = ACTIONS(3059), + [anon_sym_type] = ACTIONS(3059), + [anon_sym_union] = ACTIONS(3059), + [anon_sym_unsafe] = ACTIONS(3059), + [anon_sym_use] = ACTIONS(3059), + [anon_sym_while] = ACTIONS(3059), + [anon_sym_extern] = ACTIONS(3059), + [anon_sym_yield] = ACTIONS(3059), + [anon_sym_move] = ACTIONS(3059), + [anon_sym_try] = ACTIONS(3059), + [sym_integer_literal] = ACTIONS(3057), + [aux_sym_string_literal_token1] = ACTIONS(3057), + [sym_char_literal] = ACTIONS(3057), + [anon_sym_true] = ACTIONS(3059), + [anon_sym_false] = ACTIONS(3059), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3059), + [sym_super] = ACTIONS(3059), + [sym_crate] = ACTIONS(3059), + [sym_metavariable] = ACTIONS(3057), + [sym__raw_string_literal_start] = ACTIONS(3057), + [sym_float_literal] = ACTIONS(3057), }, [795] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2638), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), [sym_line_comment] = STATE(795), [sym_block_comment] = STATE(795), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_RBRACK] = ACTIONS(3065), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), - [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), + [ts_builtin_sym_end] = ACTIONS(3061), + [sym_identifier] = ACTIONS(3063), + [anon_sym_SEMI] = ACTIONS(3061), + [anon_sym_macro_rules_BANG] = ACTIONS(3061), + [anon_sym_LPAREN] = ACTIONS(3061), + [anon_sym_LBRACK] = ACTIONS(3061), + [anon_sym_LBRACE] = ACTIONS(3061), + [anon_sym_RBRACE] = ACTIONS(3061), + [anon_sym_STAR] = ACTIONS(3061), + [anon_sym_u8] = ACTIONS(3063), + [anon_sym_i8] = ACTIONS(3063), + [anon_sym_u16] = ACTIONS(3063), + [anon_sym_i16] = ACTIONS(3063), + [anon_sym_u32] = ACTIONS(3063), + [anon_sym_i32] = ACTIONS(3063), + [anon_sym_u64] = ACTIONS(3063), + [anon_sym_i64] = ACTIONS(3063), + [anon_sym_u128] = ACTIONS(3063), + [anon_sym_i128] = ACTIONS(3063), + [anon_sym_isize] = ACTIONS(3063), + [anon_sym_usize] = ACTIONS(3063), + [anon_sym_f32] = ACTIONS(3063), + [anon_sym_f64] = ACTIONS(3063), + [anon_sym_bool] = ACTIONS(3063), + [anon_sym_str] = ACTIONS(3063), + [anon_sym_char] = ACTIONS(3063), + [anon_sym_DASH] = ACTIONS(3061), + [anon_sym_BANG] = ACTIONS(3061), + [anon_sym_AMP] = ACTIONS(3061), + [anon_sym_PIPE] = ACTIONS(3061), + [anon_sym_LT] = ACTIONS(3061), + [anon_sym_DOT_DOT] = ACTIONS(3061), + [anon_sym_COLON_COLON] = ACTIONS(3061), + [anon_sym_POUND] = ACTIONS(3061), + [anon_sym_SQUOTE] = ACTIONS(3063), + [anon_sym_async] = ACTIONS(3063), + [anon_sym_break] = ACTIONS(3063), + [anon_sym_const] = ACTIONS(3063), + [anon_sym_continue] = ACTIONS(3063), + [anon_sym_default] = ACTIONS(3063), + [anon_sym_enum] = ACTIONS(3063), + [anon_sym_fn] = ACTIONS(3063), + [anon_sym_for] = ACTIONS(3063), + [anon_sym_gen] = ACTIONS(3063), + [anon_sym_if] = ACTIONS(3063), + [anon_sym_impl] = ACTIONS(3063), + [anon_sym_let] = ACTIONS(3063), + [anon_sym_loop] = ACTIONS(3063), + [anon_sym_match] = ACTIONS(3063), + [anon_sym_mod] = ACTIONS(3063), + [anon_sym_pub] = ACTIONS(3063), + [anon_sym_return] = ACTIONS(3063), + [anon_sym_static] = ACTIONS(3063), + [anon_sym_struct] = ACTIONS(3063), + [anon_sym_trait] = ACTIONS(3063), + [anon_sym_type] = ACTIONS(3063), + [anon_sym_union] = ACTIONS(3063), + [anon_sym_unsafe] = ACTIONS(3063), + [anon_sym_use] = ACTIONS(3063), + [anon_sym_while] = ACTIONS(3063), + [anon_sym_extern] = ACTIONS(3063), + [anon_sym_yield] = ACTIONS(3063), + [anon_sym_move] = ACTIONS(3063), + [anon_sym_try] = ACTIONS(3063), + [sym_integer_literal] = ACTIONS(3061), + [aux_sym_string_literal_token1] = ACTIONS(3061), + [sym_char_literal] = ACTIONS(3061), + [anon_sym_true] = ACTIONS(3063), + [anon_sym_false] = ACTIONS(3063), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3063), + [sym_super] = ACTIONS(3063), + [sym_crate] = ACTIONS(3063), + [sym_metavariable] = ACTIONS(3061), + [sym__raw_string_literal_start] = ACTIONS(3061), + [sym_float_literal] = ACTIONS(3061), }, [796] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2638), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), [sym_line_comment] = STATE(796), [sym_block_comment] = STATE(796), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_RPAREN] = ACTIONS(3067), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), - [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), + [ts_builtin_sym_end] = ACTIONS(3065), + [sym_identifier] = ACTIONS(3067), + [anon_sym_SEMI] = ACTIONS(3065), + [anon_sym_macro_rules_BANG] = ACTIONS(3065), + [anon_sym_LPAREN] = ACTIONS(3065), + [anon_sym_LBRACK] = ACTIONS(3065), + [anon_sym_LBRACE] = ACTIONS(3065), + [anon_sym_RBRACE] = ACTIONS(3065), + [anon_sym_STAR] = ACTIONS(3065), + [anon_sym_u8] = ACTIONS(3067), + [anon_sym_i8] = ACTIONS(3067), + [anon_sym_u16] = ACTIONS(3067), + [anon_sym_i16] = ACTIONS(3067), + [anon_sym_u32] = ACTIONS(3067), + [anon_sym_i32] = ACTIONS(3067), + [anon_sym_u64] = ACTIONS(3067), + [anon_sym_i64] = ACTIONS(3067), + [anon_sym_u128] = ACTIONS(3067), + [anon_sym_i128] = ACTIONS(3067), + [anon_sym_isize] = ACTIONS(3067), + [anon_sym_usize] = ACTIONS(3067), + [anon_sym_f32] = ACTIONS(3067), + [anon_sym_f64] = ACTIONS(3067), + [anon_sym_bool] = ACTIONS(3067), + [anon_sym_str] = ACTIONS(3067), + [anon_sym_char] = ACTIONS(3067), + [anon_sym_DASH] = ACTIONS(3065), + [anon_sym_BANG] = ACTIONS(3065), + [anon_sym_AMP] = ACTIONS(3065), + [anon_sym_PIPE] = ACTIONS(3065), + [anon_sym_LT] = ACTIONS(3065), + [anon_sym_DOT_DOT] = ACTIONS(3065), + [anon_sym_COLON_COLON] = ACTIONS(3065), + [anon_sym_POUND] = ACTIONS(3065), + [anon_sym_SQUOTE] = ACTIONS(3067), + [anon_sym_async] = ACTIONS(3067), + [anon_sym_break] = ACTIONS(3067), + [anon_sym_const] = ACTIONS(3067), + [anon_sym_continue] = ACTIONS(3067), + [anon_sym_default] = ACTIONS(3067), + [anon_sym_enum] = ACTIONS(3067), + [anon_sym_fn] = ACTIONS(3067), + [anon_sym_for] = ACTIONS(3067), + [anon_sym_gen] = ACTIONS(3067), + [anon_sym_if] = ACTIONS(3067), + [anon_sym_impl] = ACTIONS(3067), + [anon_sym_let] = ACTIONS(3067), + [anon_sym_loop] = ACTIONS(3067), + [anon_sym_match] = ACTIONS(3067), + [anon_sym_mod] = ACTIONS(3067), + [anon_sym_pub] = ACTIONS(3067), + [anon_sym_return] = ACTIONS(3067), + [anon_sym_static] = ACTIONS(3067), + [anon_sym_struct] = ACTIONS(3067), + [anon_sym_trait] = ACTIONS(3067), + [anon_sym_type] = ACTIONS(3067), + [anon_sym_union] = ACTIONS(3067), + [anon_sym_unsafe] = ACTIONS(3067), + [anon_sym_use] = ACTIONS(3067), + [anon_sym_while] = ACTIONS(3067), + [anon_sym_extern] = ACTIONS(3067), + [anon_sym_yield] = ACTIONS(3067), + [anon_sym_move] = ACTIONS(3067), + [anon_sym_try] = ACTIONS(3067), + [sym_integer_literal] = ACTIONS(3065), + [aux_sym_string_literal_token1] = ACTIONS(3065), + [sym_char_literal] = ACTIONS(3065), + [anon_sym_true] = ACTIONS(3067), + [anon_sym_false] = ACTIONS(3067), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3067), + [sym_super] = ACTIONS(3067), + [sym_crate] = ACTIONS(3067), + [sym_metavariable] = ACTIONS(3065), + [sym__raw_string_literal_start] = ACTIONS(3065), + [sym_float_literal] = ACTIONS(3065), }, [797] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2638), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), [sym_line_comment] = STATE(797), [sym_block_comment] = STATE(797), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_RPAREN] = ACTIONS(3069), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), - [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), + [ts_builtin_sym_end] = ACTIONS(3069), + [sym_identifier] = ACTIONS(3071), + [anon_sym_SEMI] = ACTIONS(3069), + [anon_sym_macro_rules_BANG] = ACTIONS(3069), + [anon_sym_LPAREN] = ACTIONS(3069), + [anon_sym_LBRACK] = ACTIONS(3069), + [anon_sym_LBRACE] = ACTIONS(3069), + [anon_sym_RBRACE] = ACTIONS(3069), + [anon_sym_STAR] = ACTIONS(3069), + [anon_sym_u8] = ACTIONS(3071), + [anon_sym_i8] = ACTIONS(3071), + [anon_sym_u16] = ACTIONS(3071), + [anon_sym_i16] = ACTIONS(3071), + [anon_sym_u32] = ACTIONS(3071), + [anon_sym_i32] = ACTIONS(3071), + [anon_sym_u64] = ACTIONS(3071), + [anon_sym_i64] = ACTIONS(3071), + [anon_sym_u128] = ACTIONS(3071), + [anon_sym_i128] = ACTIONS(3071), + [anon_sym_isize] = ACTIONS(3071), + [anon_sym_usize] = ACTIONS(3071), + [anon_sym_f32] = ACTIONS(3071), + [anon_sym_f64] = ACTIONS(3071), + [anon_sym_bool] = ACTIONS(3071), + [anon_sym_str] = ACTIONS(3071), + [anon_sym_char] = ACTIONS(3071), + [anon_sym_DASH] = ACTIONS(3069), + [anon_sym_BANG] = ACTIONS(3069), + [anon_sym_AMP] = ACTIONS(3069), + [anon_sym_PIPE] = ACTIONS(3069), + [anon_sym_LT] = ACTIONS(3069), + [anon_sym_DOT_DOT] = ACTIONS(3069), + [anon_sym_COLON_COLON] = ACTIONS(3069), + [anon_sym_POUND] = ACTIONS(3069), + [anon_sym_SQUOTE] = ACTIONS(3071), + [anon_sym_async] = ACTIONS(3071), + [anon_sym_break] = ACTIONS(3071), + [anon_sym_const] = ACTIONS(3071), + [anon_sym_continue] = ACTIONS(3071), + [anon_sym_default] = ACTIONS(3071), + [anon_sym_enum] = ACTIONS(3071), + [anon_sym_fn] = ACTIONS(3071), + [anon_sym_for] = ACTIONS(3071), + [anon_sym_gen] = ACTIONS(3071), + [anon_sym_if] = ACTIONS(3071), + [anon_sym_impl] = ACTIONS(3071), + [anon_sym_let] = ACTIONS(3071), + [anon_sym_loop] = ACTIONS(3071), + [anon_sym_match] = ACTIONS(3071), + [anon_sym_mod] = ACTIONS(3071), + [anon_sym_pub] = ACTIONS(3071), + [anon_sym_return] = ACTIONS(3071), + [anon_sym_static] = ACTIONS(3071), + [anon_sym_struct] = ACTIONS(3071), + [anon_sym_trait] = ACTIONS(3071), + [anon_sym_type] = ACTIONS(3071), + [anon_sym_union] = ACTIONS(3071), + [anon_sym_unsafe] = ACTIONS(3071), + [anon_sym_use] = ACTIONS(3071), + [anon_sym_while] = ACTIONS(3071), + [anon_sym_extern] = ACTIONS(3071), + [anon_sym_yield] = ACTIONS(3071), + [anon_sym_move] = ACTIONS(3071), + [anon_sym_try] = ACTIONS(3071), + [sym_integer_literal] = ACTIONS(3069), + [aux_sym_string_literal_token1] = ACTIONS(3069), + [sym_char_literal] = ACTIONS(3069), + [anon_sym_true] = ACTIONS(3071), + [anon_sym_false] = ACTIONS(3071), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3071), + [sym_super] = ACTIONS(3071), + [sym_crate] = ACTIONS(3071), + [sym_metavariable] = ACTIONS(3069), + [sym__raw_string_literal_start] = ACTIONS(3069), + [sym_float_literal] = ACTIONS(3069), }, [798] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2638), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), [sym_line_comment] = STATE(798), [sym_block_comment] = STATE(798), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_RBRACK] = ACTIONS(3071), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), - [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), + [ts_builtin_sym_end] = ACTIONS(3073), + [sym_identifier] = ACTIONS(3075), + [anon_sym_SEMI] = ACTIONS(3073), + [anon_sym_macro_rules_BANG] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(3073), + [anon_sym_LBRACK] = ACTIONS(3073), + [anon_sym_LBRACE] = ACTIONS(3073), + [anon_sym_RBRACE] = ACTIONS(3073), + [anon_sym_STAR] = ACTIONS(3073), + [anon_sym_u8] = ACTIONS(3075), + [anon_sym_i8] = ACTIONS(3075), + [anon_sym_u16] = ACTIONS(3075), + [anon_sym_i16] = ACTIONS(3075), + [anon_sym_u32] = ACTIONS(3075), + [anon_sym_i32] = ACTIONS(3075), + [anon_sym_u64] = ACTIONS(3075), + [anon_sym_i64] = ACTIONS(3075), + [anon_sym_u128] = ACTIONS(3075), + [anon_sym_i128] = ACTIONS(3075), + [anon_sym_isize] = ACTIONS(3075), + [anon_sym_usize] = ACTIONS(3075), + [anon_sym_f32] = ACTIONS(3075), + [anon_sym_f64] = ACTIONS(3075), + [anon_sym_bool] = ACTIONS(3075), + [anon_sym_str] = ACTIONS(3075), + [anon_sym_char] = ACTIONS(3075), + [anon_sym_DASH] = ACTIONS(3073), + [anon_sym_BANG] = ACTIONS(3073), + [anon_sym_AMP] = ACTIONS(3073), + [anon_sym_PIPE] = ACTIONS(3073), + [anon_sym_LT] = ACTIONS(3073), + [anon_sym_DOT_DOT] = ACTIONS(3073), + [anon_sym_COLON_COLON] = ACTIONS(3073), + [anon_sym_POUND] = ACTIONS(3073), + [anon_sym_SQUOTE] = ACTIONS(3075), + [anon_sym_async] = ACTIONS(3075), + [anon_sym_break] = ACTIONS(3075), + [anon_sym_const] = ACTIONS(3075), + [anon_sym_continue] = ACTIONS(3075), + [anon_sym_default] = ACTIONS(3075), + [anon_sym_enum] = ACTIONS(3075), + [anon_sym_fn] = ACTIONS(3075), + [anon_sym_for] = ACTIONS(3075), + [anon_sym_gen] = ACTIONS(3075), + [anon_sym_if] = ACTIONS(3075), + [anon_sym_impl] = ACTIONS(3075), + [anon_sym_let] = ACTIONS(3075), + [anon_sym_loop] = ACTIONS(3075), + [anon_sym_match] = ACTIONS(3075), + [anon_sym_mod] = ACTIONS(3075), + [anon_sym_pub] = ACTIONS(3075), + [anon_sym_return] = ACTIONS(3075), + [anon_sym_static] = ACTIONS(3075), + [anon_sym_struct] = ACTIONS(3075), + [anon_sym_trait] = ACTIONS(3075), + [anon_sym_type] = ACTIONS(3075), + [anon_sym_union] = ACTIONS(3075), + [anon_sym_unsafe] = ACTIONS(3075), + [anon_sym_use] = ACTIONS(3075), + [anon_sym_while] = ACTIONS(3075), + [anon_sym_extern] = ACTIONS(3075), + [anon_sym_yield] = ACTIONS(3075), + [anon_sym_move] = ACTIONS(3075), + [anon_sym_try] = ACTIONS(3075), + [sym_integer_literal] = ACTIONS(3073), + [aux_sym_string_literal_token1] = ACTIONS(3073), + [sym_char_literal] = ACTIONS(3073), + [anon_sym_true] = ACTIONS(3075), + [anon_sym_false] = ACTIONS(3075), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3075), + [sym_super] = ACTIONS(3075), + [sym_crate] = ACTIONS(3075), + [sym_metavariable] = ACTIONS(3073), + [sym__raw_string_literal_start] = ACTIONS(3073), + [sym_float_literal] = ACTIONS(3073), }, [799] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2638), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), [sym_line_comment] = STATE(799), [sym_block_comment] = STATE(799), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_RPAREN] = ACTIONS(3073), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), - [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), + [ts_builtin_sym_end] = ACTIONS(3077), + [sym_identifier] = ACTIONS(3079), + [anon_sym_SEMI] = ACTIONS(3077), + [anon_sym_macro_rules_BANG] = ACTIONS(3077), + [anon_sym_LPAREN] = ACTIONS(3077), + [anon_sym_LBRACK] = ACTIONS(3077), + [anon_sym_LBRACE] = ACTIONS(3077), + [anon_sym_RBRACE] = ACTIONS(3077), + [anon_sym_STAR] = ACTIONS(3077), + [anon_sym_u8] = ACTIONS(3079), + [anon_sym_i8] = ACTIONS(3079), + [anon_sym_u16] = ACTIONS(3079), + [anon_sym_i16] = ACTIONS(3079), + [anon_sym_u32] = ACTIONS(3079), + [anon_sym_i32] = ACTIONS(3079), + [anon_sym_u64] = ACTIONS(3079), + [anon_sym_i64] = ACTIONS(3079), + [anon_sym_u128] = ACTIONS(3079), + [anon_sym_i128] = ACTIONS(3079), + [anon_sym_isize] = ACTIONS(3079), + [anon_sym_usize] = ACTIONS(3079), + [anon_sym_f32] = ACTIONS(3079), + [anon_sym_f64] = ACTIONS(3079), + [anon_sym_bool] = ACTIONS(3079), + [anon_sym_str] = ACTIONS(3079), + [anon_sym_char] = ACTIONS(3079), + [anon_sym_DASH] = ACTIONS(3077), + [anon_sym_BANG] = ACTIONS(3077), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_PIPE] = ACTIONS(3077), + [anon_sym_LT] = ACTIONS(3077), + [anon_sym_DOT_DOT] = ACTIONS(3077), + [anon_sym_COLON_COLON] = ACTIONS(3077), + [anon_sym_POUND] = ACTIONS(3077), + [anon_sym_SQUOTE] = ACTIONS(3079), + [anon_sym_async] = ACTIONS(3079), + [anon_sym_break] = ACTIONS(3079), + [anon_sym_const] = ACTIONS(3079), + [anon_sym_continue] = ACTIONS(3079), + [anon_sym_default] = ACTIONS(3079), + [anon_sym_enum] = ACTIONS(3079), + [anon_sym_fn] = ACTIONS(3079), + [anon_sym_for] = ACTIONS(3079), + [anon_sym_gen] = ACTIONS(3079), + [anon_sym_if] = ACTIONS(3079), + [anon_sym_impl] = ACTIONS(3079), + [anon_sym_let] = ACTIONS(3079), + [anon_sym_loop] = ACTIONS(3079), + [anon_sym_match] = ACTIONS(3079), + [anon_sym_mod] = ACTIONS(3079), + [anon_sym_pub] = ACTIONS(3079), + [anon_sym_return] = ACTIONS(3079), + [anon_sym_static] = ACTIONS(3079), + [anon_sym_struct] = ACTIONS(3079), + [anon_sym_trait] = ACTIONS(3079), + [anon_sym_type] = ACTIONS(3079), + [anon_sym_union] = ACTIONS(3079), + [anon_sym_unsafe] = ACTIONS(3079), + [anon_sym_use] = ACTIONS(3079), + [anon_sym_while] = ACTIONS(3079), + [anon_sym_extern] = ACTIONS(3079), + [anon_sym_yield] = ACTIONS(3079), + [anon_sym_move] = ACTIONS(3079), + [anon_sym_try] = ACTIONS(3079), + [sym_integer_literal] = ACTIONS(3077), + [aux_sym_string_literal_token1] = ACTIONS(3077), + [sym_char_literal] = ACTIONS(3077), + [anon_sym_true] = ACTIONS(3079), + [anon_sym_false] = ACTIONS(3079), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3079), + [sym_super] = ACTIONS(3079), + [sym_crate] = ACTIONS(3079), + [sym_metavariable] = ACTIONS(3077), + [sym__raw_string_literal_start] = ACTIONS(3077), + [sym_float_literal] = ACTIONS(3077), }, [800] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2638), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), [sym_line_comment] = STATE(800), [sym_block_comment] = STATE(800), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_RPAREN] = ACTIONS(3075), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), - [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), + [ts_builtin_sym_end] = ACTIONS(3081), + [sym_identifier] = ACTIONS(3083), + [anon_sym_SEMI] = ACTIONS(3081), + [anon_sym_macro_rules_BANG] = ACTIONS(3081), + [anon_sym_LPAREN] = ACTIONS(3081), + [anon_sym_LBRACK] = ACTIONS(3081), + [anon_sym_LBRACE] = ACTIONS(3081), + [anon_sym_RBRACE] = ACTIONS(3081), + [anon_sym_STAR] = ACTIONS(3081), + [anon_sym_u8] = ACTIONS(3083), + [anon_sym_i8] = ACTIONS(3083), + [anon_sym_u16] = ACTIONS(3083), + [anon_sym_i16] = ACTIONS(3083), + [anon_sym_u32] = ACTIONS(3083), + [anon_sym_i32] = ACTIONS(3083), + [anon_sym_u64] = ACTIONS(3083), + [anon_sym_i64] = ACTIONS(3083), + [anon_sym_u128] = ACTIONS(3083), + [anon_sym_i128] = ACTIONS(3083), + [anon_sym_isize] = ACTIONS(3083), + [anon_sym_usize] = ACTIONS(3083), + [anon_sym_f32] = ACTIONS(3083), + [anon_sym_f64] = ACTIONS(3083), + [anon_sym_bool] = ACTIONS(3083), + [anon_sym_str] = ACTIONS(3083), + [anon_sym_char] = ACTIONS(3083), + [anon_sym_DASH] = ACTIONS(3081), + [anon_sym_BANG] = ACTIONS(3081), + [anon_sym_AMP] = ACTIONS(3081), + [anon_sym_PIPE] = ACTIONS(3081), + [anon_sym_LT] = ACTIONS(3081), + [anon_sym_DOT_DOT] = ACTIONS(3081), + [anon_sym_COLON_COLON] = ACTIONS(3081), + [anon_sym_POUND] = ACTIONS(3081), + [anon_sym_SQUOTE] = ACTIONS(3083), + [anon_sym_async] = ACTIONS(3083), + [anon_sym_break] = ACTIONS(3083), + [anon_sym_const] = ACTIONS(3083), + [anon_sym_continue] = ACTIONS(3083), + [anon_sym_default] = ACTIONS(3083), + [anon_sym_enum] = ACTIONS(3083), + [anon_sym_fn] = ACTIONS(3083), + [anon_sym_for] = ACTIONS(3083), + [anon_sym_gen] = ACTIONS(3083), + [anon_sym_if] = ACTIONS(3083), + [anon_sym_impl] = ACTIONS(3083), + [anon_sym_let] = ACTIONS(3083), + [anon_sym_loop] = ACTIONS(3083), + [anon_sym_match] = ACTIONS(3083), + [anon_sym_mod] = ACTIONS(3083), + [anon_sym_pub] = ACTIONS(3083), + [anon_sym_return] = ACTIONS(3083), + [anon_sym_static] = ACTIONS(3083), + [anon_sym_struct] = ACTIONS(3083), + [anon_sym_trait] = ACTIONS(3083), + [anon_sym_type] = ACTIONS(3083), + [anon_sym_union] = ACTIONS(3083), + [anon_sym_unsafe] = ACTIONS(3083), + [anon_sym_use] = ACTIONS(3083), + [anon_sym_while] = ACTIONS(3083), + [anon_sym_extern] = ACTIONS(3083), + [anon_sym_yield] = ACTIONS(3083), + [anon_sym_move] = ACTIONS(3083), + [anon_sym_try] = ACTIONS(3083), + [sym_integer_literal] = ACTIONS(3081), + [aux_sym_string_literal_token1] = ACTIONS(3081), + [sym_char_literal] = ACTIONS(3081), + [anon_sym_true] = ACTIONS(3083), + [anon_sym_false] = ACTIONS(3083), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3083), + [sym_super] = ACTIONS(3083), + [sym_crate] = ACTIONS(3083), + [sym_metavariable] = ACTIONS(3081), + [sym__raw_string_literal_start] = ACTIONS(3081), + [sym_float_literal] = ACTIONS(3081), }, [801] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2638), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), [sym_line_comment] = STATE(801), [sym_block_comment] = STATE(801), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_RPAREN] = ACTIONS(3077), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), - [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), + [ts_builtin_sym_end] = ACTIONS(3085), + [sym_identifier] = ACTIONS(3087), + [anon_sym_SEMI] = ACTIONS(3085), + [anon_sym_macro_rules_BANG] = ACTIONS(3085), + [anon_sym_LPAREN] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3085), + [anon_sym_LBRACE] = ACTIONS(3085), + [anon_sym_RBRACE] = ACTIONS(3085), + [anon_sym_STAR] = ACTIONS(3085), + [anon_sym_u8] = ACTIONS(3087), + [anon_sym_i8] = ACTIONS(3087), + [anon_sym_u16] = ACTIONS(3087), + [anon_sym_i16] = ACTIONS(3087), + [anon_sym_u32] = ACTIONS(3087), + [anon_sym_i32] = ACTIONS(3087), + [anon_sym_u64] = ACTIONS(3087), + [anon_sym_i64] = ACTIONS(3087), + [anon_sym_u128] = ACTIONS(3087), + [anon_sym_i128] = ACTIONS(3087), + [anon_sym_isize] = ACTIONS(3087), + [anon_sym_usize] = ACTIONS(3087), + [anon_sym_f32] = ACTIONS(3087), + [anon_sym_f64] = ACTIONS(3087), + [anon_sym_bool] = ACTIONS(3087), + [anon_sym_str] = ACTIONS(3087), + [anon_sym_char] = ACTIONS(3087), + [anon_sym_DASH] = ACTIONS(3085), + [anon_sym_BANG] = ACTIONS(3085), + [anon_sym_AMP] = ACTIONS(3085), + [anon_sym_PIPE] = ACTIONS(3085), + [anon_sym_LT] = ACTIONS(3085), + [anon_sym_DOT_DOT] = ACTIONS(3085), + [anon_sym_COLON_COLON] = ACTIONS(3085), + [anon_sym_POUND] = ACTIONS(3085), + [anon_sym_SQUOTE] = ACTIONS(3087), + [anon_sym_async] = ACTIONS(3087), + [anon_sym_break] = ACTIONS(3087), + [anon_sym_const] = ACTIONS(3087), + [anon_sym_continue] = ACTIONS(3087), + [anon_sym_default] = ACTIONS(3087), + [anon_sym_enum] = ACTIONS(3087), + [anon_sym_fn] = ACTIONS(3087), + [anon_sym_for] = ACTIONS(3087), + [anon_sym_gen] = ACTIONS(3087), + [anon_sym_if] = ACTIONS(3087), + [anon_sym_impl] = ACTIONS(3087), + [anon_sym_let] = ACTIONS(3087), + [anon_sym_loop] = ACTIONS(3087), + [anon_sym_match] = ACTIONS(3087), + [anon_sym_mod] = ACTIONS(3087), + [anon_sym_pub] = ACTIONS(3087), + [anon_sym_return] = ACTIONS(3087), + [anon_sym_static] = ACTIONS(3087), + [anon_sym_struct] = ACTIONS(3087), + [anon_sym_trait] = ACTIONS(3087), + [anon_sym_type] = ACTIONS(3087), + [anon_sym_union] = ACTIONS(3087), + [anon_sym_unsafe] = ACTIONS(3087), + [anon_sym_use] = ACTIONS(3087), + [anon_sym_while] = ACTIONS(3087), + [anon_sym_extern] = ACTIONS(3087), + [anon_sym_yield] = ACTIONS(3087), + [anon_sym_move] = ACTIONS(3087), + [anon_sym_try] = ACTIONS(3087), + [sym_integer_literal] = ACTIONS(3085), + [aux_sym_string_literal_token1] = ACTIONS(3085), + [sym_char_literal] = ACTIONS(3085), + [anon_sym_true] = ACTIONS(3087), + [anon_sym_false] = ACTIONS(3087), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3087), + [sym_super] = ACTIONS(3087), + [sym_crate] = ACTIONS(3087), + [sym_metavariable] = ACTIONS(3085), + [sym__raw_string_literal_start] = ACTIONS(3085), + [sym_float_literal] = ACTIONS(3085), }, [802] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2638), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), [sym_line_comment] = STATE(802), [sym_block_comment] = STATE(802), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_RPAREN] = ACTIONS(3079), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), - [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), + [ts_builtin_sym_end] = ACTIONS(3089), + [sym_identifier] = ACTIONS(3091), + [anon_sym_SEMI] = ACTIONS(3089), + [anon_sym_macro_rules_BANG] = ACTIONS(3089), + [anon_sym_LPAREN] = ACTIONS(3089), + [anon_sym_LBRACK] = ACTIONS(3089), + [anon_sym_LBRACE] = ACTIONS(3089), + [anon_sym_RBRACE] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(3089), + [anon_sym_u8] = ACTIONS(3091), + [anon_sym_i8] = ACTIONS(3091), + [anon_sym_u16] = ACTIONS(3091), + [anon_sym_i16] = ACTIONS(3091), + [anon_sym_u32] = ACTIONS(3091), + [anon_sym_i32] = ACTIONS(3091), + [anon_sym_u64] = ACTIONS(3091), + [anon_sym_i64] = ACTIONS(3091), + [anon_sym_u128] = ACTIONS(3091), + [anon_sym_i128] = ACTIONS(3091), + [anon_sym_isize] = ACTIONS(3091), + [anon_sym_usize] = ACTIONS(3091), + [anon_sym_f32] = ACTIONS(3091), + [anon_sym_f64] = ACTIONS(3091), + [anon_sym_bool] = ACTIONS(3091), + [anon_sym_str] = ACTIONS(3091), + [anon_sym_char] = ACTIONS(3091), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_BANG] = ACTIONS(3089), + [anon_sym_AMP] = ACTIONS(3089), + [anon_sym_PIPE] = ACTIONS(3089), + [anon_sym_LT] = ACTIONS(3089), + [anon_sym_DOT_DOT] = ACTIONS(3089), + [anon_sym_COLON_COLON] = ACTIONS(3089), + [anon_sym_POUND] = ACTIONS(3089), + [anon_sym_SQUOTE] = ACTIONS(3091), + [anon_sym_async] = ACTIONS(3091), + [anon_sym_break] = ACTIONS(3091), + [anon_sym_const] = ACTIONS(3091), + [anon_sym_continue] = ACTIONS(3091), + [anon_sym_default] = ACTIONS(3091), + [anon_sym_enum] = ACTIONS(3091), + [anon_sym_fn] = ACTIONS(3091), + [anon_sym_for] = ACTIONS(3091), + [anon_sym_gen] = ACTIONS(3091), + [anon_sym_if] = ACTIONS(3091), + [anon_sym_impl] = ACTIONS(3091), + [anon_sym_let] = ACTIONS(3091), + [anon_sym_loop] = ACTIONS(3091), + [anon_sym_match] = ACTIONS(3091), + [anon_sym_mod] = ACTIONS(3091), + [anon_sym_pub] = ACTIONS(3091), + [anon_sym_return] = ACTIONS(3091), + [anon_sym_static] = ACTIONS(3091), + [anon_sym_struct] = ACTIONS(3091), + [anon_sym_trait] = ACTIONS(3091), + [anon_sym_type] = ACTIONS(3091), + [anon_sym_union] = ACTIONS(3091), + [anon_sym_unsafe] = ACTIONS(3091), + [anon_sym_use] = ACTIONS(3091), + [anon_sym_while] = ACTIONS(3091), + [anon_sym_extern] = ACTIONS(3091), + [anon_sym_yield] = ACTIONS(3091), + [anon_sym_move] = ACTIONS(3091), + [anon_sym_try] = ACTIONS(3091), + [sym_integer_literal] = ACTIONS(3089), + [aux_sym_string_literal_token1] = ACTIONS(3089), + [sym_char_literal] = ACTIONS(3089), + [anon_sym_true] = ACTIONS(3091), + [anon_sym_false] = ACTIONS(3091), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), + [sym_self] = ACTIONS(3091), + [sym_super] = ACTIONS(3091), + [sym_crate] = ACTIONS(3091), + [sym_metavariable] = ACTIONS(3089), + [sym__raw_string_literal_start] = ACTIONS(3089), + [sym_float_literal] = ACTIONS(3089), }, [803] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2638), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), [sym_line_comment] = STATE(803), [sym_block_comment] = STATE(803), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_RBRACK] = ACTIONS(3081), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), - [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), + [ts_builtin_sym_end] = ACTIONS(3093), + [sym_identifier] = ACTIONS(3095), + [anon_sym_SEMI] = ACTIONS(3093), + [anon_sym_macro_rules_BANG] = ACTIONS(3093), + [anon_sym_LPAREN] = ACTIONS(3093), + [anon_sym_LBRACK] = ACTIONS(3093), + [anon_sym_LBRACE] = ACTIONS(3093), + [anon_sym_RBRACE] = ACTIONS(3093), + [anon_sym_STAR] = ACTIONS(3093), + [anon_sym_u8] = ACTIONS(3095), + [anon_sym_i8] = ACTIONS(3095), + [anon_sym_u16] = ACTIONS(3095), + [anon_sym_i16] = ACTIONS(3095), + [anon_sym_u32] = ACTIONS(3095), + [anon_sym_i32] = ACTIONS(3095), + [anon_sym_u64] = ACTIONS(3095), + [anon_sym_i64] = ACTIONS(3095), + [anon_sym_u128] = ACTIONS(3095), + [anon_sym_i128] = ACTIONS(3095), + [anon_sym_isize] = ACTIONS(3095), + [anon_sym_usize] = ACTIONS(3095), + [anon_sym_f32] = ACTIONS(3095), + [anon_sym_f64] = ACTIONS(3095), + [anon_sym_bool] = ACTIONS(3095), + [anon_sym_str] = ACTIONS(3095), + [anon_sym_char] = ACTIONS(3095), + [anon_sym_DASH] = ACTIONS(3093), + [anon_sym_BANG] = ACTIONS(3093), + [anon_sym_AMP] = ACTIONS(3093), + [anon_sym_PIPE] = ACTIONS(3093), + [anon_sym_LT] = ACTIONS(3093), + [anon_sym_DOT_DOT] = ACTIONS(3093), + [anon_sym_COLON_COLON] = ACTIONS(3093), + [anon_sym_POUND] = ACTIONS(3093), + [anon_sym_SQUOTE] = ACTIONS(3095), + [anon_sym_async] = ACTIONS(3095), + [anon_sym_break] = ACTIONS(3095), + [anon_sym_const] = ACTIONS(3095), + [anon_sym_continue] = ACTIONS(3095), + [anon_sym_default] = ACTIONS(3095), + [anon_sym_enum] = ACTIONS(3095), + [anon_sym_fn] = ACTIONS(3095), + [anon_sym_for] = ACTIONS(3095), + [anon_sym_gen] = ACTIONS(3095), + [anon_sym_if] = ACTIONS(3095), + [anon_sym_impl] = ACTIONS(3095), + [anon_sym_let] = ACTIONS(3095), + [anon_sym_loop] = ACTIONS(3095), + [anon_sym_match] = ACTIONS(3095), + [anon_sym_mod] = ACTIONS(3095), + [anon_sym_pub] = ACTIONS(3095), + [anon_sym_return] = ACTIONS(3095), + [anon_sym_static] = ACTIONS(3095), + [anon_sym_struct] = ACTIONS(3095), + [anon_sym_trait] = ACTIONS(3095), + [anon_sym_type] = ACTIONS(3095), + [anon_sym_union] = ACTIONS(3095), + [anon_sym_unsafe] = ACTIONS(3095), + [anon_sym_use] = ACTIONS(3095), + [anon_sym_while] = ACTIONS(3095), + [anon_sym_extern] = ACTIONS(3095), + [anon_sym_yield] = ACTIONS(3095), + [anon_sym_move] = ACTIONS(3095), + [anon_sym_try] = ACTIONS(3095), + [sym_integer_literal] = ACTIONS(3093), + [aux_sym_string_literal_token1] = ACTIONS(3093), + [sym_char_literal] = ACTIONS(3093), + [anon_sym_true] = ACTIONS(3095), + [anon_sym_false] = ACTIONS(3095), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3095), + [sym_super] = ACTIONS(3095), + [sym_crate] = ACTIONS(3095), + [sym_metavariable] = ACTIONS(3093), + [sym__raw_string_literal_start] = ACTIONS(3093), + [sym_float_literal] = ACTIONS(3093), }, [804] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(3333), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), [sym_line_comment] = STATE(804), [sym_block_comment] = STATE(804), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), - [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), + [ts_builtin_sym_end] = ACTIONS(3097), + [sym_identifier] = ACTIONS(3099), + [anon_sym_SEMI] = ACTIONS(3097), + [anon_sym_macro_rules_BANG] = ACTIONS(3097), + [anon_sym_LPAREN] = ACTIONS(3097), + [anon_sym_LBRACK] = ACTIONS(3097), + [anon_sym_LBRACE] = ACTIONS(3097), + [anon_sym_RBRACE] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(3097), + [anon_sym_u8] = ACTIONS(3099), + [anon_sym_i8] = ACTIONS(3099), + [anon_sym_u16] = ACTIONS(3099), + [anon_sym_i16] = ACTIONS(3099), + [anon_sym_u32] = ACTIONS(3099), + [anon_sym_i32] = ACTIONS(3099), + [anon_sym_u64] = ACTIONS(3099), + [anon_sym_i64] = ACTIONS(3099), + [anon_sym_u128] = ACTIONS(3099), + [anon_sym_i128] = ACTIONS(3099), + [anon_sym_isize] = ACTIONS(3099), + [anon_sym_usize] = ACTIONS(3099), + [anon_sym_f32] = ACTIONS(3099), + [anon_sym_f64] = ACTIONS(3099), + [anon_sym_bool] = ACTIONS(3099), + [anon_sym_str] = ACTIONS(3099), + [anon_sym_char] = ACTIONS(3099), + [anon_sym_DASH] = ACTIONS(3097), + [anon_sym_BANG] = ACTIONS(3097), + [anon_sym_AMP] = ACTIONS(3097), + [anon_sym_PIPE] = ACTIONS(3097), + [anon_sym_LT] = ACTIONS(3097), + [anon_sym_DOT_DOT] = ACTIONS(3097), + [anon_sym_COLON_COLON] = ACTIONS(3097), + [anon_sym_POUND] = ACTIONS(3097), + [anon_sym_SQUOTE] = ACTIONS(3099), + [anon_sym_async] = ACTIONS(3099), + [anon_sym_break] = ACTIONS(3099), + [anon_sym_const] = ACTIONS(3099), + [anon_sym_continue] = ACTIONS(3099), + [anon_sym_default] = ACTIONS(3099), + [anon_sym_enum] = ACTIONS(3099), + [anon_sym_fn] = ACTIONS(3099), + [anon_sym_for] = ACTIONS(3099), + [anon_sym_gen] = ACTIONS(3099), + [anon_sym_if] = ACTIONS(3099), + [anon_sym_impl] = ACTIONS(3099), + [anon_sym_let] = ACTIONS(3099), + [anon_sym_loop] = ACTIONS(3099), + [anon_sym_match] = ACTIONS(3099), + [anon_sym_mod] = ACTIONS(3099), + [anon_sym_pub] = ACTIONS(3099), + [anon_sym_return] = ACTIONS(3099), + [anon_sym_static] = ACTIONS(3099), + [anon_sym_struct] = ACTIONS(3099), + [anon_sym_trait] = ACTIONS(3099), + [anon_sym_type] = ACTIONS(3099), + [anon_sym_union] = ACTIONS(3099), + [anon_sym_unsafe] = ACTIONS(3099), + [anon_sym_use] = ACTIONS(3099), + [anon_sym_while] = ACTIONS(3099), + [anon_sym_extern] = ACTIONS(3099), + [anon_sym_yield] = ACTIONS(3099), + [anon_sym_move] = ACTIONS(3099), + [anon_sym_try] = ACTIONS(3099), + [sym_integer_literal] = ACTIONS(3097), + [aux_sym_string_literal_token1] = ACTIONS(3097), + [sym_char_literal] = ACTIONS(3097), + [anon_sym_true] = ACTIONS(3099), + [anon_sym_false] = ACTIONS(3099), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3099), + [sym_super] = ACTIONS(3099), + [sym_crate] = ACTIONS(3099), + [sym_metavariable] = ACTIONS(3097), + [sym__raw_string_literal_start] = ACTIONS(3097), + [sym_float_literal] = ACTIONS(3097), }, [805] = { - [sym_bracketed_type] = STATE(3553), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3287), - [sym_macro_invocation] = STATE(2757), - [sym_scoped_identifier] = STATE(2151), - [sym_scoped_type_identifier] = STATE(2982), - [sym_const_block] = STATE(2757), - [sym__pattern] = STATE(2877), - [sym_tuple_pattern] = STATE(2757), - [sym_slice_pattern] = STATE(2757), - [sym_tuple_struct_pattern] = STATE(2757), - [sym_struct_pattern] = STATE(2757), - [sym_remaining_field_pattern] = STATE(2757), - [sym_mut_pattern] = STATE(2757), - [sym_range_pattern] = STATE(2757), - [sym_ref_pattern] = STATE(2757), - [sym_captured_pattern] = STATE(2757), - [sym_reference_pattern] = STATE(2757), - [sym_or_pattern] = STATE(2757), - [sym__literal_pattern] = STATE(2330), - [sym_negative_literal] = STATE(2364), - [sym_string_literal] = STATE(2364), - [sym_raw_string_literal] = STATE(2364), - [sym_boolean_literal] = STATE(2364), [sym_line_comment] = STATE(805), [sym_block_comment] = STATE(805), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1649), - [anon_sym_u8] = ACTIONS(1653), - [anon_sym_i8] = ACTIONS(1653), - [anon_sym_u16] = ACTIONS(1653), - [anon_sym_i16] = ACTIONS(1653), - [anon_sym_u32] = ACTIONS(1653), - [anon_sym_i32] = ACTIONS(1653), - [anon_sym_u64] = ACTIONS(1653), - [anon_sym_i64] = ACTIONS(1653), - [anon_sym_u128] = ACTIONS(1653), - [anon_sym_i128] = ACTIONS(1653), - [anon_sym_isize] = ACTIONS(1653), - [anon_sym_usize] = ACTIONS(1653), - [anon_sym_f32] = ACTIONS(1653), - [anon_sym_f64] = ACTIONS(1653), - [anon_sym_bool] = ACTIONS(1653), - [anon_sym_str] = ACTIONS(1653), - [anon_sym_char] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_PIPE] = ACTIONS(1659), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1661), - [anon_sym_DOT_DOT] = ACTIONS(1663), - [anon_sym_COLON_COLON] = ACTIONS(1665), - [anon_sym_const] = ACTIONS(1669), - [anon_sym_default] = ACTIONS(1671), - [anon_sym_gen] = ACTIONS(1671), - [anon_sym_union] = ACTIONS(1671), - [anon_sym_ref] = ACTIONS(1673), - [sym_mutable_specifier] = ACTIONS(1675), - [sym_integer_literal] = ACTIONS(1677), - [aux_sym_string_literal_token1] = ACTIONS(1679), - [sym_char_literal] = ACTIONS(1677), - [anon_sym_true] = ACTIONS(1681), - [anon_sym_false] = ACTIONS(1681), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1683), - [sym_super] = ACTIONS(1683), - [sym_crate] = ACTIONS(1683), - [sym_metavariable] = ACTIONS(1685), - [sym__raw_string_literal_start] = ACTIONS(1687), - [sym_float_literal] = ACTIONS(1677), + [ts_builtin_sym_end] = ACTIONS(3101), + [sym_identifier] = ACTIONS(3103), + [anon_sym_SEMI] = ACTIONS(3101), + [anon_sym_macro_rules_BANG] = ACTIONS(3101), + [anon_sym_LPAREN] = ACTIONS(3101), + [anon_sym_LBRACK] = ACTIONS(3101), + [anon_sym_LBRACE] = ACTIONS(3101), + [anon_sym_RBRACE] = ACTIONS(3101), + [anon_sym_STAR] = ACTIONS(3101), + [anon_sym_u8] = ACTIONS(3103), + [anon_sym_i8] = ACTIONS(3103), + [anon_sym_u16] = ACTIONS(3103), + [anon_sym_i16] = ACTIONS(3103), + [anon_sym_u32] = ACTIONS(3103), + [anon_sym_i32] = ACTIONS(3103), + [anon_sym_u64] = ACTIONS(3103), + [anon_sym_i64] = ACTIONS(3103), + [anon_sym_u128] = ACTIONS(3103), + [anon_sym_i128] = ACTIONS(3103), + [anon_sym_isize] = ACTIONS(3103), + [anon_sym_usize] = ACTIONS(3103), + [anon_sym_f32] = ACTIONS(3103), + [anon_sym_f64] = ACTIONS(3103), + [anon_sym_bool] = ACTIONS(3103), + [anon_sym_str] = ACTIONS(3103), + [anon_sym_char] = ACTIONS(3103), + [anon_sym_DASH] = ACTIONS(3101), + [anon_sym_BANG] = ACTIONS(3101), + [anon_sym_AMP] = ACTIONS(3101), + [anon_sym_PIPE] = ACTIONS(3101), + [anon_sym_LT] = ACTIONS(3101), + [anon_sym_DOT_DOT] = ACTIONS(3101), + [anon_sym_COLON_COLON] = ACTIONS(3101), + [anon_sym_POUND] = ACTIONS(3101), + [anon_sym_SQUOTE] = ACTIONS(3103), + [anon_sym_async] = ACTIONS(3103), + [anon_sym_break] = ACTIONS(3103), + [anon_sym_const] = ACTIONS(3103), + [anon_sym_continue] = ACTIONS(3103), + [anon_sym_default] = ACTIONS(3103), + [anon_sym_enum] = ACTIONS(3103), + [anon_sym_fn] = ACTIONS(3103), + [anon_sym_for] = ACTIONS(3103), + [anon_sym_gen] = ACTIONS(3103), + [anon_sym_if] = ACTIONS(3103), + [anon_sym_impl] = ACTIONS(3103), + [anon_sym_let] = ACTIONS(3103), + [anon_sym_loop] = ACTIONS(3103), + [anon_sym_match] = ACTIONS(3103), + [anon_sym_mod] = ACTIONS(3103), + [anon_sym_pub] = ACTIONS(3103), + [anon_sym_return] = ACTIONS(3103), + [anon_sym_static] = ACTIONS(3103), + [anon_sym_struct] = ACTIONS(3103), + [anon_sym_trait] = ACTIONS(3103), + [anon_sym_type] = ACTIONS(3103), + [anon_sym_union] = ACTIONS(3103), + [anon_sym_unsafe] = ACTIONS(3103), + [anon_sym_use] = ACTIONS(3103), + [anon_sym_while] = ACTIONS(3103), + [anon_sym_extern] = ACTIONS(3103), + [anon_sym_yield] = ACTIONS(3103), + [anon_sym_move] = ACTIONS(3103), + [anon_sym_try] = ACTIONS(3103), + [sym_integer_literal] = ACTIONS(3101), + [aux_sym_string_literal_token1] = ACTIONS(3101), + [sym_char_literal] = ACTIONS(3101), + [anon_sym_true] = ACTIONS(3103), + [anon_sym_false] = ACTIONS(3103), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3103), + [sym_super] = ACTIONS(3103), + [sym_crate] = ACTIONS(3103), + [sym_metavariable] = ACTIONS(3101), + [sym__raw_string_literal_start] = ACTIONS(3101), + [sym_float_literal] = ACTIONS(3101), }, [806] = { - [sym_bracketed_type] = STATE(3553), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3287), - [sym_macro_invocation] = STATE(2757), - [sym_scoped_identifier] = STATE(2151), - [sym_scoped_type_identifier] = STATE(2982), - [sym_const_block] = STATE(2757), - [sym__pattern] = STATE(3006), - [sym_tuple_pattern] = STATE(2757), - [sym_slice_pattern] = STATE(2757), - [sym_tuple_struct_pattern] = STATE(2757), - [sym_struct_pattern] = STATE(2757), - [sym_remaining_field_pattern] = STATE(2757), - [sym_mut_pattern] = STATE(2757), - [sym_range_pattern] = STATE(2757), - [sym_ref_pattern] = STATE(2757), - [sym_captured_pattern] = STATE(2757), - [sym_reference_pattern] = STATE(2757), - [sym_or_pattern] = STATE(2757), - [sym__literal_pattern] = STATE(2330), - [sym_negative_literal] = STATE(2364), - [sym_string_literal] = STATE(2364), - [sym_raw_string_literal] = STATE(2364), - [sym_boolean_literal] = STATE(2364), [sym_line_comment] = STATE(806), [sym_block_comment] = STATE(806), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1649), - [anon_sym_u8] = ACTIONS(1653), - [anon_sym_i8] = ACTIONS(1653), - [anon_sym_u16] = ACTIONS(1653), - [anon_sym_i16] = ACTIONS(1653), - [anon_sym_u32] = ACTIONS(1653), - [anon_sym_i32] = ACTIONS(1653), - [anon_sym_u64] = ACTIONS(1653), - [anon_sym_i64] = ACTIONS(1653), - [anon_sym_u128] = ACTIONS(1653), - [anon_sym_i128] = ACTIONS(1653), - [anon_sym_isize] = ACTIONS(1653), - [anon_sym_usize] = ACTIONS(1653), - [anon_sym_f32] = ACTIONS(1653), - [anon_sym_f64] = ACTIONS(1653), - [anon_sym_bool] = ACTIONS(1653), - [anon_sym_str] = ACTIONS(1653), - [anon_sym_char] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_PIPE] = ACTIONS(1659), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1661), - [anon_sym_DOT_DOT] = ACTIONS(1663), - [anon_sym_COLON_COLON] = ACTIONS(1665), - [anon_sym_const] = ACTIONS(1669), - [anon_sym_default] = ACTIONS(1671), - [anon_sym_gen] = ACTIONS(1671), - [anon_sym_union] = ACTIONS(1671), - [anon_sym_ref] = ACTIONS(1673), - [sym_mutable_specifier] = ACTIONS(1675), - [sym_integer_literal] = ACTIONS(1677), - [aux_sym_string_literal_token1] = ACTIONS(1679), - [sym_char_literal] = ACTIONS(1677), - [anon_sym_true] = ACTIONS(1681), - [anon_sym_false] = ACTIONS(1681), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1683), - [sym_super] = ACTIONS(1683), - [sym_crate] = ACTIONS(1683), - [sym_metavariable] = ACTIONS(1685), - [sym__raw_string_literal_start] = ACTIONS(1687), - [sym_float_literal] = ACTIONS(1677), + [ts_builtin_sym_end] = ACTIONS(3105), + [sym_identifier] = ACTIONS(3107), + [anon_sym_SEMI] = ACTIONS(3105), + [anon_sym_macro_rules_BANG] = ACTIONS(3105), + [anon_sym_LPAREN] = ACTIONS(3105), + [anon_sym_LBRACK] = ACTIONS(3105), + [anon_sym_LBRACE] = ACTIONS(3105), + [anon_sym_RBRACE] = ACTIONS(3105), + [anon_sym_STAR] = ACTIONS(3105), + [anon_sym_u8] = ACTIONS(3107), + [anon_sym_i8] = ACTIONS(3107), + [anon_sym_u16] = ACTIONS(3107), + [anon_sym_i16] = ACTIONS(3107), + [anon_sym_u32] = ACTIONS(3107), + [anon_sym_i32] = ACTIONS(3107), + [anon_sym_u64] = ACTIONS(3107), + [anon_sym_i64] = ACTIONS(3107), + [anon_sym_u128] = ACTIONS(3107), + [anon_sym_i128] = ACTIONS(3107), + [anon_sym_isize] = ACTIONS(3107), + [anon_sym_usize] = ACTIONS(3107), + [anon_sym_f32] = ACTIONS(3107), + [anon_sym_f64] = ACTIONS(3107), + [anon_sym_bool] = ACTIONS(3107), + [anon_sym_str] = ACTIONS(3107), + [anon_sym_char] = ACTIONS(3107), + [anon_sym_DASH] = ACTIONS(3105), + [anon_sym_BANG] = ACTIONS(3105), + [anon_sym_AMP] = ACTIONS(3105), + [anon_sym_PIPE] = ACTIONS(3105), + [anon_sym_LT] = ACTIONS(3105), + [anon_sym_DOT_DOT] = ACTIONS(3105), + [anon_sym_COLON_COLON] = ACTIONS(3105), + [anon_sym_POUND] = ACTIONS(3105), + [anon_sym_SQUOTE] = ACTIONS(3107), + [anon_sym_async] = ACTIONS(3107), + [anon_sym_break] = ACTIONS(3107), + [anon_sym_const] = ACTIONS(3107), + [anon_sym_continue] = ACTIONS(3107), + [anon_sym_default] = ACTIONS(3107), + [anon_sym_enum] = ACTIONS(3107), + [anon_sym_fn] = ACTIONS(3107), + [anon_sym_for] = ACTIONS(3107), + [anon_sym_gen] = ACTIONS(3107), + [anon_sym_if] = ACTIONS(3107), + [anon_sym_impl] = ACTIONS(3107), + [anon_sym_let] = ACTIONS(3107), + [anon_sym_loop] = ACTIONS(3107), + [anon_sym_match] = ACTIONS(3107), + [anon_sym_mod] = ACTIONS(3107), + [anon_sym_pub] = ACTIONS(3107), + [anon_sym_return] = ACTIONS(3107), + [anon_sym_static] = ACTIONS(3107), + [anon_sym_struct] = ACTIONS(3107), + [anon_sym_trait] = ACTIONS(3107), + [anon_sym_type] = ACTIONS(3107), + [anon_sym_union] = ACTIONS(3107), + [anon_sym_unsafe] = ACTIONS(3107), + [anon_sym_use] = ACTIONS(3107), + [anon_sym_while] = ACTIONS(3107), + [anon_sym_extern] = ACTIONS(3107), + [anon_sym_yield] = ACTIONS(3107), + [anon_sym_move] = ACTIONS(3107), + [anon_sym_try] = ACTIONS(3107), + [sym_integer_literal] = ACTIONS(3105), + [aux_sym_string_literal_token1] = ACTIONS(3105), + [sym_char_literal] = ACTIONS(3105), + [anon_sym_true] = ACTIONS(3107), + [anon_sym_false] = ACTIONS(3107), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3107), + [sym_super] = ACTIONS(3107), + [sym_crate] = ACTIONS(3107), + [sym_metavariable] = ACTIONS(3105), + [sym__raw_string_literal_start] = ACTIONS(3105), + [sym_float_literal] = ACTIONS(3105), }, [807] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2143), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), [sym_line_comment] = STATE(807), [sym_block_comment] = STATE(807), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), - [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), + [ts_builtin_sym_end] = ACTIONS(3109), + [sym_identifier] = ACTIONS(3111), + [anon_sym_SEMI] = ACTIONS(3109), + [anon_sym_macro_rules_BANG] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(3109), + [anon_sym_LBRACK] = ACTIONS(3109), + [anon_sym_LBRACE] = ACTIONS(3109), + [anon_sym_RBRACE] = ACTIONS(3109), + [anon_sym_STAR] = ACTIONS(3109), + [anon_sym_u8] = ACTIONS(3111), + [anon_sym_i8] = ACTIONS(3111), + [anon_sym_u16] = ACTIONS(3111), + [anon_sym_i16] = ACTIONS(3111), + [anon_sym_u32] = ACTIONS(3111), + [anon_sym_i32] = ACTIONS(3111), + [anon_sym_u64] = ACTIONS(3111), + [anon_sym_i64] = ACTIONS(3111), + [anon_sym_u128] = ACTIONS(3111), + [anon_sym_i128] = ACTIONS(3111), + [anon_sym_isize] = ACTIONS(3111), + [anon_sym_usize] = ACTIONS(3111), + [anon_sym_f32] = ACTIONS(3111), + [anon_sym_f64] = ACTIONS(3111), + [anon_sym_bool] = ACTIONS(3111), + [anon_sym_str] = ACTIONS(3111), + [anon_sym_char] = ACTIONS(3111), + [anon_sym_DASH] = ACTIONS(3109), + [anon_sym_BANG] = ACTIONS(3109), + [anon_sym_AMP] = ACTIONS(3109), + [anon_sym_PIPE] = ACTIONS(3109), + [anon_sym_LT] = ACTIONS(3109), + [anon_sym_DOT_DOT] = ACTIONS(3109), + [anon_sym_COLON_COLON] = ACTIONS(3109), + [anon_sym_POUND] = ACTIONS(3109), + [anon_sym_SQUOTE] = ACTIONS(3111), + [anon_sym_async] = ACTIONS(3111), + [anon_sym_break] = ACTIONS(3111), + [anon_sym_const] = ACTIONS(3111), + [anon_sym_continue] = ACTIONS(3111), + [anon_sym_default] = ACTIONS(3111), + [anon_sym_enum] = ACTIONS(3111), + [anon_sym_fn] = ACTIONS(3111), + [anon_sym_for] = ACTIONS(3111), + [anon_sym_gen] = ACTIONS(3111), + [anon_sym_if] = ACTIONS(3111), + [anon_sym_impl] = ACTIONS(3111), + [anon_sym_let] = ACTIONS(3111), + [anon_sym_loop] = ACTIONS(3111), + [anon_sym_match] = ACTIONS(3111), + [anon_sym_mod] = ACTIONS(3111), + [anon_sym_pub] = ACTIONS(3111), + [anon_sym_return] = ACTIONS(3111), + [anon_sym_static] = ACTIONS(3111), + [anon_sym_struct] = ACTIONS(3111), + [anon_sym_trait] = ACTIONS(3111), + [anon_sym_type] = ACTIONS(3111), + [anon_sym_union] = ACTIONS(3111), + [anon_sym_unsafe] = ACTIONS(3111), + [anon_sym_use] = ACTIONS(3111), + [anon_sym_while] = ACTIONS(3111), + [anon_sym_extern] = ACTIONS(3111), + [anon_sym_yield] = ACTIONS(3111), + [anon_sym_move] = ACTIONS(3111), + [anon_sym_try] = ACTIONS(3111), + [sym_integer_literal] = ACTIONS(3109), + [aux_sym_string_literal_token1] = ACTIONS(3109), + [sym_char_literal] = ACTIONS(3109), + [anon_sym_true] = ACTIONS(3111), + [anon_sym_false] = ACTIONS(3111), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3111), + [sym_super] = ACTIONS(3111), + [sym_crate] = ACTIONS(3111), + [sym_metavariable] = ACTIONS(3109), + [sym__raw_string_literal_start] = ACTIONS(3109), + [sym_float_literal] = ACTIONS(3109), }, [808] = { - [sym_bracketed_type] = STATE(3553), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3287), - [sym_macro_invocation] = STATE(2757), - [sym_scoped_identifier] = STATE(2151), - [sym_scoped_type_identifier] = STATE(2982), - [sym_const_block] = STATE(2757), - [sym__pattern] = STATE(2886), - [sym_tuple_pattern] = STATE(2757), - [sym_slice_pattern] = STATE(2757), - [sym_tuple_struct_pattern] = STATE(2757), - [sym_struct_pattern] = STATE(2757), - [sym_remaining_field_pattern] = STATE(2757), - [sym_mut_pattern] = STATE(2757), - [sym_range_pattern] = STATE(2757), - [sym_ref_pattern] = STATE(2757), - [sym_captured_pattern] = STATE(2757), - [sym_reference_pattern] = STATE(2757), - [sym_or_pattern] = STATE(2757), - [sym__literal_pattern] = STATE(2330), - [sym_negative_literal] = STATE(2364), - [sym_string_literal] = STATE(2364), - [sym_raw_string_literal] = STATE(2364), - [sym_boolean_literal] = STATE(2364), [sym_line_comment] = STATE(808), [sym_block_comment] = STATE(808), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1649), - [anon_sym_u8] = ACTIONS(1653), - [anon_sym_i8] = ACTIONS(1653), - [anon_sym_u16] = ACTIONS(1653), - [anon_sym_i16] = ACTIONS(1653), - [anon_sym_u32] = ACTIONS(1653), - [anon_sym_i32] = ACTIONS(1653), - [anon_sym_u64] = ACTIONS(1653), - [anon_sym_i64] = ACTIONS(1653), - [anon_sym_u128] = ACTIONS(1653), - [anon_sym_i128] = ACTIONS(1653), - [anon_sym_isize] = ACTIONS(1653), - [anon_sym_usize] = ACTIONS(1653), - [anon_sym_f32] = ACTIONS(1653), - [anon_sym_f64] = ACTIONS(1653), - [anon_sym_bool] = ACTIONS(1653), - [anon_sym_str] = ACTIONS(1653), - [anon_sym_char] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_PIPE] = ACTIONS(1659), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1661), - [anon_sym_DOT_DOT] = ACTIONS(1663), - [anon_sym_COLON_COLON] = ACTIONS(1665), - [anon_sym_const] = ACTIONS(1669), - [anon_sym_default] = ACTIONS(1671), - [anon_sym_gen] = ACTIONS(1671), - [anon_sym_union] = ACTIONS(1671), - [anon_sym_ref] = ACTIONS(1673), - [sym_mutable_specifier] = ACTIONS(1675), - [sym_integer_literal] = ACTIONS(1677), - [aux_sym_string_literal_token1] = ACTIONS(1679), - [sym_char_literal] = ACTIONS(1677), - [anon_sym_true] = ACTIONS(1681), - [anon_sym_false] = ACTIONS(1681), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1683), - [sym_super] = ACTIONS(1683), - [sym_crate] = ACTIONS(1683), - [sym_metavariable] = ACTIONS(1685), - [sym__raw_string_literal_start] = ACTIONS(1687), - [sym_float_literal] = ACTIONS(1677), + [ts_builtin_sym_end] = ACTIONS(3113), + [sym_identifier] = ACTIONS(3115), + [anon_sym_SEMI] = ACTIONS(3113), + [anon_sym_macro_rules_BANG] = ACTIONS(3113), + [anon_sym_LPAREN] = ACTIONS(3113), + [anon_sym_LBRACK] = ACTIONS(3113), + [anon_sym_LBRACE] = ACTIONS(3113), + [anon_sym_RBRACE] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3113), + [anon_sym_u8] = ACTIONS(3115), + [anon_sym_i8] = ACTIONS(3115), + [anon_sym_u16] = ACTIONS(3115), + [anon_sym_i16] = ACTIONS(3115), + [anon_sym_u32] = ACTIONS(3115), + [anon_sym_i32] = ACTIONS(3115), + [anon_sym_u64] = ACTIONS(3115), + [anon_sym_i64] = ACTIONS(3115), + [anon_sym_u128] = ACTIONS(3115), + [anon_sym_i128] = ACTIONS(3115), + [anon_sym_isize] = ACTIONS(3115), + [anon_sym_usize] = ACTIONS(3115), + [anon_sym_f32] = ACTIONS(3115), + [anon_sym_f64] = ACTIONS(3115), + [anon_sym_bool] = ACTIONS(3115), + [anon_sym_str] = ACTIONS(3115), + [anon_sym_char] = ACTIONS(3115), + [anon_sym_DASH] = ACTIONS(3113), + [anon_sym_BANG] = ACTIONS(3113), + [anon_sym_AMP] = ACTIONS(3113), + [anon_sym_PIPE] = ACTIONS(3113), + [anon_sym_LT] = ACTIONS(3113), + [anon_sym_DOT_DOT] = ACTIONS(3113), + [anon_sym_COLON_COLON] = ACTIONS(3113), + [anon_sym_POUND] = ACTIONS(3113), + [anon_sym_SQUOTE] = ACTIONS(3115), + [anon_sym_async] = ACTIONS(3115), + [anon_sym_break] = ACTIONS(3115), + [anon_sym_const] = ACTIONS(3115), + [anon_sym_continue] = ACTIONS(3115), + [anon_sym_default] = ACTIONS(3115), + [anon_sym_enum] = ACTIONS(3115), + [anon_sym_fn] = ACTIONS(3115), + [anon_sym_for] = ACTIONS(3115), + [anon_sym_gen] = ACTIONS(3115), + [anon_sym_if] = ACTIONS(3115), + [anon_sym_impl] = ACTIONS(3115), + [anon_sym_let] = ACTIONS(3115), + [anon_sym_loop] = ACTIONS(3115), + [anon_sym_match] = ACTIONS(3115), + [anon_sym_mod] = ACTIONS(3115), + [anon_sym_pub] = ACTIONS(3115), + [anon_sym_return] = ACTIONS(3115), + [anon_sym_static] = ACTIONS(3115), + [anon_sym_struct] = ACTIONS(3115), + [anon_sym_trait] = ACTIONS(3115), + [anon_sym_type] = ACTIONS(3115), + [anon_sym_union] = ACTIONS(3115), + [anon_sym_unsafe] = ACTIONS(3115), + [anon_sym_use] = ACTIONS(3115), + [anon_sym_while] = ACTIONS(3115), + [anon_sym_extern] = ACTIONS(3115), + [anon_sym_yield] = ACTIONS(3115), + [anon_sym_move] = ACTIONS(3115), + [anon_sym_try] = ACTIONS(3115), + [sym_integer_literal] = ACTIONS(3113), + [aux_sym_string_literal_token1] = ACTIONS(3113), + [sym_char_literal] = ACTIONS(3113), + [anon_sym_true] = ACTIONS(3115), + [anon_sym_false] = ACTIONS(3115), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3115), + [sym_super] = ACTIONS(3115), + [sym_crate] = ACTIONS(3115), + [sym_metavariable] = ACTIONS(3113), + [sym__raw_string_literal_start] = ACTIONS(3113), + [sym_float_literal] = ACTIONS(3113), }, [809] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2119), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), [sym_line_comment] = STATE(809), [sym_block_comment] = STATE(809), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), - [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), + [ts_builtin_sym_end] = ACTIONS(3117), + [sym_identifier] = ACTIONS(3119), + [anon_sym_SEMI] = ACTIONS(3117), + [anon_sym_macro_rules_BANG] = ACTIONS(3117), + [anon_sym_LPAREN] = ACTIONS(3117), + [anon_sym_LBRACK] = ACTIONS(3117), + [anon_sym_LBRACE] = ACTIONS(3117), + [anon_sym_RBRACE] = ACTIONS(3117), + [anon_sym_STAR] = ACTIONS(3117), + [anon_sym_u8] = ACTIONS(3119), + [anon_sym_i8] = ACTIONS(3119), + [anon_sym_u16] = ACTIONS(3119), + [anon_sym_i16] = ACTIONS(3119), + [anon_sym_u32] = ACTIONS(3119), + [anon_sym_i32] = ACTIONS(3119), + [anon_sym_u64] = ACTIONS(3119), + [anon_sym_i64] = ACTIONS(3119), + [anon_sym_u128] = ACTIONS(3119), + [anon_sym_i128] = ACTIONS(3119), + [anon_sym_isize] = ACTIONS(3119), + [anon_sym_usize] = ACTIONS(3119), + [anon_sym_f32] = ACTIONS(3119), + [anon_sym_f64] = ACTIONS(3119), + [anon_sym_bool] = ACTIONS(3119), + [anon_sym_str] = ACTIONS(3119), + [anon_sym_char] = ACTIONS(3119), + [anon_sym_DASH] = ACTIONS(3117), + [anon_sym_BANG] = ACTIONS(3117), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_PIPE] = ACTIONS(3117), + [anon_sym_LT] = ACTIONS(3117), + [anon_sym_DOT_DOT] = ACTIONS(3117), + [anon_sym_COLON_COLON] = ACTIONS(3117), + [anon_sym_POUND] = ACTIONS(3117), + [anon_sym_SQUOTE] = ACTIONS(3119), + [anon_sym_async] = ACTIONS(3119), + [anon_sym_break] = ACTIONS(3119), + [anon_sym_const] = ACTIONS(3119), + [anon_sym_continue] = ACTIONS(3119), + [anon_sym_default] = ACTIONS(3119), + [anon_sym_enum] = ACTIONS(3119), + [anon_sym_fn] = ACTIONS(3119), + [anon_sym_for] = ACTIONS(3119), + [anon_sym_gen] = ACTIONS(3119), + [anon_sym_if] = ACTIONS(3119), + [anon_sym_impl] = ACTIONS(3119), + [anon_sym_let] = ACTIONS(3119), + [anon_sym_loop] = ACTIONS(3119), + [anon_sym_match] = ACTIONS(3119), + [anon_sym_mod] = ACTIONS(3119), + [anon_sym_pub] = ACTIONS(3119), + [anon_sym_return] = ACTIONS(3119), + [anon_sym_static] = ACTIONS(3119), + [anon_sym_struct] = ACTIONS(3119), + [anon_sym_trait] = ACTIONS(3119), + [anon_sym_type] = ACTIONS(3119), + [anon_sym_union] = ACTIONS(3119), + [anon_sym_unsafe] = ACTIONS(3119), + [anon_sym_use] = ACTIONS(3119), + [anon_sym_while] = ACTIONS(3119), + [anon_sym_extern] = ACTIONS(3119), + [anon_sym_yield] = ACTIONS(3119), + [anon_sym_move] = ACTIONS(3119), + [anon_sym_try] = ACTIONS(3119), + [sym_integer_literal] = ACTIONS(3117), + [aux_sym_string_literal_token1] = ACTIONS(3117), + [sym_char_literal] = ACTIONS(3117), + [anon_sym_true] = ACTIONS(3119), + [anon_sym_false] = ACTIONS(3119), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3119), + [sym_super] = ACTIONS(3119), + [sym_crate] = ACTIONS(3119), + [sym_metavariable] = ACTIONS(3117), + [sym__raw_string_literal_start] = ACTIONS(3117), + [sym_float_literal] = ACTIONS(3117), }, [810] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2134), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), [sym_line_comment] = STATE(810), [sym_block_comment] = STATE(810), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), - [sym_mutable_specifier] = ACTIONS(3083), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), + [ts_builtin_sym_end] = ACTIONS(3121), + [sym_identifier] = ACTIONS(3123), + [anon_sym_SEMI] = ACTIONS(3121), + [anon_sym_macro_rules_BANG] = ACTIONS(3121), + [anon_sym_LPAREN] = ACTIONS(3121), + [anon_sym_LBRACK] = ACTIONS(3121), + [anon_sym_LBRACE] = ACTIONS(3121), + [anon_sym_RBRACE] = ACTIONS(3121), + [anon_sym_STAR] = ACTIONS(3121), + [anon_sym_u8] = ACTIONS(3123), + [anon_sym_i8] = ACTIONS(3123), + [anon_sym_u16] = ACTIONS(3123), + [anon_sym_i16] = ACTIONS(3123), + [anon_sym_u32] = ACTIONS(3123), + [anon_sym_i32] = ACTIONS(3123), + [anon_sym_u64] = ACTIONS(3123), + [anon_sym_i64] = ACTIONS(3123), + [anon_sym_u128] = ACTIONS(3123), + [anon_sym_i128] = ACTIONS(3123), + [anon_sym_isize] = ACTIONS(3123), + [anon_sym_usize] = ACTIONS(3123), + [anon_sym_f32] = ACTIONS(3123), + [anon_sym_f64] = ACTIONS(3123), + [anon_sym_bool] = ACTIONS(3123), + [anon_sym_str] = ACTIONS(3123), + [anon_sym_char] = ACTIONS(3123), + [anon_sym_DASH] = ACTIONS(3121), + [anon_sym_BANG] = ACTIONS(3121), + [anon_sym_AMP] = ACTIONS(3121), + [anon_sym_PIPE] = ACTIONS(3121), + [anon_sym_LT] = ACTIONS(3121), + [anon_sym_DOT_DOT] = ACTIONS(3121), + [anon_sym_COLON_COLON] = ACTIONS(3121), + [anon_sym_POUND] = ACTIONS(3121), + [anon_sym_SQUOTE] = ACTIONS(3123), + [anon_sym_async] = ACTIONS(3123), + [anon_sym_break] = ACTIONS(3123), + [anon_sym_const] = ACTIONS(3123), + [anon_sym_continue] = ACTIONS(3123), + [anon_sym_default] = ACTIONS(3123), + [anon_sym_enum] = ACTIONS(3123), + [anon_sym_fn] = ACTIONS(3123), + [anon_sym_for] = ACTIONS(3123), + [anon_sym_gen] = ACTIONS(3123), + [anon_sym_if] = ACTIONS(3123), + [anon_sym_impl] = ACTIONS(3123), + [anon_sym_let] = ACTIONS(3123), + [anon_sym_loop] = ACTIONS(3123), + [anon_sym_match] = ACTIONS(3123), + [anon_sym_mod] = ACTIONS(3123), + [anon_sym_pub] = ACTIONS(3123), + [anon_sym_return] = ACTIONS(3123), + [anon_sym_static] = ACTIONS(3123), + [anon_sym_struct] = ACTIONS(3123), + [anon_sym_trait] = ACTIONS(3123), + [anon_sym_type] = ACTIONS(3123), + [anon_sym_union] = ACTIONS(3123), + [anon_sym_unsafe] = ACTIONS(3123), + [anon_sym_use] = ACTIONS(3123), + [anon_sym_while] = ACTIONS(3123), + [anon_sym_extern] = ACTIONS(3123), + [anon_sym_yield] = ACTIONS(3123), + [anon_sym_move] = ACTIONS(3123), + [anon_sym_try] = ACTIONS(3123), + [sym_integer_literal] = ACTIONS(3121), + [aux_sym_string_literal_token1] = ACTIONS(3121), + [sym_char_literal] = ACTIONS(3121), + [anon_sym_true] = ACTIONS(3123), + [anon_sym_false] = ACTIONS(3123), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3123), + [sym_super] = ACTIONS(3123), + [sym_crate] = ACTIONS(3123), + [sym_metavariable] = ACTIONS(3121), + [sym__raw_string_literal_start] = ACTIONS(3121), + [sym_float_literal] = ACTIONS(3121), }, [811] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2124), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), [sym_line_comment] = STATE(811), [sym_block_comment] = STATE(811), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), - [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), + [ts_builtin_sym_end] = ACTIONS(3125), + [sym_identifier] = ACTIONS(3127), + [anon_sym_SEMI] = ACTIONS(3125), + [anon_sym_macro_rules_BANG] = ACTIONS(3125), + [anon_sym_LPAREN] = ACTIONS(3125), + [anon_sym_LBRACK] = ACTIONS(3125), + [anon_sym_LBRACE] = ACTIONS(3125), + [anon_sym_RBRACE] = ACTIONS(3125), + [anon_sym_STAR] = ACTIONS(3125), + [anon_sym_u8] = ACTIONS(3127), + [anon_sym_i8] = ACTIONS(3127), + [anon_sym_u16] = ACTIONS(3127), + [anon_sym_i16] = ACTIONS(3127), + [anon_sym_u32] = ACTIONS(3127), + [anon_sym_i32] = ACTIONS(3127), + [anon_sym_u64] = ACTIONS(3127), + [anon_sym_i64] = ACTIONS(3127), + [anon_sym_u128] = ACTIONS(3127), + [anon_sym_i128] = ACTIONS(3127), + [anon_sym_isize] = ACTIONS(3127), + [anon_sym_usize] = ACTIONS(3127), + [anon_sym_f32] = ACTIONS(3127), + [anon_sym_f64] = ACTIONS(3127), + [anon_sym_bool] = ACTIONS(3127), + [anon_sym_str] = ACTIONS(3127), + [anon_sym_char] = ACTIONS(3127), + [anon_sym_DASH] = ACTIONS(3125), + [anon_sym_BANG] = ACTIONS(3125), + [anon_sym_AMP] = ACTIONS(3125), + [anon_sym_PIPE] = ACTIONS(3125), + [anon_sym_LT] = ACTIONS(3125), + [anon_sym_DOT_DOT] = ACTIONS(3125), + [anon_sym_COLON_COLON] = ACTIONS(3125), + [anon_sym_POUND] = ACTIONS(3125), + [anon_sym_SQUOTE] = ACTIONS(3127), + [anon_sym_async] = ACTIONS(3127), + [anon_sym_break] = ACTIONS(3127), + [anon_sym_const] = ACTIONS(3127), + [anon_sym_continue] = ACTIONS(3127), + [anon_sym_default] = ACTIONS(3127), + [anon_sym_enum] = ACTIONS(3127), + [anon_sym_fn] = ACTIONS(3127), + [anon_sym_for] = ACTIONS(3127), + [anon_sym_gen] = ACTIONS(3127), + [anon_sym_if] = ACTIONS(3127), + [anon_sym_impl] = ACTIONS(3127), + [anon_sym_let] = ACTIONS(3127), + [anon_sym_loop] = ACTIONS(3127), + [anon_sym_match] = ACTIONS(3127), + [anon_sym_mod] = ACTIONS(3127), + [anon_sym_pub] = ACTIONS(3127), + [anon_sym_return] = ACTIONS(3127), + [anon_sym_static] = ACTIONS(3127), + [anon_sym_struct] = ACTIONS(3127), + [anon_sym_trait] = ACTIONS(3127), + [anon_sym_type] = ACTIONS(3127), + [anon_sym_union] = ACTIONS(3127), + [anon_sym_unsafe] = ACTIONS(3127), + [anon_sym_use] = ACTIONS(3127), + [anon_sym_while] = ACTIONS(3127), + [anon_sym_extern] = ACTIONS(3127), + [anon_sym_yield] = ACTIONS(3127), + [anon_sym_move] = ACTIONS(3127), + [anon_sym_try] = ACTIONS(3127), + [sym_integer_literal] = ACTIONS(3125), + [aux_sym_string_literal_token1] = ACTIONS(3125), + [sym_char_literal] = ACTIONS(3125), + [anon_sym_true] = ACTIONS(3127), + [anon_sym_false] = ACTIONS(3127), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3127), + [sym_super] = ACTIONS(3127), + [sym_crate] = ACTIONS(3127), + [sym_metavariable] = ACTIONS(3125), + [sym__raw_string_literal_start] = ACTIONS(3125), + [sym_float_literal] = ACTIONS(3125), }, [812] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(3051), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), [sym_line_comment] = STATE(812), [sym_block_comment] = STATE(812), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), - [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), + [ts_builtin_sym_end] = ACTIONS(3129), + [sym_identifier] = ACTIONS(3131), + [anon_sym_SEMI] = ACTIONS(3129), + [anon_sym_macro_rules_BANG] = ACTIONS(3129), + [anon_sym_LPAREN] = ACTIONS(3129), + [anon_sym_LBRACK] = ACTIONS(3129), + [anon_sym_LBRACE] = ACTIONS(3129), + [anon_sym_RBRACE] = ACTIONS(3129), + [anon_sym_STAR] = ACTIONS(3129), + [anon_sym_u8] = ACTIONS(3131), + [anon_sym_i8] = ACTIONS(3131), + [anon_sym_u16] = ACTIONS(3131), + [anon_sym_i16] = ACTIONS(3131), + [anon_sym_u32] = ACTIONS(3131), + [anon_sym_i32] = ACTIONS(3131), + [anon_sym_u64] = ACTIONS(3131), + [anon_sym_i64] = ACTIONS(3131), + [anon_sym_u128] = ACTIONS(3131), + [anon_sym_i128] = ACTIONS(3131), + [anon_sym_isize] = ACTIONS(3131), + [anon_sym_usize] = ACTIONS(3131), + [anon_sym_f32] = ACTIONS(3131), + [anon_sym_f64] = ACTIONS(3131), + [anon_sym_bool] = ACTIONS(3131), + [anon_sym_str] = ACTIONS(3131), + [anon_sym_char] = ACTIONS(3131), + [anon_sym_DASH] = ACTIONS(3129), + [anon_sym_BANG] = ACTIONS(3129), + [anon_sym_AMP] = ACTIONS(3129), + [anon_sym_PIPE] = ACTIONS(3129), + [anon_sym_LT] = ACTIONS(3129), + [anon_sym_DOT_DOT] = ACTIONS(3129), + [anon_sym_COLON_COLON] = ACTIONS(3129), + [anon_sym_POUND] = ACTIONS(3129), + [anon_sym_SQUOTE] = ACTIONS(3131), + [anon_sym_async] = ACTIONS(3131), + [anon_sym_break] = ACTIONS(3131), + [anon_sym_const] = ACTIONS(3131), + [anon_sym_continue] = ACTIONS(3131), + [anon_sym_default] = ACTIONS(3131), + [anon_sym_enum] = ACTIONS(3131), + [anon_sym_fn] = ACTIONS(3131), + [anon_sym_for] = ACTIONS(3131), + [anon_sym_gen] = ACTIONS(3131), + [anon_sym_if] = ACTIONS(3131), + [anon_sym_impl] = ACTIONS(3131), + [anon_sym_let] = ACTIONS(3131), + [anon_sym_loop] = ACTIONS(3131), + [anon_sym_match] = ACTIONS(3131), + [anon_sym_mod] = ACTIONS(3131), + [anon_sym_pub] = ACTIONS(3131), + [anon_sym_return] = ACTIONS(3131), + [anon_sym_static] = ACTIONS(3131), + [anon_sym_struct] = ACTIONS(3131), + [anon_sym_trait] = ACTIONS(3131), + [anon_sym_type] = ACTIONS(3131), + [anon_sym_union] = ACTIONS(3131), + [anon_sym_unsafe] = ACTIONS(3131), + [anon_sym_use] = ACTIONS(3131), + [anon_sym_while] = ACTIONS(3131), + [anon_sym_extern] = ACTIONS(3131), + [anon_sym_yield] = ACTIONS(3131), + [anon_sym_move] = ACTIONS(3131), + [anon_sym_try] = ACTIONS(3131), + [sym_integer_literal] = ACTIONS(3129), + [aux_sym_string_literal_token1] = ACTIONS(3129), + [sym_char_literal] = ACTIONS(3129), + [anon_sym_true] = ACTIONS(3131), + [anon_sym_false] = ACTIONS(3131), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3131), + [sym_super] = ACTIONS(3131), + [sym_crate] = ACTIONS(3131), + [sym_metavariable] = ACTIONS(3129), + [sym__raw_string_literal_start] = ACTIONS(3129), + [sym_float_literal] = ACTIONS(3129), }, [813] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2412), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), [sym_line_comment] = STATE(813), [sym_block_comment] = STATE(813), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), - [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), + [ts_builtin_sym_end] = ACTIONS(3133), + [sym_identifier] = ACTIONS(3135), + [anon_sym_SEMI] = ACTIONS(3133), + [anon_sym_macro_rules_BANG] = ACTIONS(3133), + [anon_sym_LPAREN] = ACTIONS(3133), + [anon_sym_LBRACK] = ACTIONS(3133), + [anon_sym_LBRACE] = ACTIONS(3133), + [anon_sym_RBRACE] = ACTIONS(3133), + [anon_sym_STAR] = ACTIONS(3133), + [anon_sym_u8] = ACTIONS(3135), + [anon_sym_i8] = ACTIONS(3135), + [anon_sym_u16] = ACTIONS(3135), + [anon_sym_i16] = ACTIONS(3135), + [anon_sym_u32] = ACTIONS(3135), + [anon_sym_i32] = ACTIONS(3135), + [anon_sym_u64] = ACTIONS(3135), + [anon_sym_i64] = ACTIONS(3135), + [anon_sym_u128] = ACTIONS(3135), + [anon_sym_i128] = ACTIONS(3135), + [anon_sym_isize] = ACTIONS(3135), + [anon_sym_usize] = ACTIONS(3135), + [anon_sym_f32] = ACTIONS(3135), + [anon_sym_f64] = ACTIONS(3135), + [anon_sym_bool] = ACTIONS(3135), + [anon_sym_str] = ACTIONS(3135), + [anon_sym_char] = ACTIONS(3135), + [anon_sym_DASH] = ACTIONS(3133), + [anon_sym_BANG] = ACTIONS(3133), + [anon_sym_AMP] = ACTIONS(3133), + [anon_sym_PIPE] = ACTIONS(3133), + [anon_sym_LT] = ACTIONS(3133), + [anon_sym_DOT_DOT] = ACTIONS(3133), + [anon_sym_COLON_COLON] = ACTIONS(3133), + [anon_sym_POUND] = ACTIONS(3133), + [anon_sym_SQUOTE] = ACTIONS(3135), + [anon_sym_async] = ACTIONS(3135), + [anon_sym_break] = ACTIONS(3135), + [anon_sym_const] = ACTIONS(3135), + [anon_sym_continue] = ACTIONS(3135), + [anon_sym_default] = ACTIONS(3135), + [anon_sym_enum] = ACTIONS(3135), + [anon_sym_fn] = ACTIONS(3135), + [anon_sym_for] = ACTIONS(3135), + [anon_sym_gen] = ACTIONS(3135), + [anon_sym_if] = ACTIONS(3135), + [anon_sym_impl] = ACTIONS(3135), + [anon_sym_let] = ACTIONS(3135), + [anon_sym_loop] = ACTIONS(3135), + [anon_sym_match] = ACTIONS(3135), + [anon_sym_mod] = ACTIONS(3135), + [anon_sym_pub] = ACTIONS(3135), + [anon_sym_return] = ACTIONS(3135), + [anon_sym_static] = ACTIONS(3135), + [anon_sym_struct] = ACTIONS(3135), + [anon_sym_trait] = ACTIONS(3135), + [anon_sym_type] = ACTIONS(3135), + [anon_sym_union] = ACTIONS(3135), + [anon_sym_unsafe] = ACTIONS(3135), + [anon_sym_use] = ACTIONS(3135), + [anon_sym_while] = ACTIONS(3135), + [anon_sym_extern] = ACTIONS(3135), + [anon_sym_yield] = ACTIONS(3135), + [anon_sym_move] = ACTIONS(3135), + [anon_sym_try] = ACTIONS(3135), + [sym_integer_literal] = ACTIONS(3133), + [aux_sym_string_literal_token1] = ACTIONS(3133), + [sym_char_literal] = ACTIONS(3133), + [anon_sym_true] = ACTIONS(3135), + [anon_sym_false] = ACTIONS(3135), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), + [sym_self] = ACTIONS(3135), + [sym_super] = ACTIONS(3135), + [sym_crate] = ACTIONS(3135), + [sym_metavariable] = ACTIONS(3133), + [sym__raw_string_literal_start] = ACTIONS(3133), + [sym_float_literal] = ACTIONS(3133), }, [814] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(3239), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), [sym_line_comment] = STATE(814), [sym_block_comment] = STATE(814), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), - [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), + [ts_builtin_sym_end] = ACTIONS(3137), + [sym_identifier] = ACTIONS(3139), + [anon_sym_SEMI] = ACTIONS(3137), + [anon_sym_macro_rules_BANG] = ACTIONS(3137), + [anon_sym_LPAREN] = ACTIONS(3137), + [anon_sym_LBRACK] = ACTIONS(3137), + [anon_sym_LBRACE] = ACTIONS(3137), + [anon_sym_RBRACE] = ACTIONS(3137), + [anon_sym_STAR] = ACTIONS(3137), + [anon_sym_u8] = ACTIONS(3139), + [anon_sym_i8] = ACTIONS(3139), + [anon_sym_u16] = ACTIONS(3139), + [anon_sym_i16] = ACTIONS(3139), + [anon_sym_u32] = ACTIONS(3139), + [anon_sym_i32] = ACTIONS(3139), + [anon_sym_u64] = ACTIONS(3139), + [anon_sym_i64] = ACTIONS(3139), + [anon_sym_u128] = ACTIONS(3139), + [anon_sym_i128] = ACTIONS(3139), + [anon_sym_isize] = ACTIONS(3139), + [anon_sym_usize] = ACTIONS(3139), + [anon_sym_f32] = ACTIONS(3139), + [anon_sym_f64] = ACTIONS(3139), + [anon_sym_bool] = ACTIONS(3139), + [anon_sym_str] = ACTIONS(3139), + [anon_sym_char] = ACTIONS(3139), + [anon_sym_DASH] = ACTIONS(3137), + [anon_sym_BANG] = ACTIONS(3137), + [anon_sym_AMP] = ACTIONS(3137), + [anon_sym_PIPE] = ACTIONS(3137), + [anon_sym_LT] = ACTIONS(3137), + [anon_sym_DOT_DOT] = ACTIONS(3137), + [anon_sym_COLON_COLON] = ACTIONS(3137), + [anon_sym_POUND] = ACTIONS(3137), + [anon_sym_SQUOTE] = ACTIONS(3139), + [anon_sym_async] = ACTIONS(3139), + [anon_sym_break] = ACTIONS(3139), + [anon_sym_const] = ACTIONS(3139), + [anon_sym_continue] = ACTIONS(3139), + [anon_sym_default] = ACTIONS(3139), + [anon_sym_enum] = ACTIONS(3139), + [anon_sym_fn] = ACTIONS(3139), + [anon_sym_for] = ACTIONS(3139), + [anon_sym_gen] = ACTIONS(3139), + [anon_sym_if] = ACTIONS(3139), + [anon_sym_impl] = ACTIONS(3139), + [anon_sym_let] = ACTIONS(3139), + [anon_sym_loop] = ACTIONS(3139), + [anon_sym_match] = ACTIONS(3139), + [anon_sym_mod] = ACTIONS(3139), + [anon_sym_pub] = ACTIONS(3139), + [anon_sym_return] = ACTIONS(3139), + [anon_sym_static] = ACTIONS(3139), + [anon_sym_struct] = ACTIONS(3139), + [anon_sym_trait] = ACTIONS(3139), + [anon_sym_type] = ACTIONS(3139), + [anon_sym_union] = ACTIONS(3139), + [anon_sym_unsafe] = ACTIONS(3139), + [anon_sym_use] = ACTIONS(3139), + [anon_sym_while] = ACTIONS(3139), + [anon_sym_extern] = ACTIONS(3139), + [anon_sym_yield] = ACTIONS(3139), + [anon_sym_move] = ACTIONS(3139), + [anon_sym_try] = ACTIONS(3139), + [sym_integer_literal] = ACTIONS(3137), + [aux_sym_string_literal_token1] = ACTIONS(3137), + [sym_char_literal] = ACTIONS(3137), + [anon_sym_true] = ACTIONS(3139), + [anon_sym_false] = ACTIONS(3139), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3139), + [sym_super] = ACTIONS(3139), + [sym_crate] = ACTIONS(3139), + [sym_metavariable] = ACTIONS(3137), + [sym__raw_string_literal_start] = ACTIONS(3137), + [sym_float_literal] = ACTIONS(3137), }, [815] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2122), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), [sym_line_comment] = STATE(815), [sym_block_comment] = STATE(815), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), - [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), + [ts_builtin_sym_end] = ACTIONS(3141), + [sym_identifier] = ACTIONS(3143), + [anon_sym_SEMI] = ACTIONS(3141), + [anon_sym_macro_rules_BANG] = ACTIONS(3141), + [anon_sym_LPAREN] = ACTIONS(3141), + [anon_sym_LBRACK] = ACTIONS(3141), + [anon_sym_LBRACE] = ACTIONS(3141), + [anon_sym_RBRACE] = ACTIONS(3141), + [anon_sym_STAR] = ACTIONS(3141), + [anon_sym_u8] = ACTIONS(3143), + [anon_sym_i8] = ACTIONS(3143), + [anon_sym_u16] = ACTIONS(3143), + [anon_sym_i16] = ACTIONS(3143), + [anon_sym_u32] = ACTIONS(3143), + [anon_sym_i32] = ACTIONS(3143), + [anon_sym_u64] = ACTIONS(3143), + [anon_sym_i64] = ACTIONS(3143), + [anon_sym_u128] = ACTIONS(3143), + [anon_sym_i128] = ACTIONS(3143), + [anon_sym_isize] = ACTIONS(3143), + [anon_sym_usize] = ACTIONS(3143), + [anon_sym_f32] = ACTIONS(3143), + [anon_sym_f64] = ACTIONS(3143), + [anon_sym_bool] = ACTIONS(3143), + [anon_sym_str] = ACTIONS(3143), + [anon_sym_char] = ACTIONS(3143), + [anon_sym_DASH] = ACTIONS(3141), + [anon_sym_BANG] = ACTIONS(3141), + [anon_sym_AMP] = ACTIONS(3141), + [anon_sym_PIPE] = ACTIONS(3141), + [anon_sym_LT] = ACTIONS(3141), + [anon_sym_DOT_DOT] = ACTIONS(3141), + [anon_sym_COLON_COLON] = ACTIONS(3141), + [anon_sym_POUND] = ACTIONS(3141), + [anon_sym_SQUOTE] = ACTIONS(3143), + [anon_sym_async] = ACTIONS(3143), + [anon_sym_break] = ACTIONS(3143), + [anon_sym_const] = ACTIONS(3143), + [anon_sym_continue] = ACTIONS(3143), + [anon_sym_default] = ACTIONS(3143), + [anon_sym_enum] = ACTIONS(3143), + [anon_sym_fn] = ACTIONS(3143), + [anon_sym_for] = ACTIONS(3143), + [anon_sym_gen] = ACTIONS(3143), + [anon_sym_if] = ACTIONS(3143), + [anon_sym_impl] = ACTIONS(3143), + [anon_sym_let] = ACTIONS(3143), + [anon_sym_loop] = ACTIONS(3143), + [anon_sym_match] = ACTIONS(3143), + [anon_sym_mod] = ACTIONS(3143), + [anon_sym_pub] = ACTIONS(3143), + [anon_sym_return] = ACTIONS(3143), + [anon_sym_static] = ACTIONS(3143), + [anon_sym_struct] = ACTIONS(3143), + [anon_sym_trait] = ACTIONS(3143), + [anon_sym_type] = ACTIONS(3143), + [anon_sym_union] = ACTIONS(3143), + [anon_sym_unsafe] = ACTIONS(3143), + [anon_sym_use] = ACTIONS(3143), + [anon_sym_while] = ACTIONS(3143), + [anon_sym_extern] = ACTIONS(3143), + [anon_sym_yield] = ACTIONS(3143), + [anon_sym_move] = ACTIONS(3143), + [anon_sym_try] = ACTIONS(3143), + [sym_integer_literal] = ACTIONS(3141), + [aux_sym_string_literal_token1] = ACTIONS(3141), + [sym_char_literal] = ACTIONS(3141), + [anon_sym_true] = ACTIONS(3143), + [anon_sym_false] = ACTIONS(3143), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3143), + [sym_super] = ACTIONS(3143), + [sym_crate] = ACTIONS(3143), + [sym_metavariable] = ACTIONS(3141), + [sym__raw_string_literal_start] = ACTIONS(3141), + [sym_float_literal] = ACTIONS(3141), }, [816] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2436), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), [sym_line_comment] = STATE(816), [sym_block_comment] = STATE(816), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), - [sym_mutable_specifier] = ACTIONS(3085), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), + [ts_builtin_sym_end] = ACTIONS(3145), + [sym_identifier] = ACTIONS(3147), + [anon_sym_SEMI] = ACTIONS(3145), + [anon_sym_macro_rules_BANG] = ACTIONS(3145), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_LBRACK] = ACTIONS(3145), + [anon_sym_LBRACE] = ACTIONS(3145), + [anon_sym_RBRACE] = ACTIONS(3145), + [anon_sym_STAR] = ACTIONS(3145), + [anon_sym_u8] = ACTIONS(3147), + [anon_sym_i8] = ACTIONS(3147), + [anon_sym_u16] = ACTIONS(3147), + [anon_sym_i16] = ACTIONS(3147), + [anon_sym_u32] = ACTIONS(3147), + [anon_sym_i32] = ACTIONS(3147), + [anon_sym_u64] = ACTIONS(3147), + [anon_sym_i64] = ACTIONS(3147), + [anon_sym_u128] = ACTIONS(3147), + [anon_sym_i128] = ACTIONS(3147), + [anon_sym_isize] = ACTIONS(3147), + [anon_sym_usize] = ACTIONS(3147), + [anon_sym_f32] = ACTIONS(3147), + [anon_sym_f64] = ACTIONS(3147), + [anon_sym_bool] = ACTIONS(3147), + [anon_sym_str] = ACTIONS(3147), + [anon_sym_char] = ACTIONS(3147), + [anon_sym_DASH] = ACTIONS(3145), + [anon_sym_BANG] = ACTIONS(3145), + [anon_sym_AMP] = ACTIONS(3145), + [anon_sym_PIPE] = ACTIONS(3145), + [anon_sym_LT] = ACTIONS(3145), + [anon_sym_DOT_DOT] = ACTIONS(3145), + [anon_sym_COLON_COLON] = ACTIONS(3145), + [anon_sym_POUND] = ACTIONS(3145), + [anon_sym_SQUOTE] = ACTIONS(3147), + [anon_sym_async] = ACTIONS(3147), + [anon_sym_break] = ACTIONS(3147), + [anon_sym_const] = ACTIONS(3147), + [anon_sym_continue] = ACTIONS(3147), + [anon_sym_default] = ACTIONS(3147), + [anon_sym_enum] = ACTIONS(3147), + [anon_sym_fn] = ACTIONS(3147), + [anon_sym_for] = ACTIONS(3147), + [anon_sym_gen] = ACTIONS(3147), + [anon_sym_if] = ACTIONS(3147), + [anon_sym_impl] = ACTIONS(3147), + [anon_sym_let] = ACTIONS(3147), + [anon_sym_loop] = ACTIONS(3147), + [anon_sym_match] = ACTIONS(3147), + [anon_sym_mod] = ACTIONS(3147), + [anon_sym_pub] = ACTIONS(3147), + [anon_sym_return] = ACTIONS(3147), + [anon_sym_static] = ACTIONS(3147), + [anon_sym_struct] = ACTIONS(3147), + [anon_sym_trait] = ACTIONS(3147), + [anon_sym_type] = ACTIONS(3147), + [anon_sym_union] = ACTIONS(3147), + [anon_sym_unsafe] = ACTIONS(3147), + [anon_sym_use] = ACTIONS(3147), + [anon_sym_while] = ACTIONS(3147), + [anon_sym_extern] = ACTIONS(3147), + [anon_sym_yield] = ACTIONS(3147), + [anon_sym_move] = ACTIONS(3147), + [anon_sym_try] = ACTIONS(3147), + [sym_integer_literal] = ACTIONS(3145), + [aux_sym_string_literal_token1] = ACTIONS(3145), + [sym_char_literal] = ACTIONS(3145), + [anon_sym_true] = ACTIONS(3147), + [anon_sym_false] = ACTIONS(3147), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3147), + [sym_super] = ACTIONS(3147), + [sym_crate] = ACTIONS(3147), + [sym_metavariable] = ACTIONS(3145), + [sym__raw_string_literal_start] = ACTIONS(3145), + [sym_float_literal] = ACTIONS(3145), }, [817] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(3114), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), [sym_line_comment] = STATE(817), [sym_block_comment] = STATE(817), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), - [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), + [ts_builtin_sym_end] = ACTIONS(3149), + [sym_identifier] = ACTIONS(3151), + [anon_sym_SEMI] = ACTIONS(3149), + [anon_sym_macro_rules_BANG] = ACTIONS(3149), + [anon_sym_LPAREN] = ACTIONS(3149), + [anon_sym_LBRACK] = ACTIONS(3149), + [anon_sym_LBRACE] = ACTIONS(3149), + [anon_sym_RBRACE] = ACTIONS(3149), + [anon_sym_STAR] = ACTIONS(3149), + [anon_sym_u8] = ACTIONS(3151), + [anon_sym_i8] = ACTIONS(3151), + [anon_sym_u16] = ACTIONS(3151), + [anon_sym_i16] = ACTIONS(3151), + [anon_sym_u32] = ACTIONS(3151), + [anon_sym_i32] = ACTIONS(3151), + [anon_sym_u64] = ACTIONS(3151), + [anon_sym_i64] = ACTIONS(3151), + [anon_sym_u128] = ACTIONS(3151), + [anon_sym_i128] = ACTIONS(3151), + [anon_sym_isize] = ACTIONS(3151), + [anon_sym_usize] = ACTIONS(3151), + [anon_sym_f32] = ACTIONS(3151), + [anon_sym_f64] = ACTIONS(3151), + [anon_sym_bool] = ACTIONS(3151), + [anon_sym_str] = ACTIONS(3151), + [anon_sym_char] = ACTIONS(3151), + [anon_sym_DASH] = ACTIONS(3149), + [anon_sym_BANG] = ACTIONS(3149), + [anon_sym_AMP] = ACTIONS(3149), + [anon_sym_PIPE] = ACTIONS(3149), + [anon_sym_LT] = ACTIONS(3149), + [anon_sym_DOT_DOT] = ACTIONS(3149), + [anon_sym_COLON_COLON] = ACTIONS(3149), + [anon_sym_POUND] = ACTIONS(3149), + [anon_sym_SQUOTE] = ACTIONS(3151), + [anon_sym_async] = ACTIONS(3151), + [anon_sym_break] = ACTIONS(3151), + [anon_sym_const] = ACTIONS(3151), + [anon_sym_continue] = ACTIONS(3151), + [anon_sym_default] = ACTIONS(3151), + [anon_sym_enum] = ACTIONS(3151), + [anon_sym_fn] = ACTIONS(3151), + [anon_sym_for] = ACTIONS(3151), + [anon_sym_gen] = ACTIONS(3151), + [anon_sym_if] = ACTIONS(3151), + [anon_sym_impl] = ACTIONS(3151), + [anon_sym_let] = ACTIONS(3151), + [anon_sym_loop] = ACTIONS(3151), + [anon_sym_match] = ACTIONS(3151), + [anon_sym_mod] = ACTIONS(3151), + [anon_sym_pub] = ACTIONS(3151), + [anon_sym_return] = ACTIONS(3151), + [anon_sym_static] = ACTIONS(3151), + [anon_sym_struct] = ACTIONS(3151), + [anon_sym_trait] = ACTIONS(3151), + [anon_sym_type] = ACTIONS(3151), + [anon_sym_union] = ACTIONS(3151), + [anon_sym_unsafe] = ACTIONS(3151), + [anon_sym_use] = ACTIONS(3151), + [anon_sym_while] = ACTIONS(3151), + [anon_sym_extern] = ACTIONS(3151), + [anon_sym_yield] = ACTIONS(3151), + [anon_sym_move] = ACTIONS(3151), + [anon_sym_try] = ACTIONS(3151), + [sym_integer_literal] = ACTIONS(3149), + [aux_sym_string_literal_token1] = ACTIONS(3149), + [sym_char_literal] = ACTIONS(3149), + [anon_sym_true] = ACTIONS(3151), + [anon_sym_false] = ACTIONS(3151), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3151), + [sym_super] = ACTIONS(3151), + [sym_crate] = ACTIONS(3151), + [sym_metavariable] = ACTIONS(3149), + [sym__raw_string_literal_start] = ACTIONS(3149), + [sym_float_literal] = ACTIONS(3149), }, [818] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2493), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), [sym_line_comment] = STATE(818), [sym_block_comment] = STATE(818), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), - [sym_mutable_specifier] = ACTIONS(3087), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), + [ts_builtin_sym_end] = ACTIONS(3153), + [sym_identifier] = ACTIONS(3155), + [anon_sym_SEMI] = ACTIONS(3153), + [anon_sym_macro_rules_BANG] = ACTIONS(3153), + [anon_sym_LPAREN] = ACTIONS(3153), + [anon_sym_LBRACK] = ACTIONS(3153), + [anon_sym_LBRACE] = ACTIONS(3153), + [anon_sym_RBRACE] = ACTIONS(3153), + [anon_sym_STAR] = ACTIONS(3153), + [anon_sym_u8] = ACTIONS(3155), + [anon_sym_i8] = ACTIONS(3155), + [anon_sym_u16] = ACTIONS(3155), + [anon_sym_i16] = ACTIONS(3155), + [anon_sym_u32] = ACTIONS(3155), + [anon_sym_i32] = ACTIONS(3155), + [anon_sym_u64] = ACTIONS(3155), + [anon_sym_i64] = ACTIONS(3155), + [anon_sym_u128] = ACTIONS(3155), + [anon_sym_i128] = ACTIONS(3155), + [anon_sym_isize] = ACTIONS(3155), + [anon_sym_usize] = ACTIONS(3155), + [anon_sym_f32] = ACTIONS(3155), + [anon_sym_f64] = ACTIONS(3155), + [anon_sym_bool] = ACTIONS(3155), + [anon_sym_str] = ACTIONS(3155), + [anon_sym_char] = ACTIONS(3155), + [anon_sym_DASH] = ACTIONS(3153), + [anon_sym_BANG] = ACTIONS(3153), + [anon_sym_AMP] = ACTIONS(3153), + [anon_sym_PIPE] = ACTIONS(3153), + [anon_sym_LT] = ACTIONS(3153), + [anon_sym_DOT_DOT] = ACTIONS(3153), + [anon_sym_COLON_COLON] = ACTIONS(3153), + [anon_sym_POUND] = ACTIONS(3153), + [anon_sym_SQUOTE] = ACTIONS(3155), + [anon_sym_async] = ACTIONS(3155), + [anon_sym_break] = ACTIONS(3155), + [anon_sym_const] = ACTIONS(3155), + [anon_sym_continue] = ACTIONS(3155), + [anon_sym_default] = ACTIONS(3155), + [anon_sym_enum] = ACTIONS(3155), + [anon_sym_fn] = ACTIONS(3155), + [anon_sym_for] = ACTIONS(3155), + [anon_sym_gen] = ACTIONS(3155), + [anon_sym_if] = ACTIONS(3155), + [anon_sym_impl] = ACTIONS(3155), + [anon_sym_let] = ACTIONS(3155), + [anon_sym_loop] = ACTIONS(3155), + [anon_sym_match] = ACTIONS(3155), + [anon_sym_mod] = ACTIONS(3155), + [anon_sym_pub] = ACTIONS(3155), + [anon_sym_return] = ACTIONS(3155), + [anon_sym_static] = ACTIONS(3155), + [anon_sym_struct] = ACTIONS(3155), + [anon_sym_trait] = ACTIONS(3155), + [anon_sym_type] = ACTIONS(3155), + [anon_sym_union] = ACTIONS(3155), + [anon_sym_unsafe] = ACTIONS(3155), + [anon_sym_use] = ACTIONS(3155), + [anon_sym_while] = ACTIONS(3155), + [anon_sym_extern] = ACTIONS(3155), + [anon_sym_yield] = ACTIONS(3155), + [anon_sym_move] = ACTIONS(3155), + [anon_sym_try] = ACTIONS(3155), + [sym_integer_literal] = ACTIONS(3153), + [aux_sym_string_literal_token1] = ACTIONS(3153), + [sym_char_literal] = ACTIONS(3153), + [anon_sym_true] = ACTIONS(3155), + [anon_sym_false] = ACTIONS(3155), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3155), + [sym_super] = ACTIONS(3155), + [sym_crate] = ACTIONS(3155), + [sym_metavariable] = ACTIONS(3153), + [sym__raw_string_literal_start] = ACTIONS(3153), + [sym_float_literal] = ACTIONS(3153), }, [819] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2638), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), [sym_line_comment] = STATE(819), [sym_block_comment] = STATE(819), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), - [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), + [ts_builtin_sym_end] = ACTIONS(3157), + [sym_identifier] = ACTIONS(3159), + [anon_sym_SEMI] = ACTIONS(3157), + [anon_sym_macro_rules_BANG] = ACTIONS(3157), + [anon_sym_LPAREN] = ACTIONS(3157), + [anon_sym_LBRACK] = ACTIONS(3157), + [anon_sym_LBRACE] = ACTIONS(3157), + [anon_sym_RBRACE] = ACTIONS(3157), + [anon_sym_STAR] = ACTIONS(3157), + [anon_sym_u8] = ACTIONS(3159), + [anon_sym_i8] = ACTIONS(3159), + [anon_sym_u16] = ACTIONS(3159), + [anon_sym_i16] = ACTIONS(3159), + [anon_sym_u32] = ACTIONS(3159), + [anon_sym_i32] = ACTIONS(3159), + [anon_sym_u64] = ACTIONS(3159), + [anon_sym_i64] = ACTIONS(3159), + [anon_sym_u128] = ACTIONS(3159), + [anon_sym_i128] = ACTIONS(3159), + [anon_sym_isize] = ACTIONS(3159), + [anon_sym_usize] = ACTIONS(3159), + [anon_sym_f32] = ACTIONS(3159), + [anon_sym_f64] = ACTIONS(3159), + [anon_sym_bool] = ACTIONS(3159), + [anon_sym_str] = ACTIONS(3159), + [anon_sym_char] = ACTIONS(3159), + [anon_sym_DASH] = ACTIONS(3157), + [anon_sym_BANG] = ACTIONS(3157), + [anon_sym_AMP] = ACTIONS(3157), + [anon_sym_PIPE] = ACTIONS(3157), + [anon_sym_LT] = ACTIONS(3157), + [anon_sym_DOT_DOT] = ACTIONS(3157), + [anon_sym_COLON_COLON] = ACTIONS(3157), + [anon_sym_POUND] = ACTIONS(3157), + [anon_sym_SQUOTE] = ACTIONS(3159), + [anon_sym_async] = ACTIONS(3159), + [anon_sym_break] = ACTIONS(3159), + [anon_sym_const] = ACTIONS(3159), + [anon_sym_continue] = ACTIONS(3159), + [anon_sym_default] = ACTIONS(3159), + [anon_sym_enum] = ACTIONS(3159), + [anon_sym_fn] = ACTIONS(3159), + [anon_sym_for] = ACTIONS(3159), + [anon_sym_gen] = ACTIONS(3159), + [anon_sym_if] = ACTIONS(3159), + [anon_sym_impl] = ACTIONS(3159), + [anon_sym_let] = ACTIONS(3159), + [anon_sym_loop] = ACTIONS(3159), + [anon_sym_match] = ACTIONS(3159), + [anon_sym_mod] = ACTIONS(3159), + [anon_sym_pub] = ACTIONS(3159), + [anon_sym_return] = ACTIONS(3159), + [anon_sym_static] = ACTIONS(3159), + [anon_sym_struct] = ACTIONS(3159), + [anon_sym_trait] = ACTIONS(3159), + [anon_sym_type] = ACTIONS(3159), + [anon_sym_union] = ACTIONS(3159), + [anon_sym_unsafe] = ACTIONS(3159), + [anon_sym_use] = ACTIONS(3159), + [anon_sym_while] = ACTIONS(3159), + [anon_sym_extern] = ACTIONS(3159), + [anon_sym_yield] = ACTIONS(3159), + [anon_sym_move] = ACTIONS(3159), + [anon_sym_try] = ACTIONS(3159), + [sym_integer_literal] = ACTIONS(3157), + [aux_sym_string_literal_token1] = ACTIONS(3157), + [sym_char_literal] = ACTIONS(3157), + [anon_sym_true] = ACTIONS(3159), + [anon_sym_false] = ACTIONS(3159), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3159), + [sym_super] = ACTIONS(3159), + [sym_crate] = ACTIONS(3159), + [sym_metavariable] = ACTIONS(3157), + [sym__raw_string_literal_start] = ACTIONS(3157), + [sym_float_literal] = ACTIONS(3157), }, [820] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(3313), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), [sym_line_comment] = STATE(820), [sym_block_comment] = STATE(820), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), - [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), + [ts_builtin_sym_end] = ACTIONS(3161), + [sym_identifier] = ACTIONS(3163), + [anon_sym_SEMI] = ACTIONS(3161), + [anon_sym_macro_rules_BANG] = ACTIONS(3161), + [anon_sym_LPAREN] = ACTIONS(3161), + [anon_sym_LBRACK] = ACTIONS(3161), + [anon_sym_LBRACE] = ACTIONS(3161), + [anon_sym_RBRACE] = ACTIONS(3161), + [anon_sym_STAR] = ACTIONS(3161), + [anon_sym_u8] = ACTIONS(3163), + [anon_sym_i8] = ACTIONS(3163), + [anon_sym_u16] = ACTIONS(3163), + [anon_sym_i16] = ACTIONS(3163), + [anon_sym_u32] = ACTIONS(3163), + [anon_sym_i32] = ACTIONS(3163), + [anon_sym_u64] = ACTIONS(3163), + [anon_sym_i64] = ACTIONS(3163), + [anon_sym_u128] = ACTIONS(3163), + [anon_sym_i128] = ACTIONS(3163), + [anon_sym_isize] = ACTIONS(3163), + [anon_sym_usize] = ACTIONS(3163), + [anon_sym_f32] = ACTIONS(3163), + [anon_sym_f64] = ACTIONS(3163), + [anon_sym_bool] = ACTIONS(3163), + [anon_sym_str] = ACTIONS(3163), + [anon_sym_char] = ACTIONS(3163), + [anon_sym_DASH] = ACTIONS(3161), + [anon_sym_BANG] = ACTIONS(3161), + [anon_sym_AMP] = ACTIONS(3161), + [anon_sym_PIPE] = ACTIONS(3161), + [anon_sym_LT] = ACTIONS(3161), + [anon_sym_DOT_DOT] = ACTIONS(3161), + [anon_sym_COLON_COLON] = ACTIONS(3161), + [anon_sym_POUND] = ACTIONS(3161), + [anon_sym_SQUOTE] = ACTIONS(3163), + [anon_sym_async] = ACTIONS(3163), + [anon_sym_break] = ACTIONS(3163), + [anon_sym_const] = ACTIONS(3163), + [anon_sym_continue] = ACTIONS(3163), + [anon_sym_default] = ACTIONS(3163), + [anon_sym_enum] = ACTIONS(3163), + [anon_sym_fn] = ACTIONS(3163), + [anon_sym_for] = ACTIONS(3163), + [anon_sym_gen] = ACTIONS(3163), + [anon_sym_if] = ACTIONS(3163), + [anon_sym_impl] = ACTIONS(3163), + [anon_sym_let] = ACTIONS(3163), + [anon_sym_loop] = ACTIONS(3163), + [anon_sym_match] = ACTIONS(3163), + [anon_sym_mod] = ACTIONS(3163), + [anon_sym_pub] = ACTIONS(3163), + [anon_sym_return] = ACTIONS(3163), + [anon_sym_static] = ACTIONS(3163), + [anon_sym_struct] = ACTIONS(3163), + [anon_sym_trait] = ACTIONS(3163), + [anon_sym_type] = ACTIONS(3163), + [anon_sym_union] = ACTIONS(3163), + [anon_sym_unsafe] = ACTIONS(3163), + [anon_sym_use] = ACTIONS(3163), + [anon_sym_while] = ACTIONS(3163), + [anon_sym_extern] = ACTIONS(3163), + [anon_sym_yield] = ACTIONS(3163), + [anon_sym_move] = ACTIONS(3163), + [anon_sym_try] = ACTIONS(3163), + [sym_integer_literal] = ACTIONS(3161), + [aux_sym_string_literal_token1] = ACTIONS(3161), + [sym_char_literal] = ACTIONS(3161), + [anon_sym_true] = ACTIONS(3163), + [anon_sym_false] = ACTIONS(3163), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3163), + [sym_super] = ACTIONS(3163), + [sym_crate] = ACTIONS(3163), + [sym_metavariable] = ACTIONS(3161), + [sym__raw_string_literal_start] = ACTIONS(3161), + [sym_float_literal] = ACTIONS(3161), }, [821] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2933), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), [sym_line_comment] = STATE(821), [sym_block_comment] = STATE(821), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), - [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), + [ts_builtin_sym_end] = ACTIONS(3165), + [sym_identifier] = ACTIONS(3167), + [anon_sym_SEMI] = ACTIONS(3165), + [anon_sym_macro_rules_BANG] = ACTIONS(3165), + [anon_sym_LPAREN] = ACTIONS(3165), + [anon_sym_LBRACK] = ACTIONS(3165), + [anon_sym_LBRACE] = ACTIONS(3165), + [anon_sym_RBRACE] = ACTIONS(3165), + [anon_sym_STAR] = ACTIONS(3165), + [anon_sym_u8] = ACTIONS(3167), + [anon_sym_i8] = ACTIONS(3167), + [anon_sym_u16] = ACTIONS(3167), + [anon_sym_i16] = ACTIONS(3167), + [anon_sym_u32] = ACTIONS(3167), + [anon_sym_i32] = ACTIONS(3167), + [anon_sym_u64] = ACTIONS(3167), + [anon_sym_i64] = ACTIONS(3167), + [anon_sym_u128] = ACTIONS(3167), + [anon_sym_i128] = ACTIONS(3167), + [anon_sym_isize] = ACTIONS(3167), + [anon_sym_usize] = ACTIONS(3167), + [anon_sym_f32] = ACTIONS(3167), + [anon_sym_f64] = ACTIONS(3167), + [anon_sym_bool] = ACTIONS(3167), + [anon_sym_str] = ACTIONS(3167), + [anon_sym_char] = ACTIONS(3167), + [anon_sym_DASH] = ACTIONS(3165), + [anon_sym_BANG] = ACTIONS(3165), + [anon_sym_AMP] = ACTIONS(3165), + [anon_sym_PIPE] = ACTIONS(3165), + [anon_sym_LT] = ACTIONS(3165), + [anon_sym_DOT_DOT] = ACTIONS(3165), + [anon_sym_COLON_COLON] = ACTIONS(3165), + [anon_sym_POUND] = ACTIONS(3165), + [anon_sym_SQUOTE] = ACTIONS(3167), + [anon_sym_async] = ACTIONS(3167), + [anon_sym_break] = ACTIONS(3167), + [anon_sym_const] = ACTIONS(3167), + [anon_sym_continue] = ACTIONS(3167), + [anon_sym_default] = ACTIONS(3167), + [anon_sym_enum] = ACTIONS(3167), + [anon_sym_fn] = ACTIONS(3167), + [anon_sym_for] = ACTIONS(3167), + [anon_sym_gen] = ACTIONS(3167), + [anon_sym_if] = ACTIONS(3167), + [anon_sym_impl] = ACTIONS(3167), + [anon_sym_let] = ACTIONS(3167), + [anon_sym_loop] = ACTIONS(3167), + [anon_sym_match] = ACTIONS(3167), + [anon_sym_mod] = ACTIONS(3167), + [anon_sym_pub] = ACTIONS(3167), + [anon_sym_return] = ACTIONS(3167), + [anon_sym_static] = ACTIONS(3167), + [anon_sym_struct] = ACTIONS(3167), + [anon_sym_trait] = ACTIONS(3167), + [anon_sym_type] = ACTIONS(3167), + [anon_sym_union] = ACTIONS(3167), + [anon_sym_unsafe] = ACTIONS(3167), + [anon_sym_use] = ACTIONS(3167), + [anon_sym_while] = ACTIONS(3167), + [anon_sym_extern] = ACTIONS(3167), + [anon_sym_yield] = ACTIONS(3167), + [anon_sym_move] = ACTIONS(3167), + [anon_sym_try] = ACTIONS(3167), + [sym_integer_literal] = ACTIONS(3165), + [aux_sym_string_literal_token1] = ACTIONS(3165), + [sym_char_literal] = ACTIONS(3165), + [anon_sym_true] = ACTIONS(3167), + [anon_sym_false] = ACTIONS(3167), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3167), + [sym_super] = ACTIONS(3167), + [sym_crate] = ACTIONS(3167), + [sym_metavariable] = ACTIONS(3165), + [sym__raw_string_literal_start] = ACTIONS(3165), + [sym_float_literal] = ACTIONS(3165), }, [822] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2411), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), [sym_line_comment] = STATE(822), [sym_block_comment] = STATE(822), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), - [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), + [ts_builtin_sym_end] = ACTIONS(3169), + [sym_identifier] = ACTIONS(3171), + [anon_sym_SEMI] = ACTIONS(3169), + [anon_sym_macro_rules_BANG] = ACTIONS(3169), + [anon_sym_LPAREN] = ACTIONS(3169), + [anon_sym_LBRACK] = ACTIONS(3169), + [anon_sym_LBRACE] = ACTIONS(3169), + [anon_sym_RBRACE] = ACTIONS(3169), + [anon_sym_STAR] = ACTIONS(3169), + [anon_sym_u8] = ACTIONS(3171), + [anon_sym_i8] = ACTIONS(3171), + [anon_sym_u16] = ACTIONS(3171), + [anon_sym_i16] = ACTIONS(3171), + [anon_sym_u32] = ACTIONS(3171), + [anon_sym_i32] = ACTIONS(3171), + [anon_sym_u64] = ACTIONS(3171), + [anon_sym_i64] = ACTIONS(3171), + [anon_sym_u128] = ACTIONS(3171), + [anon_sym_i128] = ACTIONS(3171), + [anon_sym_isize] = ACTIONS(3171), + [anon_sym_usize] = ACTIONS(3171), + [anon_sym_f32] = ACTIONS(3171), + [anon_sym_f64] = ACTIONS(3171), + [anon_sym_bool] = ACTIONS(3171), + [anon_sym_str] = ACTIONS(3171), + [anon_sym_char] = ACTIONS(3171), + [anon_sym_DASH] = ACTIONS(3169), + [anon_sym_BANG] = ACTIONS(3169), + [anon_sym_AMP] = ACTIONS(3169), + [anon_sym_PIPE] = ACTIONS(3169), + [anon_sym_LT] = ACTIONS(3169), + [anon_sym_DOT_DOT] = ACTIONS(3169), + [anon_sym_COLON_COLON] = ACTIONS(3169), + [anon_sym_POUND] = ACTIONS(3169), + [anon_sym_SQUOTE] = ACTIONS(3171), + [anon_sym_async] = ACTIONS(3171), + [anon_sym_break] = ACTIONS(3171), + [anon_sym_const] = ACTIONS(3171), + [anon_sym_continue] = ACTIONS(3171), + [anon_sym_default] = ACTIONS(3171), + [anon_sym_enum] = ACTIONS(3171), + [anon_sym_fn] = ACTIONS(3171), + [anon_sym_for] = ACTIONS(3171), + [anon_sym_gen] = ACTIONS(3171), + [anon_sym_if] = ACTIONS(3171), + [anon_sym_impl] = ACTIONS(3171), + [anon_sym_let] = ACTIONS(3171), + [anon_sym_loop] = ACTIONS(3171), + [anon_sym_match] = ACTIONS(3171), + [anon_sym_mod] = ACTIONS(3171), + [anon_sym_pub] = ACTIONS(3171), + [anon_sym_return] = ACTIONS(3171), + [anon_sym_static] = ACTIONS(3171), + [anon_sym_struct] = ACTIONS(3171), + [anon_sym_trait] = ACTIONS(3171), + [anon_sym_type] = ACTIONS(3171), + [anon_sym_union] = ACTIONS(3171), + [anon_sym_unsafe] = ACTIONS(3171), + [anon_sym_use] = ACTIONS(3171), + [anon_sym_while] = ACTIONS(3171), + [anon_sym_extern] = ACTIONS(3171), + [anon_sym_yield] = ACTIONS(3171), + [anon_sym_move] = ACTIONS(3171), + [anon_sym_try] = ACTIONS(3171), + [sym_integer_literal] = ACTIONS(3169), + [aux_sym_string_literal_token1] = ACTIONS(3169), + [sym_char_literal] = ACTIONS(3169), + [anon_sym_true] = ACTIONS(3171), + [anon_sym_false] = ACTIONS(3171), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), + [sym_self] = ACTIONS(3171), + [sym_super] = ACTIONS(3171), + [sym_crate] = ACTIONS(3171), + [sym_metavariable] = ACTIONS(3169), + [sym__raw_string_literal_start] = ACTIONS(3169), + [sym_float_literal] = ACTIONS(3169), }, [823] = { - [sym_bracketed_type] = STATE(3553), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3287), - [sym_macro_invocation] = STATE(2757), - [sym_scoped_identifier] = STATE(2151), - [sym_scoped_type_identifier] = STATE(2982), - [sym_const_block] = STATE(2757), - [sym__pattern] = STATE(2935), - [sym_tuple_pattern] = STATE(2757), - [sym_slice_pattern] = STATE(2757), - [sym_tuple_struct_pattern] = STATE(2757), - [sym_struct_pattern] = STATE(2757), - [sym_remaining_field_pattern] = STATE(2757), - [sym_mut_pattern] = STATE(2757), - [sym_range_pattern] = STATE(2757), - [sym_ref_pattern] = STATE(2757), - [sym_captured_pattern] = STATE(2757), - [sym_reference_pattern] = STATE(2757), - [sym_or_pattern] = STATE(2757), - [sym__literal_pattern] = STATE(2330), - [sym_negative_literal] = STATE(2364), - [sym_string_literal] = STATE(2364), - [sym_raw_string_literal] = STATE(2364), - [sym_boolean_literal] = STATE(2364), [sym_line_comment] = STATE(823), [sym_block_comment] = STATE(823), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1649), - [anon_sym_u8] = ACTIONS(1653), - [anon_sym_i8] = ACTIONS(1653), - [anon_sym_u16] = ACTIONS(1653), - [anon_sym_i16] = ACTIONS(1653), - [anon_sym_u32] = ACTIONS(1653), - [anon_sym_i32] = ACTIONS(1653), - [anon_sym_u64] = ACTIONS(1653), - [anon_sym_i64] = ACTIONS(1653), - [anon_sym_u128] = ACTIONS(1653), - [anon_sym_i128] = ACTIONS(1653), - [anon_sym_isize] = ACTIONS(1653), - [anon_sym_usize] = ACTIONS(1653), - [anon_sym_f32] = ACTIONS(1653), - [anon_sym_f64] = ACTIONS(1653), - [anon_sym_bool] = ACTIONS(1653), - [anon_sym_str] = ACTIONS(1653), - [anon_sym_char] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_PIPE] = ACTIONS(1659), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1661), - [anon_sym_DOT_DOT] = ACTIONS(1663), - [anon_sym_COLON_COLON] = ACTIONS(1665), - [anon_sym_const] = ACTIONS(1669), - [anon_sym_default] = ACTIONS(1671), - [anon_sym_gen] = ACTIONS(1671), - [anon_sym_union] = ACTIONS(1671), - [anon_sym_ref] = ACTIONS(1673), - [sym_mutable_specifier] = ACTIONS(3089), - [sym_integer_literal] = ACTIONS(1677), - [aux_sym_string_literal_token1] = ACTIONS(1679), - [sym_char_literal] = ACTIONS(1677), - [anon_sym_true] = ACTIONS(1681), - [anon_sym_false] = ACTIONS(1681), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1683), - [sym_super] = ACTIONS(1683), - [sym_crate] = ACTIONS(1683), - [sym_metavariable] = ACTIONS(1685), - [sym__raw_string_literal_start] = ACTIONS(1687), - [sym_float_literal] = ACTIONS(1677), + [ts_builtin_sym_end] = ACTIONS(3173), + [sym_identifier] = ACTIONS(3175), + [anon_sym_SEMI] = ACTIONS(3173), + [anon_sym_macro_rules_BANG] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3173), + [anon_sym_LBRACK] = ACTIONS(3173), + [anon_sym_LBRACE] = ACTIONS(3173), + [anon_sym_RBRACE] = ACTIONS(3173), + [anon_sym_STAR] = ACTIONS(3173), + [anon_sym_u8] = ACTIONS(3175), + [anon_sym_i8] = ACTIONS(3175), + [anon_sym_u16] = ACTIONS(3175), + [anon_sym_i16] = ACTIONS(3175), + [anon_sym_u32] = ACTIONS(3175), + [anon_sym_i32] = ACTIONS(3175), + [anon_sym_u64] = ACTIONS(3175), + [anon_sym_i64] = ACTIONS(3175), + [anon_sym_u128] = ACTIONS(3175), + [anon_sym_i128] = ACTIONS(3175), + [anon_sym_isize] = ACTIONS(3175), + [anon_sym_usize] = ACTIONS(3175), + [anon_sym_f32] = ACTIONS(3175), + [anon_sym_f64] = ACTIONS(3175), + [anon_sym_bool] = ACTIONS(3175), + [anon_sym_str] = ACTIONS(3175), + [anon_sym_char] = ACTIONS(3175), + [anon_sym_DASH] = ACTIONS(3173), + [anon_sym_BANG] = ACTIONS(3173), + [anon_sym_AMP] = ACTIONS(3173), + [anon_sym_PIPE] = ACTIONS(3173), + [anon_sym_LT] = ACTIONS(3173), + [anon_sym_DOT_DOT] = ACTIONS(3173), + [anon_sym_COLON_COLON] = ACTIONS(3173), + [anon_sym_POUND] = ACTIONS(3173), + [anon_sym_SQUOTE] = ACTIONS(3175), + [anon_sym_async] = ACTIONS(3175), + [anon_sym_break] = ACTIONS(3175), + [anon_sym_const] = ACTIONS(3175), + [anon_sym_continue] = ACTIONS(3175), + [anon_sym_default] = ACTIONS(3175), + [anon_sym_enum] = ACTIONS(3175), + [anon_sym_fn] = ACTIONS(3175), + [anon_sym_for] = ACTIONS(3175), + [anon_sym_gen] = ACTIONS(3175), + [anon_sym_if] = ACTIONS(3175), + [anon_sym_impl] = ACTIONS(3175), + [anon_sym_let] = ACTIONS(3175), + [anon_sym_loop] = ACTIONS(3175), + [anon_sym_match] = ACTIONS(3175), + [anon_sym_mod] = ACTIONS(3175), + [anon_sym_pub] = ACTIONS(3175), + [anon_sym_return] = ACTIONS(3175), + [anon_sym_static] = ACTIONS(3175), + [anon_sym_struct] = ACTIONS(3175), + [anon_sym_trait] = ACTIONS(3175), + [anon_sym_type] = ACTIONS(3175), + [anon_sym_union] = ACTIONS(3175), + [anon_sym_unsafe] = ACTIONS(3175), + [anon_sym_use] = ACTIONS(3175), + [anon_sym_while] = ACTIONS(3175), + [anon_sym_extern] = ACTIONS(3175), + [anon_sym_yield] = ACTIONS(3175), + [anon_sym_move] = ACTIONS(3175), + [anon_sym_try] = ACTIONS(3175), + [sym_integer_literal] = ACTIONS(3173), + [aux_sym_string_literal_token1] = ACTIONS(3173), + [sym_char_literal] = ACTIONS(3173), + [anon_sym_true] = ACTIONS(3175), + [anon_sym_false] = ACTIONS(3175), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3175), + [sym_super] = ACTIONS(3175), + [sym_crate] = ACTIONS(3175), + [sym_metavariable] = ACTIONS(3173), + [sym__raw_string_literal_start] = ACTIONS(3173), + [sym_float_literal] = ACTIONS(3173), }, [824] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2530), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), [sym_line_comment] = STATE(824), [sym_block_comment] = STATE(824), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), - [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3091), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), + [ts_builtin_sym_end] = ACTIONS(3177), + [sym_identifier] = ACTIONS(3179), + [anon_sym_SEMI] = ACTIONS(3177), + [anon_sym_macro_rules_BANG] = ACTIONS(3177), + [anon_sym_LPAREN] = ACTIONS(3177), + [anon_sym_LBRACK] = ACTIONS(3177), + [anon_sym_LBRACE] = ACTIONS(3177), + [anon_sym_RBRACE] = ACTIONS(3177), + [anon_sym_STAR] = ACTIONS(3177), + [anon_sym_u8] = ACTIONS(3179), + [anon_sym_i8] = ACTIONS(3179), + [anon_sym_u16] = ACTIONS(3179), + [anon_sym_i16] = ACTIONS(3179), + [anon_sym_u32] = ACTIONS(3179), + [anon_sym_i32] = ACTIONS(3179), + [anon_sym_u64] = ACTIONS(3179), + [anon_sym_i64] = ACTIONS(3179), + [anon_sym_u128] = ACTIONS(3179), + [anon_sym_i128] = ACTIONS(3179), + [anon_sym_isize] = ACTIONS(3179), + [anon_sym_usize] = ACTIONS(3179), + [anon_sym_f32] = ACTIONS(3179), + [anon_sym_f64] = ACTIONS(3179), + [anon_sym_bool] = ACTIONS(3179), + [anon_sym_str] = ACTIONS(3179), + [anon_sym_char] = ACTIONS(3179), + [anon_sym_DASH] = ACTIONS(3177), + [anon_sym_BANG] = ACTIONS(3177), + [anon_sym_AMP] = ACTIONS(3177), + [anon_sym_PIPE] = ACTIONS(3177), + [anon_sym_LT] = ACTIONS(3177), + [anon_sym_DOT_DOT] = ACTIONS(3177), + [anon_sym_COLON_COLON] = ACTIONS(3177), + [anon_sym_POUND] = ACTIONS(3177), + [anon_sym_SQUOTE] = ACTIONS(3179), + [anon_sym_async] = ACTIONS(3179), + [anon_sym_break] = ACTIONS(3179), + [anon_sym_const] = ACTIONS(3179), + [anon_sym_continue] = ACTIONS(3179), + [anon_sym_default] = ACTIONS(3179), + [anon_sym_enum] = ACTIONS(3179), + [anon_sym_fn] = ACTIONS(3179), + [anon_sym_for] = ACTIONS(3179), + [anon_sym_gen] = ACTIONS(3179), + [anon_sym_if] = ACTIONS(3179), + [anon_sym_impl] = ACTIONS(3179), + [anon_sym_let] = ACTIONS(3179), + [anon_sym_loop] = ACTIONS(3179), + [anon_sym_match] = ACTIONS(3179), + [anon_sym_mod] = ACTIONS(3179), + [anon_sym_pub] = ACTIONS(3179), + [anon_sym_return] = ACTIONS(3179), + [anon_sym_static] = ACTIONS(3179), + [anon_sym_struct] = ACTIONS(3179), + [anon_sym_trait] = ACTIONS(3179), + [anon_sym_type] = ACTIONS(3179), + [anon_sym_union] = ACTIONS(3179), + [anon_sym_unsafe] = ACTIONS(3179), + [anon_sym_use] = ACTIONS(3179), + [anon_sym_while] = ACTIONS(3179), + [anon_sym_extern] = ACTIONS(3179), + [anon_sym_yield] = ACTIONS(3179), + [anon_sym_move] = ACTIONS(3179), + [anon_sym_try] = ACTIONS(3179), + [sym_integer_literal] = ACTIONS(3177), + [aux_sym_string_literal_token1] = ACTIONS(3177), + [sym_char_literal] = ACTIONS(3177), + [anon_sym_true] = ACTIONS(3179), + [anon_sym_false] = ACTIONS(3179), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3179), + [sym_super] = ACTIONS(3179), + [sym_crate] = ACTIONS(3179), + [sym_metavariable] = ACTIONS(3177), + [sym__raw_string_literal_start] = ACTIONS(3177), + [sym_float_literal] = ACTIONS(3177), }, [825] = { - [sym_bracketed_type] = STATE(3553), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3287), - [sym_macro_invocation] = STATE(2757), - [sym_scoped_identifier] = STATE(2151), - [sym_scoped_type_identifier] = STATE(2982), - [sym_const_block] = STATE(2757), - [sym__pattern] = STATE(2942), - [sym_tuple_pattern] = STATE(2757), - [sym_slice_pattern] = STATE(2757), - [sym_tuple_struct_pattern] = STATE(2757), - [sym_struct_pattern] = STATE(2757), - [sym_remaining_field_pattern] = STATE(2757), - [sym_mut_pattern] = STATE(2757), - [sym_range_pattern] = STATE(2757), - [sym_ref_pattern] = STATE(2757), - [sym_captured_pattern] = STATE(2757), - [sym_reference_pattern] = STATE(2757), - [sym_or_pattern] = STATE(2757), - [sym__literal_pattern] = STATE(2330), - [sym_negative_literal] = STATE(2364), - [sym_string_literal] = STATE(2364), - [sym_raw_string_literal] = STATE(2364), - [sym_boolean_literal] = STATE(2364), [sym_line_comment] = STATE(825), [sym_block_comment] = STATE(825), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1649), - [anon_sym_u8] = ACTIONS(1653), - [anon_sym_i8] = ACTIONS(1653), - [anon_sym_u16] = ACTIONS(1653), - [anon_sym_i16] = ACTIONS(1653), - [anon_sym_u32] = ACTIONS(1653), - [anon_sym_i32] = ACTIONS(1653), - [anon_sym_u64] = ACTIONS(1653), - [anon_sym_i64] = ACTIONS(1653), - [anon_sym_u128] = ACTIONS(1653), - [anon_sym_i128] = ACTIONS(1653), - [anon_sym_isize] = ACTIONS(1653), - [anon_sym_usize] = ACTIONS(1653), - [anon_sym_f32] = ACTIONS(1653), - [anon_sym_f64] = ACTIONS(1653), - [anon_sym_bool] = ACTIONS(1653), - [anon_sym_str] = ACTIONS(1653), - [anon_sym_char] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_PIPE] = ACTIONS(1659), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1661), - [anon_sym_DOT_DOT] = ACTIONS(1663), - [anon_sym_COLON_COLON] = ACTIONS(1665), - [anon_sym_const] = ACTIONS(1669), - [anon_sym_default] = ACTIONS(1671), - [anon_sym_gen] = ACTIONS(1671), - [anon_sym_union] = ACTIONS(1671), - [anon_sym_ref] = ACTIONS(1673), - [sym_mutable_specifier] = ACTIONS(1675), - [sym_integer_literal] = ACTIONS(1677), - [aux_sym_string_literal_token1] = ACTIONS(1679), - [sym_char_literal] = ACTIONS(1677), - [anon_sym_true] = ACTIONS(1681), - [anon_sym_false] = ACTIONS(1681), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1683), - [sym_super] = ACTIONS(1683), - [sym_crate] = ACTIONS(1683), - [sym_metavariable] = ACTIONS(1685), - [sym__raw_string_literal_start] = ACTIONS(1687), - [sym_float_literal] = ACTIONS(1677), + [ts_builtin_sym_end] = ACTIONS(3181), + [sym_identifier] = ACTIONS(3183), + [anon_sym_SEMI] = ACTIONS(3181), + [anon_sym_macro_rules_BANG] = ACTIONS(3181), + [anon_sym_LPAREN] = ACTIONS(3181), + [anon_sym_LBRACK] = ACTIONS(3181), + [anon_sym_LBRACE] = ACTIONS(3181), + [anon_sym_RBRACE] = ACTIONS(3181), + [anon_sym_STAR] = ACTIONS(3181), + [anon_sym_u8] = ACTIONS(3183), + [anon_sym_i8] = ACTIONS(3183), + [anon_sym_u16] = ACTIONS(3183), + [anon_sym_i16] = ACTIONS(3183), + [anon_sym_u32] = ACTIONS(3183), + [anon_sym_i32] = ACTIONS(3183), + [anon_sym_u64] = ACTIONS(3183), + [anon_sym_i64] = ACTIONS(3183), + [anon_sym_u128] = ACTIONS(3183), + [anon_sym_i128] = ACTIONS(3183), + [anon_sym_isize] = ACTIONS(3183), + [anon_sym_usize] = ACTIONS(3183), + [anon_sym_f32] = ACTIONS(3183), + [anon_sym_f64] = ACTIONS(3183), + [anon_sym_bool] = ACTIONS(3183), + [anon_sym_str] = ACTIONS(3183), + [anon_sym_char] = ACTIONS(3183), + [anon_sym_DASH] = ACTIONS(3181), + [anon_sym_BANG] = ACTIONS(3181), + [anon_sym_AMP] = ACTIONS(3181), + [anon_sym_PIPE] = ACTIONS(3181), + [anon_sym_LT] = ACTIONS(3181), + [anon_sym_DOT_DOT] = ACTIONS(3181), + [anon_sym_COLON_COLON] = ACTIONS(3181), + [anon_sym_POUND] = ACTIONS(3181), + [anon_sym_SQUOTE] = ACTIONS(3183), + [anon_sym_async] = ACTIONS(3183), + [anon_sym_break] = ACTIONS(3183), + [anon_sym_const] = ACTIONS(3183), + [anon_sym_continue] = ACTIONS(3183), + [anon_sym_default] = ACTIONS(3183), + [anon_sym_enum] = ACTIONS(3183), + [anon_sym_fn] = ACTIONS(3183), + [anon_sym_for] = ACTIONS(3183), + [anon_sym_gen] = ACTIONS(3183), + [anon_sym_if] = ACTIONS(3183), + [anon_sym_impl] = ACTIONS(3183), + [anon_sym_let] = ACTIONS(3183), + [anon_sym_loop] = ACTIONS(3183), + [anon_sym_match] = ACTIONS(3183), + [anon_sym_mod] = ACTIONS(3183), + [anon_sym_pub] = ACTIONS(3183), + [anon_sym_return] = ACTIONS(3183), + [anon_sym_static] = ACTIONS(3183), + [anon_sym_struct] = ACTIONS(3183), + [anon_sym_trait] = ACTIONS(3183), + [anon_sym_type] = ACTIONS(3183), + [anon_sym_union] = ACTIONS(3183), + [anon_sym_unsafe] = ACTIONS(3183), + [anon_sym_use] = ACTIONS(3183), + [anon_sym_while] = ACTIONS(3183), + [anon_sym_extern] = ACTIONS(3183), + [anon_sym_yield] = ACTIONS(3183), + [anon_sym_move] = ACTIONS(3183), + [anon_sym_try] = ACTIONS(3183), + [sym_integer_literal] = ACTIONS(3181), + [aux_sym_string_literal_token1] = ACTIONS(3181), + [sym_char_literal] = ACTIONS(3181), + [anon_sym_true] = ACTIONS(3183), + [anon_sym_false] = ACTIONS(3183), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3183), + [sym_super] = ACTIONS(3183), + [sym_crate] = ACTIONS(3183), + [sym_metavariable] = ACTIONS(3181), + [sym__raw_string_literal_start] = ACTIONS(3181), + [sym_float_literal] = ACTIONS(3181), }, [826] = { - [sym_bracketed_type] = STATE(3553), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3287), - [sym_macro_invocation] = STATE(2757), - [sym_scoped_identifier] = STATE(2151), - [sym_scoped_type_identifier] = STATE(2982), - [sym_const_block] = STATE(2757), - [sym__pattern] = STATE(2872), - [sym_tuple_pattern] = STATE(2757), - [sym_slice_pattern] = STATE(2757), - [sym_tuple_struct_pattern] = STATE(2757), - [sym_struct_pattern] = STATE(2757), - [sym_remaining_field_pattern] = STATE(2757), - [sym_mut_pattern] = STATE(2757), - [sym_range_pattern] = STATE(2757), - [sym_ref_pattern] = STATE(2757), - [sym_captured_pattern] = STATE(2757), - [sym_reference_pattern] = STATE(2757), - [sym_or_pattern] = STATE(2757), - [sym__literal_pattern] = STATE(2330), - [sym_negative_literal] = STATE(2364), - [sym_string_literal] = STATE(2364), - [sym_raw_string_literal] = STATE(2364), - [sym_boolean_literal] = STATE(2364), [sym_line_comment] = STATE(826), [sym_block_comment] = STATE(826), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1649), - [anon_sym_u8] = ACTIONS(1653), - [anon_sym_i8] = ACTIONS(1653), - [anon_sym_u16] = ACTIONS(1653), - [anon_sym_i16] = ACTIONS(1653), - [anon_sym_u32] = ACTIONS(1653), - [anon_sym_i32] = ACTIONS(1653), - [anon_sym_u64] = ACTIONS(1653), - [anon_sym_i64] = ACTIONS(1653), - [anon_sym_u128] = ACTIONS(1653), - [anon_sym_i128] = ACTIONS(1653), - [anon_sym_isize] = ACTIONS(1653), - [anon_sym_usize] = ACTIONS(1653), - [anon_sym_f32] = ACTIONS(1653), - [anon_sym_f64] = ACTIONS(1653), - [anon_sym_bool] = ACTIONS(1653), - [anon_sym_str] = ACTIONS(1653), - [anon_sym_char] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_PIPE] = ACTIONS(1659), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1661), - [anon_sym_DOT_DOT] = ACTIONS(1663), - [anon_sym_COLON_COLON] = ACTIONS(1665), - [anon_sym_const] = ACTIONS(1669), - [anon_sym_default] = ACTIONS(1671), - [anon_sym_gen] = ACTIONS(1671), - [anon_sym_union] = ACTIONS(1671), - [anon_sym_ref] = ACTIONS(1673), - [sym_mutable_specifier] = ACTIONS(1675), - [sym_integer_literal] = ACTIONS(1677), - [aux_sym_string_literal_token1] = ACTIONS(1679), - [sym_char_literal] = ACTIONS(1677), - [anon_sym_true] = ACTIONS(1681), - [anon_sym_false] = ACTIONS(1681), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1683), - [sym_super] = ACTIONS(1683), - [sym_crate] = ACTIONS(1683), - [sym_metavariable] = ACTIONS(1685), - [sym__raw_string_literal_start] = ACTIONS(1687), - [sym_float_literal] = ACTIONS(1677), + [ts_builtin_sym_end] = ACTIONS(3185), + [sym_identifier] = ACTIONS(3187), + [anon_sym_SEMI] = ACTIONS(3185), + [anon_sym_macro_rules_BANG] = ACTIONS(3185), + [anon_sym_LPAREN] = ACTIONS(3185), + [anon_sym_LBRACK] = ACTIONS(3185), + [anon_sym_LBRACE] = ACTIONS(3185), + [anon_sym_RBRACE] = ACTIONS(3185), + [anon_sym_STAR] = ACTIONS(3185), + [anon_sym_u8] = ACTIONS(3187), + [anon_sym_i8] = ACTIONS(3187), + [anon_sym_u16] = ACTIONS(3187), + [anon_sym_i16] = ACTIONS(3187), + [anon_sym_u32] = ACTIONS(3187), + [anon_sym_i32] = ACTIONS(3187), + [anon_sym_u64] = ACTIONS(3187), + [anon_sym_i64] = ACTIONS(3187), + [anon_sym_u128] = ACTIONS(3187), + [anon_sym_i128] = ACTIONS(3187), + [anon_sym_isize] = ACTIONS(3187), + [anon_sym_usize] = ACTIONS(3187), + [anon_sym_f32] = ACTIONS(3187), + [anon_sym_f64] = ACTIONS(3187), + [anon_sym_bool] = ACTIONS(3187), + [anon_sym_str] = ACTIONS(3187), + [anon_sym_char] = ACTIONS(3187), + [anon_sym_DASH] = ACTIONS(3185), + [anon_sym_BANG] = ACTIONS(3185), + [anon_sym_AMP] = ACTIONS(3185), + [anon_sym_PIPE] = ACTIONS(3185), + [anon_sym_LT] = ACTIONS(3185), + [anon_sym_DOT_DOT] = ACTIONS(3185), + [anon_sym_COLON_COLON] = ACTIONS(3185), + [anon_sym_POUND] = ACTIONS(3185), + [anon_sym_SQUOTE] = ACTIONS(3187), + [anon_sym_async] = ACTIONS(3187), + [anon_sym_break] = ACTIONS(3187), + [anon_sym_const] = ACTIONS(3187), + [anon_sym_continue] = ACTIONS(3187), + [anon_sym_default] = ACTIONS(3187), + [anon_sym_enum] = ACTIONS(3187), + [anon_sym_fn] = ACTIONS(3187), + [anon_sym_for] = ACTIONS(3187), + [anon_sym_gen] = ACTIONS(3187), + [anon_sym_if] = ACTIONS(3187), + [anon_sym_impl] = ACTIONS(3187), + [anon_sym_let] = ACTIONS(3187), + [anon_sym_loop] = ACTIONS(3187), + [anon_sym_match] = ACTIONS(3187), + [anon_sym_mod] = ACTIONS(3187), + [anon_sym_pub] = ACTIONS(3187), + [anon_sym_return] = ACTIONS(3187), + [anon_sym_static] = ACTIONS(3187), + [anon_sym_struct] = ACTIONS(3187), + [anon_sym_trait] = ACTIONS(3187), + [anon_sym_type] = ACTIONS(3187), + [anon_sym_union] = ACTIONS(3187), + [anon_sym_unsafe] = ACTIONS(3187), + [anon_sym_use] = ACTIONS(3187), + [anon_sym_while] = ACTIONS(3187), + [anon_sym_extern] = ACTIONS(3187), + [anon_sym_yield] = ACTIONS(3187), + [anon_sym_move] = ACTIONS(3187), + [anon_sym_try] = ACTIONS(3187), + [sym_integer_literal] = ACTIONS(3185), + [aux_sym_string_literal_token1] = ACTIONS(3185), + [sym_char_literal] = ACTIONS(3185), + [anon_sym_true] = ACTIONS(3187), + [anon_sym_false] = ACTIONS(3187), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3187), + [sym_super] = ACTIONS(3187), + [sym_crate] = ACTIONS(3187), + [sym_metavariable] = ACTIONS(3185), + [sym__raw_string_literal_start] = ACTIONS(3185), + [sym_float_literal] = ACTIONS(3185), }, [827] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(3120), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), [sym_line_comment] = STATE(827), [sym_block_comment] = STATE(827), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), - [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), + [ts_builtin_sym_end] = ACTIONS(3189), + [sym_identifier] = ACTIONS(3191), + [anon_sym_SEMI] = ACTIONS(3189), + [anon_sym_macro_rules_BANG] = ACTIONS(3189), + [anon_sym_LPAREN] = ACTIONS(3189), + [anon_sym_LBRACK] = ACTIONS(3189), + [anon_sym_LBRACE] = ACTIONS(3189), + [anon_sym_RBRACE] = ACTIONS(3189), + [anon_sym_STAR] = ACTIONS(3189), + [anon_sym_u8] = ACTIONS(3191), + [anon_sym_i8] = ACTIONS(3191), + [anon_sym_u16] = ACTIONS(3191), + [anon_sym_i16] = ACTIONS(3191), + [anon_sym_u32] = ACTIONS(3191), + [anon_sym_i32] = ACTIONS(3191), + [anon_sym_u64] = ACTIONS(3191), + [anon_sym_i64] = ACTIONS(3191), + [anon_sym_u128] = ACTIONS(3191), + [anon_sym_i128] = ACTIONS(3191), + [anon_sym_isize] = ACTIONS(3191), + [anon_sym_usize] = ACTIONS(3191), + [anon_sym_f32] = ACTIONS(3191), + [anon_sym_f64] = ACTIONS(3191), + [anon_sym_bool] = ACTIONS(3191), + [anon_sym_str] = ACTIONS(3191), + [anon_sym_char] = ACTIONS(3191), + [anon_sym_DASH] = ACTIONS(3189), + [anon_sym_BANG] = ACTIONS(3189), + [anon_sym_AMP] = ACTIONS(3189), + [anon_sym_PIPE] = ACTIONS(3189), + [anon_sym_LT] = ACTIONS(3189), + [anon_sym_DOT_DOT] = ACTIONS(3189), + [anon_sym_COLON_COLON] = ACTIONS(3189), + [anon_sym_POUND] = ACTIONS(3189), + [anon_sym_SQUOTE] = ACTIONS(3191), + [anon_sym_async] = ACTIONS(3191), + [anon_sym_break] = ACTIONS(3191), + [anon_sym_const] = ACTIONS(3191), + [anon_sym_continue] = ACTIONS(3191), + [anon_sym_default] = ACTIONS(3191), + [anon_sym_enum] = ACTIONS(3191), + [anon_sym_fn] = ACTIONS(3191), + [anon_sym_for] = ACTIONS(3191), + [anon_sym_gen] = ACTIONS(3191), + [anon_sym_if] = ACTIONS(3191), + [anon_sym_impl] = ACTIONS(3191), + [anon_sym_let] = ACTIONS(3191), + [anon_sym_loop] = ACTIONS(3191), + [anon_sym_match] = ACTIONS(3191), + [anon_sym_mod] = ACTIONS(3191), + [anon_sym_pub] = ACTIONS(3191), + [anon_sym_return] = ACTIONS(3191), + [anon_sym_static] = ACTIONS(3191), + [anon_sym_struct] = ACTIONS(3191), + [anon_sym_trait] = ACTIONS(3191), + [anon_sym_type] = ACTIONS(3191), + [anon_sym_union] = ACTIONS(3191), + [anon_sym_unsafe] = ACTIONS(3191), + [anon_sym_use] = ACTIONS(3191), + [anon_sym_while] = ACTIONS(3191), + [anon_sym_extern] = ACTIONS(3191), + [anon_sym_yield] = ACTIONS(3191), + [anon_sym_move] = ACTIONS(3191), + [anon_sym_try] = ACTIONS(3191), + [sym_integer_literal] = ACTIONS(3189), + [aux_sym_string_literal_token1] = ACTIONS(3189), + [sym_char_literal] = ACTIONS(3189), + [anon_sym_true] = ACTIONS(3191), + [anon_sym_false] = ACTIONS(3191), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3191), + [sym_super] = ACTIONS(3191), + [sym_crate] = ACTIONS(3191), + [sym_metavariable] = ACTIONS(3189), + [sym__raw_string_literal_start] = ACTIONS(3189), + [sym_float_literal] = ACTIONS(3189), }, [828] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2106), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), [sym_line_comment] = STATE(828), [sym_block_comment] = STATE(828), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), - [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), + [ts_builtin_sym_end] = ACTIONS(3193), + [sym_identifier] = ACTIONS(3195), + [anon_sym_SEMI] = ACTIONS(3193), + [anon_sym_macro_rules_BANG] = ACTIONS(3193), + [anon_sym_LPAREN] = ACTIONS(3193), + [anon_sym_LBRACK] = ACTIONS(3193), + [anon_sym_LBRACE] = ACTIONS(3193), + [anon_sym_RBRACE] = ACTIONS(3193), + [anon_sym_STAR] = ACTIONS(3193), + [anon_sym_u8] = ACTIONS(3195), + [anon_sym_i8] = ACTIONS(3195), + [anon_sym_u16] = ACTIONS(3195), + [anon_sym_i16] = ACTIONS(3195), + [anon_sym_u32] = ACTIONS(3195), + [anon_sym_i32] = ACTIONS(3195), + [anon_sym_u64] = ACTIONS(3195), + [anon_sym_i64] = ACTIONS(3195), + [anon_sym_u128] = ACTIONS(3195), + [anon_sym_i128] = ACTIONS(3195), + [anon_sym_isize] = ACTIONS(3195), + [anon_sym_usize] = ACTIONS(3195), + [anon_sym_f32] = ACTIONS(3195), + [anon_sym_f64] = ACTIONS(3195), + [anon_sym_bool] = ACTIONS(3195), + [anon_sym_str] = ACTIONS(3195), + [anon_sym_char] = ACTIONS(3195), + [anon_sym_DASH] = ACTIONS(3193), + [anon_sym_BANG] = ACTIONS(3193), + [anon_sym_AMP] = ACTIONS(3193), + [anon_sym_PIPE] = ACTIONS(3193), + [anon_sym_LT] = ACTIONS(3193), + [anon_sym_DOT_DOT] = ACTIONS(3193), + [anon_sym_COLON_COLON] = ACTIONS(3193), + [anon_sym_POUND] = ACTIONS(3193), + [anon_sym_SQUOTE] = ACTIONS(3195), + [anon_sym_async] = ACTIONS(3195), + [anon_sym_break] = ACTIONS(3195), + [anon_sym_const] = ACTIONS(3195), + [anon_sym_continue] = ACTIONS(3195), + [anon_sym_default] = ACTIONS(3195), + [anon_sym_enum] = ACTIONS(3195), + [anon_sym_fn] = ACTIONS(3195), + [anon_sym_for] = ACTIONS(3195), + [anon_sym_gen] = ACTIONS(3195), + [anon_sym_if] = ACTIONS(3195), + [anon_sym_impl] = ACTIONS(3195), + [anon_sym_let] = ACTIONS(3195), + [anon_sym_loop] = ACTIONS(3195), + [anon_sym_match] = ACTIONS(3195), + [anon_sym_mod] = ACTIONS(3195), + [anon_sym_pub] = ACTIONS(3195), + [anon_sym_return] = ACTIONS(3195), + [anon_sym_static] = ACTIONS(3195), + [anon_sym_struct] = ACTIONS(3195), + [anon_sym_trait] = ACTIONS(3195), + [anon_sym_type] = ACTIONS(3195), + [anon_sym_union] = ACTIONS(3195), + [anon_sym_unsafe] = ACTIONS(3195), + [anon_sym_use] = ACTIONS(3195), + [anon_sym_while] = ACTIONS(3195), + [anon_sym_extern] = ACTIONS(3195), + [anon_sym_yield] = ACTIONS(3195), + [anon_sym_move] = ACTIONS(3195), + [anon_sym_try] = ACTIONS(3195), + [sym_integer_literal] = ACTIONS(3193), + [aux_sym_string_literal_token1] = ACTIONS(3193), + [sym_char_literal] = ACTIONS(3193), + [anon_sym_true] = ACTIONS(3195), + [anon_sym_false] = ACTIONS(3195), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3195), + [sym_super] = ACTIONS(3195), + [sym_crate] = ACTIONS(3195), + [sym_metavariable] = ACTIONS(3193), + [sym__raw_string_literal_start] = ACTIONS(3193), + [sym_float_literal] = ACTIONS(3193), }, [829] = { - [sym_bracketed_type] = STATE(3553), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3287), - [sym_macro_invocation] = STATE(2757), - [sym_scoped_identifier] = STATE(2151), - [sym_scoped_type_identifier] = STATE(2982), - [sym_const_block] = STATE(2757), - [sym__pattern] = STATE(2936), - [sym_tuple_pattern] = STATE(2757), - [sym_slice_pattern] = STATE(2757), - [sym_tuple_struct_pattern] = STATE(2757), - [sym_struct_pattern] = STATE(2757), - [sym_remaining_field_pattern] = STATE(2757), - [sym_mut_pattern] = STATE(2757), - [sym_range_pattern] = STATE(2757), - [sym_ref_pattern] = STATE(2757), - [sym_captured_pattern] = STATE(2757), - [sym_reference_pattern] = STATE(2757), - [sym_or_pattern] = STATE(2757), - [sym__literal_pattern] = STATE(2330), - [sym_negative_literal] = STATE(2364), - [sym_string_literal] = STATE(2364), - [sym_raw_string_literal] = STATE(2364), - [sym_boolean_literal] = STATE(2364), [sym_line_comment] = STATE(829), [sym_block_comment] = STATE(829), - [sym_identifier] = ACTIONS(1645), - [anon_sym_LPAREN] = ACTIONS(1647), - [anon_sym_LBRACK] = ACTIONS(1649), - [anon_sym_u8] = ACTIONS(1653), - [anon_sym_i8] = ACTIONS(1653), - [anon_sym_u16] = ACTIONS(1653), - [anon_sym_i16] = ACTIONS(1653), - [anon_sym_u32] = ACTIONS(1653), - [anon_sym_i32] = ACTIONS(1653), - [anon_sym_u64] = ACTIONS(1653), - [anon_sym_i64] = ACTIONS(1653), - [anon_sym_u128] = ACTIONS(1653), - [anon_sym_i128] = ACTIONS(1653), - [anon_sym_isize] = ACTIONS(1653), - [anon_sym_usize] = ACTIONS(1653), - [anon_sym_f32] = ACTIONS(1653), - [anon_sym_f64] = ACTIONS(1653), - [anon_sym_bool] = ACTIONS(1653), - [anon_sym_str] = ACTIONS(1653), - [anon_sym_char] = ACTIONS(1653), - [anon_sym_DASH] = ACTIONS(1655), - [anon_sym_AMP] = ACTIONS(1657), - [anon_sym_PIPE] = ACTIONS(1659), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1661), - [anon_sym_DOT_DOT] = ACTIONS(1663), - [anon_sym_COLON_COLON] = ACTIONS(1665), - [anon_sym_const] = ACTIONS(1669), - [anon_sym_default] = ACTIONS(1671), - [anon_sym_gen] = ACTIONS(1671), - [anon_sym_union] = ACTIONS(1671), - [anon_sym_ref] = ACTIONS(1673), - [sym_mutable_specifier] = ACTIONS(1675), - [sym_integer_literal] = ACTIONS(1677), - [aux_sym_string_literal_token1] = ACTIONS(1679), - [sym_char_literal] = ACTIONS(1677), - [anon_sym_true] = ACTIONS(1681), - [anon_sym_false] = ACTIONS(1681), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1683), - [sym_super] = ACTIONS(1683), - [sym_crate] = ACTIONS(1683), - [sym_metavariable] = ACTIONS(1685), - [sym__raw_string_literal_start] = ACTIONS(1687), - [sym_float_literal] = ACTIONS(1677), + [ts_builtin_sym_end] = ACTIONS(3197), + [sym_identifier] = ACTIONS(3199), + [anon_sym_SEMI] = ACTIONS(3197), + [anon_sym_macro_rules_BANG] = ACTIONS(3197), + [anon_sym_LPAREN] = ACTIONS(3197), + [anon_sym_LBRACK] = ACTIONS(3197), + [anon_sym_LBRACE] = ACTIONS(3197), + [anon_sym_RBRACE] = ACTIONS(3197), + [anon_sym_STAR] = ACTIONS(3197), + [anon_sym_u8] = ACTIONS(3199), + [anon_sym_i8] = ACTIONS(3199), + [anon_sym_u16] = ACTIONS(3199), + [anon_sym_i16] = ACTIONS(3199), + [anon_sym_u32] = ACTIONS(3199), + [anon_sym_i32] = ACTIONS(3199), + [anon_sym_u64] = ACTIONS(3199), + [anon_sym_i64] = ACTIONS(3199), + [anon_sym_u128] = ACTIONS(3199), + [anon_sym_i128] = ACTIONS(3199), + [anon_sym_isize] = ACTIONS(3199), + [anon_sym_usize] = ACTIONS(3199), + [anon_sym_f32] = ACTIONS(3199), + [anon_sym_f64] = ACTIONS(3199), + [anon_sym_bool] = ACTIONS(3199), + [anon_sym_str] = ACTIONS(3199), + [anon_sym_char] = ACTIONS(3199), + [anon_sym_DASH] = ACTIONS(3197), + [anon_sym_BANG] = ACTIONS(3197), + [anon_sym_AMP] = ACTIONS(3197), + [anon_sym_PIPE] = ACTIONS(3197), + [anon_sym_LT] = ACTIONS(3197), + [anon_sym_DOT_DOT] = ACTIONS(3197), + [anon_sym_COLON_COLON] = ACTIONS(3197), + [anon_sym_POUND] = ACTIONS(3197), + [anon_sym_SQUOTE] = ACTIONS(3199), + [anon_sym_async] = ACTIONS(3199), + [anon_sym_break] = ACTIONS(3199), + [anon_sym_const] = ACTIONS(3199), + [anon_sym_continue] = ACTIONS(3199), + [anon_sym_default] = ACTIONS(3199), + [anon_sym_enum] = ACTIONS(3199), + [anon_sym_fn] = ACTIONS(3199), + [anon_sym_for] = ACTIONS(3199), + [anon_sym_gen] = ACTIONS(3199), + [anon_sym_if] = ACTIONS(3199), + [anon_sym_impl] = ACTIONS(3199), + [anon_sym_let] = ACTIONS(3199), + [anon_sym_loop] = ACTIONS(3199), + [anon_sym_match] = ACTIONS(3199), + [anon_sym_mod] = ACTIONS(3199), + [anon_sym_pub] = ACTIONS(3199), + [anon_sym_return] = ACTIONS(3199), + [anon_sym_static] = ACTIONS(3199), + [anon_sym_struct] = ACTIONS(3199), + [anon_sym_trait] = ACTIONS(3199), + [anon_sym_type] = ACTIONS(3199), + [anon_sym_union] = ACTIONS(3199), + [anon_sym_unsafe] = ACTIONS(3199), + [anon_sym_use] = ACTIONS(3199), + [anon_sym_while] = ACTIONS(3199), + [anon_sym_extern] = ACTIONS(3199), + [anon_sym_yield] = ACTIONS(3199), + [anon_sym_move] = ACTIONS(3199), + [anon_sym_try] = ACTIONS(3199), + [sym_integer_literal] = ACTIONS(3197), + [aux_sym_string_literal_token1] = ACTIONS(3197), + [sym_char_literal] = ACTIONS(3197), + [anon_sym_true] = ACTIONS(3199), + [anon_sym_false] = ACTIONS(3199), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3199), + [sym_super] = ACTIONS(3199), + [sym_crate] = ACTIONS(3199), + [sym_metavariable] = ACTIONS(3197), + [sym__raw_string_literal_start] = ACTIONS(3197), + [sym_float_literal] = ACTIONS(3197), }, [830] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(2142), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), [sym_line_comment] = STATE(830), [sym_block_comment] = STATE(830), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1517), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), - [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), + [ts_builtin_sym_end] = ACTIONS(3201), + [sym_identifier] = ACTIONS(3203), + [anon_sym_SEMI] = ACTIONS(3201), + [anon_sym_macro_rules_BANG] = ACTIONS(3201), + [anon_sym_LPAREN] = ACTIONS(3201), + [anon_sym_LBRACK] = ACTIONS(3201), + [anon_sym_LBRACE] = ACTIONS(3201), + [anon_sym_RBRACE] = ACTIONS(3201), + [anon_sym_STAR] = ACTIONS(3201), + [anon_sym_u8] = ACTIONS(3203), + [anon_sym_i8] = ACTIONS(3203), + [anon_sym_u16] = ACTIONS(3203), + [anon_sym_i16] = ACTIONS(3203), + [anon_sym_u32] = ACTIONS(3203), + [anon_sym_i32] = ACTIONS(3203), + [anon_sym_u64] = ACTIONS(3203), + [anon_sym_i64] = ACTIONS(3203), + [anon_sym_u128] = ACTIONS(3203), + [anon_sym_i128] = ACTIONS(3203), + [anon_sym_isize] = ACTIONS(3203), + [anon_sym_usize] = ACTIONS(3203), + [anon_sym_f32] = ACTIONS(3203), + [anon_sym_f64] = ACTIONS(3203), + [anon_sym_bool] = ACTIONS(3203), + [anon_sym_str] = ACTIONS(3203), + [anon_sym_char] = ACTIONS(3203), + [anon_sym_DASH] = ACTIONS(3201), + [anon_sym_BANG] = ACTIONS(3201), + [anon_sym_AMP] = ACTIONS(3201), + [anon_sym_PIPE] = ACTIONS(3201), + [anon_sym_LT] = ACTIONS(3201), + [anon_sym_DOT_DOT] = ACTIONS(3201), + [anon_sym_COLON_COLON] = ACTIONS(3201), + [anon_sym_POUND] = ACTIONS(3201), + [anon_sym_SQUOTE] = ACTIONS(3203), + [anon_sym_async] = ACTIONS(3203), + [anon_sym_break] = ACTIONS(3203), + [anon_sym_const] = ACTIONS(3203), + [anon_sym_continue] = ACTIONS(3203), + [anon_sym_default] = ACTIONS(3203), + [anon_sym_enum] = ACTIONS(3203), + [anon_sym_fn] = ACTIONS(3203), + [anon_sym_for] = ACTIONS(3203), + [anon_sym_gen] = ACTIONS(3203), + [anon_sym_if] = ACTIONS(3203), + [anon_sym_impl] = ACTIONS(3203), + [anon_sym_let] = ACTIONS(3203), + [anon_sym_loop] = ACTIONS(3203), + [anon_sym_match] = ACTIONS(3203), + [anon_sym_mod] = ACTIONS(3203), + [anon_sym_pub] = ACTIONS(3203), + [anon_sym_return] = ACTIONS(3203), + [anon_sym_static] = ACTIONS(3203), + [anon_sym_struct] = ACTIONS(3203), + [anon_sym_trait] = ACTIONS(3203), + [anon_sym_type] = ACTIONS(3203), + [anon_sym_union] = ACTIONS(3203), + [anon_sym_unsafe] = ACTIONS(3203), + [anon_sym_use] = ACTIONS(3203), + [anon_sym_while] = ACTIONS(3203), + [anon_sym_extern] = ACTIONS(3203), + [anon_sym_yield] = ACTIONS(3203), + [anon_sym_move] = ACTIONS(3203), + [anon_sym_try] = ACTIONS(3203), + [sym_integer_literal] = ACTIONS(3201), + [aux_sym_string_literal_token1] = ACTIONS(3201), + [sym_char_literal] = ACTIONS(3201), + [anon_sym_true] = ACTIONS(3203), + [anon_sym_false] = ACTIONS(3203), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3203), + [sym_super] = ACTIONS(3203), + [sym_crate] = ACTIONS(3203), + [sym_metavariable] = ACTIONS(3201), + [sym__raw_string_literal_start] = ACTIONS(3201), + [sym_float_literal] = ACTIONS(3201), }, [831] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(3308), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), [sym_line_comment] = STATE(831), [sym_block_comment] = STATE(831), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), + [ts_builtin_sym_end] = ACTIONS(3205), + [sym_identifier] = ACTIONS(3207), + [anon_sym_SEMI] = ACTIONS(3205), + [anon_sym_macro_rules_BANG] = ACTIONS(3205), + [anon_sym_LPAREN] = ACTIONS(3205), + [anon_sym_LBRACK] = ACTIONS(3205), + [anon_sym_LBRACE] = ACTIONS(3205), + [anon_sym_RBRACE] = ACTIONS(3205), + [anon_sym_STAR] = ACTIONS(3205), + [anon_sym_u8] = ACTIONS(3207), + [anon_sym_i8] = ACTIONS(3207), + [anon_sym_u16] = ACTIONS(3207), + [anon_sym_i16] = ACTIONS(3207), + [anon_sym_u32] = ACTIONS(3207), + [anon_sym_i32] = ACTIONS(3207), + [anon_sym_u64] = ACTIONS(3207), + [anon_sym_i64] = ACTIONS(3207), + [anon_sym_u128] = ACTIONS(3207), + [anon_sym_i128] = ACTIONS(3207), + [anon_sym_isize] = ACTIONS(3207), + [anon_sym_usize] = ACTIONS(3207), + [anon_sym_f32] = ACTIONS(3207), + [anon_sym_f64] = ACTIONS(3207), + [anon_sym_bool] = ACTIONS(3207), + [anon_sym_str] = ACTIONS(3207), + [anon_sym_char] = ACTIONS(3207), + [anon_sym_DASH] = ACTIONS(3205), + [anon_sym_BANG] = ACTIONS(3205), + [anon_sym_AMP] = ACTIONS(3205), + [anon_sym_PIPE] = ACTIONS(3205), + [anon_sym_LT] = ACTIONS(3205), + [anon_sym_DOT_DOT] = ACTIONS(3205), + [anon_sym_COLON_COLON] = ACTIONS(3205), + [anon_sym_POUND] = ACTIONS(3205), + [anon_sym_SQUOTE] = ACTIONS(3207), + [anon_sym_async] = ACTIONS(3207), + [anon_sym_break] = ACTIONS(3207), + [anon_sym_const] = ACTIONS(3207), + [anon_sym_continue] = ACTIONS(3207), + [anon_sym_default] = ACTIONS(3207), + [anon_sym_enum] = ACTIONS(3207), + [anon_sym_fn] = ACTIONS(3207), + [anon_sym_for] = ACTIONS(3207), + [anon_sym_gen] = ACTIONS(3207), + [anon_sym_if] = ACTIONS(3207), + [anon_sym_impl] = ACTIONS(3207), + [anon_sym_let] = ACTIONS(3207), + [anon_sym_loop] = ACTIONS(3207), + [anon_sym_match] = ACTIONS(3207), + [anon_sym_mod] = ACTIONS(3207), + [anon_sym_pub] = ACTIONS(3207), + [anon_sym_return] = ACTIONS(3207), + [anon_sym_static] = ACTIONS(3207), + [anon_sym_struct] = ACTIONS(3207), + [anon_sym_trait] = ACTIONS(3207), + [anon_sym_type] = ACTIONS(3207), + [anon_sym_union] = ACTIONS(3207), + [anon_sym_unsafe] = ACTIONS(3207), + [anon_sym_use] = ACTIONS(3207), + [anon_sym_while] = ACTIONS(3207), + [anon_sym_extern] = ACTIONS(3207), + [anon_sym_yield] = ACTIONS(3207), + [anon_sym_move] = ACTIONS(3207), + [anon_sym_try] = ACTIONS(3207), + [sym_integer_literal] = ACTIONS(3205), + [aux_sym_string_literal_token1] = ACTIONS(3205), + [sym_char_literal] = ACTIONS(3205), + [anon_sym_true] = ACTIONS(3207), + [anon_sym_false] = ACTIONS(3207), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3207), + [sym_super] = ACTIONS(3207), + [sym_crate] = ACTIONS(3207), + [sym_metavariable] = ACTIONS(3205), + [sym__raw_string_literal_start] = ACTIONS(3205), + [sym_float_literal] = ACTIONS(3205), + }, + [832] = { + [sym_line_comment] = STATE(832), + [sym_block_comment] = STATE(832), + [ts_builtin_sym_end] = ACTIONS(3209), + [sym_identifier] = ACTIONS(3211), + [anon_sym_SEMI] = ACTIONS(3209), + [anon_sym_macro_rules_BANG] = ACTIONS(3209), + [anon_sym_LPAREN] = ACTIONS(3209), + [anon_sym_LBRACK] = ACTIONS(3209), + [anon_sym_LBRACE] = ACTIONS(3209), + [anon_sym_RBRACE] = ACTIONS(3209), + [anon_sym_STAR] = ACTIONS(3209), + [anon_sym_u8] = ACTIONS(3211), + [anon_sym_i8] = ACTIONS(3211), + [anon_sym_u16] = ACTIONS(3211), + [anon_sym_i16] = ACTIONS(3211), + [anon_sym_u32] = ACTIONS(3211), + [anon_sym_i32] = ACTIONS(3211), + [anon_sym_u64] = ACTIONS(3211), + [anon_sym_i64] = ACTIONS(3211), + [anon_sym_u128] = ACTIONS(3211), + [anon_sym_i128] = ACTIONS(3211), + [anon_sym_isize] = ACTIONS(3211), + [anon_sym_usize] = ACTIONS(3211), + [anon_sym_f32] = ACTIONS(3211), + [anon_sym_f64] = ACTIONS(3211), + [anon_sym_bool] = ACTIONS(3211), + [anon_sym_str] = ACTIONS(3211), + [anon_sym_char] = ACTIONS(3211), + [anon_sym_DASH] = ACTIONS(3209), + [anon_sym_BANG] = ACTIONS(3209), + [anon_sym_AMP] = ACTIONS(3209), + [anon_sym_PIPE] = ACTIONS(3209), + [anon_sym_LT] = ACTIONS(3209), + [anon_sym_DOT_DOT] = ACTIONS(3209), + [anon_sym_COLON_COLON] = ACTIONS(3209), + [anon_sym_POUND] = ACTIONS(3209), + [anon_sym_SQUOTE] = ACTIONS(3211), + [anon_sym_async] = ACTIONS(3211), + [anon_sym_break] = ACTIONS(3211), + [anon_sym_const] = ACTIONS(3211), + [anon_sym_continue] = ACTIONS(3211), + [anon_sym_default] = ACTIONS(3211), + [anon_sym_enum] = ACTIONS(3211), + [anon_sym_fn] = ACTIONS(3211), + [anon_sym_for] = ACTIONS(3211), + [anon_sym_gen] = ACTIONS(3211), + [anon_sym_if] = ACTIONS(3211), + [anon_sym_impl] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_loop] = ACTIONS(3211), + [anon_sym_match] = ACTIONS(3211), + [anon_sym_mod] = ACTIONS(3211), + [anon_sym_pub] = ACTIONS(3211), + [anon_sym_return] = ACTIONS(3211), + [anon_sym_static] = ACTIONS(3211), + [anon_sym_struct] = ACTIONS(3211), + [anon_sym_trait] = ACTIONS(3211), + [anon_sym_type] = ACTIONS(3211), + [anon_sym_union] = ACTIONS(3211), + [anon_sym_unsafe] = ACTIONS(3211), + [anon_sym_use] = ACTIONS(3211), + [anon_sym_while] = ACTIONS(3211), + [anon_sym_extern] = ACTIONS(3211), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_move] = ACTIONS(3211), + [anon_sym_try] = ACTIONS(3211), + [sym_integer_literal] = ACTIONS(3209), + [aux_sym_string_literal_token1] = ACTIONS(3209), + [sym_char_literal] = ACTIONS(3209), + [anon_sym_true] = ACTIONS(3211), + [anon_sym_false] = ACTIONS(3211), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3211), + [sym_super] = ACTIONS(3211), + [sym_crate] = ACTIONS(3211), + [sym_metavariable] = ACTIONS(3209), + [sym__raw_string_literal_start] = ACTIONS(3209), + [sym_float_literal] = ACTIONS(3209), + }, + [833] = { + [sym_line_comment] = STATE(833), + [sym_block_comment] = STATE(833), + [ts_builtin_sym_end] = ACTIONS(3213), + [sym_identifier] = ACTIONS(3215), + [anon_sym_SEMI] = ACTIONS(3213), + [anon_sym_macro_rules_BANG] = ACTIONS(3213), + [anon_sym_LPAREN] = ACTIONS(3213), + [anon_sym_LBRACK] = ACTIONS(3213), + [anon_sym_LBRACE] = ACTIONS(3213), + [anon_sym_RBRACE] = ACTIONS(3213), + [anon_sym_STAR] = ACTIONS(3213), + [anon_sym_u8] = ACTIONS(3215), + [anon_sym_i8] = ACTIONS(3215), + [anon_sym_u16] = ACTIONS(3215), + [anon_sym_i16] = ACTIONS(3215), + [anon_sym_u32] = ACTIONS(3215), + [anon_sym_i32] = ACTIONS(3215), + [anon_sym_u64] = ACTIONS(3215), + [anon_sym_i64] = ACTIONS(3215), + [anon_sym_u128] = ACTIONS(3215), + [anon_sym_i128] = ACTIONS(3215), + [anon_sym_isize] = ACTIONS(3215), + [anon_sym_usize] = ACTIONS(3215), + [anon_sym_f32] = ACTIONS(3215), + [anon_sym_f64] = ACTIONS(3215), + [anon_sym_bool] = ACTIONS(3215), + [anon_sym_str] = ACTIONS(3215), + [anon_sym_char] = ACTIONS(3215), + [anon_sym_DASH] = ACTIONS(3213), + [anon_sym_BANG] = ACTIONS(3213), + [anon_sym_AMP] = ACTIONS(3213), + [anon_sym_PIPE] = ACTIONS(3213), + [anon_sym_LT] = ACTIONS(3213), + [anon_sym_DOT_DOT] = ACTIONS(3213), + [anon_sym_COLON_COLON] = ACTIONS(3213), + [anon_sym_POUND] = ACTIONS(3213), + [anon_sym_SQUOTE] = ACTIONS(3215), + [anon_sym_async] = ACTIONS(3215), + [anon_sym_break] = ACTIONS(3215), + [anon_sym_const] = ACTIONS(3215), + [anon_sym_continue] = ACTIONS(3215), + [anon_sym_default] = ACTIONS(3215), + [anon_sym_enum] = ACTIONS(3215), + [anon_sym_fn] = ACTIONS(3215), + [anon_sym_for] = ACTIONS(3215), + [anon_sym_gen] = ACTIONS(3215), + [anon_sym_if] = ACTIONS(3215), + [anon_sym_impl] = ACTIONS(3215), + [anon_sym_let] = ACTIONS(3215), + [anon_sym_loop] = ACTIONS(3215), + [anon_sym_match] = ACTIONS(3215), + [anon_sym_mod] = ACTIONS(3215), + [anon_sym_pub] = ACTIONS(3215), + [anon_sym_return] = ACTIONS(3215), + [anon_sym_static] = ACTIONS(3215), + [anon_sym_struct] = ACTIONS(3215), + [anon_sym_trait] = ACTIONS(3215), + [anon_sym_type] = ACTIONS(3215), + [anon_sym_union] = ACTIONS(3215), + [anon_sym_unsafe] = ACTIONS(3215), + [anon_sym_use] = ACTIONS(3215), + [anon_sym_while] = ACTIONS(3215), + [anon_sym_extern] = ACTIONS(3215), + [anon_sym_yield] = ACTIONS(3215), + [anon_sym_move] = ACTIONS(3215), + [anon_sym_try] = ACTIONS(3215), + [sym_integer_literal] = ACTIONS(3213), + [aux_sym_string_literal_token1] = ACTIONS(3213), + [sym_char_literal] = ACTIONS(3213), + [anon_sym_true] = ACTIONS(3215), + [anon_sym_false] = ACTIONS(3215), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3215), + [sym_super] = ACTIONS(3215), + [sym_crate] = ACTIONS(3215), + [sym_metavariable] = ACTIONS(3213), + [sym__raw_string_literal_start] = ACTIONS(3213), + [sym_float_literal] = ACTIONS(3213), + }, + [834] = { + [sym_line_comment] = STATE(834), + [sym_block_comment] = STATE(834), + [ts_builtin_sym_end] = ACTIONS(3217), + [sym_identifier] = ACTIONS(3219), + [anon_sym_SEMI] = ACTIONS(3217), + [anon_sym_macro_rules_BANG] = ACTIONS(3217), + [anon_sym_LPAREN] = ACTIONS(3217), + [anon_sym_LBRACK] = ACTIONS(3217), + [anon_sym_LBRACE] = ACTIONS(3217), + [anon_sym_RBRACE] = ACTIONS(3217), + [anon_sym_STAR] = ACTIONS(3217), + [anon_sym_u8] = ACTIONS(3219), + [anon_sym_i8] = ACTIONS(3219), + [anon_sym_u16] = ACTIONS(3219), + [anon_sym_i16] = ACTIONS(3219), + [anon_sym_u32] = ACTIONS(3219), + [anon_sym_i32] = ACTIONS(3219), + [anon_sym_u64] = ACTIONS(3219), + [anon_sym_i64] = ACTIONS(3219), + [anon_sym_u128] = ACTIONS(3219), + [anon_sym_i128] = ACTIONS(3219), + [anon_sym_isize] = ACTIONS(3219), + [anon_sym_usize] = ACTIONS(3219), + [anon_sym_f32] = ACTIONS(3219), + [anon_sym_f64] = ACTIONS(3219), + [anon_sym_bool] = ACTIONS(3219), + [anon_sym_str] = ACTIONS(3219), + [anon_sym_char] = ACTIONS(3219), + [anon_sym_DASH] = ACTIONS(3217), + [anon_sym_BANG] = ACTIONS(3217), + [anon_sym_AMP] = ACTIONS(3217), + [anon_sym_PIPE] = ACTIONS(3217), + [anon_sym_LT] = ACTIONS(3217), + [anon_sym_DOT_DOT] = ACTIONS(3217), + [anon_sym_COLON_COLON] = ACTIONS(3217), + [anon_sym_POUND] = ACTIONS(3217), + [anon_sym_SQUOTE] = ACTIONS(3219), + [anon_sym_async] = ACTIONS(3219), + [anon_sym_break] = ACTIONS(3219), + [anon_sym_const] = ACTIONS(3219), + [anon_sym_continue] = ACTIONS(3219), + [anon_sym_default] = ACTIONS(3219), + [anon_sym_enum] = ACTIONS(3219), + [anon_sym_fn] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3219), + [anon_sym_gen] = ACTIONS(3219), + [anon_sym_if] = ACTIONS(3219), + [anon_sym_impl] = ACTIONS(3219), + [anon_sym_let] = ACTIONS(3219), + [anon_sym_loop] = ACTIONS(3219), + [anon_sym_match] = ACTIONS(3219), + [anon_sym_mod] = ACTIONS(3219), + [anon_sym_pub] = ACTIONS(3219), + [anon_sym_return] = ACTIONS(3219), + [anon_sym_static] = ACTIONS(3219), + [anon_sym_struct] = ACTIONS(3219), + [anon_sym_trait] = ACTIONS(3219), + [anon_sym_type] = ACTIONS(3219), + [anon_sym_union] = ACTIONS(3219), + [anon_sym_unsafe] = ACTIONS(3219), + [anon_sym_use] = ACTIONS(3219), + [anon_sym_while] = ACTIONS(3219), + [anon_sym_extern] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3219), + [anon_sym_move] = ACTIONS(3219), + [anon_sym_try] = ACTIONS(3219), + [sym_integer_literal] = ACTIONS(3217), + [aux_sym_string_literal_token1] = ACTIONS(3217), + [sym_char_literal] = ACTIONS(3217), + [anon_sym_true] = ACTIONS(3219), + [anon_sym_false] = ACTIONS(3219), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3219), + [sym_super] = ACTIONS(3219), + [sym_crate] = ACTIONS(3219), + [sym_metavariable] = ACTIONS(3217), + [sym__raw_string_literal_start] = ACTIONS(3217), + [sym_float_literal] = ACTIONS(3217), + }, + [835] = { + [sym_line_comment] = STATE(835), + [sym_block_comment] = STATE(835), + [ts_builtin_sym_end] = ACTIONS(3221), + [sym_identifier] = ACTIONS(3223), + [anon_sym_SEMI] = ACTIONS(3221), + [anon_sym_macro_rules_BANG] = ACTIONS(3221), + [anon_sym_LPAREN] = ACTIONS(3221), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_LBRACE] = ACTIONS(3221), + [anon_sym_RBRACE] = ACTIONS(3221), + [anon_sym_STAR] = ACTIONS(3221), + [anon_sym_u8] = ACTIONS(3223), + [anon_sym_i8] = ACTIONS(3223), + [anon_sym_u16] = ACTIONS(3223), + [anon_sym_i16] = ACTIONS(3223), + [anon_sym_u32] = ACTIONS(3223), + [anon_sym_i32] = ACTIONS(3223), + [anon_sym_u64] = ACTIONS(3223), + [anon_sym_i64] = ACTIONS(3223), + [anon_sym_u128] = ACTIONS(3223), + [anon_sym_i128] = ACTIONS(3223), + [anon_sym_isize] = ACTIONS(3223), + [anon_sym_usize] = ACTIONS(3223), + [anon_sym_f32] = ACTIONS(3223), + [anon_sym_f64] = ACTIONS(3223), + [anon_sym_bool] = ACTIONS(3223), + [anon_sym_str] = ACTIONS(3223), + [anon_sym_char] = ACTIONS(3223), + [anon_sym_DASH] = ACTIONS(3221), + [anon_sym_BANG] = ACTIONS(3221), + [anon_sym_AMP] = ACTIONS(3221), + [anon_sym_PIPE] = ACTIONS(3221), + [anon_sym_LT] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3221), + [anon_sym_COLON_COLON] = ACTIONS(3221), + [anon_sym_POUND] = ACTIONS(3221), + [anon_sym_SQUOTE] = ACTIONS(3223), + [anon_sym_async] = ACTIONS(3223), + [anon_sym_break] = ACTIONS(3223), + [anon_sym_const] = ACTIONS(3223), + [anon_sym_continue] = ACTIONS(3223), + [anon_sym_default] = ACTIONS(3223), + [anon_sym_enum] = ACTIONS(3223), + [anon_sym_fn] = ACTIONS(3223), + [anon_sym_for] = ACTIONS(3223), + [anon_sym_gen] = ACTIONS(3223), + [anon_sym_if] = ACTIONS(3223), + [anon_sym_impl] = ACTIONS(3223), + [anon_sym_let] = ACTIONS(3223), + [anon_sym_loop] = ACTIONS(3223), + [anon_sym_match] = ACTIONS(3223), + [anon_sym_mod] = ACTIONS(3223), + [anon_sym_pub] = ACTIONS(3223), + [anon_sym_return] = ACTIONS(3223), + [anon_sym_static] = ACTIONS(3223), + [anon_sym_struct] = ACTIONS(3223), + [anon_sym_trait] = ACTIONS(3223), + [anon_sym_type] = ACTIONS(3223), + [anon_sym_union] = ACTIONS(3223), + [anon_sym_unsafe] = ACTIONS(3223), + [anon_sym_use] = ACTIONS(3223), + [anon_sym_while] = ACTIONS(3223), + [anon_sym_extern] = ACTIONS(3223), + [anon_sym_yield] = ACTIONS(3223), + [anon_sym_move] = ACTIONS(3223), + [anon_sym_try] = ACTIONS(3223), + [sym_integer_literal] = ACTIONS(3221), + [aux_sym_string_literal_token1] = ACTIONS(3221), + [sym_char_literal] = ACTIONS(3221), + [anon_sym_true] = ACTIONS(3223), + [anon_sym_false] = ACTIONS(3223), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3223), + [sym_super] = ACTIONS(3223), + [sym_crate] = ACTIONS(3223), + [sym_metavariable] = ACTIONS(3221), + [sym__raw_string_literal_start] = ACTIONS(3221), + [sym_float_literal] = ACTIONS(3221), + }, + [836] = { + [sym_line_comment] = STATE(836), + [sym_block_comment] = STATE(836), + [ts_builtin_sym_end] = ACTIONS(3225), + [sym_identifier] = ACTIONS(3227), + [anon_sym_SEMI] = ACTIONS(3225), + [anon_sym_macro_rules_BANG] = ACTIONS(3225), + [anon_sym_LPAREN] = ACTIONS(3225), + [anon_sym_LBRACK] = ACTIONS(3225), + [anon_sym_LBRACE] = ACTIONS(3225), + [anon_sym_RBRACE] = ACTIONS(3225), + [anon_sym_STAR] = ACTIONS(3225), + [anon_sym_u8] = ACTIONS(3227), + [anon_sym_i8] = ACTIONS(3227), + [anon_sym_u16] = ACTIONS(3227), + [anon_sym_i16] = ACTIONS(3227), + [anon_sym_u32] = ACTIONS(3227), + [anon_sym_i32] = ACTIONS(3227), + [anon_sym_u64] = ACTIONS(3227), + [anon_sym_i64] = ACTIONS(3227), + [anon_sym_u128] = ACTIONS(3227), + [anon_sym_i128] = ACTIONS(3227), + [anon_sym_isize] = ACTIONS(3227), + [anon_sym_usize] = ACTIONS(3227), + [anon_sym_f32] = ACTIONS(3227), + [anon_sym_f64] = ACTIONS(3227), + [anon_sym_bool] = ACTIONS(3227), + [anon_sym_str] = ACTIONS(3227), + [anon_sym_char] = ACTIONS(3227), + [anon_sym_DASH] = ACTIONS(3225), + [anon_sym_BANG] = ACTIONS(3225), + [anon_sym_AMP] = ACTIONS(3225), + [anon_sym_PIPE] = ACTIONS(3225), + [anon_sym_LT] = ACTIONS(3225), + [anon_sym_DOT_DOT] = ACTIONS(3225), + [anon_sym_COLON_COLON] = ACTIONS(3225), + [anon_sym_POUND] = ACTIONS(3225), + [anon_sym_SQUOTE] = ACTIONS(3227), + [anon_sym_async] = ACTIONS(3227), + [anon_sym_break] = ACTIONS(3227), + [anon_sym_const] = ACTIONS(3227), + [anon_sym_continue] = ACTIONS(3227), + [anon_sym_default] = ACTIONS(3227), + [anon_sym_enum] = ACTIONS(3227), + [anon_sym_fn] = ACTIONS(3227), + [anon_sym_for] = ACTIONS(3227), + [anon_sym_gen] = ACTIONS(3227), + [anon_sym_if] = ACTIONS(3227), + [anon_sym_impl] = ACTIONS(3227), + [anon_sym_let] = ACTIONS(3227), + [anon_sym_loop] = ACTIONS(3227), + [anon_sym_match] = ACTIONS(3227), + [anon_sym_mod] = ACTIONS(3227), + [anon_sym_pub] = ACTIONS(3227), + [anon_sym_return] = ACTIONS(3227), + [anon_sym_static] = ACTIONS(3227), + [anon_sym_struct] = ACTIONS(3227), + [anon_sym_trait] = ACTIONS(3227), + [anon_sym_type] = ACTIONS(3227), + [anon_sym_union] = ACTIONS(3227), + [anon_sym_unsafe] = ACTIONS(3227), + [anon_sym_use] = ACTIONS(3227), + [anon_sym_while] = ACTIONS(3227), + [anon_sym_extern] = ACTIONS(3227), + [anon_sym_yield] = ACTIONS(3227), + [anon_sym_move] = ACTIONS(3227), + [anon_sym_try] = ACTIONS(3227), + [sym_integer_literal] = ACTIONS(3225), + [aux_sym_string_literal_token1] = ACTIONS(3225), + [sym_char_literal] = ACTIONS(3225), + [anon_sym_true] = ACTIONS(3227), + [anon_sym_false] = ACTIONS(3227), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3227), + [sym_super] = ACTIONS(3227), + [sym_crate] = ACTIONS(3227), + [sym_metavariable] = ACTIONS(3225), + [sym__raw_string_literal_start] = ACTIONS(3225), + [sym_float_literal] = ACTIONS(3225), + }, + [837] = { + [sym_line_comment] = STATE(837), + [sym_block_comment] = STATE(837), + [ts_builtin_sym_end] = ACTIONS(3229), + [sym_identifier] = ACTIONS(3231), + [anon_sym_SEMI] = ACTIONS(3229), + [anon_sym_macro_rules_BANG] = ACTIONS(3229), + [anon_sym_LPAREN] = ACTIONS(3229), + [anon_sym_LBRACK] = ACTIONS(3229), + [anon_sym_LBRACE] = ACTIONS(3229), + [anon_sym_RBRACE] = ACTIONS(3229), + [anon_sym_STAR] = ACTIONS(3229), + [anon_sym_u8] = ACTIONS(3231), + [anon_sym_i8] = ACTIONS(3231), + [anon_sym_u16] = ACTIONS(3231), + [anon_sym_i16] = ACTIONS(3231), + [anon_sym_u32] = ACTIONS(3231), + [anon_sym_i32] = ACTIONS(3231), + [anon_sym_u64] = ACTIONS(3231), + [anon_sym_i64] = ACTIONS(3231), + [anon_sym_u128] = ACTIONS(3231), + [anon_sym_i128] = ACTIONS(3231), + [anon_sym_isize] = ACTIONS(3231), + [anon_sym_usize] = ACTIONS(3231), + [anon_sym_f32] = ACTIONS(3231), + [anon_sym_f64] = ACTIONS(3231), + [anon_sym_bool] = ACTIONS(3231), + [anon_sym_str] = ACTIONS(3231), + [anon_sym_char] = ACTIONS(3231), + [anon_sym_DASH] = ACTIONS(3229), + [anon_sym_BANG] = ACTIONS(3229), + [anon_sym_AMP] = ACTIONS(3229), + [anon_sym_PIPE] = ACTIONS(3229), + [anon_sym_LT] = ACTIONS(3229), + [anon_sym_DOT_DOT] = ACTIONS(3229), + [anon_sym_COLON_COLON] = ACTIONS(3229), + [anon_sym_POUND] = ACTIONS(3229), + [anon_sym_SQUOTE] = ACTIONS(3231), + [anon_sym_async] = ACTIONS(3231), + [anon_sym_break] = ACTIONS(3231), + [anon_sym_const] = ACTIONS(3231), + [anon_sym_continue] = ACTIONS(3231), + [anon_sym_default] = ACTIONS(3231), + [anon_sym_enum] = ACTIONS(3231), + [anon_sym_fn] = ACTIONS(3231), + [anon_sym_for] = ACTIONS(3231), + [anon_sym_gen] = ACTIONS(3231), + [anon_sym_if] = ACTIONS(3231), + [anon_sym_impl] = ACTIONS(3231), + [anon_sym_let] = ACTIONS(3231), + [anon_sym_loop] = ACTIONS(3231), + [anon_sym_match] = ACTIONS(3231), + [anon_sym_mod] = ACTIONS(3231), + [anon_sym_pub] = ACTIONS(3231), + [anon_sym_return] = ACTIONS(3231), + [anon_sym_static] = ACTIONS(3231), + [anon_sym_struct] = ACTIONS(3231), + [anon_sym_trait] = ACTIONS(3231), + [anon_sym_type] = ACTIONS(3231), + [anon_sym_union] = ACTIONS(3231), + [anon_sym_unsafe] = ACTIONS(3231), + [anon_sym_use] = ACTIONS(3231), + [anon_sym_while] = ACTIONS(3231), + [anon_sym_extern] = ACTIONS(3231), + [anon_sym_yield] = ACTIONS(3231), + [anon_sym_move] = ACTIONS(3231), + [anon_sym_try] = ACTIONS(3231), + [sym_integer_literal] = ACTIONS(3229), + [aux_sym_string_literal_token1] = ACTIONS(3229), + [sym_char_literal] = ACTIONS(3229), + [anon_sym_true] = ACTIONS(3231), + [anon_sym_false] = ACTIONS(3231), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3231), + [sym_super] = ACTIONS(3231), + [sym_crate] = ACTIONS(3231), + [sym_metavariable] = ACTIONS(3229), + [sym__raw_string_literal_start] = ACTIONS(3229), + [sym_float_literal] = ACTIONS(3229), + }, + [838] = { + [sym_line_comment] = STATE(838), + [sym_block_comment] = STATE(838), + [ts_builtin_sym_end] = ACTIONS(3233), + [sym_identifier] = ACTIONS(3235), + [anon_sym_SEMI] = ACTIONS(3233), + [anon_sym_macro_rules_BANG] = ACTIONS(3233), + [anon_sym_LPAREN] = ACTIONS(3233), + [anon_sym_LBRACK] = ACTIONS(3233), + [anon_sym_LBRACE] = ACTIONS(3233), + [anon_sym_RBRACE] = ACTIONS(3233), + [anon_sym_STAR] = ACTIONS(3233), + [anon_sym_u8] = ACTIONS(3235), + [anon_sym_i8] = ACTIONS(3235), + [anon_sym_u16] = ACTIONS(3235), + [anon_sym_i16] = ACTIONS(3235), + [anon_sym_u32] = ACTIONS(3235), + [anon_sym_i32] = ACTIONS(3235), + [anon_sym_u64] = ACTIONS(3235), + [anon_sym_i64] = ACTIONS(3235), + [anon_sym_u128] = ACTIONS(3235), + [anon_sym_i128] = ACTIONS(3235), + [anon_sym_isize] = ACTIONS(3235), + [anon_sym_usize] = ACTIONS(3235), + [anon_sym_f32] = ACTIONS(3235), + [anon_sym_f64] = ACTIONS(3235), + [anon_sym_bool] = ACTIONS(3235), + [anon_sym_str] = ACTIONS(3235), + [anon_sym_char] = ACTIONS(3235), + [anon_sym_DASH] = ACTIONS(3233), + [anon_sym_BANG] = ACTIONS(3233), + [anon_sym_AMP] = ACTIONS(3233), + [anon_sym_PIPE] = ACTIONS(3233), + [anon_sym_LT] = ACTIONS(3233), + [anon_sym_DOT_DOT] = ACTIONS(3233), + [anon_sym_COLON_COLON] = ACTIONS(3233), + [anon_sym_POUND] = ACTIONS(3233), + [anon_sym_SQUOTE] = ACTIONS(3235), + [anon_sym_async] = ACTIONS(3235), + [anon_sym_break] = ACTIONS(3235), + [anon_sym_const] = ACTIONS(3235), + [anon_sym_continue] = ACTIONS(3235), + [anon_sym_default] = ACTIONS(3235), + [anon_sym_enum] = ACTIONS(3235), + [anon_sym_fn] = ACTIONS(3235), + [anon_sym_for] = ACTIONS(3235), + [anon_sym_gen] = ACTIONS(3235), + [anon_sym_if] = ACTIONS(3235), + [anon_sym_impl] = ACTIONS(3235), + [anon_sym_let] = ACTIONS(3235), + [anon_sym_loop] = ACTIONS(3235), + [anon_sym_match] = ACTIONS(3235), + [anon_sym_mod] = ACTIONS(3235), + [anon_sym_pub] = ACTIONS(3235), + [anon_sym_return] = ACTIONS(3235), + [anon_sym_static] = ACTIONS(3235), + [anon_sym_struct] = ACTIONS(3235), + [anon_sym_trait] = ACTIONS(3235), + [anon_sym_type] = ACTIONS(3235), + [anon_sym_union] = ACTIONS(3235), + [anon_sym_unsafe] = ACTIONS(3235), + [anon_sym_use] = ACTIONS(3235), + [anon_sym_while] = ACTIONS(3235), + [anon_sym_extern] = ACTIONS(3235), + [anon_sym_yield] = ACTIONS(3235), + [anon_sym_move] = ACTIONS(3235), + [anon_sym_try] = ACTIONS(3235), + [sym_integer_literal] = ACTIONS(3233), + [aux_sym_string_literal_token1] = ACTIONS(3233), + [sym_char_literal] = ACTIONS(3233), + [anon_sym_true] = ACTIONS(3235), + [anon_sym_false] = ACTIONS(3235), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3235), + [sym_super] = ACTIONS(3235), + [sym_crate] = ACTIONS(3235), + [sym_metavariable] = ACTIONS(3233), + [sym__raw_string_literal_start] = ACTIONS(3233), + [sym_float_literal] = ACTIONS(3233), + }, + [839] = { + [sym_line_comment] = STATE(839), + [sym_block_comment] = STATE(839), + [ts_builtin_sym_end] = ACTIONS(3237), + [sym_identifier] = ACTIONS(3239), + [anon_sym_SEMI] = ACTIONS(3237), + [anon_sym_macro_rules_BANG] = ACTIONS(3237), + [anon_sym_LPAREN] = ACTIONS(3237), + [anon_sym_LBRACK] = ACTIONS(3237), + [anon_sym_LBRACE] = ACTIONS(3237), + [anon_sym_RBRACE] = ACTIONS(3237), + [anon_sym_STAR] = ACTIONS(3237), + [anon_sym_u8] = ACTIONS(3239), + [anon_sym_i8] = ACTIONS(3239), + [anon_sym_u16] = ACTIONS(3239), + [anon_sym_i16] = ACTIONS(3239), + [anon_sym_u32] = ACTIONS(3239), + [anon_sym_i32] = ACTIONS(3239), + [anon_sym_u64] = ACTIONS(3239), + [anon_sym_i64] = ACTIONS(3239), + [anon_sym_u128] = ACTIONS(3239), + [anon_sym_i128] = ACTIONS(3239), + [anon_sym_isize] = ACTIONS(3239), + [anon_sym_usize] = ACTIONS(3239), + [anon_sym_f32] = ACTIONS(3239), + [anon_sym_f64] = ACTIONS(3239), + [anon_sym_bool] = ACTIONS(3239), + [anon_sym_str] = ACTIONS(3239), + [anon_sym_char] = ACTIONS(3239), + [anon_sym_DASH] = ACTIONS(3237), + [anon_sym_BANG] = ACTIONS(3237), + [anon_sym_AMP] = ACTIONS(3237), + [anon_sym_PIPE] = ACTIONS(3237), + [anon_sym_LT] = ACTIONS(3237), + [anon_sym_DOT_DOT] = ACTIONS(3237), + [anon_sym_COLON_COLON] = ACTIONS(3237), + [anon_sym_POUND] = ACTIONS(3237), + [anon_sym_SQUOTE] = ACTIONS(3239), + [anon_sym_async] = ACTIONS(3239), + [anon_sym_break] = ACTIONS(3239), + [anon_sym_const] = ACTIONS(3239), + [anon_sym_continue] = ACTIONS(3239), + [anon_sym_default] = ACTIONS(3239), + [anon_sym_enum] = ACTIONS(3239), + [anon_sym_fn] = ACTIONS(3239), + [anon_sym_for] = ACTIONS(3239), + [anon_sym_gen] = ACTIONS(3239), + [anon_sym_if] = ACTIONS(3239), + [anon_sym_impl] = ACTIONS(3239), + [anon_sym_let] = ACTIONS(3239), + [anon_sym_loop] = ACTIONS(3239), + [anon_sym_match] = ACTIONS(3239), + [anon_sym_mod] = ACTIONS(3239), + [anon_sym_pub] = ACTIONS(3239), + [anon_sym_return] = ACTIONS(3239), + [anon_sym_static] = ACTIONS(3239), + [anon_sym_struct] = ACTIONS(3239), + [anon_sym_trait] = ACTIONS(3239), + [anon_sym_type] = ACTIONS(3239), + [anon_sym_union] = ACTIONS(3239), + [anon_sym_unsafe] = ACTIONS(3239), + [anon_sym_use] = ACTIONS(3239), + [anon_sym_while] = ACTIONS(3239), + [anon_sym_extern] = ACTIONS(3239), + [anon_sym_yield] = ACTIONS(3239), + [anon_sym_move] = ACTIONS(3239), + [anon_sym_try] = ACTIONS(3239), + [sym_integer_literal] = ACTIONS(3237), + [aux_sym_string_literal_token1] = ACTIONS(3237), + [sym_char_literal] = ACTIONS(3237), + [anon_sym_true] = ACTIONS(3239), + [anon_sym_false] = ACTIONS(3239), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3239), + [sym_super] = ACTIONS(3239), + [sym_crate] = ACTIONS(3239), + [sym_metavariable] = ACTIONS(3237), + [sym__raw_string_literal_start] = ACTIONS(3237), + [sym_float_literal] = ACTIONS(3237), + }, + [840] = { + [sym_line_comment] = STATE(840), + [sym_block_comment] = STATE(840), + [ts_builtin_sym_end] = ACTIONS(3241), + [sym_identifier] = ACTIONS(3243), + [anon_sym_SEMI] = ACTIONS(3241), + [anon_sym_macro_rules_BANG] = ACTIONS(3241), + [anon_sym_LPAREN] = ACTIONS(3241), + [anon_sym_LBRACK] = ACTIONS(3241), + [anon_sym_LBRACE] = ACTIONS(3241), + [anon_sym_RBRACE] = ACTIONS(3241), + [anon_sym_STAR] = ACTIONS(3241), + [anon_sym_u8] = ACTIONS(3243), + [anon_sym_i8] = ACTIONS(3243), + [anon_sym_u16] = ACTIONS(3243), + [anon_sym_i16] = ACTIONS(3243), + [anon_sym_u32] = ACTIONS(3243), + [anon_sym_i32] = ACTIONS(3243), + [anon_sym_u64] = ACTIONS(3243), + [anon_sym_i64] = ACTIONS(3243), + [anon_sym_u128] = ACTIONS(3243), + [anon_sym_i128] = ACTIONS(3243), + [anon_sym_isize] = ACTIONS(3243), + [anon_sym_usize] = ACTIONS(3243), + [anon_sym_f32] = ACTIONS(3243), + [anon_sym_f64] = ACTIONS(3243), + [anon_sym_bool] = ACTIONS(3243), + [anon_sym_str] = ACTIONS(3243), + [anon_sym_char] = ACTIONS(3243), + [anon_sym_DASH] = ACTIONS(3241), + [anon_sym_BANG] = ACTIONS(3241), + [anon_sym_AMP] = ACTIONS(3241), + [anon_sym_PIPE] = ACTIONS(3241), + [anon_sym_LT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_COLON_COLON] = ACTIONS(3241), + [anon_sym_POUND] = ACTIONS(3241), + [anon_sym_SQUOTE] = ACTIONS(3243), + [anon_sym_async] = ACTIONS(3243), + [anon_sym_break] = ACTIONS(3243), + [anon_sym_const] = ACTIONS(3243), + [anon_sym_continue] = ACTIONS(3243), + [anon_sym_default] = ACTIONS(3243), + [anon_sym_enum] = ACTIONS(3243), + [anon_sym_fn] = ACTIONS(3243), + [anon_sym_for] = ACTIONS(3243), + [anon_sym_gen] = ACTIONS(3243), + [anon_sym_if] = ACTIONS(3243), + [anon_sym_impl] = ACTIONS(3243), + [anon_sym_let] = ACTIONS(3243), + [anon_sym_loop] = ACTIONS(3243), + [anon_sym_match] = ACTIONS(3243), + [anon_sym_mod] = ACTIONS(3243), + [anon_sym_pub] = ACTIONS(3243), + [anon_sym_return] = ACTIONS(3243), + [anon_sym_static] = ACTIONS(3243), + [anon_sym_struct] = ACTIONS(3243), + [anon_sym_trait] = ACTIONS(3243), + [anon_sym_type] = ACTIONS(3243), + [anon_sym_union] = ACTIONS(3243), + [anon_sym_unsafe] = ACTIONS(3243), + [anon_sym_use] = ACTIONS(3243), + [anon_sym_while] = ACTIONS(3243), + [anon_sym_extern] = ACTIONS(3243), + [anon_sym_yield] = ACTIONS(3243), + [anon_sym_move] = ACTIONS(3243), + [anon_sym_try] = ACTIONS(3243), + [sym_integer_literal] = ACTIONS(3241), + [aux_sym_string_literal_token1] = ACTIONS(3241), + [sym_char_literal] = ACTIONS(3241), + [anon_sym_true] = ACTIONS(3243), + [anon_sym_false] = ACTIONS(3243), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3243), + [sym_super] = ACTIONS(3243), + [sym_crate] = ACTIONS(3243), + [sym_metavariable] = ACTIONS(3241), + [sym__raw_string_literal_start] = ACTIONS(3241), + [sym_float_literal] = ACTIONS(3241), + }, + [841] = { + [sym_line_comment] = STATE(841), + [sym_block_comment] = STATE(841), + [ts_builtin_sym_end] = ACTIONS(3245), + [sym_identifier] = ACTIONS(3247), + [anon_sym_SEMI] = ACTIONS(3245), + [anon_sym_macro_rules_BANG] = ACTIONS(3245), + [anon_sym_LPAREN] = ACTIONS(3245), + [anon_sym_LBRACK] = ACTIONS(3245), + [anon_sym_LBRACE] = ACTIONS(3245), + [anon_sym_RBRACE] = ACTIONS(3245), + [anon_sym_STAR] = ACTIONS(3245), + [anon_sym_u8] = ACTIONS(3247), + [anon_sym_i8] = ACTIONS(3247), + [anon_sym_u16] = ACTIONS(3247), + [anon_sym_i16] = ACTIONS(3247), + [anon_sym_u32] = ACTIONS(3247), + [anon_sym_i32] = ACTIONS(3247), + [anon_sym_u64] = ACTIONS(3247), + [anon_sym_i64] = ACTIONS(3247), + [anon_sym_u128] = ACTIONS(3247), + [anon_sym_i128] = ACTIONS(3247), + [anon_sym_isize] = ACTIONS(3247), + [anon_sym_usize] = ACTIONS(3247), + [anon_sym_f32] = ACTIONS(3247), + [anon_sym_f64] = ACTIONS(3247), + [anon_sym_bool] = ACTIONS(3247), + [anon_sym_str] = ACTIONS(3247), + [anon_sym_char] = ACTIONS(3247), + [anon_sym_DASH] = ACTIONS(3245), + [anon_sym_BANG] = ACTIONS(3245), + [anon_sym_AMP] = ACTIONS(3245), + [anon_sym_PIPE] = ACTIONS(3245), + [anon_sym_LT] = ACTIONS(3245), + [anon_sym_DOT_DOT] = ACTIONS(3245), + [anon_sym_COLON_COLON] = ACTIONS(3245), + [anon_sym_POUND] = ACTIONS(3245), + [anon_sym_SQUOTE] = ACTIONS(3247), + [anon_sym_async] = ACTIONS(3247), + [anon_sym_break] = ACTIONS(3247), + [anon_sym_const] = ACTIONS(3247), + [anon_sym_continue] = ACTIONS(3247), + [anon_sym_default] = ACTIONS(3247), + [anon_sym_enum] = ACTIONS(3247), + [anon_sym_fn] = ACTIONS(3247), + [anon_sym_for] = ACTIONS(3247), + [anon_sym_gen] = ACTIONS(3247), + [anon_sym_if] = ACTIONS(3247), + [anon_sym_impl] = ACTIONS(3247), + [anon_sym_let] = ACTIONS(3247), + [anon_sym_loop] = ACTIONS(3247), + [anon_sym_match] = ACTIONS(3247), + [anon_sym_mod] = ACTIONS(3247), + [anon_sym_pub] = ACTIONS(3247), + [anon_sym_return] = ACTIONS(3247), + [anon_sym_static] = ACTIONS(3247), + [anon_sym_struct] = ACTIONS(3247), + [anon_sym_trait] = ACTIONS(3247), + [anon_sym_type] = ACTIONS(3247), + [anon_sym_union] = ACTIONS(3247), + [anon_sym_unsafe] = ACTIONS(3247), + [anon_sym_use] = ACTIONS(3247), + [anon_sym_while] = ACTIONS(3247), + [anon_sym_extern] = ACTIONS(3247), + [anon_sym_yield] = ACTIONS(3247), + [anon_sym_move] = ACTIONS(3247), + [anon_sym_try] = ACTIONS(3247), + [sym_integer_literal] = ACTIONS(3245), + [aux_sym_string_literal_token1] = ACTIONS(3245), + [sym_char_literal] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3247), + [anon_sym_false] = ACTIONS(3247), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3247), + [sym_super] = ACTIONS(3247), + [sym_crate] = ACTIONS(3247), + [sym_metavariable] = ACTIONS(3245), + [sym__raw_string_literal_start] = ACTIONS(3245), + [sym_float_literal] = ACTIONS(3245), + }, + [842] = { + [sym_line_comment] = STATE(842), + [sym_block_comment] = STATE(842), + [ts_builtin_sym_end] = ACTIONS(3249), + [sym_identifier] = ACTIONS(3251), + [anon_sym_SEMI] = ACTIONS(3249), + [anon_sym_macro_rules_BANG] = ACTIONS(3249), + [anon_sym_LPAREN] = ACTIONS(3249), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_LBRACE] = ACTIONS(3249), + [anon_sym_RBRACE] = ACTIONS(3249), + [anon_sym_STAR] = ACTIONS(3249), + [anon_sym_u8] = ACTIONS(3251), + [anon_sym_i8] = ACTIONS(3251), + [anon_sym_u16] = ACTIONS(3251), + [anon_sym_i16] = ACTIONS(3251), + [anon_sym_u32] = ACTIONS(3251), + [anon_sym_i32] = ACTIONS(3251), + [anon_sym_u64] = ACTIONS(3251), + [anon_sym_i64] = ACTIONS(3251), + [anon_sym_u128] = ACTIONS(3251), + [anon_sym_i128] = ACTIONS(3251), + [anon_sym_isize] = ACTIONS(3251), + [anon_sym_usize] = ACTIONS(3251), + [anon_sym_f32] = ACTIONS(3251), + [anon_sym_f64] = ACTIONS(3251), + [anon_sym_bool] = ACTIONS(3251), + [anon_sym_str] = ACTIONS(3251), + [anon_sym_char] = ACTIONS(3251), + [anon_sym_DASH] = ACTIONS(3249), + [anon_sym_BANG] = ACTIONS(3249), + [anon_sym_AMP] = ACTIONS(3249), + [anon_sym_PIPE] = ACTIONS(3249), + [anon_sym_LT] = ACTIONS(3249), + [anon_sym_DOT_DOT] = ACTIONS(3249), + [anon_sym_COLON_COLON] = ACTIONS(3249), + [anon_sym_POUND] = ACTIONS(3249), + [anon_sym_SQUOTE] = ACTIONS(3251), + [anon_sym_async] = ACTIONS(3251), + [anon_sym_break] = ACTIONS(3251), + [anon_sym_const] = ACTIONS(3251), + [anon_sym_continue] = ACTIONS(3251), + [anon_sym_default] = ACTIONS(3251), + [anon_sym_enum] = ACTIONS(3251), + [anon_sym_fn] = ACTIONS(3251), + [anon_sym_for] = ACTIONS(3251), + [anon_sym_gen] = ACTIONS(3251), + [anon_sym_if] = ACTIONS(3251), + [anon_sym_impl] = ACTIONS(3251), + [anon_sym_let] = ACTIONS(3251), + [anon_sym_loop] = ACTIONS(3251), + [anon_sym_match] = ACTIONS(3251), + [anon_sym_mod] = ACTIONS(3251), + [anon_sym_pub] = ACTIONS(3251), + [anon_sym_return] = ACTIONS(3251), + [anon_sym_static] = ACTIONS(3251), + [anon_sym_struct] = ACTIONS(3251), + [anon_sym_trait] = ACTIONS(3251), + [anon_sym_type] = ACTIONS(3251), + [anon_sym_union] = ACTIONS(3251), + [anon_sym_unsafe] = ACTIONS(3251), + [anon_sym_use] = ACTIONS(3251), + [anon_sym_while] = ACTIONS(3251), + [anon_sym_extern] = ACTIONS(3251), + [anon_sym_yield] = ACTIONS(3251), + [anon_sym_move] = ACTIONS(3251), + [anon_sym_try] = ACTIONS(3251), + [sym_integer_literal] = ACTIONS(3249), + [aux_sym_string_literal_token1] = ACTIONS(3249), + [sym_char_literal] = ACTIONS(3249), + [anon_sym_true] = ACTIONS(3251), + [anon_sym_false] = ACTIONS(3251), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3251), + [sym_super] = ACTIONS(3251), + [sym_crate] = ACTIONS(3251), + [sym_metavariable] = ACTIONS(3249), + [sym__raw_string_literal_start] = ACTIONS(3249), + [sym_float_literal] = ACTIONS(3249), + }, + [843] = { + [sym_line_comment] = STATE(843), + [sym_block_comment] = STATE(843), + [ts_builtin_sym_end] = ACTIONS(3253), + [sym_identifier] = ACTIONS(3255), + [anon_sym_SEMI] = ACTIONS(3253), + [anon_sym_macro_rules_BANG] = ACTIONS(3253), + [anon_sym_LPAREN] = ACTIONS(3253), + [anon_sym_LBRACK] = ACTIONS(3253), + [anon_sym_LBRACE] = ACTIONS(3253), + [anon_sym_RBRACE] = ACTIONS(3253), + [anon_sym_STAR] = ACTIONS(3253), + [anon_sym_u8] = ACTIONS(3255), + [anon_sym_i8] = ACTIONS(3255), + [anon_sym_u16] = ACTIONS(3255), + [anon_sym_i16] = ACTIONS(3255), + [anon_sym_u32] = ACTIONS(3255), + [anon_sym_i32] = ACTIONS(3255), + [anon_sym_u64] = ACTIONS(3255), + [anon_sym_i64] = ACTIONS(3255), + [anon_sym_u128] = ACTIONS(3255), + [anon_sym_i128] = ACTIONS(3255), + [anon_sym_isize] = ACTIONS(3255), + [anon_sym_usize] = ACTIONS(3255), + [anon_sym_f32] = ACTIONS(3255), + [anon_sym_f64] = ACTIONS(3255), + [anon_sym_bool] = ACTIONS(3255), + [anon_sym_str] = ACTIONS(3255), + [anon_sym_char] = ACTIONS(3255), + [anon_sym_DASH] = ACTIONS(3253), + [anon_sym_BANG] = ACTIONS(3253), + [anon_sym_AMP] = ACTIONS(3253), + [anon_sym_PIPE] = ACTIONS(3253), + [anon_sym_LT] = ACTIONS(3253), + [anon_sym_DOT_DOT] = ACTIONS(3253), + [anon_sym_COLON_COLON] = ACTIONS(3253), + [anon_sym_POUND] = ACTIONS(3253), + [anon_sym_SQUOTE] = ACTIONS(3255), + [anon_sym_async] = ACTIONS(3255), + [anon_sym_break] = ACTIONS(3255), + [anon_sym_const] = ACTIONS(3255), + [anon_sym_continue] = ACTIONS(3255), + [anon_sym_default] = ACTIONS(3255), + [anon_sym_enum] = ACTIONS(3255), + [anon_sym_fn] = ACTIONS(3255), + [anon_sym_for] = ACTIONS(3255), + [anon_sym_gen] = ACTIONS(3255), + [anon_sym_if] = ACTIONS(3255), + [anon_sym_impl] = ACTIONS(3255), + [anon_sym_let] = ACTIONS(3255), + [anon_sym_loop] = ACTIONS(3255), + [anon_sym_match] = ACTIONS(3255), + [anon_sym_mod] = ACTIONS(3255), + [anon_sym_pub] = ACTIONS(3255), + [anon_sym_return] = ACTIONS(3255), + [anon_sym_static] = ACTIONS(3255), + [anon_sym_struct] = ACTIONS(3255), + [anon_sym_trait] = ACTIONS(3255), + [anon_sym_type] = ACTIONS(3255), + [anon_sym_union] = ACTIONS(3255), + [anon_sym_unsafe] = ACTIONS(3255), + [anon_sym_use] = ACTIONS(3255), + [anon_sym_while] = ACTIONS(3255), + [anon_sym_extern] = ACTIONS(3255), + [anon_sym_yield] = ACTIONS(3255), + [anon_sym_move] = ACTIONS(3255), + [anon_sym_try] = ACTIONS(3255), + [sym_integer_literal] = ACTIONS(3253), + [aux_sym_string_literal_token1] = ACTIONS(3253), + [sym_char_literal] = ACTIONS(3253), + [anon_sym_true] = ACTIONS(3255), + [anon_sym_false] = ACTIONS(3255), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3255), + [sym_super] = ACTIONS(3255), + [sym_crate] = ACTIONS(3255), + [sym_metavariable] = ACTIONS(3253), + [sym__raw_string_literal_start] = ACTIONS(3253), + [sym_float_literal] = ACTIONS(3253), + }, + [844] = { + [sym_line_comment] = STATE(844), + [sym_block_comment] = STATE(844), + [ts_builtin_sym_end] = ACTIONS(3257), + [sym_identifier] = ACTIONS(3259), + [anon_sym_SEMI] = ACTIONS(3257), + [anon_sym_macro_rules_BANG] = ACTIONS(3257), + [anon_sym_LPAREN] = ACTIONS(3257), + [anon_sym_LBRACK] = ACTIONS(3257), + [anon_sym_LBRACE] = ACTIONS(3257), + [anon_sym_RBRACE] = ACTIONS(3257), + [anon_sym_STAR] = ACTIONS(3257), + [anon_sym_u8] = ACTIONS(3259), + [anon_sym_i8] = ACTIONS(3259), + [anon_sym_u16] = ACTIONS(3259), + [anon_sym_i16] = ACTIONS(3259), + [anon_sym_u32] = ACTIONS(3259), + [anon_sym_i32] = ACTIONS(3259), + [anon_sym_u64] = ACTIONS(3259), + [anon_sym_i64] = ACTIONS(3259), + [anon_sym_u128] = ACTIONS(3259), + [anon_sym_i128] = ACTIONS(3259), + [anon_sym_isize] = ACTIONS(3259), + [anon_sym_usize] = ACTIONS(3259), + [anon_sym_f32] = ACTIONS(3259), + [anon_sym_f64] = ACTIONS(3259), + [anon_sym_bool] = ACTIONS(3259), + [anon_sym_str] = ACTIONS(3259), + [anon_sym_char] = ACTIONS(3259), + [anon_sym_DASH] = ACTIONS(3257), + [anon_sym_BANG] = ACTIONS(3257), + [anon_sym_AMP] = ACTIONS(3257), + [anon_sym_PIPE] = ACTIONS(3257), + [anon_sym_LT] = ACTIONS(3257), + [anon_sym_DOT_DOT] = ACTIONS(3257), + [anon_sym_COLON_COLON] = ACTIONS(3257), + [anon_sym_POUND] = ACTIONS(3257), + [anon_sym_SQUOTE] = ACTIONS(3259), + [anon_sym_async] = ACTIONS(3259), + [anon_sym_break] = ACTIONS(3259), + [anon_sym_const] = ACTIONS(3259), + [anon_sym_continue] = ACTIONS(3259), + [anon_sym_default] = ACTIONS(3259), + [anon_sym_enum] = ACTIONS(3259), + [anon_sym_fn] = ACTIONS(3259), + [anon_sym_for] = ACTIONS(3259), + [anon_sym_gen] = ACTIONS(3259), + [anon_sym_if] = ACTIONS(3259), + [anon_sym_impl] = ACTIONS(3259), + [anon_sym_let] = ACTIONS(3259), + [anon_sym_loop] = ACTIONS(3259), + [anon_sym_match] = ACTIONS(3259), + [anon_sym_mod] = ACTIONS(3259), + [anon_sym_pub] = ACTIONS(3259), + [anon_sym_return] = ACTIONS(3259), + [anon_sym_static] = ACTIONS(3259), + [anon_sym_struct] = ACTIONS(3259), + [anon_sym_trait] = ACTIONS(3259), + [anon_sym_type] = ACTIONS(3259), + [anon_sym_union] = ACTIONS(3259), + [anon_sym_unsafe] = ACTIONS(3259), + [anon_sym_use] = ACTIONS(3259), + [anon_sym_while] = ACTIONS(3259), + [anon_sym_extern] = ACTIONS(3259), + [anon_sym_yield] = ACTIONS(3259), + [anon_sym_move] = ACTIONS(3259), + [anon_sym_try] = ACTIONS(3259), + [sym_integer_literal] = ACTIONS(3257), + [aux_sym_string_literal_token1] = ACTIONS(3257), + [sym_char_literal] = ACTIONS(3257), + [anon_sym_true] = ACTIONS(3259), + [anon_sym_false] = ACTIONS(3259), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3259), + [sym_super] = ACTIONS(3259), + [sym_crate] = ACTIONS(3259), + [sym_metavariable] = ACTIONS(3257), + [sym__raw_string_literal_start] = ACTIONS(3257), + [sym_float_literal] = ACTIONS(3257), + }, + [845] = { + [sym_line_comment] = STATE(845), + [sym_block_comment] = STATE(845), + [ts_builtin_sym_end] = ACTIONS(3261), + [sym_identifier] = ACTIONS(3263), + [anon_sym_SEMI] = ACTIONS(3261), + [anon_sym_macro_rules_BANG] = ACTIONS(3261), + [anon_sym_LPAREN] = ACTIONS(3261), + [anon_sym_LBRACK] = ACTIONS(3261), + [anon_sym_LBRACE] = ACTIONS(3261), + [anon_sym_RBRACE] = ACTIONS(3261), + [anon_sym_STAR] = ACTIONS(3261), + [anon_sym_u8] = ACTIONS(3263), + [anon_sym_i8] = ACTIONS(3263), + [anon_sym_u16] = ACTIONS(3263), + [anon_sym_i16] = ACTIONS(3263), + [anon_sym_u32] = ACTIONS(3263), + [anon_sym_i32] = ACTIONS(3263), + [anon_sym_u64] = ACTIONS(3263), + [anon_sym_i64] = ACTIONS(3263), + [anon_sym_u128] = ACTIONS(3263), + [anon_sym_i128] = ACTIONS(3263), + [anon_sym_isize] = ACTIONS(3263), + [anon_sym_usize] = ACTIONS(3263), + [anon_sym_f32] = ACTIONS(3263), + [anon_sym_f64] = ACTIONS(3263), + [anon_sym_bool] = ACTIONS(3263), + [anon_sym_str] = ACTIONS(3263), + [anon_sym_char] = ACTIONS(3263), + [anon_sym_DASH] = ACTIONS(3261), + [anon_sym_BANG] = ACTIONS(3261), + [anon_sym_AMP] = ACTIONS(3261), + [anon_sym_PIPE] = ACTIONS(3261), + [anon_sym_LT] = ACTIONS(3261), + [anon_sym_DOT_DOT] = ACTIONS(3261), + [anon_sym_COLON_COLON] = ACTIONS(3261), + [anon_sym_POUND] = ACTIONS(3261), + [anon_sym_SQUOTE] = ACTIONS(3263), + [anon_sym_async] = ACTIONS(3263), + [anon_sym_break] = ACTIONS(3263), + [anon_sym_const] = ACTIONS(3263), + [anon_sym_continue] = ACTIONS(3263), + [anon_sym_default] = ACTIONS(3263), + [anon_sym_enum] = ACTIONS(3263), + [anon_sym_fn] = ACTIONS(3263), + [anon_sym_for] = ACTIONS(3263), + [anon_sym_gen] = ACTIONS(3263), + [anon_sym_if] = ACTIONS(3263), + [anon_sym_impl] = ACTIONS(3263), + [anon_sym_let] = ACTIONS(3263), + [anon_sym_loop] = ACTIONS(3263), + [anon_sym_match] = ACTIONS(3263), + [anon_sym_mod] = ACTIONS(3263), + [anon_sym_pub] = ACTIONS(3263), + [anon_sym_return] = ACTIONS(3263), + [anon_sym_static] = ACTIONS(3263), + [anon_sym_struct] = ACTIONS(3263), + [anon_sym_trait] = ACTIONS(3263), + [anon_sym_type] = ACTIONS(3263), + [anon_sym_union] = ACTIONS(3263), + [anon_sym_unsafe] = ACTIONS(3263), + [anon_sym_use] = ACTIONS(3263), + [anon_sym_while] = ACTIONS(3263), + [anon_sym_extern] = ACTIONS(3263), + [anon_sym_yield] = ACTIONS(3263), + [anon_sym_move] = ACTIONS(3263), + [anon_sym_try] = ACTIONS(3263), + [sym_integer_literal] = ACTIONS(3261), + [aux_sym_string_literal_token1] = ACTIONS(3261), + [sym_char_literal] = ACTIONS(3261), + [anon_sym_true] = ACTIONS(3263), + [anon_sym_false] = ACTIONS(3263), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3263), + [sym_super] = ACTIONS(3263), + [sym_crate] = ACTIONS(3263), + [sym_metavariable] = ACTIONS(3261), + [sym__raw_string_literal_start] = ACTIONS(3261), + [sym_float_literal] = ACTIONS(3261), + }, + [846] = { + [sym_line_comment] = STATE(846), + [sym_block_comment] = STATE(846), + [ts_builtin_sym_end] = ACTIONS(3265), + [sym_identifier] = ACTIONS(3267), + [anon_sym_SEMI] = ACTIONS(3265), + [anon_sym_macro_rules_BANG] = ACTIONS(3265), + [anon_sym_LPAREN] = ACTIONS(3265), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_LBRACE] = ACTIONS(3265), + [anon_sym_RBRACE] = ACTIONS(3265), + [anon_sym_STAR] = ACTIONS(3265), + [anon_sym_u8] = ACTIONS(3267), + [anon_sym_i8] = ACTIONS(3267), + [anon_sym_u16] = ACTIONS(3267), + [anon_sym_i16] = ACTIONS(3267), + [anon_sym_u32] = ACTIONS(3267), + [anon_sym_i32] = ACTIONS(3267), + [anon_sym_u64] = ACTIONS(3267), + [anon_sym_i64] = ACTIONS(3267), + [anon_sym_u128] = ACTIONS(3267), + [anon_sym_i128] = ACTIONS(3267), + [anon_sym_isize] = ACTIONS(3267), + [anon_sym_usize] = ACTIONS(3267), + [anon_sym_f32] = ACTIONS(3267), + [anon_sym_f64] = ACTIONS(3267), + [anon_sym_bool] = ACTIONS(3267), + [anon_sym_str] = ACTIONS(3267), + [anon_sym_char] = ACTIONS(3267), + [anon_sym_DASH] = ACTIONS(3265), + [anon_sym_BANG] = ACTIONS(3265), + [anon_sym_AMP] = ACTIONS(3265), + [anon_sym_PIPE] = ACTIONS(3265), + [anon_sym_LT] = ACTIONS(3265), + [anon_sym_DOT_DOT] = ACTIONS(3265), + [anon_sym_COLON_COLON] = ACTIONS(3265), + [anon_sym_POUND] = ACTIONS(3265), + [anon_sym_SQUOTE] = ACTIONS(3267), + [anon_sym_async] = ACTIONS(3267), + [anon_sym_break] = ACTIONS(3267), + [anon_sym_const] = ACTIONS(3267), + [anon_sym_continue] = ACTIONS(3267), + [anon_sym_default] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(3267), + [anon_sym_fn] = ACTIONS(3267), + [anon_sym_for] = ACTIONS(3267), + [anon_sym_gen] = ACTIONS(3267), + [anon_sym_if] = ACTIONS(3267), + [anon_sym_impl] = ACTIONS(3267), + [anon_sym_let] = ACTIONS(3267), + [anon_sym_loop] = ACTIONS(3267), + [anon_sym_match] = ACTIONS(3267), + [anon_sym_mod] = ACTIONS(3267), + [anon_sym_pub] = ACTIONS(3267), + [anon_sym_return] = ACTIONS(3267), + [anon_sym_static] = ACTIONS(3267), + [anon_sym_struct] = ACTIONS(3267), + [anon_sym_trait] = ACTIONS(3267), + [anon_sym_type] = ACTIONS(3267), + [anon_sym_union] = ACTIONS(3267), + [anon_sym_unsafe] = ACTIONS(3267), + [anon_sym_use] = ACTIONS(3267), + [anon_sym_while] = ACTIONS(3267), + [anon_sym_extern] = ACTIONS(3267), + [anon_sym_yield] = ACTIONS(3267), + [anon_sym_move] = ACTIONS(3267), + [anon_sym_try] = ACTIONS(3267), + [sym_integer_literal] = ACTIONS(3265), + [aux_sym_string_literal_token1] = ACTIONS(3265), + [sym_char_literal] = ACTIONS(3265), + [anon_sym_true] = ACTIONS(3267), + [anon_sym_false] = ACTIONS(3267), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3267), + [sym_super] = ACTIONS(3267), + [sym_crate] = ACTIONS(3267), + [sym_metavariable] = ACTIONS(3265), + [sym__raw_string_literal_start] = ACTIONS(3265), + [sym_float_literal] = ACTIONS(3265), + }, + [847] = { + [sym_line_comment] = STATE(847), + [sym_block_comment] = STATE(847), + [ts_builtin_sym_end] = ACTIONS(3269), + [sym_identifier] = ACTIONS(3271), + [anon_sym_SEMI] = ACTIONS(3269), + [anon_sym_macro_rules_BANG] = ACTIONS(3269), + [anon_sym_LPAREN] = ACTIONS(3269), + [anon_sym_LBRACK] = ACTIONS(3269), + [anon_sym_LBRACE] = ACTIONS(3269), + [anon_sym_RBRACE] = ACTIONS(3269), + [anon_sym_STAR] = ACTIONS(3269), + [anon_sym_u8] = ACTIONS(3271), + [anon_sym_i8] = ACTIONS(3271), + [anon_sym_u16] = ACTIONS(3271), + [anon_sym_i16] = ACTIONS(3271), + [anon_sym_u32] = ACTIONS(3271), + [anon_sym_i32] = ACTIONS(3271), + [anon_sym_u64] = ACTIONS(3271), + [anon_sym_i64] = ACTIONS(3271), + [anon_sym_u128] = ACTIONS(3271), + [anon_sym_i128] = ACTIONS(3271), + [anon_sym_isize] = ACTIONS(3271), + [anon_sym_usize] = ACTIONS(3271), + [anon_sym_f32] = ACTIONS(3271), + [anon_sym_f64] = ACTIONS(3271), + [anon_sym_bool] = ACTIONS(3271), + [anon_sym_str] = ACTIONS(3271), + [anon_sym_char] = ACTIONS(3271), + [anon_sym_DASH] = ACTIONS(3269), + [anon_sym_BANG] = ACTIONS(3269), + [anon_sym_AMP] = ACTIONS(3269), + [anon_sym_PIPE] = ACTIONS(3269), + [anon_sym_LT] = ACTIONS(3269), + [anon_sym_DOT_DOT] = ACTIONS(3269), + [anon_sym_COLON_COLON] = ACTIONS(3269), + [anon_sym_POUND] = ACTIONS(3269), + [anon_sym_SQUOTE] = ACTIONS(3271), + [anon_sym_async] = ACTIONS(3271), + [anon_sym_break] = ACTIONS(3271), + [anon_sym_const] = ACTIONS(3271), + [anon_sym_continue] = ACTIONS(3271), + [anon_sym_default] = ACTIONS(3271), + [anon_sym_enum] = ACTIONS(3271), + [anon_sym_fn] = ACTIONS(3271), + [anon_sym_for] = ACTIONS(3271), + [anon_sym_gen] = ACTIONS(3271), + [anon_sym_if] = ACTIONS(3271), + [anon_sym_impl] = ACTIONS(3271), + [anon_sym_let] = ACTIONS(3271), + [anon_sym_loop] = ACTIONS(3271), + [anon_sym_match] = ACTIONS(3271), + [anon_sym_mod] = ACTIONS(3271), + [anon_sym_pub] = ACTIONS(3271), + [anon_sym_return] = ACTIONS(3271), + [anon_sym_static] = ACTIONS(3271), + [anon_sym_struct] = ACTIONS(3271), + [anon_sym_trait] = ACTIONS(3271), + [anon_sym_type] = ACTIONS(3271), + [anon_sym_union] = ACTIONS(3271), + [anon_sym_unsafe] = ACTIONS(3271), + [anon_sym_use] = ACTIONS(3271), + [anon_sym_while] = ACTIONS(3271), + [anon_sym_extern] = ACTIONS(3271), + [anon_sym_yield] = ACTIONS(3271), + [anon_sym_move] = ACTIONS(3271), + [anon_sym_try] = ACTIONS(3271), + [sym_integer_literal] = ACTIONS(3269), + [aux_sym_string_literal_token1] = ACTIONS(3269), + [sym_char_literal] = ACTIONS(3269), + [anon_sym_true] = ACTIONS(3271), + [anon_sym_false] = ACTIONS(3271), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3271), + [sym_super] = ACTIONS(3271), + [sym_crate] = ACTIONS(3271), + [sym_metavariable] = ACTIONS(3269), + [sym__raw_string_literal_start] = ACTIONS(3269), + [sym_float_literal] = ACTIONS(3269), + }, + [848] = { + [sym_line_comment] = STATE(848), + [sym_block_comment] = STATE(848), + [ts_builtin_sym_end] = ACTIONS(3273), + [sym_identifier] = ACTIONS(3275), + [anon_sym_SEMI] = ACTIONS(3273), + [anon_sym_macro_rules_BANG] = ACTIONS(3273), + [anon_sym_LPAREN] = ACTIONS(3273), + [anon_sym_LBRACK] = ACTIONS(3273), + [anon_sym_LBRACE] = ACTIONS(3273), + [anon_sym_RBRACE] = ACTIONS(3273), + [anon_sym_STAR] = ACTIONS(3273), + [anon_sym_u8] = ACTIONS(3275), + [anon_sym_i8] = ACTIONS(3275), + [anon_sym_u16] = ACTIONS(3275), + [anon_sym_i16] = ACTIONS(3275), + [anon_sym_u32] = ACTIONS(3275), + [anon_sym_i32] = ACTIONS(3275), + [anon_sym_u64] = ACTIONS(3275), + [anon_sym_i64] = ACTIONS(3275), + [anon_sym_u128] = ACTIONS(3275), + [anon_sym_i128] = ACTIONS(3275), + [anon_sym_isize] = ACTIONS(3275), + [anon_sym_usize] = ACTIONS(3275), + [anon_sym_f32] = ACTIONS(3275), + [anon_sym_f64] = ACTIONS(3275), + [anon_sym_bool] = ACTIONS(3275), + [anon_sym_str] = ACTIONS(3275), + [anon_sym_char] = ACTIONS(3275), + [anon_sym_DASH] = ACTIONS(3273), + [anon_sym_BANG] = ACTIONS(3273), + [anon_sym_AMP] = ACTIONS(3273), + [anon_sym_PIPE] = ACTIONS(3273), + [anon_sym_LT] = ACTIONS(3273), + [anon_sym_DOT_DOT] = ACTIONS(3273), + [anon_sym_COLON_COLON] = ACTIONS(3273), + [anon_sym_POUND] = ACTIONS(3273), + [anon_sym_SQUOTE] = ACTIONS(3275), + [anon_sym_async] = ACTIONS(3275), + [anon_sym_break] = ACTIONS(3275), + [anon_sym_const] = ACTIONS(3275), + [anon_sym_continue] = ACTIONS(3275), + [anon_sym_default] = ACTIONS(3275), + [anon_sym_enum] = ACTIONS(3275), + [anon_sym_fn] = ACTIONS(3275), + [anon_sym_for] = ACTIONS(3275), + [anon_sym_gen] = ACTIONS(3275), + [anon_sym_if] = ACTIONS(3275), + [anon_sym_impl] = ACTIONS(3275), + [anon_sym_let] = ACTIONS(3275), + [anon_sym_loop] = ACTIONS(3275), + [anon_sym_match] = ACTIONS(3275), + [anon_sym_mod] = ACTIONS(3275), + [anon_sym_pub] = ACTIONS(3275), + [anon_sym_return] = ACTIONS(3275), + [anon_sym_static] = ACTIONS(3275), + [anon_sym_struct] = ACTIONS(3275), + [anon_sym_trait] = ACTIONS(3275), + [anon_sym_type] = ACTIONS(3275), + [anon_sym_union] = ACTIONS(3275), + [anon_sym_unsafe] = ACTIONS(3275), + [anon_sym_use] = ACTIONS(3275), + [anon_sym_while] = ACTIONS(3275), + [anon_sym_extern] = ACTIONS(3275), + [anon_sym_yield] = ACTIONS(3275), + [anon_sym_move] = ACTIONS(3275), + [anon_sym_try] = ACTIONS(3275), + [sym_integer_literal] = ACTIONS(3273), + [aux_sym_string_literal_token1] = ACTIONS(3273), + [sym_char_literal] = ACTIONS(3273), + [anon_sym_true] = ACTIONS(3275), + [anon_sym_false] = ACTIONS(3275), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3275), + [sym_super] = ACTIONS(3275), + [sym_crate] = ACTIONS(3275), + [sym_metavariable] = ACTIONS(3273), + [sym__raw_string_literal_start] = ACTIONS(3273), + [sym_float_literal] = ACTIONS(3273), + }, + [849] = { + [sym_line_comment] = STATE(849), + [sym_block_comment] = STATE(849), + [ts_builtin_sym_end] = ACTIONS(3277), + [sym_identifier] = ACTIONS(3279), + [anon_sym_SEMI] = ACTIONS(3277), + [anon_sym_macro_rules_BANG] = ACTIONS(3277), + [anon_sym_LPAREN] = ACTIONS(3277), + [anon_sym_LBRACK] = ACTIONS(3277), + [anon_sym_LBRACE] = ACTIONS(3277), + [anon_sym_RBRACE] = ACTIONS(3277), + [anon_sym_STAR] = ACTIONS(3277), + [anon_sym_u8] = ACTIONS(3279), + [anon_sym_i8] = ACTIONS(3279), + [anon_sym_u16] = ACTIONS(3279), + [anon_sym_i16] = ACTIONS(3279), + [anon_sym_u32] = ACTIONS(3279), + [anon_sym_i32] = ACTIONS(3279), + [anon_sym_u64] = ACTIONS(3279), + [anon_sym_i64] = ACTIONS(3279), + [anon_sym_u128] = ACTIONS(3279), + [anon_sym_i128] = ACTIONS(3279), + [anon_sym_isize] = ACTIONS(3279), + [anon_sym_usize] = ACTIONS(3279), + [anon_sym_f32] = ACTIONS(3279), + [anon_sym_f64] = ACTIONS(3279), + [anon_sym_bool] = ACTIONS(3279), + [anon_sym_str] = ACTIONS(3279), + [anon_sym_char] = ACTIONS(3279), + [anon_sym_DASH] = ACTIONS(3277), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_AMP] = ACTIONS(3277), + [anon_sym_PIPE] = ACTIONS(3277), + [anon_sym_LT] = ACTIONS(3277), + [anon_sym_DOT_DOT] = ACTIONS(3277), + [anon_sym_COLON_COLON] = ACTIONS(3277), + [anon_sym_POUND] = ACTIONS(3277), + [anon_sym_SQUOTE] = ACTIONS(3279), + [anon_sym_async] = ACTIONS(3279), + [anon_sym_break] = ACTIONS(3279), + [anon_sym_const] = ACTIONS(3279), + [anon_sym_continue] = ACTIONS(3279), + [anon_sym_default] = ACTIONS(3279), + [anon_sym_enum] = ACTIONS(3279), + [anon_sym_fn] = ACTIONS(3279), + [anon_sym_for] = ACTIONS(3279), + [anon_sym_gen] = ACTIONS(3279), + [anon_sym_if] = ACTIONS(3279), + [anon_sym_impl] = ACTIONS(3279), + [anon_sym_let] = ACTIONS(3279), + [anon_sym_loop] = ACTIONS(3279), + [anon_sym_match] = ACTIONS(3279), + [anon_sym_mod] = ACTIONS(3279), + [anon_sym_pub] = ACTIONS(3279), + [anon_sym_return] = ACTIONS(3279), + [anon_sym_static] = ACTIONS(3279), + [anon_sym_struct] = ACTIONS(3279), + [anon_sym_trait] = ACTIONS(3279), + [anon_sym_type] = ACTIONS(3279), + [anon_sym_union] = ACTIONS(3279), + [anon_sym_unsafe] = ACTIONS(3279), + [anon_sym_use] = ACTIONS(3279), + [anon_sym_while] = ACTIONS(3279), + [anon_sym_extern] = ACTIONS(3279), + [anon_sym_yield] = ACTIONS(3279), + [anon_sym_move] = ACTIONS(3279), + [anon_sym_try] = ACTIONS(3279), + [sym_integer_literal] = ACTIONS(3277), + [aux_sym_string_literal_token1] = ACTIONS(3277), + [sym_char_literal] = ACTIONS(3277), + [anon_sym_true] = ACTIONS(3279), + [anon_sym_false] = ACTIONS(3279), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3279), + [sym_super] = ACTIONS(3279), + [sym_crate] = ACTIONS(3279), + [sym_metavariable] = ACTIONS(3277), + [sym__raw_string_literal_start] = ACTIONS(3277), + [sym_float_literal] = ACTIONS(3277), + }, + [850] = { + [sym_line_comment] = STATE(850), + [sym_block_comment] = STATE(850), + [ts_builtin_sym_end] = ACTIONS(3281), + [sym_identifier] = ACTIONS(3283), + [anon_sym_SEMI] = ACTIONS(3281), + [anon_sym_macro_rules_BANG] = ACTIONS(3281), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_LBRACK] = ACTIONS(3281), + [anon_sym_LBRACE] = ACTIONS(3281), + [anon_sym_RBRACE] = ACTIONS(3281), + [anon_sym_STAR] = ACTIONS(3281), + [anon_sym_u8] = ACTIONS(3283), + [anon_sym_i8] = ACTIONS(3283), + [anon_sym_u16] = ACTIONS(3283), + [anon_sym_i16] = ACTIONS(3283), + [anon_sym_u32] = ACTIONS(3283), + [anon_sym_i32] = ACTIONS(3283), + [anon_sym_u64] = ACTIONS(3283), + [anon_sym_i64] = ACTIONS(3283), + [anon_sym_u128] = ACTIONS(3283), + [anon_sym_i128] = ACTIONS(3283), + [anon_sym_isize] = ACTIONS(3283), + [anon_sym_usize] = ACTIONS(3283), + [anon_sym_f32] = ACTIONS(3283), + [anon_sym_f64] = ACTIONS(3283), + [anon_sym_bool] = ACTIONS(3283), + [anon_sym_str] = ACTIONS(3283), + [anon_sym_char] = ACTIONS(3283), + [anon_sym_DASH] = ACTIONS(3281), + [anon_sym_BANG] = ACTIONS(3281), + [anon_sym_AMP] = ACTIONS(3281), + [anon_sym_PIPE] = ACTIONS(3281), + [anon_sym_LT] = ACTIONS(3281), + [anon_sym_DOT_DOT] = ACTIONS(3281), + [anon_sym_COLON_COLON] = ACTIONS(3281), + [anon_sym_POUND] = ACTIONS(3281), + [anon_sym_SQUOTE] = ACTIONS(3283), + [anon_sym_async] = ACTIONS(3283), + [anon_sym_break] = ACTIONS(3283), + [anon_sym_const] = ACTIONS(3283), + [anon_sym_continue] = ACTIONS(3283), + [anon_sym_default] = ACTIONS(3283), + [anon_sym_enum] = ACTIONS(3283), + [anon_sym_fn] = ACTIONS(3283), + [anon_sym_for] = ACTIONS(3283), + [anon_sym_gen] = ACTIONS(3283), + [anon_sym_if] = ACTIONS(3283), + [anon_sym_impl] = ACTIONS(3283), + [anon_sym_let] = ACTIONS(3283), + [anon_sym_loop] = ACTIONS(3283), + [anon_sym_match] = ACTIONS(3283), + [anon_sym_mod] = ACTIONS(3283), + [anon_sym_pub] = ACTIONS(3283), + [anon_sym_return] = ACTIONS(3283), + [anon_sym_static] = ACTIONS(3283), + [anon_sym_struct] = ACTIONS(3283), + [anon_sym_trait] = ACTIONS(3283), + [anon_sym_type] = ACTIONS(3283), + [anon_sym_union] = ACTIONS(3283), + [anon_sym_unsafe] = ACTIONS(3283), + [anon_sym_use] = ACTIONS(3283), + [anon_sym_while] = ACTIONS(3283), + [anon_sym_extern] = ACTIONS(3283), + [anon_sym_yield] = ACTIONS(3283), + [anon_sym_move] = ACTIONS(3283), + [anon_sym_try] = ACTIONS(3283), + [sym_integer_literal] = ACTIONS(3281), + [aux_sym_string_literal_token1] = ACTIONS(3281), + [sym_char_literal] = ACTIONS(3281), + [anon_sym_true] = ACTIONS(3283), + [anon_sym_false] = ACTIONS(3283), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3283), + [sym_super] = ACTIONS(3283), + [sym_crate] = ACTIONS(3283), + [sym_metavariable] = ACTIONS(3281), + [sym__raw_string_literal_start] = ACTIONS(3281), + [sym_float_literal] = ACTIONS(3281), + }, + [851] = { + [sym_line_comment] = STATE(851), + [sym_block_comment] = STATE(851), + [ts_builtin_sym_end] = ACTIONS(3285), + [sym_identifier] = ACTIONS(3287), + [anon_sym_SEMI] = ACTIONS(3285), + [anon_sym_macro_rules_BANG] = ACTIONS(3285), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_RBRACE] = ACTIONS(3285), + [anon_sym_STAR] = ACTIONS(3285), + [anon_sym_u8] = ACTIONS(3287), + [anon_sym_i8] = ACTIONS(3287), + [anon_sym_u16] = ACTIONS(3287), + [anon_sym_i16] = ACTIONS(3287), + [anon_sym_u32] = ACTIONS(3287), + [anon_sym_i32] = ACTIONS(3287), + [anon_sym_u64] = ACTIONS(3287), + [anon_sym_i64] = ACTIONS(3287), + [anon_sym_u128] = ACTIONS(3287), + [anon_sym_i128] = ACTIONS(3287), + [anon_sym_isize] = ACTIONS(3287), + [anon_sym_usize] = ACTIONS(3287), + [anon_sym_f32] = ACTIONS(3287), + [anon_sym_f64] = ACTIONS(3287), + [anon_sym_bool] = ACTIONS(3287), + [anon_sym_str] = ACTIONS(3287), + [anon_sym_char] = ACTIONS(3287), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_BANG] = ACTIONS(3285), + [anon_sym_AMP] = ACTIONS(3285), + [anon_sym_PIPE] = ACTIONS(3285), + [anon_sym_LT] = ACTIONS(3285), + [anon_sym_DOT_DOT] = ACTIONS(3285), + [anon_sym_COLON_COLON] = ACTIONS(3285), + [anon_sym_POUND] = ACTIONS(3285), + [anon_sym_SQUOTE] = ACTIONS(3287), + [anon_sym_async] = ACTIONS(3287), + [anon_sym_break] = ACTIONS(3287), + [anon_sym_const] = ACTIONS(3287), + [anon_sym_continue] = ACTIONS(3287), + [anon_sym_default] = ACTIONS(3287), + [anon_sym_enum] = ACTIONS(3287), + [anon_sym_fn] = ACTIONS(3287), + [anon_sym_for] = ACTIONS(3287), + [anon_sym_gen] = ACTIONS(3287), + [anon_sym_if] = ACTIONS(3287), + [anon_sym_impl] = ACTIONS(3287), + [anon_sym_let] = ACTIONS(3287), + [anon_sym_loop] = ACTIONS(3287), + [anon_sym_match] = ACTIONS(3287), + [anon_sym_mod] = ACTIONS(3287), + [anon_sym_pub] = ACTIONS(3287), + [anon_sym_return] = ACTIONS(3287), + [anon_sym_static] = ACTIONS(3287), + [anon_sym_struct] = ACTIONS(3287), + [anon_sym_trait] = ACTIONS(3287), + [anon_sym_type] = ACTIONS(3287), + [anon_sym_union] = ACTIONS(3287), + [anon_sym_unsafe] = ACTIONS(3287), + [anon_sym_use] = ACTIONS(3287), + [anon_sym_while] = ACTIONS(3287), + [anon_sym_extern] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3287), + [anon_sym_move] = ACTIONS(3287), + [anon_sym_try] = ACTIONS(3287), + [sym_integer_literal] = ACTIONS(3285), + [aux_sym_string_literal_token1] = ACTIONS(3285), + [sym_char_literal] = ACTIONS(3285), + [anon_sym_true] = ACTIONS(3287), + [anon_sym_false] = ACTIONS(3287), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3287), + [sym_super] = ACTIONS(3287), + [sym_crate] = ACTIONS(3287), + [sym_metavariable] = ACTIONS(3285), + [sym__raw_string_literal_start] = ACTIONS(3285), + [sym_float_literal] = ACTIONS(3285), + }, + [852] = { + [sym_line_comment] = STATE(852), + [sym_block_comment] = STATE(852), + [ts_builtin_sym_end] = ACTIONS(3289), + [sym_identifier] = ACTIONS(3291), + [anon_sym_SEMI] = ACTIONS(3289), + [anon_sym_macro_rules_BANG] = ACTIONS(3289), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_LBRACK] = ACTIONS(3289), + [anon_sym_LBRACE] = ACTIONS(3289), + [anon_sym_RBRACE] = ACTIONS(3289), + [anon_sym_STAR] = ACTIONS(3289), + [anon_sym_u8] = ACTIONS(3291), + [anon_sym_i8] = ACTIONS(3291), + [anon_sym_u16] = ACTIONS(3291), + [anon_sym_i16] = ACTIONS(3291), + [anon_sym_u32] = ACTIONS(3291), + [anon_sym_i32] = ACTIONS(3291), + [anon_sym_u64] = ACTIONS(3291), + [anon_sym_i64] = ACTIONS(3291), + [anon_sym_u128] = ACTIONS(3291), + [anon_sym_i128] = ACTIONS(3291), + [anon_sym_isize] = ACTIONS(3291), + [anon_sym_usize] = ACTIONS(3291), + [anon_sym_f32] = ACTIONS(3291), + [anon_sym_f64] = ACTIONS(3291), + [anon_sym_bool] = ACTIONS(3291), + [anon_sym_str] = ACTIONS(3291), + [anon_sym_char] = ACTIONS(3291), + [anon_sym_DASH] = ACTIONS(3289), + [anon_sym_BANG] = ACTIONS(3289), + [anon_sym_AMP] = ACTIONS(3289), + [anon_sym_PIPE] = ACTIONS(3289), + [anon_sym_LT] = ACTIONS(3289), + [anon_sym_DOT_DOT] = ACTIONS(3289), + [anon_sym_COLON_COLON] = ACTIONS(3289), + [anon_sym_POUND] = ACTIONS(3289), + [anon_sym_SQUOTE] = ACTIONS(3291), + [anon_sym_async] = ACTIONS(3291), + [anon_sym_break] = ACTIONS(3291), + [anon_sym_const] = ACTIONS(3291), + [anon_sym_continue] = ACTIONS(3291), + [anon_sym_default] = ACTIONS(3291), + [anon_sym_enum] = ACTIONS(3291), + [anon_sym_fn] = ACTIONS(3291), + [anon_sym_for] = ACTIONS(3291), + [anon_sym_gen] = ACTIONS(3291), + [anon_sym_if] = ACTIONS(3291), + [anon_sym_impl] = ACTIONS(3291), + [anon_sym_let] = ACTIONS(3291), + [anon_sym_loop] = ACTIONS(3291), + [anon_sym_match] = ACTIONS(3291), + [anon_sym_mod] = ACTIONS(3291), + [anon_sym_pub] = ACTIONS(3291), + [anon_sym_return] = ACTIONS(3291), + [anon_sym_static] = ACTIONS(3291), + [anon_sym_struct] = ACTIONS(3291), + [anon_sym_trait] = ACTIONS(3291), + [anon_sym_type] = ACTIONS(3291), + [anon_sym_union] = ACTIONS(3291), + [anon_sym_unsafe] = ACTIONS(3291), + [anon_sym_use] = ACTIONS(3291), + [anon_sym_while] = ACTIONS(3291), + [anon_sym_extern] = ACTIONS(3291), + [anon_sym_yield] = ACTIONS(3291), + [anon_sym_move] = ACTIONS(3291), + [anon_sym_try] = ACTIONS(3291), + [sym_integer_literal] = ACTIONS(3289), + [aux_sym_string_literal_token1] = ACTIONS(3289), + [sym_char_literal] = ACTIONS(3289), + [anon_sym_true] = ACTIONS(3291), + [anon_sym_false] = ACTIONS(3291), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3291), + [sym_super] = ACTIONS(3291), + [sym_crate] = ACTIONS(3291), + [sym_metavariable] = ACTIONS(3289), + [sym__raw_string_literal_start] = ACTIONS(3289), + [sym_float_literal] = ACTIONS(3289), + }, + [853] = { + [sym_line_comment] = STATE(853), + [sym_block_comment] = STATE(853), + [ts_builtin_sym_end] = ACTIONS(3293), + [sym_identifier] = ACTIONS(3295), + [anon_sym_SEMI] = ACTIONS(3293), + [anon_sym_macro_rules_BANG] = ACTIONS(3293), + [anon_sym_LPAREN] = ACTIONS(3293), + [anon_sym_LBRACK] = ACTIONS(3293), + [anon_sym_LBRACE] = ACTIONS(3293), + [anon_sym_RBRACE] = ACTIONS(3293), + [anon_sym_STAR] = ACTIONS(3293), + [anon_sym_u8] = ACTIONS(3295), + [anon_sym_i8] = ACTIONS(3295), + [anon_sym_u16] = ACTIONS(3295), + [anon_sym_i16] = ACTIONS(3295), + [anon_sym_u32] = ACTIONS(3295), + [anon_sym_i32] = ACTIONS(3295), + [anon_sym_u64] = ACTIONS(3295), + [anon_sym_i64] = ACTIONS(3295), + [anon_sym_u128] = ACTIONS(3295), + [anon_sym_i128] = ACTIONS(3295), + [anon_sym_isize] = ACTIONS(3295), + [anon_sym_usize] = ACTIONS(3295), + [anon_sym_f32] = ACTIONS(3295), + [anon_sym_f64] = ACTIONS(3295), + [anon_sym_bool] = ACTIONS(3295), + [anon_sym_str] = ACTIONS(3295), + [anon_sym_char] = ACTIONS(3295), + [anon_sym_DASH] = ACTIONS(3293), + [anon_sym_BANG] = ACTIONS(3293), + [anon_sym_AMP] = ACTIONS(3293), + [anon_sym_PIPE] = ACTIONS(3293), + [anon_sym_LT] = ACTIONS(3293), + [anon_sym_DOT_DOT] = ACTIONS(3293), + [anon_sym_COLON_COLON] = ACTIONS(3293), + [anon_sym_POUND] = ACTIONS(3293), + [anon_sym_SQUOTE] = ACTIONS(3295), + [anon_sym_async] = ACTIONS(3295), + [anon_sym_break] = ACTIONS(3295), + [anon_sym_const] = ACTIONS(3295), + [anon_sym_continue] = ACTIONS(3295), + [anon_sym_default] = ACTIONS(3295), + [anon_sym_enum] = ACTIONS(3295), + [anon_sym_fn] = ACTIONS(3295), + [anon_sym_for] = ACTIONS(3295), + [anon_sym_gen] = ACTIONS(3295), + [anon_sym_if] = ACTIONS(3295), + [anon_sym_impl] = ACTIONS(3295), + [anon_sym_let] = ACTIONS(3295), + [anon_sym_loop] = ACTIONS(3295), + [anon_sym_match] = ACTIONS(3295), + [anon_sym_mod] = ACTIONS(3295), + [anon_sym_pub] = ACTIONS(3295), + [anon_sym_return] = ACTIONS(3295), + [anon_sym_static] = ACTIONS(3295), + [anon_sym_struct] = ACTIONS(3295), + [anon_sym_trait] = ACTIONS(3295), + [anon_sym_type] = ACTIONS(3295), + [anon_sym_union] = ACTIONS(3295), + [anon_sym_unsafe] = ACTIONS(3295), + [anon_sym_use] = ACTIONS(3295), + [anon_sym_while] = ACTIONS(3295), + [anon_sym_extern] = ACTIONS(3295), + [anon_sym_yield] = ACTIONS(3295), + [anon_sym_move] = ACTIONS(3295), + [anon_sym_try] = ACTIONS(3295), + [sym_integer_literal] = ACTIONS(3293), + [aux_sym_string_literal_token1] = ACTIONS(3293), + [sym_char_literal] = ACTIONS(3293), + [anon_sym_true] = ACTIONS(3295), + [anon_sym_false] = ACTIONS(3295), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3295), + [sym_super] = ACTIONS(3295), + [sym_crate] = ACTIONS(3295), + [sym_metavariable] = ACTIONS(3293), + [sym__raw_string_literal_start] = ACTIONS(3293), + [sym_float_literal] = ACTIONS(3293), + }, + [854] = { + [sym_line_comment] = STATE(854), + [sym_block_comment] = STATE(854), + [ts_builtin_sym_end] = ACTIONS(3297), + [sym_identifier] = ACTIONS(3299), + [anon_sym_SEMI] = ACTIONS(3297), + [anon_sym_macro_rules_BANG] = ACTIONS(3297), + [anon_sym_LPAREN] = ACTIONS(3297), + [anon_sym_LBRACK] = ACTIONS(3297), + [anon_sym_LBRACE] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(3297), + [anon_sym_STAR] = ACTIONS(3297), + [anon_sym_u8] = ACTIONS(3299), + [anon_sym_i8] = ACTIONS(3299), + [anon_sym_u16] = ACTIONS(3299), + [anon_sym_i16] = ACTIONS(3299), + [anon_sym_u32] = ACTIONS(3299), + [anon_sym_i32] = ACTIONS(3299), + [anon_sym_u64] = ACTIONS(3299), + [anon_sym_i64] = ACTIONS(3299), + [anon_sym_u128] = ACTIONS(3299), + [anon_sym_i128] = ACTIONS(3299), + [anon_sym_isize] = ACTIONS(3299), + [anon_sym_usize] = ACTIONS(3299), + [anon_sym_f32] = ACTIONS(3299), + [anon_sym_f64] = ACTIONS(3299), + [anon_sym_bool] = ACTIONS(3299), + [anon_sym_str] = ACTIONS(3299), + [anon_sym_char] = ACTIONS(3299), + [anon_sym_DASH] = ACTIONS(3297), + [anon_sym_BANG] = ACTIONS(3297), + [anon_sym_AMP] = ACTIONS(3297), + [anon_sym_PIPE] = ACTIONS(3297), + [anon_sym_LT] = ACTIONS(3297), + [anon_sym_DOT_DOT] = ACTIONS(3297), + [anon_sym_COLON_COLON] = ACTIONS(3297), + [anon_sym_POUND] = ACTIONS(3297), + [anon_sym_SQUOTE] = ACTIONS(3299), + [anon_sym_async] = ACTIONS(3299), + [anon_sym_break] = ACTIONS(3299), + [anon_sym_const] = ACTIONS(3299), + [anon_sym_continue] = ACTIONS(3299), + [anon_sym_default] = ACTIONS(3299), + [anon_sym_enum] = ACTIONS(3299), + [anon_sym_fn] = ACTIONS(3299), + [anon_sym_for] = ACTIONS(3299), + [anon_sym_gen] = ACTIONS(3299), + [anon_sym_if] = ACTIONS(3299), + [anon_sym_impl] = ACTIONS(3299), + [anon_sym_let] = ACTIONS(3299), + [anon_sym_loop] = ACTIONS(3299), + [anon_sym_match] = ACTIONS(3299), + [anon_sym_mod] = ACTIONS(3299), + [anon_sym_pub] = ACTIONS(3299), + [anon_sym_return] = ACTIONS(3299), + [anon_sym_static] = ACTIONS(3299), + [anon_sym_struct] = ACTIONS(3299), + [anon_sym_trait] = ACTIONS(3299), + [anon_sym_type] = ACTIONS(3299), + [anon_sym_union] = ACTIONS(3299), + [anon_sym_unsafe] = ACTIONS(3299), + [anon_sym_use] = ACTIONS(3299), + [anon_sym_while] = ACTIONS(3299), + [anon_sym_extern] = ACTIONS(3299), + [anon_sym_yield] = ACTIONS(3299), + [anon_sym_move] = ACTIONS(3299), + [anon_sym_try] = ACTIONS(3299), + [sym_integer_literal] = ACTIONS(3297), + [aux_sym_string_literal_token1] = ACTIONS(3297), + [sym_char_literal] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3299), + [sym_super] = ACTIONS(3299), + [sym_crate] = ACTIONS(3299), + [sym_metavariable] = ACTIONS(3297), + [sym__raw_string_literal_start] = ACTIONS(3297), + [sym_float_literal] = ACTIONS(3297), + }, + [855] = { + [sym_line_comment] = STATE(855), + [sym_block_comment] = STATE(855), + [ts_builtin_sym_end] = ACTIONS(3301), + [sym_identifier] = ACTIONS(3303), + [anon_sym_SEMI] = ACTIONS(3301), + [anon_sym_macro_rules_BANG] = ACTIONS(3301), + [anon_sym_LPAREN] = ACTIONS(3301), + [anon_sym_LBRACK] = ACTIONS(3301), + [anon_sym_LBRACE] = ACTIONS(3301), + [anon_sym_RBRACE] = ACTIONS(3301), + [anon_sym_STAR] = ACTIONS(3301), + [anon_sym_u8] = ACTIONS(3303), + [anon_sym_i8] = ACTIONS(3303), + [anon_sym_u16] = ACTIONS(3303), + [anon_sym_i16] = ACTIONS(3303), + [anon_sym_u32] = ACTIONS(3303), + [anon_sym_i32] = ACTIONS(3303), + [anon_sym_u64] = ACTIONS(3303), + [anon_sym_i64] = ACTIONS(3303), + [anon_sym_u128] = ACTIONS(3303), + [anon_sym_i128] = ACTIONS(3303), + [anon_sym_isize] = ACTIONS(3303), + [anon_sym_usize] = ACTIONS(3303), + [anon_sym_f32] = ACTIONS(3303), + [anon_sym_f64] = ACTIONS(3303), + [anon_sym_bool] = ACTIONS(3303), + [anon_sym_str] = ACTIONS(3303), + [anon_sym_char] = ACTIONS(3303), + [anon_sym_DASH] = ACTIONS(3301), + [anon_sym_BANG] = ACTIONS(3301), + [anon_sym_AMP] = ACTIONS(3301), + [anon_sym_PIPE] = ACTIONS(3301), + [anon_sym_LT] = ACTIONS(3301), + [anon_sym_DOT_DOT] = ACTIONS(3301), + [anon_sym_COLON_COLON] = ACTIONS(3301), + [anon_sym_POUND] = ACTIONS(3301), + [anon_sym_SQUOTE] = ACTIONS(3303), + [anon_sym_async] = ACTIONS(3303), + [anon_sym_break] = ACTIONS(3303), + [anon_sym_const] = ACTIONS(3303), + [anon_sym_continue] = ACTIONS(3303), + [anon_sym_default] = ACTIONS(3303), + [anon_sym_enum] = ACTIONS(3303), + [anon_sym_fn] = ACTIONS(3303), + [anon_sym_for] = ACTIONS(3303), + [anon_sym_gen] = ACTIONS(3303), + [anon_sym_if] = ACTIONS(3303), + [anon_sym_impl] = ACTIONS(3303), + [anon_sym_let] = ACTIONS(3303), + [anon_sym_loop] = ACTIONS(3303), + [anon_sym_match] = ACTIONS(3303), + [anon_sym_mod] = ACTIONS(3303), + [anon_sym_pub] = ACTIONS(3303), + [anon_sym_return] = ACTIONS(3303), + [anon_sym_static] = ACTIONS(3303), + [anon_sym_struct] = ACTIONS(3303), + [anon_sym_trait] = ACTIONS(3303), + [anon_sym_type] = ACTIONS(3303), + [anon_sym_union] = ACTIONS(3303), + [anon_sym_unsafe] = ACTIONS(3303), + [anon_sym_use] = ACTIONS(3303), + [anon_sym_while] = ACTIONS(3303), + [anon_sym_extern] = ACTIONS(3303), + [anon_sym_yield] = ACTIONS(3303), + [anon_sym_move] = ACTIONS(3303), + [anon_sym_try] = ACTIONS(3303), + [sym_integer_literal] = ACTIONS(3301), + [aux_sym_string_literal_token1] = ACTIONS(3301), + [sym_char_literal] = ACTIONS(3301), + [anon_sym_true] = ACTIONS(3303), + [anon_sym_false] = ACTIONS(3303), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3303), + [sym_super] = ACTIONS(3303), + [sym_crate] = ACTIONS(3303), + [sym_metavariable] = ACTIONS(3301), + [sym__raw_string_literal_start] = ACTIONS(3301), + [sym_float_literal] = ACTIONS(3301), + }, + [856] = { + [sym_line_comment] = STATE(856), + [sym_block_comment] = STATE(856), + [ts_builtin_sym_end] = ACTIONS(3305), + [sym_identifier] = ACTIONS(3307), + [anon_sym_SEMI] = ACTIONS(3305), + [anon_sym_macro_rules_BANG] = ACTIONS(3305), + [anon_sym_LPAREN] = ACTIONS(3305), + [anon_sym_LBRACK] = ACTIONS(3305), + [anon_sym_LBRACE] = ACTIONS(3305), + [anon_sym_RBRACE] = ACTIONS(3305), + [anon_sym_STAR] = ACTIONS(3305), + [anon_sym_u8] = ACTIONS(3307), + [anon_sym_i8] = ACTIONS(3307), + [anon_sym_u16] = ACTIONS(3307), + [anon_sym_i16] = ACTIONS(3307), + [anon_sym_u32] = ACTIONS(3307), + [anon_sym_i32] = ACTIONS(3307), + [anon_sym_u64] = ACTIONS(3307), + [anon_sym_i64] = ACTIONS(3307), + [anon_sym_u128] = ACTIONS(3307), + [anon_sym_i128] = ACTIONS(3307), + [anon_sym_isize] = ACTIONS(3307), + [anon_sym_usize] = ACTIONS(3307), + [anon_sym_f32] = ACTIONS(3307), + [anon_sym_f64] = ACTIONS(3307), + [anon_sym_bool] = ACTIONS(3307), + [anon_sym_str] = ACTIONS(3307), + [anon_sym_char] = ACTIONS(3307), + [anon_sym_DASH] = ACTIONS(3305), + [anon_sym_BANG] = ACTIONS(3305), + [anon_sym_AMP] = ACTIONS(3305), + [anon_sym_PIPE] = ACTIONS(3305), + [anon_sym_LT] = ACTIONS(3305), + [anon_sym_DOT_DOT] = ACTIONS(3305), + [anon_sym_COLON_COLON] = ACTIONS(3305), + [anon_sym_POUND] = ACTIONS(3305), + [anon_sym_SQUOTE] = ACTIONS(3307), + [anon_sym_async] = ACTIONS(3307), + [anon_sym_break] = ACTIONS(3307), + [anon_sym_const] = ACTIONS(3307), + [anon_sym_continue] = ACTIONS(3307), + [anon_sym_default] = ACTIONS(3307), + [anon_sym_enum] = ACTIONS(3307), + [anon_sym_fn] = ACTIONS(3307), + [anon_sym_for] = ACTIONS(3307), + [anon_sym_gen] = ACTIONS(3307), + [anon_sym_if] = ACTIONS(3307), + [anon_sym_impl] = ACTIONS(3307), + [anon_sym_let] = ACTIONS(3307), + [anon_sym_loop] = ACTIONS(3307), + [anon_sym_match] = ACTIONS(3307), + [anon_sym_mod] = ACTIONS(3307), + [anon_sym_pub] = ACTIONS(3307), + [anon_sym_return] = ACTIONS(3307), + [anon_sym_static] = ACTIONS(3307), + [anon_sym_struct] = ACTIONS(3307), + [anon_sym_trait] = ACTIONS(3307), + [anon_sym_type] = ACTIONS(3307), + [anon_sym_union] = ACTIONS(3307), + [anon_sym_unsafe] = ACTIONS(3307), + [anon_sym_use] = ACTIONS(3307), + [anon_sym_while] = ACTIONS(3307), + [anon_sym_extern] = ACTIONS(3307), + [anon_sym_yield] = ACTIONS(3307), + [anon_sym_move] = ACTIONS(3307), + [anon_sym_try] = ACTIONS(3307), + [sym_integer_literal] = ACTIONS(3305), + [aux_sym_string_literal_token1] = ACTIONS(3305), + [sym_char_literal] = ACTIONS(3305), + [anon_sym_true] = ACTIONS(3307), + [anon_sym_false] = ACTIONS(3307), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3307), + [sym_super] = ACTIONS(3307), + [sym_crate] = ACTIONS(3307), + [sym_metavariable] = ACTIONS(3305), + [sym__raw_string_literal_start] = ACTIONS(3305), + [sym_float_literal] = ACTIONS(3305), + }, + [857] = { + [sym_line_comment] = STATE(857), + [sym_block_comment] = STATE(857), + [ts_builtin_sym_end] = ACTIONS(3309), + [sym_identifier] = ACTIONS(3311), + [anon_sym_SEMI] = ACTIONS(3309), + [anon_sym_macro_rules_BANG] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(3309), + [anon_sym_LBRACK] = ACTIONS(3309), + [anon_sym_LBRACE] = ACTIONS(3309), + [anon_sym_RBRACE] = ACTIONS(3309), + [anon_sym_STAR] = ACTIONS(3309), + [anon_sym_u8] = ACTIONS(3311), + [anon_sym_i8] = ACTIONS(3311), + [anon_sym_u16] = ACTIONS(3311), + [anon_sym_i16] = ACTIONS(3311), + [anon_sym_u32] = ACTIONS(3311), + [anon_sym_i32] = ACTIONS(3311), + [anon_sym_u64] = ACTIONS(3311), + [anon_sym_i64] = ACTIONS(3311), + [anon_sym_u128] = ACTIONS(3311), + [anon_sym_i128] = ACTIONS(3311), + [anon_sym_isize] = ACTIONS(3311), + [anon_sym_usize] = ACTIONS(3311), + [anon_sym_f32] = ACTIONS(3311), + [anon_sym_f64] = ACTIONS(3311), + [anon_sym_bool] = ACTIONS(3311), + [anon_sym_str] = ACTIONS(3311), + [anon_sym_char] = ACTIONS(3311), + [anon_sym_DASH] = ACTIONS(3309), + [anon_sym_BANG] = ACTIONS(3309), + [anon_sym_AMP] = ACTIONS(3309), + [anon_sym_PIPE] = ACTIONS(3309), + [anon_sym_LT] = ACTIONS(3309), + [anon_sym_DOT_DOT] = ACTIONS(3309), + [anon_sym_COLON_COLON] = ACTIONS(3309), + [anon_sym_POUND] = ACTIONS(3309), + [anon_sym_SQUOTE] = ACTIONS(3311), + [anon_sym_async] = ACTIONS(3311), + [anon_sym_break] = ACTIONS(3311), + [anon_sym_const] = ACTIONS(3311), + [anon_sym_continue] = ACTIONS(3311), + [anon_sym_default] = ACTIONS(3311), + [anon_sym_enum] = ACTIONS(3311), + [anon_sym_fn] = ACTIONS(3311), + [anon_sym_for] = ACTIONS(3311), + [anon_sym_gen] = ACTIONS(3311), + [anon_sym_if] = ACTIONS(3311), + [anon_sym_impl] = ACTIONS(3311), + [anon_sym_let] = ACTIONS(3311), + [anon_sym_loop] = ACTIONS(3311), + [anon_sym_match] = ACTIONS(3311), + [anon_sym_mod] = ACTIONS(3311), + [anon_sym_pub] = ACTIONS(3311), + [anon_sym_return] = ACTIONS(3311), + [anon_sym_static] = ACTIONS(3311), + [anon_sym_struct] = ACTIONS(3311), + [anon_sym_trait] = ACTIONS(3311), + [anon_sym_type] = ACTIONS(3311), + [anon_sym_union] = ACTIONS(3311), + [anon_sym_unsafe] = ACTIONS(3311), + [anon_sym_use] = ACTIONS(3311), + [anon_sym_while] = ACTIONS(3311), + [anon_sym_extern] = ACTIONS(3311), + [anon_sym_yield] = ACTIONS(3311), + [anon_sym_move] = ACTIONS(3311), + [anon_sym_try] = ACTIONS(3311), + [sym_integer_literal] = ACTIONS(3309), + [aux_sym_string_literal_token1] = ACTIONS(3309), + [sym_char_literal] = ACTIONS(3309), + [anon_sym_true] = ACTIONS(3311), + [anon_sym_false] = ACTIONS(3311), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3311), + [sym_super] = ACTIONS(3311), + [sym_crate] = ACTIONS(3311), + [sym_metavariable] = ACTIONS(3309), + [sym__raw_string_literal_start] = ACTIONS(3309), + [sym_float_literal] = ACTIONS(3309), + }, + [858] = { + [sym_line_comment] = STATE(858), + [sym_block_comment] = STATE(858), + [ts_builtin_sym_end] = ACTIONS(3313), + [sym_identifier] = ACTIONS(3315), + [anon_sym_SEMI] = ACTIONS(3313), + [anon_sym_macro_rules_BANG] = ACTIONS(3313), + [anon_sym_LPAREN] = ACTIONS(3313), + [anon_sym_LBRACK] = ACTIONS(3313), + [anon_sym_LBRACE] = ACTIONS(3313), + [anon_sym_RBRACE] = ACTIONS(3313), + [anon_sym_STAR] = ACTIONS(3313), + [anon_sym_u8] = ACTIONS(3315), + [anon_sym_i8] = ACTIONS(3315), + [anon_sym_u16] = ACTIONS(3315), + [anon_sym_i16] = ACTIONS(3315), + [anon_sym_u32] = ACTIONS(3315), + [anon_sym_i32] = ACTIONS(3315), + [anon_sym_u64] = ACTIONS(3315), + [anon_sym_i64] = ACTIONS(3315), + [anon_sym_u128] = ACTIONS(3315), + [anon_sym_i128] = ACTIONS(3315), + [anon_sym_isize] = ACTIONS(3315), + [anon_sym_usize] = ACTIONS(3315), + [anon_sym_f32] = ACTIONS(3315), + [anon_sym_f64] = ACTIONS(3315), + [anon_sym_bool] = ACTIONS(3315), + [anon_sym_str] = ACTIONS(3315), + [anon_sym_char] = ACTIONS(3315), + [anon_sym_DASH] = ACTIONS(3313), + [anon_sym_BANG] = ACTIONS(3313), + [anon_sym_AMP] = ACTIONS(3313), + [anon_sym_PIPE] = ACTIONS(3313), + [anon_sym_LT] = ACTIONS(3313), + [anon_sym_DOT_DOT] = ACTIONS(3313), + [anon_sym_COLON_COLON] = ACTIONS(3313), + [anon_sym_POUND] = ACTIONS(3313), + [anon_sym_SQUOTE] = ACTIONS(3315), + [anon_sym_async] = ACTIONS(3315), + [anon_sym_break] = ACTIONS(3315), + [anon_sym_const] = ACTIONS(3315), + [anon_sym_continue] = ACTIONS(3315), + [anon_sym_default] = ACTIONS(3315), + [anon_sym_enum] = ACTIONS(3315), + [anon_sym_fn] = ACTIONS(3315), + [anon_sym_for] = ACTIONS(3315), + [anon_sym_gen] = ACTIONS(3315), + [anon_sym_if] = ACTIONS(3315), + [anon_sym_impl] = ACTIONS(3315), + [anon_sym_let] = ACTIONS(3315), + [anon_sym_loop] = ACTIONS(3315), + [anon_sym_match] = ACTIONS(3315), + [anon_sym_mod] = ACTIONS(3315), + [anon_sym_pub] = ACTIONS(3315), + [anon_sym_return] = ACTIONS(3315), + [anon_sym_static] = ACTIONS(3315), + [anon_sym_struct] = ACTIONS(3315), + [anon_sym_trait] = ACTIONS(3315), + [anon_sym_type] = ACTIONS(3315), + [anon_sym_union] = ACTIONS(3315), + [anon_sym_unsafe] = ACTIONS(3315), + [anon_sym_use] = ACTIONS(3315), + [anon_sym_while] = ACTIONS(3315), + [anon_sym_extern] = ACTIONS(3315), + [anon_sym_yield] = ACTIONS(3315), + [anon_sym_move] = ACTIONS(3315), + [anon_sym_try] = ACTIONS(3315), + [sym_integer_literal] = ACTIONS(3313), + [aux_sym_string_literal_token1] = ACTIONS(3313), + [sym_char_literal] = ACTIONS(3313), + [anon_sym_true] = ACTIONS(3315), + [anon_sym_false] = ACTIONS(3315), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3315), + [sym_super] = ACTIONS(3315), + [sym_crate] = ACTIONS(3315), + [sym_metavariable] = ACTIONS(3313), + [sym__raw_string_literal_start] = ACTIONS(3313), + [sym_float_literal] = ACTIONS(3313), + }, + [859] = { + [sym_line_comment] = STATE(859), + [sym_block_comment] = STATE(859), + [ts_builtin_sym_end] = ACTIONS(3317), + [sym_identifier] = ACTIONS(3319), + [anon_sym_SEMI] = ACTIONS(3317), + [anon_sym_macro_rules_BANG] = ACTIONS(3317), + [anon_sym_LPAREN] = ACTIONS(3317), + [anon_sym_LBRACK] = ACTIONS(3317), + [anon_sym_LBRACE] = ACTIONS(3317), + [anon_sym_RBRACE] = ACTIONS(3317), + [anon_sym_STAR] = ACTIONS(3317), + [anon_sym_u8] = ACTIONS(3319), + [anon_sym_i8] = ACTIONS(3319), + [anon_sym_u16] = ACTIONS(3319), + [anon_sym_i16] = ACTIONS(3319), + [anon_sym_u32] = ACTIONS(3319), + [anon_sym_i32] = ACTIONS(3319), + [anon_sym_u64] = ACTIONS(3319), + [anon_sym_i64] = ACTIONS(3319), + [anon_sym_u128] = ACTIONS(3319), + [anon_sym_i128] = ACTIONS(3319), + [anon_sym_isize] = ACTIONS(3319), + [anon_sym_usize] = ACTIONS(3319), + [anon_sym_f32] = ACTIONS(3319), + [anon_sym_f64] = ACTIONS(3319), + [anon_sym_bool] = ACTIONS(3319), + [anon_sym_str] = ACTIONS(3319), + [anon_sym_char] = ACTIONS(3319), + [anon_sym_DASH] = ACTIONS(3317), + [anon_sym_BANG] = ACTIONS(3317), + [anon_sym_AMP] = ACTIONS(3317), + [anon_sym_PIPE] = ACTIONS(3317), + [anon_sym_LT] = ACTIONS(3317), + [anon_sym_DOT_DOT] = ACTIONS(3317), + [anon_sym_COLON_COLON] = ACTIONS(3317), + [anon_sym_POUND] = ACTIONS(3317), + [anon_sym_SQUOTE] = ACTIONS(3319), + [anon_sym_async] = ACTIONS(3319), + [anon_sym_break] = ACTIONS(3319), + [anon_sym_const] = ACTIONS(3319), + [anon_sym_continue] = ACTIONS(3319), + [anon_sym_default] = ACTIONS(3319), + [anon_sym_enum] = ACTIONS(3319), + [anon_sym_fn] = ACTIONS(3319), + [anon_sym_for] = ACTIONS(3319), + [anon_sym_gen] = ACTIONS(3319), + [anon_sym_if] = ACTIONS(3319), + [anon_sym_impl] = ACTIONS(3319), + [anon_sym_let] = ACTIONS(3319), + [anon_sym_loop] = ACTIONS(3319), + [anon_sym_match] = ACTIONS(3319), + [anon_sym_mod] = ACTIONS(3319), + [anon_sym_pub] = ACTIONS(3319), + [anon_sym_return] = ACTIONS(3319), + [anon_sym_static] = ACTIONS(3319), + [anon_sym_struct] = ACTIONS(3319), + [anon_sym_trait] = ACTIONS(3319), + [anon_sym_type] = ACTIONS(3319), + [anon_sym_union] = ACTIONS(3319), + [anon_sym_unsafe] = ACTIONS(3319), + [anon_sym_use] = ACTIONS(3319), + [anon_sym_while] = ACTIONS(3319), + [anon_sym_extern] = ACTIONS(3319), + [anon_sym_yield] = ACTIONS(3319), + [anon_sym_move] = ACTIONS(3319), + [anon_sym_try] = ACTIONS(3319), + [sym_integer_literal] = ACTIONS(3317), + [aux_sym_string_literal_token1] = ACTIONS(3317), + [sym_char_literal] = ACTIONS(3317), + [anon_sym_true] = ACTIONS(3319), + [anon_sym_false] = ACTIONS(3319), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3319), + [sym_super] = ACTIONS(3319), + [sym_crate] = ACTIONS(3319), + [sym_metavariable] = ACTIONS(3317), + [sym__raw_string_literal_start] = ACTIONS(3317), + [sym_float_literal] = ACTIONS(3317), + }, + [860] = { + [sym_line_comment] = STATE(860), + [sym_block_comment] = STATE(860), + [ts_builtin_sym_end] = ACTIONS(3321), + [sym_identifier] = ACTIONS(3323), + [anon_sym_SEMI] = ACTIONS(3321), + [anon_sym_macro_rules_BANG] = ACTIONS(3321), + [anon_sym_LPAREN] = ACTIONS(3321), + [anon_sym_LBRACK] = ACTIONS(3321), + [anon_sym_LBRACE] = ACTIONS(3321), + [anon_sym_RBRACE] = ACTIONS(3321), + [anon_sym_STAR] = ACTIONS(3321), + [anon_sym_u8] = ACTIONS(3323), + [anon_sym_i8] = ACTIONS(3323), + [anon_sym_u16] = ACTIONS(3323), + [anon_sym_i16] = ACTIONS(3323), + [anon_sym_u32] = ACTIONS(3323), + [anon_sym_i32] = ACTIONS(3323), + [anon_sym_u64] = ACTIONS(3323), + [anon_sym_i64] = ACTIONS(3323), + [anon_sym_u128] = ACTIONS(3323), + [anon_sym_i128] = ACTIONS(3323), + [anon_sym_isize] = ACTIONS(3323), + [anon_sym_usize] = ACTIONS(3323), + [anon_sym_f32] = ACTIONS(3323), + [anon_sym_f64] = ACTIONS(3323), + [anon_sym_bool] = ACTIONS(3323), + [anon_sym_str] = ACTIONS(3323), + [anon_sym_char] = ACTIONS(3323), + [anon_sym_DASH] = ACTIONS(3321), + [anon_sym_BANG] = ACTIONS(3321), + [anon_sym_AMP] = ACTIONS(3321), + [anon_sym_PIPE] = ACTIONS(3321), + [anon_sym_LT] = ACTIONS(3321), + [anon_sym_DOT_DOT] = ACTIONS(3321), + [anon_sym_COLON_COLON] = ACTIONS(3321), + [anon_sym_POUND] = ACTIONS(3321), + [anon_sym_SQUOTE] = ACTIONS(3323), + [anon_sym_async] = ACTIONS(3323), + [anon_sym_break] = ACTIONS(3323), + [anon_sym_const] = ACTIONS(3323), + [anon_sym_continue] = ACTIONS(3323), + [anon_sym_default] = ACTIONS(3323), + [anon_sym_enum] = ACTIONS(3323), + [anon_sym_fn] = ACTIONS(3323), + [anon_sym_for] = ACTIONS(3323), + [anon_sym_gen] = ACTIONS(3323), + [anon_sym_if] = ACTIONS(3323), + [anon_sym_impl] = ACTIONS(3323), + [anon_sym_let] = ACTIONS(3323), + [anon_sym_loop] = ACTIONS(3323), + [anon_sym_match] = ACTIONS(3323), + [anon_sym_mod] = ACTIONS(3323), + [anon_sym_pub] = ACTIONS(3323), + [anon_sym_return] = ACTIONS(3323), + [anon_sym_static] = ACTIONS(3323), + [anon_sym_struct] = ACTIONS(3323), + [anon_sym_trait] = ACTIONS(3323), + [anon_sym_type] = ACTIONS(3323), + [anon_sym_union] = ACTIONS(3323), + [anon_sym_unsafe] = ACTIONS(3323), + [anon_sym_use] = ACTIONS(3323), + [anon_sym_while] = ACTIONS(3323), + [anon_sym_extern] = ACTIONS(3323), + [anon_sym_yield] = ACTIONS(3323), + [anon_sym_move] = ACTIONS(3323), + [anon_sym_try] = ACTIONS(3323), + [sym_integer_literal] = ACTIONS(3321), + [aux_sym_string_literal_token1] = ACTIONS(3321), + [sym_char_literal] = ACTIONS(3321), + [anon_sym_true] = ACTIONS(3323), + [anon_sym_false] = ACTIONS(3323), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3323), + [sym_super] = ACTIONS(3323), + [sym_crate] = ACTIONS(3323), + [sym_metavariable] = ACTIONS(3321), + [sym__raw_string_literal_start] = ACTIONS(3321), + [sym_float_literal] = ACTIONS(3321), + }, + [861] = { + [sym_line_comment] = STATE(861), + [sym_block_comment] = STATE(861), + [ts_builtin_sym_end] = ACTIONS(3325), + [sym_identifier] = ACTIONS(3327), + [anon_sym_SEMI] = ACTIONS(3325), + [anon_sym_macro_rules_BANG] = ACTIONS(3325), + [anon_sym_LPAREN] = ACTIONS(3325), + [anon_sym_LBRACK] = ACTIONS(3325), + [anon_sym_LBRACE] = ACTIONS(3325), + [anon_sym_RBRACE] = ACTIONS(3325), + [anon_sym_STAR] = ACTIONS(3325), + [anon_sym_u8] = ACTIONS(3327), + [anon_sym_i8] = ACTIONS(3327), + [anon_sym_u16] = ACTIONS(3327), + [anon_sym_i16] = ACTIONS(3327), + [anon_sym_u32] = ACTIONS(3327), + [anon_sym_i32] = ACTIONS(3327), + [anon_sym_u64] = ACTIONS(3327), + [anon_sym_i64] = ACTIONS(3327), + [anon_sym_u128] = ACTIONS(3327), + [anon_sym_i128] = ACTIONS(3327), + [anon_sym_isize] = ACTIONS(3327), + [anon_sym_usize] = ACTIONS(3327), + [anon_sym_f32] = ACTIONS(3327), + [anon_sym_f64] = ACTIONS(3327), + [anon_sym_bool] = ACTIONS(3327), + [anon_sym_str] = ACTIONS(3327), + [anon_sym_char] = ACTIONS(3327), + [anon_sym_DASH] = ACTIONS(3325), + [anon_sym_BANG] = ACTIONS(3325), + [anon_sym_AMP] = ACTIONS(3325), + [anon_sym_PIPE] = ACTIONS(3325), + [anon_sym_LT] = ACTIONS(3325), + [anon_sym_DOT_DOT] = ACTIONS(3325), + [anon_sym_COLON_COLON] = ACTIONS(3325), + [anon_sym_POUND] = ACTIONS(3325), + [anon_sym_SQUOTE] = ACTIONS(3327), + [anon_sym_async] = ACTIONS(3327), + [anon_sym_break] = ACTIONS(3327), + [anon_sym_const] = ACTIONS(3327), + [anon_sym_continue] = ACTIONS(3327), + [anon_sym_default] = ACTIONS(3327), + [anon_sym_enum] = ACTIONS(3327), + [anon_sym_fn] = ACTIONS(3327), + [anon_sym_for] = ACTIONS(3327), + [anon_sym_gen] = ACTIONS(3327), + [anon_sym_if] = ACTIONS(3327), + [anon_sym_impl] = ACTIONS(3327), + [anon_sym_let] = ACTIONS(3327), + [anon_sym_loop] = ACTIONS(3327), + [anon_sym_match] = ACTIONS(3327), + [anon_sym_mod] = ACTIONS(3327), + [anon_sym_pub] = ACTIONS(3327), + [anon_sym_return] = ACTIONS(3327), + [anon_sym_static] = ACTIONS(3327), + [anon_sym_struct] = ACTIONS(3327), + [anon_sym_trait] = ACTIONS(3327), + [anon_sym_type] = ACTIONS(3327), + [anon_sym_union] = ACTIONS(3327), + [anon_sym_unsafe] = ACTIONS(3327), + [anon_sym_use] = ACTIONS(3327), + [anon_sym_while] = ACTIONS(3327), + [anon_sym_extern] = ACTIONS(3327), + [anon_sym_yield] = ACTIONS(3327), + [anon_sym_move] = ACTIONS(3327), + [anon_sym_try] = ACTIONS(3327), + [sym_integer_literal] = ACTIONS(3325), + [aux_sym_string_literal_token1] = ACTIONS(3325), + [sym_char_literal] = ACTIONS(3325), + [anon_sym_true] = ACTIONS(3327), + [anon_sym_false] = ACTIONS(3327), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3327), + [sym_super] = ACTIONS(3327), + [sym_crate] = ACTIONS(3327), + [sym_metavariable] = ACTIONS(3325), + [sym__raw_string_literal_start] = ACTIONS(3325), + [sym_float_literal] = ACTIONS(3325), + }, + [862] = { + [sym_line_comment] = STATE(862), + [sym_block_comment] = STATE(862), + [ts_builtin_sym_end] = ACTIONS(3329), + [sym_identifier] = ACTIONS(3331), + [anon_sym_SEMI] = ACTIONS(3329), + [anon_sym_macro_rules_BANG] = ACTIONS(3329), + [anon_sym_LPAREN] = ACTIONS(3329), + [anon_sym_LBRACK] = ACTIONS(3329), + [anon_sym_LBRACE] = ACTIONS(3329), + [anon_sym_RBRACE] = ACTIONS(3329), + [anon_sym_STAR] = ACTIONS(3329), + [anon_sym_u8] = ACTIONS(3331), + [anon_sym_i8] = ACTIONS(3331), + [anon_sym_u16] = ACTIONS(3331), + [anon_sym_i16] = ACTIONS(3331), + [anon_sym_u32] = ACTIONS(3331), + [anon_sym_i32] = ACTIONS(3331), + [anon_sym_u64] = ACTIONS(3331), + [anon_sym_i64] = ACTIONS(3331), + [anon_sym_u128] = ACTIONS(3331), + [anon_sym_i128] = ACTIONS(3331), + [anon_sym_isize] = ACTIONS(3331), + [anon_sym_usize] = ACTIONS(3331), + [anon_sym_f32] = ACTIONS(3331), + [anon_sym_f64] = ACTIONS(3331), + [anon_sym_bool] = ACTIONS(3331), + [anon_sym_str] = ACTIONS(3331), + [anon_sym_char] = ACTIONS(3331), + [anon_sym_DASH] = ACTIONS(3329), + [anon_sym_BANG] = ACTIONS(3329), + [anon_sym_AMP] = ACTIONS(3329), + [anon_sym_PIPE] = ACTIONS(3329), + [anon_sym_LT] = ACTIONS(3329), + [anon_sym_DOT_DOT] = ACTIONS(3329), + [anon_sym_COLON_COLON] = ACTIONS(3329), + [anon_sym_POUND] = ACTIONS(3329), + [anon_sym_SQUOTE] = ACTIONS(3331), + [anon_sym_async] = ACTIONS(3331), + [anon_sym_break] = ACTIONS(3331), + [anon_sym_const] = ACTIONS(3331), + [anon_sym_continue] = ACTIONS(3331), + [anon_sym_default] = ACTIONS(3331), + [anon_sym_enum] = ACTIONS(3331), + [anon_sym_fn] = ACTIONS(3331), + [anon_sym_for] = ACTIONS(3331), + [anon_sym_gen] = ACTIONS(3331), + [anon_sym_if] = ACTIONS(3331), + [anon_sym_impl] = ACTIONS(3331), + [anon_sym_let] = ACTIONS(3331), + [anon_sym_loop] = ACTIONS(3331), + [anon_sym_match] = ACTIONS(3331), + [anon_sym_mod] = ACTIONS(3331), + [anon_sym_pub] = ACTIONS(3331), + [anon_sym_return] = ACTIONS(3331), + [anon_sym_static] = ACTIONS(3331), + [anon_sym_struct] = ACTIONS(3331), + [anon_sym_trait] = ACTIONS(3331), + [anon_sym_type] = ACTIONS(3331), + [anon_sym_union] = ACTIONS(3331), + [anon_sym_unsafe] = ACTIONS(3331), + [anon_sym_use] = ACTIONS(3331), + [anon_sym_while] = ACTIONS(3331), + [anon_sym_extern] = ACTIONS(3331), + [anon_sym_yield] = ACTIONS(3331), + [anon_sym_move] = ACTIONS(3331), + [anon_sym_try] = ACTIONS(3331), + [sym_integer_literal] = ACTIONS(3329), + [aux_sym_string_literal_token1] = ACTIONS(3329), + [sym_char_literal] = ACTIONS(3329), + [anon_sym_true] = ACTIONS(3331), + [anon_sym_false] = ACTIONS(3331), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3331), + [sym_super] = ACTIONS(3331), + [sym_crate] = ACTIONS(3331), + [sym_metavariable] = ACTIONS(3329), + [sym__raw_string_literal_start] = ACTIONS(3329), + [sym_float_literal] = ACTIONS(3329), + }, + [863] = { + [sym_line_comment] = STATE(863), + [sym_block_comment] = STATE(863), + [ts_builtin_sym_end] = ACTIONS(3333), + [sym_identifier] = ACTIONS(3335), + [anon_sym_SEMI] = ACTIONS(3333), + [anon_sym_macro_rules_BANG] = ACTIONS(3333), + [anon_sym_LPAREN] = ACTIONS(3333), + [anon_sym_LBRACK] = ACTIONS(3333), + [anon_sym_LBRACE] = ACTIONS(3333), + [anon_sym_RBRACE] = ACTIONS(3333), + [anon_sym_STAR] = ACTIONS(3333), + [anon_sym_u8] = ACTIONS(3335), + [anon_sym_i8] = ACTIONS(3335), + [anon_sym_u16] = ACTIONS(3335), + [anon_sym_i16] = ACTIONS(3335), + [anon_sym_u32] = ACTIONS(3335), + [anon_sym_i32] = ACTIONS(3335), + [anon_sym_u64] = ACTIONS(3335), + [anon_sym_i64] = ACTIONS(3335), + [anon_sym_u128] = ACTIONS(3335), + [anon_sym_i128] = ACTIONS(3335), + [anon_sym_isize] = ACTIONS(3335), + [anon_sym_usize] = ACTIONS(3335), + [anon_sym_f32] = ACTIONS(3335), + [anon_sym_f64] = ACTIONS(3335), + [anon_sym_bool] = ACTIONS(3335), + [anon_sym_str] = ACTIONS(3335), + [anon_sym_char] = ACTIONS(3335), + [anon_sym_DASH] = ACTIONS(3333), + [anon_sym_BANG] = ACTIONS(3333), + [anon_sym_AMP] = ACTIONS(3333), + [anon_sym_PIPE] = ACTIONS(3333), + [anon_sym_LT] = ACTIONS(3333), + [anon_sym_DOT_DOT] = ACTIONS(3333), + [anon_sym_COLON_COLON] = ACTIONS(3333), + [anon_sym_POUND] = ACTIONS(3333), + [anon_sym_SQUOTE] = ACTIONS(3335), + [anon_sym_async] = ACTIONS(3335), + [anon_sym_break] = ACTIONS(3335), + [anon_sym_const] = ACTIONS(3335), + [anon_sym_continue] = ACTIONS(3335), + [anon_sym_default] = ACTIONS(3335), + [anon_sym_enum] = ACTIONS(3335), + [anon_sym_fn] = ACTIONS(3335), + [anon_sym_for] = ACTIONS(3335), + [anon_sym_gen] = ACTIONS(3335), + [anon_sym_if] = ACTIONS(3335), + [anon_sym_impl] = ACTIONS(3335), + [anon_sym_let] = ACTIONS(3335), + [anon_sym_loop] = ACTIONS(3335), + [anon_sym_match] = ACTIONS(3335), + [anon_sym_mod] = ACTIONS(3335), + [anon_sym_pub] = ACTIONS(3335), + [anon_sym_return] = ACTIONS(3335), + [anon_sym_static] = ACTIONS(3335), + [anon_sym_struct] = ACTIONS(3335), + [anon_sym_trait] = ACTIONS(3335), + [anon_sym_type] = ACTIONS(3335), + [anon_sym_union] = ACTIONS(3335), + [anon_sym_unsafe] = ACTIONS(3335), + [anon_sym_use] = ACTIONS(3335), + [anon_sym_while] = ACTIONS(3335), + [anon_sym_extern] = ACTIONS(3335), + [anon_sym_yield] = ACTIONS(3335), + [anon_sym_move] = ACTIONS(3335), + [anon_sym_try] = ACTIONS(3335), + [sym_integer_literal] = ACTIONS(3333), + [aux_sym_string_literal_token1] = ACTIONS(3333), + [sym_char_literal] = ACTIONS(3333), + [anon_sym_true] = ACTIONS(3335), + [anon_sym_false] = ACTIONS(3335), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3335), + [sym_super] = ACTIONS(3335), + [sym_crate] = ACTIONS(3335), + [sym_metavariable] = ACTIONS(3333), + [sym__raw_string_literal_start] = ACTIONS(3333), + [sym_float_literal] = ACTIONS(3333), + }, + [864] = { + [sym_line_comment] = STATE(864), + [sym_block_comment] = STATE(864), + [ts_builtin_sym_end] = ACTIONS(3337), + [sym_identifier] = ACTIONS(3339), + [anon_sym_SEMI] = ACTIONS(3337), + [anon_sym_macro_rules_BANG] = ACTIONS(3337), + [anon_sym_LPAREN] = ACTIONS(3337), + [anon_sym_LBRACK] = ACTIONS(3337), + [anon_sym_LBRACE] = ACTIONS(3337), + [anon_sym_RBRACE] = ACTIONS(3337), + [anon_sym_STAR] = ACTIONS(3337), + [anon_sym_u8] = ACTIONS(3339), + [anon_sym_i8] = ACTIONS(3339), + [anon_sym_u16] = ACTIONS(3339), + [anon_sym_i16] = ACTIONS(3339), + [anon_sym_u32] = ACTIONS(3339), + [anon_sym_i32] = ACTIONS(3339), + [anon_sym_u64] = ACTIONS(3339), + [anon_sym_i64] = ACTIONS(3339), + [anon_sym_u128] = ACTIONS(3339), + [anon_sym_i128] = ACTIONS(3339), + [anon_sym_isize] = ACTIONS(3339), + [anon_sym_usize] = ACTIONS(3339), + [anon_sym_f32] = ACTIONS(3339), + [anon_sym_f64] = ACTIONS(3339), + [anon_sym_bool] = ACTIONS(3339), + [anon_sym_str] = ACTIONS(3339), + [anon_sym_char] = ACTIONS(3339), + [anon_sym_DASH] = ACTIONS(3337), + [anon_sym_BANG] = ACTIONS(3337), + [anon_sym_AMP] = ACTIONS(3337), + [anon_sym_PIPE] = ACTIONS(3337), + [anon_sym_LT] = ACTIONS(3337), + [anon_sym_DOT_DOT] = ACTIONS(3337), + [anon_sym_COLON_COLON] = ACTIONS(3337), + [anon_sym_POUND] = ACTIONS(3337), + [anon_sym_SQUOTE] = ACTIONS(3339), + [anon_sym_async] = ACTIONS(3339), + [anon_sym_break] = ACTIONS(3339), + [anon_sym_const] = ACTIONS(3339), + [anon_sym_continue] = ACTIONS(3339), + [anon_sym_default] = ACTIONS(3339), + [anon_sym_enum] = ACTIONS(3339), + [anon_sym_fn] = ACTIONS(3339), + [anon_sym_for] = ACTIONS(3339), + [anon_sym_gen] = ACTIONS(3339), + [anon_sym_if] = ACTIONS(3339), + [anon_sym_impl] = ACTIONS(3339), + [anon_sym_let] = ACTIONS(3339), + [anon_sym_loop] = ACTIONS(3339), + [anon_sym_match] = ACTIONS(3339), + [anon_sym_mod] = ACTIONS(3339), + [anon_sym_pub] = ACTIONS(3339), + [anon_sym_return] = ACTIONS(3339), + [anon_sym_static] = ACTIONS(3339), + [anon_sym_struct] = ACTIONS(3339), + [anon_sym_trait] = ACTIONS(3339), + [anon_sym_type] = ACTIONS(3339), + [anon_sym_union] = ACTIONS(3339), + [anon_sym_unsafe] = ACTIONS(3339), + [anon_sym_use] = ACTIONS(3339), + [anon_sym_while] = ACTIONS(3339), + [anon_sym_extern] = ACTIONS(3339), + [anon_sym_yield] = ACTIONS(3339), + [anon_sym_move] = ACTIONS(3339), + [anon_sym_try] = ACTIONS(3339), + [sym_integer_literal] = ACTIONS(3337), + [aux_sym_string_literal_token1] = ACTIONS(3337), + [sym_char_literal] = ACTIONS(3337), + [anon_sym_true] = ACTIONS(3339), + [anon_sym_false] = ACTIONS(3339), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3339), + [sym_super] = ACTIONS(3339), + [sym_crate] = ACTIONS(3339), + [sym_metavariable] = ACTIONS(3337), + [sym__raw_string_literal_start] = ACTIONS(3337), + [sym_float_literal] = ACTIONS(3337), + }, + [865] = { + [sym_line_comment] = STATE(865), + [sym_block_comment] = STATE(865), + [ts_builtin_sym_end] = ACTIONS(3341), + [sym_identifier] = ACTIONS(3343), + [anon_sym_SEMI] = ACTIONS(3341), + [anon_sym_macro_rules_BANG] = ACTIONS(3341), + [anon_sym_LPAREN] = ACTIONS(3341), + [anon_sym_LBRACK] = ACTIONS(3341), + [anon_sym_LBRACE] = ACTIONS(3341), + [anon_sym_RBRACE] = ACTIONS(3341), + [anon_sym_STAR] = ACTIONS(3341), + [anon_sym_u8] = ACTIONS(3343), + [anon_sym_i8] = ACTIONS(3343), + [anon_sym_u16] = ACTIONS(3343), + [anon_sym_i16] = ACTIONS(3343), + [anon_sym_u32] = ACTIONS(3343), + [anon_sym_i32] = ACTIONS(3343), + [anon_sym_u64] = ACTIONS(3343), + [anon_sym_i64] = ACTIONS(3343), + [anon_sym_u128] = ACTIONS(3343), + [anon_sym_i128] = ACTIONS(3343), + [anon_sym_isize] = ACTIONS(3343), + [anon_sym_usize] = ACTIONS(3343), + [anon_sym_f32] = ACTIONS(3343), + [anon_sym_f64] = ACTIONS(3343), + [anon_sym_bool] = ACTIONS(3343), + [anon_sym_str] = ACTIONS(3343), + [anon_sym_char] = ACTIONS(3343), + [anon_sym_DASH] = ACTIONS(3341), + [anon_sym_BANG] = ACTIONS(3341), + [anon_sym_AMP] = ACTIONS(3341), + [anon_sym_PIPE] = ACTIONS(3341), + [anon_sym_LT] = ACTIONS(3341), + [anon_sym_DOT_DOT] = ACTIONS(3341), + [anon_sym_COLON_COLON] = ACTIONS(3341), + [anon_sym_POUND] = ACTIONS(3341), + [anon_sym_SQUOTE] = ACTIONS(3343), + [anon_sym_async] = ACTIONS(3343), + [anon_sym_break] = ACTIONS(3343), + [anon_sym_const] = ACTIONS(3343), + [anon_sym_continue] = ACTIONS(3343), + [anon_sym_default] = ACTIONS(3343), + [anon_sym_enum] = ACTIONS(3343), + [anon_sym_fn] = ACTIONS(3343), + [anon_sym_for] = ACTIONS(3343), + [anon_sym_gen] = ACTIONS(3343), + [anon_sym_if] = ACTIONS(3343), + [anon_sym_impl] = ACTIONS(3343), + [anon_sym_let] = ACTIONS(3343), + [anon_sym_loop] = ACTIONS(3343), + [anon_sym_match] = ACTIONS(3343), + [anon_sym_mod] = ACTIONS(3343), + [anon_sym_pub] = ACTIONS(3343), + [anon_sym_return] = ACTIONS(3343), + [anon_sym_static] = ACTIONS(3343), + [anon_sym_struct] = ACTIONS(3343), + [anon_sym_trait] = ACTIONS(3343), + [anon_sym_type] = ACTIONS(3343), + [anon_sym_union] = ACTIONS(3343), + [anon_sym_unsafe] = ACTIONS(3343), + [anon_sym_use] = ACTIONS(3343), + [anon_sym_while] = ACTIONS(3343), + [anon_sym_extern] = ACTIONS(3343), + [anon_sym_yield] = ACTIONS(3343), + [anon_sym_move] = ACTIONS(3343), + [anon_sym_try] = ACTIONS(3343), + [sym_integer_literal] = ACTIONS(3341), + [aux_sym_string_literal_token1] = ACTIONS(3341), + [sym_char_literal] = ACTIONS(3341), + [anon_sym_true] = ACTIONS(3343), + [anon_sym_false] = ACTIONS(3343), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3343), + [sym_super] = ACTIONS(3343), + [sym_crate] = ACTIONS(3343), + [sym_metavariable] = ACTIONS(3341), + [sym__raw_string_literal_start] = ACTIONS(3341), + [sym_float_literal] = ACTIONS(3341), + }, + [866] = { + [sym_line_comment] = STATE(866), + [sym_block_comment] = STATE(866), + [ts_builtin_sym_end] = ACTIONS(3345), + [sym_identifier] = ACTIONS(3347), + [anon_sym_SEMI] = ACTIONS(3345), + [anon_sym_macro_rules_BANG] = ACTIONS(3345), + [anon_sym_LPAREN] = ACTIONS(3345), + [anon_sym_LBRACK] = ACTIONS(3345), + [anon_sym_LBRACE] = ACTIONS(3345), + [anon_sym_RBRACE] = ACTIONS(3345), + [anon_sym_STAR] = ACTIONS(3345), + [anon_sym_u8] = ACTIONS(3347), + [anon_sym_i8] = ACTIONS(3347), + [anon_sym_u16] = ACTIONS(3347), + [anon_sym_i16] = ACTIONS(3347), + [anon_sym_u32] = ACTIONS(3347), + [anon_sym_i32] = ACTIONS(3347), + [anon_sym_u64] = ACTIONS(3347), + [anon_sym_i64] = ACTIONS(3347), + [anon_sym_u128] = ACTIONS(3347), + [anon_sym_i128] = ACTIONS(3347), + [anon_sym_isize] = ACTIONS(3347), + [anon_sym_usize] = ACTIONS(3347), + [anon_sym_f32] = ACTIONS(3347), + [anon_sym_f64] = ACTIONS(3347), + [anon_sym_bool] = ACTIONS(3347), + [anon_sym_str] = ACTIONS(3347), + [anon_sym_char] = ACTIONS(3347), + [anon_sym_DASH] = ACTIONS(3345), + [anon_sym_BANG] = ACTIONS(3345), + [anon_sym_AMP] = ACTIONS(3345), + [anon_sym_PIPE] = ACTIONS(3345), + [anon_sym_LT] = ACTIONS(3345), + [anon_sym_DOT_DOT] = ACTIONS(3345), + [anon_sym_COLON_COLON] = ACTIONS(3345), + [anon_sym_POUND] = ACTIONS(3345), + [anon_sym_SQUOTE] = ACTIONS(3347), + [anon_sym_async] = ACTIONS(3347), + [anon_sym_break] = ACTIONS(3347), + [anon_sym_const] = ACTIONS(3347), + [anon_sym_continue] = ACTIONS(3347), + [anon_sym_default] = ACTIONS(3347), + [anon_sym_enum] = ACTIONS(3347), + [anon_sym_fn] = ACTIONS(3347), + [anon_sym_for] = ACTIONS(3347), + [anon_sym_gen] = ACTIONS(3347), + [anon_sym_if] = ACTIONS(3347), + [anon_sym_impl] = ACTIONS(3347), + [anon_sym_let] = ACTIONS(3347), + [anon_sym_loop] = ACTIONS(3347), + [anon_sym_match] = ACTIONS(3347), + [anon_sym_mod] = ACTIONS(3347), + [anon_sym_pub] = ACTIONS(3347), + [anon_sym_return] = ACTIONS(3347), + [anon_sym_static] = ACTIONS(3347), + [anon_sym_struct] = ACTIONS(3347), + [anon_sym_trait] = ACTIONS(3347), + [anon_sym_type] = ACTIONS(3347), + [anon_sym_union] = ACTIONS(3347), + [anon_sym_unsafe] = ACTIONS(3347), + [anon_sym_use] = ACTIONS(3347), + [anon_sym_while] = ACTIONS(3347), + [anon_sym_extern] = ACTIONS(3347), + [anon_sym_yield] = ACTIONS(3347), + [anon_sym_move] = ACTIONS(3347), + [anon_sym_try] = ACTIONS(3347), + [sym_integer_literal] = ACTIONS(3345), + [aux_sym_string_literal_token1] = ACTIONS(3345), + [sym_char_literal] = ACTIONS(3345), + [anon_sym_true] = ACTIONS(3347), + [anon_sym_false] = ACTIONS(3347), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3347), + [sym_super] = ACTIONS(3347), + [sym_crate] = ACTIONS(3347), + [sym_metavariable] = ACTIONS(3345), + [sym__raw_string_literal_start] = ACTIONS(3345), + [sym_float_literal] = ACTIONS(3345), + }, + [867] = { + [sym_line_comment] = STATE(867), + [sym_block_comment] = STATE(867), + [ts_builtin_sym_end] = ACTIONS(3349), + [sym_identifier] = ACTIONS(3351), + [anon_sym_SEMI] = ACTIONS(3349), + [anon_sym_macro_rules_BANG] = ACTIONS(3349), + [anon_sym_LPAREN] = ACTIONS(3349), + [anon_sym_LBRACK] = ACTIONS(3349), + [anon_sym_LBRACE] = ACTIONS(3349), + [anon_sym_RBRACE] = ACTIONS(3349), + [anon_sym_STAR] = ACTIONS(3349), + [anon_sym_u8] = ACTIONS(3351), + [anon_sym_i8] = ACTIONS(3351), + [anon_sym_u16] = ACTIONS(3351), + [anon_sym_i16] = ACTIONS(3351), + [anon_sym_u32] = ACTIONS(3351), + [anon_sym_i32] = ACTIONS(3351), + [anon_sym_u64] = ACTIONS(3351), + [anon_sym_i64] = ACTIONS(3351), + [anon_sym_u128] = ACTIONS(3351), + [anon_sym_i128] = ACTIONS(3351), + [anon_sym_isize] = ACTIONS(3351), + [anon_sym_usize] = ACTIONS(3351), + [anon_sym_f32] = ACTIONS(3351), + [anon_sym_f64] = ACTIONS(3351), + [anon_sym_bool] = ACTIONS(3351), + [anon_sym_str] = ACTIONS(3351), + [anon_sym_char] = ACTIONS(3351), + [anon_sym_DASH] = ACTIONS(3349), + [anon_sym_BANG] = ACTIONS(3349), + [anon_sym_AMP] = ACTIONS(3349), + [anon_sym_PIPE] = ACTIONS(3349), + [anon_sym_LT] = ACTIONS(3349), + [anon_sym_DOT_DOT] = ACTIONS(3349), + [anon_sym_COLON_COLON] = ACTIONS(3349), + [anon_sym_POUND] = ACTIONS(3349), + [anon_sym_SQUOTE] = ACTIONS(3351), + [anon_sym_async] = ACTIONS(3351), + [anon_sym_break] = ACTIONS(3351), + [anon_sym_const] = ACTIONS(3351), + [anon_sym_continue] = ACTIONS(3351), + [anon_sym_default] = ACTIONS(3351), + [anon_sym_enum] = ACTIONS(3351), + [anon_sym_fn] = ACTIONS(3351), + [anon_sym_for] = ACTIONS(3351), + [anon_sym_gen] = ACTIONS(3351), + [anon_sym_if] = ACTIONS(3351), + [anon_sym_impl] = ACTIONS(3351), + [anon_sym_let] = ACTIONS(3351), + [anon_sym_loop] = ACTIONS(3351), + [anon_sym_match] = ACTIONS(3351), + [anon_sym_mod] = ACTIONS(3351), + [anon_sym_pub] = ACTIONS(3351), + [anon_sym_return] = ACTIONS(3351), + [anon_sym_static] = ACTIONS(3351), + [anon_sym_struct] = ACTIONS(3351), + [anon_sym_trait] = ACTIONS(3351), + [anon_sym_type] = ACTIONS(3351), + [anon_sym_union] = ACTIONS(3351), + [anon_sym_unsafe] = ACTIONS(3351), + [anon_sym_use] = ACTIONS(3351), + [anon_sym_while] = ACTIONS(3351), + [anon_sym_extern] = ACTIONS(3351), + [anon_sym_yield] = ACTIONS(3351), + [anon_sym_move] = ACTIONS(3351), + [anon_sym_try] = ACTIONS(3351), + [sym_integer_literal] = ACTIONS(3349), + [aux_sym_string_literal_token1] = ACTIONS(3349), + [sym_char_literal] = ACTIONS(3349), + [anon_sym_true] = ACTIONS(3351), + [anon_sym_false] = ACTIONS(3351), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3351), + [sym_super] = ACTIONS(3351), + [sym_crate] = ACTIONS(3351), + [sym_metavariable] = ACTIONS(3349), + [sym__raw_string_literal_start] = ACTIONS(3349), + [sym_float_literal] = ACTIONS(3349), + }, + [868] = { + [sym_line_comment] = STATE(868), + [sym_block_comment] = STATE(868), + [ts_builtin_sym_end] = ACTIONS(3353), + [sym_identifier] = ACTIONS(3355), + [anon_sym_SEMI] = ACTIONS(3353), + [anon_sym_macro_rules_BANG] = ACTIONS(3353), + [anon_sym_LPAREN] = ACTIONS(3353), + [anon_sym_LBRACK] = ACTIONS(3353), + [anon_sym_LBRACE] = ACTIONS(3353), + [anon_sym_RBRACE] = ACTIONS(3353), + [anon_sym_STAR] = ACTIONS(3353), + [anon_sym_u8] = ACTIONS(3355), + [anon_sym_i8] = ACTIONS(3355), + [anon_sym_u16] = ACTIONS(3355), + [anon_sym_i16] = ACTIONS(3355), + [anon_sym_u32] = ACTIONS(3355), + [anon_sym_i32] = ACTIONS(3355), + [anon_sym_u64] = ACTIONS(3355), + [anon_sym_i64] = ACTIONS(3355), + [anon_sym_u128] = ACTIONS(3355), + [anon_sym_i128] = ACTIONS(3355), + [anon_sym_isize] = ACTIONS(3355), + [anon_sym_usize] = ACTIONS(3355), + [anon_sym_f32] = ACTIONS(3355), + [anon_sym_f64] = ACTIONS(3355), + [anon_sym_bool] = ACTIONS(3355), + [anon_sym_str] = ACTIONS(3355), + [anon_sym_char] = ACTIONS(3355), + [anon_sym_DASH] = ACTIONS(3353), + [anon_sym_BANG] = ACTIONS(3353), + [anon_sym_AMP] = ACTIONS(3353), + [anon_sym_PIPE] = ACTIONS(3353), + [anon_sym_LT] = ACTIONS(3353), + [anon_sym_DOT_DOT] = ACTIONS(3353), + [anon_sym_COLON_COLON] = ACTIONS(3353), + [anon_sym_POUND] = ACTIONS(3353), + [anon_sym_SQUOTE] = ACTIONS(3355), + [anon_sym_async] = ACTIONS(3355), + [anon_sym_break] = ACTIONS(3355), + [anon_sym_const] = ACTIONS(3355), + [anon_sym_continue] = ACTIONS(3355), + [anon_sym_default] = ACTIONS(3355), + [anon_sym_enum] = ACTIONS(3355), + [anon_sym_fn] = ACTIONS(3355), + [anon_sym_for] = ACTIONS(3355), + [anon_sym_gen] = ACTIONS(3355), + [anon_sym_if] = ACTIONS(3355), + [anon_sym_impl] = ACTIONS(3355), + [anon_sym_let] = ACTIONS(3355), + [anon_sym_loop] = ACTIONS(3355), + [anon_sym_match] = ACTIONS(3355), + [anon_sym_mod] = ACTIONS(3355), + [anon_sym_pub] = ACTIONS(3355), + [anon_sym_return] = ACTIONS(3355), + [anon_sym_static] = ACTIONS(3355), + [anon_sym_struct] = ACTIONS(3355), + [anon_sym_trait] = ACTIONS(3355), + [anon_sym_type] = ACTIONS(3355), + [anon_sym_union] = ACTIONS(3355), + [anon_sym_unsafe] = ACTIONS(3355), + [anon_sym_use] = ACTIONS(3355), + [anon_sym_while] = ACTIONS(3355), + [anon_sym_extern] = ACTIONS(3355), + [anon_sym_yield] = ACTIONS(3355), + [anon_sym_move] = ACTIONS(3355), + [anon_sym_try] = ACTIONS(3355), + [sym_integer_literal] = ACTIONS(3353), + [aux_sym_string_literal_token1] = ACTIONS(3353), + [sym_char_literal] = ACTIONS(3353), + [anon_sym_true] = ACTIONS(3355), + [anon_sym_false] = ACTIONS(3355), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3355), + [sym_super] = ACTIONS(3355), + [sym_crate] = ACTIONS(3355), + [sym_metavariable] = ACTIONS(3353), + [sym__raw_string_literal_start] = ACTIONS(3353), + [sym_float_literal] = ACTIONS(3353), + }, + [869] = { + [sym_line_comment] = STATE(869), + [sym_block_comment] = STATE(869), + [ts_builtin_sym_end] = ACTIONS(3357), + [sym_identifier] = ACTIONS(3359), + [anon_sym_SEMI] = ACTIONS(3357), + [anon_sym_macro_rules_BANG] = ACTIONS(3357), + [anon_sym_LPAREN] = ACTIONS(3357), + [anon_sym_LBRACK] = ACTIONS(3357), + [anon_sym_LBRACE] = ACTIONS(3357), + [anon_sym_RBRACE] = ACTIONS(3357), + [anon_sym_STAR] = ACTIONS(3357), + [anon_sym_u8] = ACTIONS(3359), + [anon_sym_i8] = ACTIONS(3359), + [anon_sym_u16] = ACTIONS(3359), + [anon_sym_i16] = ACTIONS(3359), + [anon_sym_u32] = ACTIONS(3359), + [anon_sym_i32] = ACTIONS(3359), + [anon_sym_u64] = ACTIONS(3359), + [anon_sym_i64] = ACTIONS(3359), + [anon_sym_u128] = ACTIONS(3359), + [anon_sym_i128] = ACTIONS(3359), + [anon_sym_isize] = ACTIONS(3359), + [anon_sym_usize] = ACTIONS(3359), + [anon_sym_f32] = ACTIONS(3359), + [anon_sym_f64] = ACTIONS(3359), + [anon_sym_bool] = ACTIONS(3359), + [anon_sym_str] = ACTIONS(3359), + [anon_sym_char] = ACTIONS(3359), + [anon_sym_DASH] = ACTIONS(3357), + [anon_sym_BANG] = ACTIONS(3357), + [anon_sym_AMP] = ACTIONS(3357), + [anon_sym_PIPE] = ACTIONS(3357), + [anon_sym_LT] = ACTIONS(3357), + [anon_sym_DOT_DOT] = ACTIONS(3357), + [anon_sym_COLON_COLON] = ACTIONS(3357), + [anon_sym_POUND] = ACTIONS(3357), + [anon_sym_SQUOTE] = ACTIONS(3359), + [anon_sym_async] = ACTIONS(3359), + [anon_sym_break] = ACTIONS(3359), + [anon_sym_const] = ACTIONS(3359), + [anon_sym_continue] = ACTIONS(3359), + [anon_sym_default] = ACTIONS(3359), + [anon_sym_enum] = ACTIONS(3359), + [anon_sym_fn] = ACTIONS(3359), + [anon_sym_for] = ACTIONS(3359), + [anon_sym_gen] = ACTIONS(3359), + [anon_sym_if] = ACTIONS(3359), + [anon_sym_impl] = ACTIONS(3359), + [anon_sym_let] = ACTIONS(3359), + [anon_sym_loop] = ACTIONS(3359), + [anon_sym_match] = ACTIONS(3359), + [anon_sym_mod] = ACTIONS(3359), + [anon_sym_pub] = ACTIONS(3359), + [anon_sym_return] = ACTIONS(3359), + [anon_sym_static] = ACTIONS(3359), + [anon_sym_struct] = ACTIONS(3359), + [anon_sym_trait] = ACTIONS(3359), + [anon_sym_type] = ACTIONS(3359), + [anon_sym_union] = ACTIONS(3359), + [anon_sym_unsafe] = ACTIONS(3359), + [anon_sym_use] = ACTIONS(3359), + [anon_sym_while] = ACTIONS(3359), + [anon_sym_extern] = ACTIONS(3359), + [anon_sym_yield] = ACTIONS(3359), + [anon_sym_move] = ACTIONS(3359), + [anon_sym_try] = ACTIONS(3359), + [sym_integer_literal] = ACTIONS(3357), + [aux_sym_string_literal_token1] = ACTIONS(3357), + [sym_char_literal] = ACTIONS(3357), + [anon_sym_true] = ACTIONS(3359), + [anon_sym_false] = ACTIONS(3359), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3359), + [sym_super] = ACTIONS(3359), + [sym_crate] = ACTIONS(3359), + [sym_metavariable] = ACTIONS(3357), + [sym__raw_string_literal_start] = ACTIONS(3357), + [sym_float_literal] = ACTIONS(3357), + }, + [870] = { + [sym_line_comment] = STATE(870), + [sym_block_comment] = STATE(870), + [ts_builtin_sym_end] = ACTIONS(3361), + [sym_identifier] = ACTIONS(3363), + [anon_sym_SEMI] = ACTIONS(3361), + [anon_sym_macro_rules_BANG] = ACTIONS(3361), + [anon_sym_LPAREN] = ACTIONS(3361), + [anon_sym_LBRACK] = ACTIONS(3361), + [anon_sym_LBRACE] = ACTIONS(3361), + [anon_sym_RBRACE] = ACTIONS(3361), + [anon_sym_STAR] = ACTIONS(3361), + [anon_sym_u8] = ACTIONS(3363), + [anon_sym_i8] = ACTIONS(3363), + [anon_sym_u16] = ACTIONS(3363), + [anon_sym_i16] = ACTIONS(3363), + [anon_sym_u32] = ACTIONS(3363), + [anon_sym_i32] = ACTIONS(3363), + [anon_sym_u64] = ACTIONS(3363), + [anon_sym_i64] = ACTIONS(3363), + [anon_sym_u128] = ACTIONS(3363), + [anon_sym_i128] = ACTIONS(3363), + [anon_sym_isize] = ACTIONS(3363), + [anon_sym_usize] = ACTIONS(3363), + [anon_sym_f32] = ACTIONS(3363), + [anon_sym_f64] = ACTIONS(3363), + [anon_sym_bool] = ACTIONS(3363), + [anon_sym_str] = ACTIONS(3363), + [anon_sym_char] = ACTIONS(3363), + [anon_sym_DASH] = ACTIONS(3361), + [anon_sym_BANG] = ACTIONS(3361), + [anon_sym_AMP] = ACTIONS(3361), + [anon_sym_PIPE] = ACTIONS(3361), + [anon_sym_LT] = ACTIONS(3361), + [anon_sym_DOT_DOT] = ACTIONS(3361), + [anon_sym_COLON_COLON] = ACTIONS(3361), + [anon_sym_POUND] = ACTIONS(3361), + [anon_sym_SQUOTE] = ACTIONS(3363), + [anon_sym_async] = ACTIONS(3363), + [anon_sym_break] = ACTIONS(3363), + [anon_sym_const] = ACTIONS(3363), + [anon_sym_continue] = ACTIONS(3363), + [anon_sym_default] = ACTIONS(3363), + [anon_sym_enum] = ACTIONS(3363), + [anon_sym_fn] = ACTIONS(3363), + [anon_sym_for] = ACTIONS(3363), + [anon_sym_gen] = ACTIONS(3363), + [anon_sym_if] = ACTIONS(3363), + [anon_sym_impl] = ACTIONS(3363), + [anon_sym_let] = ACTIONS(3363), + [anon_sym_loop] = ACTIONS(3363), + [anon_sym_match] = ACTIONS(3363), + [anon_sym_mod] = ACTIONS(3363), + [anon_sym_pub] = ACTIONS(3363), + [anon_sym_return] = ACTIONS(3363), + [anon_sym_static] = ACTIONS(3363), + [anon_sym_struct] = ACTIONS(3363), + [anon_sym_trait] = ACTIONS(3363), + [anon_sym_type] = ACTIONS(3363), + [anon_sym_union] = ACTIONS(3363), + [anon_sym_unsafe] = ACTIONS(3363), + [anon_sym_use] = ACTIONS(3363), + [anon_sym_while] = ACTIONS(3363), + [anon_sym_extern] = ACTIONS(3363), + [anon_sym_yield] = ACTIONS(3363), + [anon_sym_move] = ACTIONS(3363), + [anon_sym_try] = ACTIONS(3363), + [sym_integer_literal] = ACTIONS(3361), + [aux_sym_string_literal_token1] = ACTIONS(3361), + [sym_char_literal] = ACTIONS(3361), + [anon_sym_true] = ACTIONS(3363), + [anon_sym_false] = ACTIONS(3363), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3363), + [sym_super] = ACTIONS(3363), + [sym_crate] = ACTIONS(3363), + [sym_metavariable] = ACTIONS(3361), + [sym__raw_string_literal_start] = ACTIONS(3361), + [sym_float_literal] = ACTIONS(3361), + }, + [871] = { + [sym_line_comment] = STATE(871), + [sym_block_comment] = STATE(871), + [ts_builtin_sym_end] = ACTIONS(3365), + [sym_identifier] = ACTIONS(3367), + [anon_sym_SEMI] = ACTIONS(3365), + [anon_sym_macro_rules_BANG] = ACTIONS(3365), + [anon_sym_LPAREN] = ACTIONS(3365), + [anon_sym_LBRACK] = ACTIONS(3365), + [anon_sym_LBRACE] = ACTIONS(3365), + [anon_sym_RBRACE] = ACTIONS(3365), + [anon_sym_STAR] = ACTIONS(3365), + [anon_sym_u8] = ACTIONS(3367), + [anon_sym_i8] = ACTIONS(3367), + [anon_sym_u16] = ACTIONS(3367), + [anon_sym_i16] = ACTIONS(3367), + [anon_sym_u32] = ACTIONS(3367), + [anon_sym_i32] = ACTIONS(3367), + [anon_sym_u64] = ACTIONS(3367), + [anon_sym_i64] = ACTIONS(3367), + [anon_sym_u128] = ACTIONS(3367), + [anon_sym_i128] = ACTIONS(3367), + [anon_sym_isize] = ACTIONS(3367), + [anon_sym_usize] = ACTIONS(3367), + [anon_sym_f32] = ACTIONS(3367), + [anon_sym_f64] = ACTIONS(3367), + [anon_sym_bool] = ACTIONS(3367), + [anon_sym_str] = ACTIONS(3367), + [anon_sym_char] = ACTIONS(3367), + [anon_sym_DASH] = ACTIONS(3365), + [anon_sym_BANG] = ACTIONS(3365), + [anon_sym_AMP] = ACTIONS(3365), + [anon_sym_PIPE] = ACTIONS(3365), + [anon_sym_LT] = ACTIONS(3365), + [anon_sym_DOT_DOT] = ACTIONS(3365), + [anon_sym_COLON_COLON] = ACTIONS(3365), + [anon_sym_POUND] = ACTIONS(3365), + [anon_sym_SQUOTE] = ACTIONS(3367), + [anon_sym_async] = ACTIONS(3367), + [anon_sym_break] = ACTIONS(3367), + [anon_sym_const] = ACTIONS(3367), + [anon_sym_continue] = ACTIONS(3367), + [anon_sym_default] = ACTIONS(3367), + [anon_sym_enum] = ACTIONS(3367), + [anon_sym_fn] = ACTIONS(3367), + [anon_sym_for] = ACTIONS(3367), + [anon_sym_gen] = ACTIONS(3367), + [anon_sym_if] = ACTIONS(3367), + [anon_sym_impl] = ACTIONS(3367), + [anon_sym_let] = ACTIONS(3367), + [anon_sym_loop] = ACTIONS(3367), + [anon_sym_match] = ACTIONS(3367), + [anon_sym_mod] = ACTIONS(3367), + [anon_sym_pub] = ACTIONS(3367), + [anon_sym_return] = ACTIONS(3367), + [anon_sym_static] = ACTIONS(3367), + [anon_sym_struct] = ACTIONS(3367), + [anon_sym_trait] = ACTIONS(3367), + [anon_sym_type] = ACTIONS(3367), + [anon_sym_union] = ACTIONS(3367), + [anon_sym_unsafe] = ACTIONS(3367), + [anon_sym_use] = ACTIONS(3367), + [anon_sym_while] = ACTIONS(3367), + [anon_sym_extern] = ACTIONS(3367), + [anon_sym_yield] = ACTIONS(3367), + [anon_sym_move] = ACTIONS(3367), + [anon_sym_try] = ACTIONS(3367), + [sym_integer_literal] = ACTIONS(3365), + [aux_sym_string_literal_token1] = ACTIONS(3365), + [sym_char_literal] = ACTIONS(3365), + [anon_sym_true] = ACTIONS(3367), + [anon_sym_false] = ACTIONS(3367), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3367), + [sym_super] = ACTIONS(3367), + [sym_crate] = ACTIONS(3367), + [sym_metavariable] = ACTIONS(3365), + [sym__raw_string_literal_start] = ACTIONS(3365), + [sym_float_literal] = ACTIONS(3365), + }, + [872] = { + [sym_line_comment] = STATE(872), + [sym_block_comment] = STATE(872), + [ts_builtin_sym_end] = ACTIONS(3369), + [sym_identifier] = ACTIONS(3371), + [anon_sym_SEMI] = ACTIONS(3369), + [anon_sym_macro_rules_BANG] = ACTIONS(3369), + [anon_sym_LPAREN] = ACTIONS(3369), + [anon_sym_LBRACK] = ACTIONS(3369), + [anon_sym_LBRACE] = ACTIONS(3369), + [anon_sym_RBRACE] = ACTIONS(3369), + [anon_sym_STAR] = ACTIONS(3369), + [anon_sym_u8] = ACTIONS(3371), + [anon_sym_i8] = ACTIONS(3371), + [anon_sym_u16] = ACTIONS(3371), + [anon_sym_i16] = ACTIONS(3371), + [anon_sym_u32] = ACTIONS(3371), + [anon_sym_i32] = ACTIONS(3371), + [anon_sym_u64] = ACTIONS(3371), + [anon_sym_i64] = ACTIONS(3371), + [anon_sym_u128] = ACTIONS(3371), + [anon_sym_i128] = ACTIONS(3371), + [anon_sym_isize] = ACTIONS(3371), + [anon_sym_usize] = ACTIONS(3371), + [anon_sym_f32] = ACTIONS(3371), + [anon_sym_f64] = ACTIONS(3371), + [anon_sym_bool] = ACTIONS(3371), + [anon_sym_str] = ACTIONS(3371), + [anon_sym_char] = ACTIONS(3371), + [anon_sym_DASH] = ACTIONS(3369), + [anon_sym_BANG] = ACTIONS(3369), + [anon_sym_AMP] = ACTIONS(3369), + [anon_sym_PIPE] = ACTIONS(3369), + [anon_sym_LT] = ACTIONS(3369), + [anon_sym_DOT_DOT] = ACTIONS(3369), + [anon_sym_COLON_COLON] = ACTIONS(3369), + [anon_sym_POUND] = ACTIONS(3369), + [anon_sym_SQUOTE] = ACTIONS(3371), + [anon_sym_async] = ACTIONS(3371), + [anon_sym_break] = ACTIONS(3371), + [anon_sym_const] = ACTIONS(3371), + [anon_sym_continue] = ACTIONS(3371), + [anon_sym_default] = ACTIONS(3371), + [anon_sym_enum] = ACTIONS(3371), + [anon_sym_fn] = ACTIONS(3371), + [anon_sym_for] = ACTIONS(3371), + [anon_sym_gen] = ACTIONS(3371), + [anon_sym_if] = ACTIONS(3371), + [anon_sym_impl] = ACTIONS(3371), + [anon_sym_let] = ACTIONS(3371), + [anon_sym_loop] = ACTIONS(3371), + [anon_sym_match] = ACTIONS(3371), + [anon_sym_mod] = ACTIONS(3371), + [anon_sym_pub] = ACTIONS(3371), + [anon_sym_return] = ACTIONS(3371), + [anon_sym_static] = ACTIONS(3371), + [anon_sym_struct] = ACTIONS(3371), + [anon_sym_trait] = ACTIONS(3371), + [anon_sym_type] = ACTIONS(3371), + [anon_sym_union] = ACTIONS(3371), + [anon_sym_unsafe] = ACTIONS(3371), + [anon_sym_use] = ACTIONS(3371), + [anon_sym_while] = ACTIONS(3371), + [anon_sym_extern] = ACTIONS(3371), + [anon_sym_yield] = ACTIONS(3371), + [anon_sym_move] = ACTIONS(3371), + [anon_sym_try] = ACTIONS(3371), + [sym_integer_literal] = ACTIONS(3369), + [aux_sym_string_literal_token1] = ACTIONS(3369), + [sym_char_literal] = ACTIONS(3369), + [anon_sym_true] = ACTIONS(3371), + [anon_sym_false] = ACTIONS(3371), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3371), + [sym_super] = ACTIONS(3371), + [sym_crate] = ACTIONS(3371), + [sym_metavariable] = ACTIONS(3369), + [sym__raw_string_literal_start] = ACTIONS(3369), + [sym_float_literal] = ACTIONS(3369), + }, + [873] = { + [sym_line_comment] = STATE(873), + [sym_block_comment] = STATE(873), + [ts_builtin_sym_end] = ACTIONS(3373), + [sym_identifier] = ACTIONS(3375), + [anon_sym_SEMI] = ACTIONS(3373), + [anon_sym_macro_rules_BANG] = ACTIONS(3373), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_LBRACK] = ACTIONS(3373), + [anon_sym_LBRACE] = ACTIONS(3373), + [anon_sym_RBRACE] = ACTIONS(3373), + [anon_sym_STAR] = ACTIONS(3373), + [anon_sym_u8] = ACTIONS(3375), + [anon_sym_i8] = ACTIONS(3375), + [anon_sym_u16] = ACTIONS(3375), + [anon_sym_i16] = ACTIONS(3375), + [anon_sym_u32] = ACTIONS(3375), + [anon_sym_i32] = ACTIONS(3375), + [anon_sym_u64] = ACTIONS(3375), + [anon_sym_i64] = ACTIONS(3375), + [anon_sym_u128] = ACTIONS(3375), + [anon_sym_i128] = ACTIONS(3375), + [anon_sym_isize] = ACTIONS(3375), + [anon_sym_usize] = ACTIONS(3375), + [anon_sym_f32] = ACTIONS(3375), + [anon_sym_f64] = ACTIONS(3375), + [anon_sym_bool] = ACTIONS(3375), + [anon_sym_str] = ACTIONS(3375), + [anon_sym_char] = ACTIONS(3375), + [anon_sym_DASH] = ACTIONS(3373), + [anon_sym_BANG] = ACTIONS(3373), + [anon_sym_AMP] = ACTIONS(3373), + [anon_sym_PIPE] = ACTIONS(3373), + [anon_sym_LT] = ACTIONS(3373), + [anon_sym_DOT_DOT] = ACTIONS(3373), + [anon_sym_COLON_COLON] = ACTIONS(3373), + [anon_sym_POUND] = ACTIONS(3373), + [anon_sym_SQUOTE] = ACTIONS(3375), + [anon_sym_async] = ACTIONS(3375), + [anon_sym_break] = ACTIONS(3375), + [anon_sym_const] = ACTIONS(3375), + [anon_sym_continue] = ACTIONS(3375), + [anon_sym_default] = ACTIONS(3375), + [anon_sym_enum] = ACTIONS(3375), + [anon_sym_fn] = ACTIONS(3375), + [anon_sym_for] = ACTIONS(3375), + [anon_sym_gen] = ACTIONS(3375), + [anon_sym_if] = ACTIONS(3375), + [anon_sym_impl] = ACTIONS(3375), + [anon_sym_let] = ACTIONS(3375), + [anon_sym_loop] = ACTIONS(3375), + [anon_sym_match] = ACTIONS(3375), + [anon_sym_mod] = ACTIONS(3375), + [anon_sym_pub] = ACTIONS(3375), + [anon_sym_return] = ACTIONS(3375), + [anon_sym_static] = ACTIONS(3375), + [anon_sym_struct] = ACTIONS(3375), + [anon_sym_trait] = ACTIONS(3375), + [anon_sym_type] = ACTIONS(3375), + [anon_sym_union] = ACTIONS(3375), + [anon_sym_unsafe] = ACTIONS(3375), + [anon_sym_use] = ACTIONS(3375), + [anon_sym_while] = ACTIONS(3375), + [anon_sym_extern] = ACTIONS(3375), + [anon_sym_yield] = ACTIONS(3375), + [anon_sym_move] = ACTIONS(3375), + [anon_sym_try] = ACTIONS(3375), + [sym_integer_literal] = ACTIONS(3373), + [aux_sym_string_literal_token1] = ACTIONS(3373), + [sym_char_literal] = ACTIONS(3373), + [anon_sym_true] = ACTIONS(3375), + [anon_sym_false] = ACTIONS(3375), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3375), + [sym_super] = ACTIONS(3375), + [sym_crate] = ACTIONS(3375), + [sym_metavariable] = ACTIONS(3373), + [sym__raw_string_literal_start] = ACTIONS(3373), + [sym_float_literal] = ACTIONS(3373), + }, + [874] = { + [sym_bracketed_type] = STATE(3973), + [sym_generic_type] = STATE(3972), + [sym_generic_type_with_turbofish] = STATE(3591), + [sym_macro_invocation] = STATE(2409), + [sym_scoped_identifier] = STATE(2246), + [sym_scoped_type_identifier] = STATE(3197), + [sym_const_block] = STATE(2409), + [sym_closure_expression] = STATE(3270), + [sym_closure_parameters] = STATE(229), + [sym__pattern] = STATE(3032), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(874), + [sym_block_comment] = STATE(874), + [sym_identifier] = ACTIONS(3377), + [anon_sym_LPAREN] = ACTIONS(3379), + [anon_sym_RPAREN] = ACTIONS(3381), + [anon_sym_LBRACK] = ACTIONS(3383), + [anon_sym_u8] = ACTIONS(3385), + [anon_sym_i8] = ACTIONS(3385), + [anon_sym_u16] = ACTIONS(3385), + [anon_sym_i16] = ACTIONS(3385), + [anon_sym_u32] = ACTIONS(3385), + [anon_sym_i32] = ACTIONS(3385), + [anon_sym_u64] = ACTIONS(3385), + [anon_sym_i64] = ACTIONS(3385), + [anon_sym_u128] = ACTIONS(3385), + [anon_sym_i128] = ACTIONS(3385), + [anon_sym_isize] = ACTIONS(3385), + [anon_sym_usize] = ACTIONS(3385), + [anon_sym_f32] = ACTIONS(3385), + [anon_sym_f64] = ACTIONS(3385), + [anon_sym_bool] = ACTIONS(3385), + [anon_sym_str] = ACTIONS(3385), + [anon_sym_char] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_PIPE] = ACTIONS(1515), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), + [anon_sym_COMMA] = ACTIONS(1521), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_const] = ACTIONS(3391), + [anon_sym_default] = ACTIONS(3393), + [anon_sym_gen] = ACTIONS(3393), + [anon_sym_static] = ACTIONS(1523), + [anon_sym_union] = ACTIONS(3393), + [anon_sym_ref] = ACTIONS(1345), [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), + [anon_sym_move] = ACTIONS(1527), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), + [sym_self] = ACTIONS(3395), + [sym_super] = ACTIONS(3395), + [sym_crate] = ACTIONS(3395), + [sym_metavariable] = ACTIONS(3397), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), }, - [832] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(3326), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), - [sym_line_comment] = STATE(832), - [sym_block_comment] = STATE(832), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), + [875] = { + [sym_bracketed_type] = STATE(3973), + [sym_generic_type] = STATE(3972), + [sym_generic_type_with_turbofish] = STATE(3591), + [sym_macro_invocation] = STATE(2409), + [sym_scoped_identifier] = STATE(2246), + [sym_scoped_type_identifier] = STATE(3197), + [sym_const_block] = STATE(2409), + [sym_closure_expression] = STATE(3259), + [sym_closure_parameters] = STATE(229), + [sym__pattern] = STATE(3060), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(875), + [sym_block_comment] = STATE(875), + [sym_identifier] = ACTIONS(3377), + [anon_sym_LPAREN] = ACTIONS(3379), + [anon_sym_RPAREN] = ACTIONS(3399), + [anon_sym_LBRACK] = ACTIONS(3383), + [anon_sym_u8] = ACTIONS(3385), + [anon_sym_i8] = ACTIONS(3385), + [anon_sym_u16] = ACTIONS(3385), + [anon_sym_i16] = ACTIONS(3385), + [anon_sym_u32] = ACTIONS(3385), + [anon_sym_i32] = ACTIONS(3385), + [anon_sym_u64] = ACTIONS(3385), + [anon_sym_i64] = ACTIONS(3385), + [anon_sym_u128] = ACTIONS(3385), + [anon_sym_i128] = ACTIONS(3385), + [anon_sym_isize] = ACTIONS(3385), + [anon_sym_usize] = ACTIONS(3385), + [anon_sym_f32] = ACTIONS(3385), + [anon_sym_f64] = ACTIONS(3385), + [anon_sym_bool] = ACTIONS(3385), + [anon_sym_str] = ACTIONS(3385), + [anon_sym_char] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_PIPE] = ACTIONS(1515), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), + [anon_sym_COMMA] = ACTIONS(3401), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_const] = ACTIONS(3391), + [anon_sym_default] = ACTIONS(3393), + [anon_sym_gen] = ACTIONS(3393), + [anon_sym_static] = ACTIONS(1523), + [anon_sym_union] = ACTIONS(3393), + [anon_sym_ref] = ACTIONS(1345), [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), + [anon_sym_move] = ACTIONS(1527), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), + [sym_self] = ACTIONS(3395), + [sym_super] = ACTIONS(3395), + [sym_crate] = ACTIONS(3395), + [sym_metavariable] = ACTIONS(3397), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), }, - [833] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(3330), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), - [sym_line_comment] = STATE(833), - [sym_block_comment] = STATE(833), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), + [876] = { + [sym_bracketed_type] = STATE(3973), + [sym_generic_type] = STATE(3972), + [sym_generic_type_with_turbofish] = STATE(3591), + [sym_macro_invocation] = STATE(2409), + [sym_scoped_identifier] = STATE(2246), + [sym_scoped_type_identifier] = STATE(3197), + [sym_const_block] = STATE(2409), + [sym_closure_expression] = STATE(3485), + [sym_closure_parameters] = STATE(229), + [sym__pattern] = STATE(3453), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(876), + [sym_block_comment] = STATE(876), + [sym_identifier] = ACTIONS(3377), + [anon_sym_LPAREN] = ACTIONS(3379), + [anon_sym_RPAREN] = ACTIONS(3403), + [anon_sym_LBRACK] = ACTIONS(3383), + [anon_sym_u8] = ACTIONS(3385), + [anon_sym_i8] = ACTIONS(3385), + [anon_sym_u16] = ACTIONS(3385), + [anon_sym_i16] = ACTIONS(3385), + [anon_sym_u32] = ACTIONS(3385), + [anon_sym_i32] = ACTIONS(3385), + [anon_sym_u64] = ACTIONS(3385), + [anon_sym_i64] = ACTIONS(3385), + [anon_sym_u128] = ACTIONS(3385), + [anon_sym_i128] = ACTIONS(3385), + [anon_sym_isize] = ACTIONS(3385), + [anon_sym_usize] = ACTIONS(3385), + [anon_sym_f32] = ACTIONS(3385), + [anon_sym_f64] = ACTIONS(3385), + [anon_sym_bool] = ACTIONS(3385), + [anon_sym_str] = ACTIONS(3385), + [anon_sym_char] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_PIPE] = ACTIONS(1515), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_const] = ACTIONS(3391), + [anon_sym_default] = ACTIONS(3393), + [anon_sym_gen] = ACTIONS(3393), + [anon_sym_static] = ACTIONS(1523), + [anon_sym_union] = ACTIONS(3393), + [anon_sym_ref] = ACTIONS(1345), [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), + [anon_sym_move] = ACTIONS(1527), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), + [sym_self] = ACTIONS(3395), + [sym_super] = ACTIONS(3395), + [sym_crate] = ACTIONS(3395), + [sym_metavariable] = ACTIONS(3397), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), }, - [834] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(3331), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), - [sym_line_comment] = STATE(834), - [sym_block_comment] = STATE(834), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), + [877] = { + [sym_attribute_item] = STATE(1649), + [sym_inner_attribute_item] = STATE(1649), + [sym_bracketed_type] = STATE(4029), + [sym_generic_type] = STATE(3972), + [sym_generic_type_with_turbofish] = STATE(3589), + [sym_macro_invocation] = STATE(3205), + [sym_scoped_identifier] = STATE(2461), + [sym_scoped_type_identifier] = STATE(3294), + [sym_match_pattern] = STATE(3870), + [sym_const_block] = STATE(3205), + [sym__pattern] = STATE(3193), + [sym_tuple_pattern] = STATE(3205), + [sym_slice_pattern] = STATE(3205), + [sym_tuple_struct_pattern] = STATE(3205), + [sym_struct_pattern] = STATE(3205), + [sym_remaining_field_pattern] = STATE(3205), + [sym_mut_pattern] = STATE(3205), + [sym_range_pattern] = STATE(3205), + [sym_ref_pattern] = STATE(3205), + [sym_captured_pattern] = STATE(3205), + [sym_reference_pattern] = STATE(3205), + [sym_or_pattern] = STATE(3205), + [sym__literal_pattern] = STATE(2617), + [sym_negative_literal] = STATE(2620), + [sym_string_literal] = STATE(2620), + [sym_raw_string_literal] = STATE(2620), + [sym_boolean_literal] = STATE(2620), + [sym_line_comment] = STATE(877), + [sym_block_comment] = STATE(877), + [aux_sym_match_arm_repeat1] = STATE(1191), + [sym_identifier] = ACTIONS(1649), + [anon_sym_LPAREN] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_u8] = ACTIONS(1657), + [anon_sym_i8] = ACTIONS(1657), + [anon_sym_u16] = ACTIONS(1657), + [anon_sym_i16] = ACTIONS(1657), + [anon_sym_u32] = ACTIONS(1657), + [anon_sym_i32] = ACTIONS(1657), + [anon_sym_u64] = ACTIONS(1657), + [anon_sym_i64] = ACTIONS(1657), + [anon_sym_u128] = ACTIONS(1657), + [anon_sym_i128] = ACTIONS(1657), + [anon_sym_isize] = ACTIONS(1657), + [anon_sym_usize] = ACTIONS(1657), + [anon_sym_f32] = ACTIONS(1657), + [anon_sym_f64] = ACTIONS(1657), + [anon_sym_bool] = ACTIONS(1657), + [anon_sym_str] = ACTIONS(1657), + [anon_sym_char] = ACTIONS(1657), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_AMP] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(1663), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1665), + [anon_sym_DOT_DOT] = ACTIONS(1667), + [anon_sym_COLON_COLON] = ACTIONS(1669), + [anon_sym_POUND] = ACTIONS(1671), + [anon_sym_const] = ACTIONS(1673), + [anon_sym_default] = ACTIONS(1675), + [anon_sym_gen] = ACTIONS(1675), + [anon_sym_union] = ACTIONS(1675), + [anon_sym_ref] = ACTIONS(1677), + [sym_mutable_specifier] = ACTIONS(1679), + [sym_integer_literal] = ACTIONS(1681), + [aux_sym_string_literal_token1] = ACTIONS(1683), + [sym_char_literal] = ACTIONS(1681), + [anon_sym_true] = ACTIONS(1685), + [anon_sym_false] = ACTIONS(1685), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1687), + [sym_super] = ACTIONS(1687), + [sym_crate] = ACTIONS(1687), + [sym_metavariable] = ACTIONS(1689), + [sym__raw_string_literal_start] = ACTIONS(1691), + [sym_float_literal] = ACTIONS(1681), + }, + [878] = { + [sym_bracketed_type] = STATE(3973), + [sym_generic_type] = STATE(3972), + [sym_generic_type_with_turbofish] = STATE(3591), + [sym_macro_invocation] = STATE(2409), + [sym_scoped_identifier] = STATE(2246), + [sym_scoped_type_identifier] = STATE(3197), + [sym_const_block] = STATE(2409), + [sym_closure_expression] = STATE(3485), + [sym_closure_parameters] = STATE(229), + [sym__pattern] = STATE(3453), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(878), + [sym_block_comment] = STATE(878), + [sym_identifier] = ACTIONS(3377), + [anon_sym_LPAREN] = ACTIONS(3379), + [anon_sym_RPAREN] = ACTIONS(3405), + [anon_sym_LBRACK] = ACTIONS(3383), + [anon_sym_u8] = ACTIONS(3385), + [anon_sym_i8] = ACTIONS(3385), + [anon_sym_u16] = ACTIONS(3385), + [anon_sym_i16] = ACTIONS(3385), + [anon_sym_u32] = ACTIONS(3385), + [anon_sym_i32] = ACTIONS(3385), + [anon_sym_u64] = ACTIONS(3385), + [anon_sym_i64] = ACTIONS(3385), + [anon_sym_u128] = ACTIONS(3385), + [anon_sym_i128] = ACTIONS(3385), + [anon_sym_isize] = ACTIONS(3385), + [anon_sym_usize] = ACTIONS(3385), + [anon_sym_f32] = ACTIONS(3385), + [anon_sym_f64] = ACTIONS(3385), + [anon_sym_bool] = ACTIONS(3385), + [anon_sym_str] = ACTIONS(3385), + [anon_sym_char] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_PIPE] = ACTIONS(1515), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_const] = ACTIONS(3391), + [anon_sym_default] = ACTIONS(3393), + [anon_sym_gen] = ACTIONS(3393), + [anon_sym_static] = ACTIONS(1523), + [anon_sym_union] = ACTIONS(3393), + [anon_sym_ref] = ACTIONS(1345), [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), + [anon_sym_move] = ACTIONS(1527), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), + [sym_self] = ACTIONS(3395), + [sym_super] = ACTIONS(3395), + [sym_crate] = ACTIONS(3395), + [sym_metavariable] = ACTIONS(3397), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), }, - [835] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(3332), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), - [sym_line_comment] = STATE(835), - [sym_block_comment] = STATE(835), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), + [879] = { + [sym_attribute_item] = STATE(1649), + [sym_inner_attribute_item] = STATE(1649), + [sym_bracketed_type] = STATE(4029), + [sym_generic_type] = STATE(3972), + [sym_generic_type_with_turbofish] = STATE(3589), + [sym_macro_invocation] = STATE(3205), + [sym_scoped_identifier] = STATE(2461), + [sym_scoped_type_identifier] = STATE(3294), + [sym_match_pattern] = STATE(4068), + [sym_const_block] = STATE(3205), + [sym__pattern] = STATE(3193), + [sym_tuple_pattern] = STATE(3205), + [sym_slice_pattern] = STATE(3205), + [sym_tuple_struct_pattern] = STATE(3205), + [sym_struct_pattern] = STATE(3205), + [sym_remaining_field_pattern] = STATE(3205), + [sym_mut_pattern] = STATE(3205), + [sym_range_pattern] = STATE(3205), + [sym_ref_pattern] = STATE(3205), + [sym_captured_pattern] = STATE(3205), + [sym_reference_pattern] = STATE(3205), + [sym_or_pattern] = STATE(3205), + [sym__literal_pattern] = STATE(2617), + [sym_negative_literal] = STATE(2620), + [sym_string_literal] = STATE(2620), + [sym_raw_string_literal] = STATE(2620), + [sym_boolean_literal] = STATE(2620), + [sym_line_comment] = STATE(879), + [sym_block_comment] = STATE(879), + [aux_sym_match_arm_repeat1] = STATE(1191), + [sym_identifier] = ACTIONS(1649), + [anon_sym_LPAREN] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_u8] = ACTIONS(1657), + [anon_sym_i8] = ACTIONS(1657), + [anon_sym_u16] = ACTIONS(1657), + [anon_sym_i16] = ACTIONS(1657), + [anon_sym_u32] = ACTIONS(1657), + [anon_sym_i32] = ACTIONS(1657), + [anon_sym_u64] = ACTIONS(1657), + [anon_sym_i64] = ACTIONS(1657), + [anon_sym_u128] = ACTIONS(1657), + [anon_sym_i128] = ACTIONS(1657), + [anon_sym_isize] = ACTIONS(1657), + [anon_sym_usize] = ACTIONS(1657), + [anon_sym_f32] = ACTIONS(1657), + [anon_sym_f64] = ACTIONS(1657), + [anon_sym_bool] = ACTIONS(1657), + [anon_sym_str] = ACTIONS(1657), + [anon_sym_char] = ACTIONS(1657), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_AMP] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(1663), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1665), + [anon_sym_DOT_DOT] = ACTIONS(1667), + [anon_sym_COLON_COLON] = ACTIONS(1669), + [anon_sym_POUND] = ACTIONS(1671), + [anon_sym_const] = ACTIONS(1673), + [anon_sym_default] = ACTIONS(1675), + [anon_sym_gen] = ACTIONS(1675), + [anon_sym_union] = ACTIONS(1675), + [anon_sym_ref] = ACTIONS(1677), + [sym_mutable_specifier] = ACTIONS(1679), + [sym_integer_literal] = ACTIONS(1681), + [aux_sym_string_literal_token1] = ACTIONS(1683), + [sym_char_literal] = ACTIONS(1681), + [anon_sym_true] = ACTIONS(1685), + [anon_sym_false] = ACTIONS(1685), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1687), + [sym_super] = ACTIONS(1687), + [sym_crate] = ACTIONS(1687), + [sym_metavariable] = ACTIONS(1689), + [sym__raw_string_literal_start] = ACTIONS(1691), + [sym_float_literal] = ACTIONS(1681), + }, + [880] = { + [sym_bracketed_type] = STATE(3973), + [sym_generic_type] = STATE(3972), + [sym_generic_type_with_turbofish] = STATE(3591), + [sym_macro_invocation] = STATE(2409), + [sym_scoped_identifier] = STATE(2246), + [sym_scoped_type_identifier] = STATE(3197), + [sym_const_block] = STATE(2409), + [sym_closure_expression] = STATE(3485), + [sym_closure_parameters] = STATE(229), + [sym__pattern] = STATE(3453), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(880), + [sym_block_comment] = STATE(880), + [sym_identifier] = ACTIONS(3377), + [anon_sym_LPAREN] = ACTIONS(3379), + [anon_sym_RPAREN] = ACTIONS(3407), + [anon_sym_LBRACK] = ACTIONS(3383), + [anon_sym_u8] = ACTIONS(3385), + [anon_sym_i8] = ACTIONS(3385), + [anon_sym_u16] = ACTIONS(3385), + [anon_sym_i16] = ACTIONS(3385), + [anon_sym_u32] = ACTIONS(3385), + [anon_sym_i32] = ACTIONS(3385), + [anon_sym_u64] = ACTIONS(3385), + [anon_sym_i64] = ACTIONS(3385), + [anon_sym_u128] = ACTIONS(3385), + [anon_sym_i128] = ACTIONS(3385), + [anon_sym_isize] = ACTIONS(3385), + [anon_sym_usize] = ACTIONS(3385), + [anon_sym_f32] = ACTIONS(3385), + [anon_sym_f64] = ACTIONS(3385), + [anon_sym_bool] = ACTIONS(3385), + [anon_sym_str] = ACTIONS(3385), + [anon_sym_char] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_PIPE] = ACTIONS(1515), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_const] = ACTIONS(3391), + [anon_sym_default] = ACTIONS(3393), + [anon_sym_gen] = ACTIONS(3393), + [anon_sym_static] = ACTIONS(1523), + [anon_sym_union] = ACTIONS(3393), + [anon_sym_ref] = ACTIONS(1345), [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), + [anon_sym_move] = ACTIONS(1527), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), + [sym_self] = ACTIONS(3395), + [sym_super] = ACTIONS(3395), + [sym_crate] = ACTIONS(3395), + [sym_metavariable] = ACTIONS(3397), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), }, - [836] = { - [sym_bracketed_type] = STATE(3599), - [sym_generic_type] = STATE(3427), - [sym_generic_type_with_turbofish] = STATE(3337), - [sym_macro_invocation] = STATE(2136), - [sym_scoped_identifier] = STATE(1963), - [sym_scoped_type_identifier] = STATE(2790), - [sym_const_block] = STATE(2136), - [sym__pattern] = STATE(3007), - [sym_tuple_pattern] = STATE(2136), - [sym_slice_pattern] = STATE(2136), - [sym_tuple_struct_pattern] = STATE(2136), - [sym_struct_pattern] = STATE(2136), - [sym_remaining_field_pattern] = STATE(2136), - [sym_mut_pattern] = STATE(2136), - [sym_range_pattern] = STATE(2136), - [sym_ref_pattern] = STATE(2136), - [sym_captured_pattern] = STATE(2136), - [sym_reference_pattern] = STATE(2136), - [sym_or_pattern] = STATE(2136), - [sym__literal_pattern] = STATE(2025), - [sym_negative_literal] = STATE(2037), - [sym_string_literal] = STATE(2037), - [sym_raw_string_literal] = STATE(2037), - [sym_boolean_literal] = STATE(2037), - [sym_line_comment] = STATE(836), - [sym_block_comment] = STATE(836), - [sym_identifier] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_u8] = ACTIONS(2969), - [anon_sym_i8] = ACTIONS(2969), - [anon_sym_u16] = ACTIONS(2969), - [anon_sym_i16] = ACTIONS(2969), - [anon_sym_u32] = ACTIONS(2969), - [anon_sym_i32] = ACTIONS(2969), - [anon_sym_u64] = ACTIONS(2969), - [anon_sym_i64] = ACTIONS(2969), - [anon_sym_u128] = ACTIONS(2969), - [anon_sym_i128] = ACTIONS(2969), - [anon_sym_isize] = ACTIONS(2969), - [anon_sym_usize] = ACTIONS(2969), - [anon_sym_f32] = ACTIONS(2969), - [anon_sym_f64] = ACTIONS(2969), - [anon_sym_bool] = ACTIONS(2969), - [anon_sym_str] = ACTIONS(2969), - [anon_sym_char] = ACTIONS(2969), - [anon_sym_DASH] = ACTIONS(1295), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(1301), + [881] = { + [sym_bracketed_type] = STATE(3973), + [sym_generic_type] = STATE(3972), + [sym_generic_type_with_turbofish] = STATE(3591), + [sym_macro_invocation] = STATE(2409), + [sym_scoped_identifier] = STATE(2246), + [sym_scoped_type_identifier] = STATE(3197), + [sym_const_block] = STATE(2409), + [sym_closure_expression] = STATE(3485), + [sym_closure_parameters] = STATE(229), + [sym__pattern] = STATE(3453), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(881), + [sym_block_comment] = STATE(881), + [sym_identifier] = ACTIONS(3377), + [anon_sym_LPAREN] = ACTIONS(3379), + [anon_sym_RPAREN] = ACTIONS(3409), + [anon_sym_LBRACK] = ACTIONS(3383), + [anon_sym_u8] = ACTIONS(3385), + [anon_sym_i8] = ACTIONS(3385), + [anon_sym_u16] = ACTIONS(3385), + [anon_sym_i16] = ACTIONS(3385), + [anon_sym_u32] = ACTIONS(3385), + [anon_sym_i32] = ACTIONS(3385), + [anon_sym_u64] = ACTIONS(3385), + [anon_sym_i64] = ACTIONS(3385), + [anon_sym_u128] = ACTIONS(3385), + [anon_sym_i128] = ACTIONS(3385), + [anon_sym_isize] = ACTIONS(3385), + [anon_sym_usize] = ACTIONS(3385), + [anon_sym_f32] = ACTIONS(3385), + [anon_sym_f64] = ACTIONS(3385), + [anon_sym_bool] = ACTIONS(3385), + [anon_sym_str] = ACTIONS(3385), + [anon_sym_char] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_PIPE] = ACTIONS(1515), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1517), [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_COLON_COLON] = ACTIONS(2975), - [anon_sym_const] = ACTIONS(2977), - [anon_sym_default] = ACTIONS(2979), - [anon_sym_gen] = ACTIONS(2979), - [anon_sym_union] = ACTIONS(2979), - [anon_sym_ref] = ACTIONS(1333), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_const] = ACTIONS(3391), + [anon_sym_default] = ACTIONS(3393), + [anon_sym_gen] = ACTIONS(3393), + [anon_sym_static] = ACTIONS(1523), + [anon_sym_union] = ACTIONS(3393), + [anon_sym_ref] = ACTIONS(1345), [sym_mutable_specifier] = ACTIONS(1525), - [sym_integer_literal] = ACTIONS(1339), - [aux_sym_string_literal_token1] = ACTIONS(1341), - [sym_char_literal] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(1343), - [anon_sym_false] = ACTIONS(1343), + [anon_sym_move] = ACTIONS(1527), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2981), - [sym_super] = ACTIONS(2981), - [sym_crate] = ACTIONS(2981), - [sym_metavariable] = ACTIONS(2983), - [sym__raw_string_literal_start] = ACTIONS(1351), - [sym_float_literal] = ACTIONS(1339), + [sym_self] = ACTIONS(3395), + [sym_super] = ACTIONS(3395), + [sym_crate] = ACTIONS(3395), + [sym_metavariable] = ACTIONS(3397), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), }, - [837] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(3262), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(837), - [sym_block_comment] = STATE(837), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [882] = { + [sym_attribute_item] = STATE(1747), + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym_visibility_modifier] = STATE(1134), + [sym__type] = STATE(3121), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(882), + [sym_block_comment] = STATE(882), + [aux_sym_mod_item_repeat1] = STATE(899), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_RPAREN] = ACTIONS(3413), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_PLUS] = ACTIONS(3093), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -98180,135 +103849,147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), + [anon_sym_COMMA] = ACTIONS(3415), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_POUND] = ACTIONS(3417), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_pub] = ACTIONS(3421), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), - [sym_mutable_specifier] = ACTIONS(3095), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), + [sym_crate] = ACTIONS(3423), [sym_metavariable] = ACTIONS(1621), }, - [838] = { - [sym_function_modifiers] = STATE(3367), - [sym_removed_trait_bound] = STATE(1416), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1381), - [sym_bracketed_type] = STATE(3544), - [sym_lifetime] = STATE(3348), - [sym_array_type] = STATE(1416), - [sym_for_lifetimes] = STATE(1584), - [sym_function_type] = STATE(1416), - [sym_tuple_type] = STATE(1416), - [sym_unit_type] = STATE(1416), - [sym_generic_type] = STATE(1083), - [sym_generic_type_with_turbofish] = STATE(3535), - [sym_bounded_type] = STATE(1416), - [sym_reference_type] = STATE(1416), - [sym_pointer_type] = STATE(1416), - [sym_never_type] = STATE(1416), - [sym_abstract_type] = STATE(1416), - [sym_dynamic_type] = STATE(1416), - [sym_macro_invocation] = STATE(1416), - [sym_scoped_identifier] = STATE(3224), - [sym_scoped_type_identifier] = STATE(1034), - [sym_line_comment] = STATE(838), - [sym_block_comment] = STATE(838), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3097), - [anon_sym_LPAREN] = ACTIONS(3099), - [anon_sym_LBRACK] = ACTIONS(3101), - [anon_sym_PLUS] = ACTIONS(3103), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_QMARK] = ACTIONS(3107), - [anon_sym_u8] = ACTIONS(3109), - [anon_sym_i8] = ACTIONS(3109), - [anon_sym_u16] = ACTIONS(3109), - [anon_sym_i16] = ACTIONS(3109), - [anon_sym_u32] = ACTIONS(3109), - [anon_sym_i32] = ACTIONS(3109), - [anon_sym_u64] = ACTIONS(3109), - [anon_sym_i64] = ACTIONS(3109), - [anon_sym_u128] = ACTIONS(3109), - [anon_sym_i128] = ACTIONS(3109), - [anon_sym_isize] = ACTIONS(3109), - [anon_sym_usize] = ACTIONS(3109), - [anon_sym_f32] = ACTIONS(3109), - [anon_sym_f64] = ACTIONS(3109), - [anon_sym_bool] = ACTIONS(3109), - [anon_sym_str] = ACTIONS(3109), - [anon_sym_char] = ACTIONS(3109), - [anon_sym_BANG] = ACTIONS(3111), - [anon_sym_AMP] = ACTIONS(3113), + [883] = { + [sym_bracketed_type] = STATE(3973), + [sym_generic_type] = STATE(3972), + [sym_generic_type_with_turbofish] = STATE(3591), + [sym_macro_invocation] = STATE(2409), + [sym_scoped_identifier] = STATE(2246), + [sym_scoped_type_identifier] = STATE(3197), + [sym_const_block] = STATE(2409), + [sym_closure_expression] = STATE(3485), + [sym_closure_parameters] = STATE(229), + [sym__pattern] = STATE(3453), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(883), + [sym_block_comment] = STATE(883), + [sym_identifier] = ACTIONS(3377), + [anon_sym_LPAREN] = ACTIONS(3379), + [anon_sym_LBRACK] = ACTIONS(3383), + [anon_sym_u8] = ACTIONS(3385), + [anon_sym_i8] = ACTIONS(3385), + [anon_sym_u16] = ACTIONS(3385), + [anon_sym_i16] = ACTIONS(3385), + [anon_sym_u32] = ACTIONS(3385), + [anon_sym_i32] = ACTIONS(3385), + [anon_sym_u64] = ACTIONS(3385), + [anon_sym_i64] = ACTIONS(3385), + [anon_sym_u128] = ACTIONS(3385), + [anon_sym_i128] = ACTIONS(3385), + [anon_sym_isize] = ACTIONS(3385), + [anon_sym_usize] = ACTIONS(3385), + [anon_sym_f32] = ACTIONS(3385), + [anon_sym_f64] = ACTIONS(3385), + [anon_sym_bool] = ACTIONS(3385), + [anon_sym_str] = ACTIONS(3385), + [anon_sym_char] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_PIPE] = ACTIONS(1515), [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3115), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(3117), - [anon_sym_fn] = ACTIONS(3119), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(3121), - [anon_sym_impl] = ACTIONS(3123), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(3125), - [sym_mutable_specifier] = ACTIONS(3127), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_const] = ACTIONS(3391), + [anon_sym_default] = ACTIONS(3393), + [anon_sym_gen] = ACTIONS(3393), + [anon_sym_static] = ACTIONS(1523), + [anon_sym_union] = ACTIONS(3393), + [anon_sym_ref] = ACTIONS(1345), + [sym_mutable_specifier] = ACTIONS(1525), + [anon_sym_move] = ACTIONS(1527), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3129), - [sym_super] = ACTIONS(3129), - [sym_crate] = ACTIONS(3129), - [sym_metavariable] = ACTIONS(3131), + [sym_self] = ACTIONS(3395), + [sym_super] = ACTIONS(3395), + [sym_crate] = ACTIONS(3395), + [sym_metavariable] = ACTIONS(3397), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), }, - [839] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1992), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(839), - [sym_block_comment] = STATE(839), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [884] = { + [sym_attribute_item] = STATE(2189), + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_const_parameter] = STATE(3324), + [sym_constrained_type_parameter] = STATE(2951), + [sym_optional_type_parameter] = STATE(3324), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(3209), + [sym_bracketed_type] = STATE(3795), + [sym_qualified_type] = STATE(3953), + [sym_lifetime] = STATE(2706), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(884), + [sym_block_comment] = STATE(884), + [aux_sym_mod_item_repeat1] = STATE(2355), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3425), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_PLUS] = ACTIONS(3093), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -98326,62 +104007,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_POUND] = ACTIONS(3427), + [anon_sym_SQUOTE] = ACTIONS(3429), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(3431), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), - [sym_mutable_specifier] = ACTIONS(3133), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3135), + [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [sym_metavariable] = ACTIONS(3433), }, - [840] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1992), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(840), - [sym_block_comment] = STATE(840), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [885] = { + [sym_attribute_item] = STATE(1747), + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym_visibility_modifier] = STATE(999), + [sym__type] = STATE(3315), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(885), + [sym_block_comment] = STATE(885), + [aux_sym_mod_item_repeat1] = STATE(898), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_RPAREN] = ACTIONS(3435), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_PLUS] = ACTIONS(3093), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -98399,135 +104083,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_POUND] = ACTIONS(3417), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_pub] = ACTIONS(3421), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), - [sym_mutable_specifier] = ACTIONS(3137), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), + [sym_crate] = ACTIONS(3423), [sym_metavariable] = ACTIONS(1621), }, - [841] = { - [sym_function_modifiers] = STATE(3341), - [sym_removed_trait_bound] = STATE(1684), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1772), - [sym_bracketed_type] = STATE(3559), - [sym_lifetime] = STATE(3394), - [sym_array_type] = STATE(1684), - [sym_for_lifetimes] = STATE(1591), - [sym_function_type] = STATE(1684), - [sym_tuple_type] = STATE(1684), - [sym_unit_type] = STATE(1684), - [sym_generic_type] = STATE(1649), - [sym_generic_type_with_turbofish] = STATE(3551), - [sym_bounded_type] = STATE(1684), - [sym_reference_type] = STATE(1684), - [sym_pointer_type] = STATE(1684), - [sym_never_type] = STATE(1684), - [sym_abstract_type] = STATE(1684), - [sym_dynamic_type] = STATE(1684), - [sym_macro_invocation] = STATE(1684), - [sym_scoped_identifier] = STATE(3288), - [sym_scoped_type_identifier] = STATE(1548), - [sym_line_comment] = STATE(841), - [sym_block_comment] = STATE(841), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(3141), - [anon_sym_LBRACK] = ACTIONS(3143), - [anon_sym_PLUS] = ACTIONS(3145), - [anon_sym_STAR] = ACTIONS(3147), - [anon_sym_QMARK] = ACTIONS(3149), - [anon_sym_u8] = ACTIONS(3151), - [anon_sym_i8] = ACTIONS(3151), - [anon_sym_u16] = ACTIONS(3151), - [anon_sym_i16] = ACTIONS(3151), - [anon_sym_u32] = ACTIONS(3151), - [anon_sym_i32] = ACTIONS(3151), - [anon_sym_u64] = ACTIONS(3151), - [anon_sym_i64] = ACTIONS(3151), - [anon_sym_u128] = ACTIONS(3151), - [anon_sym_i128] = ACTIONS(3151), - [anon_sym_isize] = ACTIONS(3151), - [anon_sym_usize] = ACTIONS(3151), - [anon_sym_f32] = ACTIONS(3151), - [anon_sym_f64] = ACTIONS(3151), - [anon_sym_bool] = ACTIONS(3151), - [anon_sym_str] = ACTIONS(3151), - [anon_sym_char] = ACTIONS(3151), - [anon_sym_BANG] = ACTIONS(3153), - [anon_sym_AMP] = ACTIONS(3155), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3157), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(3159), - [anon_sym_fn] = ACTIONS(3161), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(3163), - [anon_sym_impl] = ACTIONS(3165), - [anon_sym_union] = ACTIONS(3163), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(3167), - [sym_mutable_specifier] = ACTIONS(3169), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3171), - [sym_super] = ACTIONS(3171), - [sym_crate] = ACTIONS(3171), - [sym_metavariable] = ACTIONS(3173), - }, - [842] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_type_parameters] = STATE(953), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2354), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(2402), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(2194), - [sym_line_comment] = STATE(842), - [sym_block_comment] = STATE(842), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3175), + [886] = { + [sym_attribute_item] = STATE(1747), + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym_visibility_modifier] = STATE(999), + [sym__type] = STATE(3315), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(886), + [sym_block_comment] = STATE(886), + [aux_sym_mod_item_repeat1] = STATE(898), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_RPAREN] = ACTIONS(3437), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -98545,61 +104160,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(3177), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(3179), + [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_POUND] = ACTIONS(3417), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_pub] = ACTIONS(3421), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), + [sym_crate] = ACTIONS(3423), [sym_metavariable] = ACTIONS(1621), }, - [843] = { - [sym_function_modifiers] = STATE(3386), - [sym_higher_ranked_trait_bound] = STATE(2166), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2169), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(2171), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(843), - [sym_block_comment] = STATE(843), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [887] = { + [sym_attribute_item] = STATE(1747), + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym_visibility_modifier] = STATE(999), + [sym__type] = STATE(3315), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(887), + [sym_block_comment] = STATE(887), + [aux_sym_mod_item_repeat1] = STATE(898), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_RPAREN] = ACTIONS(3439), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -98617,60 +104237,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_POUND] = ACTIONS(3417), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(3181), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_pub] = ACTIONS(3421), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), + [sym_crate] = ACTIONS(3423), [sym_metavariable] = ACTIONS(1621), }, - [844] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2532), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(844), - [sym_block_comment] = STATE(844), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [888] = { + [sym_attribute_item] = STATE(1747), + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym_visibility_modifier] = STATE(999), + [sym__type] = STATE(3315), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(888), + [sym_block_comment] = STATE(888), + [aux_sym_mod_item_repeat1] = STATE(898), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_RPAREN] = ACTIONS(3441), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -98688,62 +104314,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3183), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_POUND] = ACTIONS(3417), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_pub] = ACTIONS(3421), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), + [sym_crate] = ACTIONS(3423), [sym_metavariable] = ACTIONS(1621), }, - [845] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(3000), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(845), - [sym_block_comment] = STATE(845), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [889] = { + [sym_attribute_item] = STATE(1747), + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym_visibility_modifier] = STATE(999), + [sym__type] = STATE(3315), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(889), + [sym_block_comment] = STATE(889), + [aux_sym_mod_item_repeat1] = STATE(898), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(3185), + [anon_sym_RPAREN] = ACTIONS(3443), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -98761,61 +104391,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_POUND] = ACTIONS(3417), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_pub] = ACTIONS(3421), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), + [sym_crate] = ACTIONS(3423), [sym_metavariable] = ACTIONS(1621), }, - [846] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2728), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(846), - [sym_block_comment] = STATE(846), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [890] = { + [sym_attribute_item] = STATE(1747), + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym_visibility_modifier] = STATE(999), + [sym__type] = STATE(3315), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(890), + [sym_block_comment] = STATE(890), + [aux_sym_mod_item_repeat1] = STATE(898), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(3187), + [anon_sym_RPAREN] = ACTIONS(3445), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -98833,349 +104468,369 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_POUND] = ACTIONS(3417), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_pub] = ACTIONS(3421), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), + [sym_crate] = ACTIONS(3423), [sym_metavariable] = ACTIONS(1621), }, - [847] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(3000), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(847), - [sym_block_comment] = STATE(847), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(3189), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1605), + [891] = { + [sym_bracketed_type] = STATE(3973), + [sym_generic_type] = STATE(3972), + [sym_generic_type_with_turbofish] = STATE(3591), + [sym_macro_invocation] = STATE(2409), + [sym_scoped_identifier] = STATE(2246), + [sym_scoped_type_identifier] = STATE(3197), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(2961), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(891), + [sym_block_comment] = STATE(891), + [sym_identifier] = ACTIONS(3377), + [anon_sym_LPAREN] = ACTIONS(3379), + [anon_sym_RPAREN] = ACTIONS(3447), + [anon_sym_LBRACK] = ACTIONS(3383), + [anon_sym_u8] = ACTIONS(3385), + [anon_sym_i8] = ACTIONS(3385), + [anon_sym_u16] = ACTIONS(3385), + [anon_sym_i16] = ACTIONS(3385), + [anon_sym_u32] = ACTIONS(3385), + [anon_sym_i32] = ACTIONS(3385), + [anon_sym_u64] = ACTIONS(3385), + [anon_sym_i64] = ACTIONS(3385), + [anon_sym_u128] = ACTIONS(3385), + [anon_sym_i128] = ACTIONS(3385), + [anon_sym_isize] = ACTIONS(3385), + [anon_sym_usize] = ACTIONS(3385), + [anon_sym_f32] = ACTIONS(3385), + [anon_sym_f64] = ACTIONS(3385), + [anon_sym_bool] = ACTIONS(3385), + [anon_sym_str] = ACTIONS(3385), + [anon_sym_char] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_PIPE] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COMMA] = ACTIONS(3449), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_const] = ACTIONS(3391), + [anon_sym_default] = ACTIONS(3393), + [anon_sym_gen] = ACTIONS(3393), + [anon_sym_union] = ACTIONS(3393), + [anon_sym_ref] = ACTIONS(1345), + [sym_mutable_specifier] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [sym_self] = ACTIONS(3395), + [sym_super] = ACTIONS(3395), + [sym_crate] = ACTIONS(3395), + [sym_metavariable] = ACTIONS(3397), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), }, - [848] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2004), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(840), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(848), - [sym_block_comment] = STATE(848), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1605), + [892] = { + [sym_bracketed_type] = STATE(3973), + [sym_generic_type] = STATE(3972), + [sym_generic_type_with_turbofish] = STATE(3591), + [sym_macro_invocation] = STATE(2409), + [sym_scoped_identifier] = STATE(2246), + [sym_scoped_type_identifier] = STATE(3197), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(3112), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(892), + [sym_block_comment] = STATE(892), + [sym_identifier] = ACTIONS(3377), + [anon_sym_LPAREN] = ACTIONS(3379), + [anon_sym_RPAREN] = ACTIONS(3451), + [anon_sym_LBRACK] = ACTIONS(3383), + [anon_sym_u8] = ACTIONS(3385), + [anon_sym_i8] = ACTIONS(3385), + [anon_sym_u16] = ACTIONS(3385), + [anon_sym_i16] = ACTIONS(3385), + [anon_sym_u32] = ACTIONS(3385), + [anon_sym_i32] = ACTIONS(3385), + [anon_sym_u64] = ACTIONS(3385), + [anon_sym_i64] = ACTIONS(3385), + [anon_sym_u128] = ACTIONS(3385), + [anon_sym_i128] = ACTIONS(3385), + [anon_sym_isize] = ACTIONS(3385), + [anon_sym_usize] = ACTIONS(3385), + [anon_sym_f32] = ACTIONS(3385), + [anon_sym_f64] = ACTIONS(3385), + [anon_sym_bool] = ACTIONS(3385), + [anon_sym_str] = ACTIONS(3385), + [anon_sym_char] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_PIPE] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), - [sym_mutable_specifier] = ACTIONS(3191), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COMMA] = ACTIONS(3453), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_const] = ACTIONS(3391), + [anon_sym_default] = ACTIONS(3393), + [anon_sym_gen] = ACTIONS(3393), + [anon_sym_union] = ACTIONS(3393), + [anon_sym_ref] = ACTIONS(1345), + [sym_mutable_specifier] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [sym_self] = ACTIONS(3395), + [sym_super] = ACTIONS(3395), + [sym_crate] = ACTIONS(3395), + [sym_metavariable] = ACTIONS(3397), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), }, - [849] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2571), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(849), - [sym_block_comment] = STATE(849), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(3193), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1605), + [893] = { + [sym_bracketed_type] = STATE(3973), + [sym_generic_type] = STATE(3972), + [sym_generic_type_with_turbofish] = STATE(3591), + [sym_macro_invocation] = STATE(2409), + [sym_scoped_identifier] = STATE(2246), + [sym_scoped_type_identifier] = STATE(3197), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(2968), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(893), + [sym_block_comment] = STATE(893), + [sym_identifier] = ACTIONS(3377), + [anon_sym_LPAREN] = ACTIONS(3379), + [anon_sym_RPAREN] = ACTIONS(3455), + [anon_sym_LBRACK] = ACTIONS(3383), + [anon_sym_u8] = ACTIONS(3385), + [anon_sym_i8] = ACTIONS(3385), + [anon_sym_u16] = ACTIONS(3385), + [anon_sym_i16] = ACTIONS(3385), + [anon_sym_u32] = ACTIONS(3385), + [anon_sym_i32] = ACTIONS(3385), + [anon_sym_u64] = ACTIONS(3385), + [anon_sym_i64] = ACTIONS(3385), + [anon_sym_u128] = ACTIONS(3385), + [anon_sym_i128] = ACTIONS(3385), + [anon_sym_isize] = ACTIONS(3385), + [anon_sym_usize] = ACTIONS(3385), + [anon_sym_f32] = ACTIONS(3385), + [anon_sym_f64] = ACTIONS(3385), + [anon_sym_bool] = ACTIONS(3385), + [anon_sym_str] = ACTIONS(3385), + [anon_sym_char] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_PIPE] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COMMA] = ACTIONS(3457), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_const] = ACTIONS(3391), + [anon_sym_default] = ACTIONS(3393), + [anon_sym_gen] = ACTIONS(3393), + [anon_sym_union] = ACTIONS(3393), + [anon_sym_ref] = ACTIONS(1345), + [sym_mutable_specifier] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [sym_self] = ACTIONS(3395), + [sym_super] = ACTIONS(3395), + [sym_crate] = ACTIONS(3395), + [sym_metavariable] = ACTIONS(3397), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), }, - [850] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(3000), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(850), - [sym_block_comment] = STATE(850), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(3195), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1605), + [894] = { + [sym_bracketed_type] = STATE(3973), + [sym_generic_type] = STATE(3972), + [sym_generic_type_with_turbofish] = STATE(3591), + [sym_macro_invocation] = STATE(2409), + [sym_scoped_identifier] = STATE(2246), + [sym_scoped_type_identifier] = STATE(3197), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(3022), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(894), + [sym_block_comment] = STATE(894), + [sym_identifier] = ACTIONS(3377), + [anon_sym_LPAREN] = ACTIONS(3379), + [anon_sym_LBRACK] = ACTIONS(3383), + [anon_sym_RBRACK] = ACTIONS(1545), + [anon_sym_u8] = ACTIONS(3385), + [anon_sym_i8] = ACTIONS(3385), + [anon_sym_u16] = ACTIONS(3385), + [anon_sym_i16] = ACTIONS(3385), + [anon_sym_u32] = ACTIONS(3385), + [anon_sym_i32] = ACTIONS(3385), + [anon_sym_u64] = ACTIONS(3385), + [anon_sym_i64] = ACTIONS(3385), + [anon_sym_u128] = ACTIONS(3385), + [anon_sym_i128] = ACTIONS(3385), + [anon_sym_isize] = ACTIONS(3385), + [anon_sym_usize] = ACTIONS(3385), + [anon_sym_f32] = ACTIONS(3385), + [anon_sym_f64] = ACTIONS(3385), + [anon_sym_bool] = ACTIONS(3385), + [anon_sym_str] = ACTIONS(3385), + [anon_sym_char] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_PIPE] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COMMA] = ACTIONS(1551), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_const] = ACTIONS(3391), + [anon_sym_default] = ACTIONS(3393), + [anon_sym_gen] = ACTIONS(3393), + [anon_sym_union] = ACTIONS(3393), + [anon_sym_ref] = ACTIONS(1345), + [sym_mutable_specifier] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [sym_self] = ACTIONS(3395), + [sym_super] = ACTIONS(3395), + [sym_crate] = ACTIONS(3395), + [sym_metavariable] = ACTIONS(3397), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), }, - [851] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(3000), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(851), - [sym_block_comment] = STATE(851), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [895] = { + [sym_attribute_item] = STATE(1747), + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym_visibility_modifier] = STATE(999), + [sym__type] = STATE(3315), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(895), + [sym_block_comment] = STATE(895), + [aux_sym_mod_item_repeat1] = STATE(898), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(3197), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -99193,205 +104848,217 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_POUND] = ACTIONS(3417), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_pub] = ACTIONS(3421), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), + [sym_crate] = ACTIONS(3423), [sym_metavariable] = ACTIONS(1621), }, - [852] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(3000), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(852), - [sym_block_comment] = STATE(852), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(3199), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1605), + [896] = { + [sym_bracketed_type] = STATE(3973), + [sym_generic_type] = STATE(3972), + [sym_generic_type_with_turbofish] = STATE(3591), + [sym_macro_invocation] = STATE(2409), + [sym_scoped_identifier] = STATE(2246), + [sym_scoped_type_identifier] = STATE(3197), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(3113), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(896), + [sym_block_comment] = STATE(896), + [sym_identifier] = ACTIONS(3377), + [anon_sym_LPAREN] = ACTIONS(3379), + [anon_sym_RPAREN] = ACTIONS(3459), + [anon_sym_LBRACK] = ACTIONS(3383), + [anon_sym_u8] = ACTIONS(3385), + [anon_sym_i8] = ACTIONS(3385), + [anon_sym_u16] = ACTIONS(3385), + [anon_sym_i16] = ACTIONS(3385), + [anon_sym_u32] = ACTIONS(3385), + [anon_sym_i32] = ACTIONS(3385), + [anon_sym_u64] = ACTIONS(3385), + [anon_sym_i64] = ACTIONS(3385), + [anon_sym_u128] = ACTIONS(3385), + [anon_sym_i128] = ACTIONS(3385), + [anon_sym_isize] = ACTIONS(3385), + [anon_sym_usize] = ACTIONS(3385), + [anon_sym_f32] = ACTIONS(3385), + [anon_sym_f64] = ACTIONS(3385), + [anon_sym_bool] = ACTIONS(3385), + [anon_sym_str] = ACTIONS(3385), + [anon_sym_char] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_PIPE] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COMMA] = ACTIONS(3461), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_const] = ACTIONS(3391), + [anon_sym_default] = ACTIONS(3393), + [anon_sym_gen] = ACTIONS(3393), + [anon_sym_union] = ACTIONS(3393), + [anon_sym_ref] = ACTIONS(1345), + [sym_mutable_specifier] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [sym_self] = ACTIONS(3395), + [sym_super] = ACTIONS(3395), + [sym_crate] = ACTIONS(3395), + [sym_metavariable] = ACTIONS(3397), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), }, - [853] = { - [sym_function_modifiers] = STATE(3386), - [sym_higher_ranked_trait_bound] = STATE(2219), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2220), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(2224), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(853), - [sym_block_comment] = STATE(853), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1605), + [897] = { + [sym_bracketed_type] = STATE(3973), + [sym_generic_type] = STATE(3972), + [sym_generic_type_with_turbofish] = STATE(3591), + [sym_macro_invocation] = STATE(2409), + [sym_scoped_identifier] = STATE(2246), + [sym_scoped_type_identifier] = STATE(3197), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(3062), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(897), + [sym_block_comment] = STATE(897), + [sym_identifier] = ACTIONS(3377), + [anon_sym_LPAREN] = ACTIONS(3379), + [anon_sym_LBRACK] = ACTIONS(3383), + [anon_sym_RBRACK] = ACTIONS(3463), + [anon_sym_u8] = ACTIONS(3385), + [anon_sym_i8] = ACTIONS(3385), + [anon_sym_u16] = ACTIONS(3385), + [anon_sym_i16] = ACTIONS(3385), + [anon_sym_u32] = ACTIONS(3385), + [anon_sym_i32] = ACTIONS(3385), + [anon_sym_u64] = ACTIONS(3385), + [anon_sym_i64] = ACTIONS(3385), + [anon_sym_u128] = ACTIONS(3385), + [anon_sym_i128] = ACTIONS(3385), + [anon_sym_isize] = ACTIONS(3385), + [anon_sym_usize] = ACTIONS(3385), + [anon_sym_f32] = ACTIONS(3385), + [anon_sym_f64] = ACTIONS(3385), + [anon_sym_bool] = ACTIONS(3385), + [anon_sym_str] = ACTIONS(3385), + [anon_sym_char] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_PIPE] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(3181), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COMMA] = ACTIONS(3465), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_const] = ACTIONS(3391), + [anon_sym_default] = ACTIONS(3393), + [anon_sym_gen] = ACTIONS(3393), + [anon_sym_union] = ACTIONS(3393), + [anon_sym_ref] = ACTIONS(1345), + [sym_mutable_specifier] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [sym_self] = ACTIONS(3395), + [sym_super] = ACTIONS(3395), + [sym_crate] = ACTIONS(3395), + [sym_metavariable] = ACTIONS(3397), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), }, - [854] = { - [sym_function_modifiers] = STATE(3386), - [sym_higher_ranked_trait_bound] = STATE(2219), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2227), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(2228), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(854), - [sym_block_comment] = STATE(854), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [898] = { + [sym_attribute_item] = STATE(1747), + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym_visibility_modifier] = STATE(1076), + [sym__type] = STATE(3261), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(898), + [sym_block_comment] = STATE(898), + [aux_sym_mod_item_repeat1] = STATE(1527), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -99409,61 +105076,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_POUND] = ACTIONS(3417), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(3181), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_pub] = ACTIONS(3421), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), + [sym_crate] = ACTIONS(3423), [sym_metavariable] = ACTIONS(1621), }, - [855] = { - [sym_function_modifiers] = STATE(3386), - [sym_higher_ranked_trait_bound] = STATE(2219), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2227), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(2224), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(855), - [sym_block_comment] = STATE(855), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [899] = { + [sym_attribute_item] = STATE(1747), + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym_visibility_modifier] = STATE(1114), + [sym__type] = STATE(2891), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(899), + [sym_block_comment] = STATE(899), + [aux_sym_mod_item_repeat1] = STATE(1527), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -99481,2413 +105152,4147 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_POUND] = ACTIONS(3417), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(3181), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_pub] = ACTIONS(3421), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), + [sym_crate] = ACTIONS(3423), [sym_metavariable] = ACTIONS(1621), }, - [856] = { - [sym_function_modifiers] = STATE(3367), - [sym_removed_trait_bound] = STATE(1416), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1437), - [sym_bracketed_type] = STATE(3544), - [sym_lifetime] = STATE(838), - [sym_array_type] = STATE(1416), - [sym_for_lifetimes] = STATE(1584), - [sym_function_type] = STATE(1416), - [sym_tuple_type] = STATE(1416), - [sym_unit_type] = STATE(1416), - [sym_generic_type] = STATE(1083), - [sym_generic_type_with_turbofish] = STATE(3535), - [sym_bounded_type] = STATE(1416), - [sym_reference_type] = STATE(1416), - [sym_pointer_type] = STATE(1416), - [sym_never_type] = STATE(1416), - [sym_abstract_type] = STATE(1416), - [sym_dynamic_type] = STATE(1416), - [sym_macro_invocation] = STATE(1416), - [sym_scoped_identifier] = STATE(3224), - [sym_scoped_type_identifier] = STATE(1034), - [sym_line_comment] = STATE(856), - [sym_block_comment] = STATE(856), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3097), - [anon_sym_LPAREN] = ACTIONS(3099), - [anon_sym_LBRACK] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_QMARK] = ACTIONS(3107), - [anon_sym_u8] = ACTIONS(3109), - [anon_sym_i8] = ACTIONS(3109), - [anon_sym_u16] = ACTIONS(3109), - [anon_sym_i16] = ACTIONS(3109), - [anon_sym_u32] = ACTIONS(3109), - [anon_sym_i32] = ACTIONS(3109), - [anon_sym_u64] = ACTIONS(3109), - [anon_sym_i64] = ACTIONS(3109), - [anon_sym_u128] = ACTIONS(3109), - [anon_sym_i128] = ACTIONS(3109), - [anon_sym_isize] = ACTIONS(3109), - [anon_sym_usize] = ACTIONS(3109), - [anon_sym_f32] = ACTIONS(3109), - [anon_sym_f64] = ACTIONS(3109), - [anon_sym_bool] = ACTIONS(3109), - [anon_sym_str] = ACTIONS(3109), - [anon_sym_char] = ACTIONS(3109), - [anon_sym_BANG] = ACTIONS(3111), - [anon_sym_AMP] = ACTIONS(3113), + [900] = { + [sym_bracketed_type] = STATE(3973), + [sym_generic_type] = STATE(3972), + [sym_generic_type_with_turbofish] = STATE(3591), + [sym_macro_invocation] = STATE(2409), + [sym_scoped_identifier] = STATE(2246), + [sym_scoped_type_identifier] = STATE(3197), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(2958), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(900), + [sym_block_comment] = STATE(900), + [sym_identifier] = ACTIONS(3377), + [anon_sym_LPAREN] = ACTIONS(3379), + [anon_sym_RPAREN] = ACTIONS(3467), + [anon_sym_LBRACK] = ACTIONS(3383), + [anon_sym_u8] = ACTIONS(3385), + [anon_sym_i8] = ACTIONS(3385), + [anon_sym_u16] = ACTIONS(3385), + [anon_sym_i16] = ACTIONS(3385), + [anon_sym_u32] = ACTIONS(3385), + [anon_sym_i32] = ACTIONS(3385), + [anon_sym_u64] = ACTIONS(3385), + [anon_sym_i64] = ACTIONS(3385), + [anon_sym_u128] = ACTIONS(3385), + [anon_sym_i128] = ACTIONS(3385), + [anon_sym_isize] = ACTIONS(3385), + [anon_sym_usize] = ACTIONS(3385), + [anon_sym_f32] = ACTIONS(3385), + [anon_sym_f64] = ACTIONS(3385), + [anon_sym_bool] = ACTIONS(3385), + [anon_sym_str] = ACTIONS(3385), + [anon_sym_char] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_PIPE] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3115), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(3117), - [anon_sym_fn] = ACTIONS(3119), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(3121), - [anon_sym_impl] = ACTIONS(3123), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(3125), - [sym_mutable_specifier] = ACTIONS(3201), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_const] = ACTIONS(3391), + [anon_sym_default] = ACTIONS(3393), + [anon_sym_gen] = ACTIONS(3393), + [anon_sym_union] = ACTIONS(3393), + [anon_sym_ref] = ACTIONS(1345), + [sym_mutable_specifier] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3129), - [sym_super] = ACTIONS(3129), - [sym_crate] = ACTIONS(3129), - [sym_metavariable] = ACTIONS(3131), + [sym_self] = ACTIONS(3395), + [sym_super] = ACTIONS(3395), + [sym_crate] = ACTIONS(3395), + [sym_metavariable] = ACTIONS(3397), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), }, - [857] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2994), - [sym_bracketed_type] = STATE(3361), - [sym_qualified_type] = STATE(3468), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(857), - [sym_block_comment] = STATE(857), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1605), + [901] = { + [sym_bracketed_type] = STATE(3973), + [sym_generic_type] = STATE(3972), + [sym_generic_type_with_turbofish] = STATE(3591), + [sym_macro_invocation] = STATE(2409), + [sym_scoped_identifier] = STATE(2246), + [sym_scoped_type_identifier] = STATE(3197), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(2958), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(901), + [sym_block_comment] = STATE(901), + [sym_identifier] = ACTIONS(3377), + [anon_sym_LPAREN] = ACTIONS(3379), + [anon_sym_LBRACK] = ACTIONS(3383), + [anon_sym_RBRACK] = ACTIONS(3469), + [anon_sym_u8] = ACTIONS(3385), + [anon_sym_i8] = ACTIONS(3385), + [anon_sym_u16] = ACTIONS(3385), + [anon_sym_i16] = ACTIONS(3385), + [anon_sym_u32] = ACTIONS(3385), + [anon_sym_i32] = ACTIONS(3385), + [anon_sym_u64] = ACTIONS(3385), + [anon_sym_i64] = ACTIONS(3385), + [anon_sym_u128] = ACTIONS(3385), + [anon_sym_i128] = ACTIONS(3385), + [anon_sym_isize] = ACTIONS(3385), + [anon_sym_usize] = ACTIONS(3385), + [anon_sym_f32] = ACTIONS(3385), + [anon_sym_f64] = ACTIONS(3385), + [anon_sym_bool] = ACTIONS(3385), + [anon_sym_str] = ACTIONS(3385), + [anon_sym_char] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_PIPE] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_const] = ACTIONS(3391), + [anon_sym_default] = ACTIONS(3393), + [anon_sym_gen] = ACTIONS(3393), + [anon_sym_union] = ACTIONS(3393), + [anon_sym_ref] = ACTIONS(1345), + [sym_mutable_specifier] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [sym_self] = ACTIONS(3395), + [sym_super] = ACTIONS(3395), + [sym_crate] = ACTIONS(3395), + [sym_metavariable] = ACTIONS(3397), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), }, - [858] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_type_parameters] = STATE(939), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2317), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(2397), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(2192), - [sym_line_comment] = STATE(858), - [sym_block_comment] = STATE(858), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3203), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(3205), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(3179), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [902] = { + [sym_parameter] = STATE(3476), + [sym_bracketed_type] = STATE(3973), + [sym_generic_type] = STATE(3972), + [sym_generic_type_with_turbofish] = STATE(3591), + [sym_macro_invocation] = STATE(2409), + [sym_scoped_identifier] = STATE(2246), + [sym_scoped_type_identifier] = STATE(3197), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(3435), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(902), + [sym_block_comment] = STATE(902), + [sym_identifier] = ACTIONS(3377), + [anon_sym_LPAREN] = ACTIONS(3379), + [anon_sym_LBRACK] = ACTIONS(3383), + [anon_sym_u8] = ACTIONS(3385), + [anon_sym_i8] = ACTIONS(3385), + [anon_sym_u16] = ACTIONS(3385), + [anon_sym_i16] = ACTIONS(3385), + [anon_sym_u32] = ACTIONS(3385), + [anon_sym_i32] = ACTIONS(3385), + [anon_sym_u64] = ACTIONS(3385), + [anon_sym_i64] = ACTIONS(3385), + [anon_sym_u128] = ACTIONS(3385), + [anon_sym_i128] = ACTIONS(3385), + [anon_sym_isize] = ACTIONS(3385), + [anon_sym_usize] = ACTIONS(3385), + [anon_sym_f32] = ACTIONS(3385), + [anon_sym_f64] = ACTIONS(3385), + [anon_sym_bool] = ACTIONS(3385), + [anon_sym_str] = ACTIONS(3385), + [anon_sym_char] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_PIPE] = ACTIONS(1313), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_const] = ACTIONS(3391), + [anon_sym_default] = ACTIONS(3393), + [anon_sym_gen] = ACTIONS(3393), + [anon_sym_union] = ACTIONS(3393), + [anon_sym_ref] = ACTIONS(1345), + [sym_mutable_specifier] = ACTIONS(3471), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [sym_self] = ACTIONS(3473), + [sym_super] = ACTIONS(3395), + [sym_crate] = ACTIONS(3395), + [sym_metavariable] = ACTIONS(3397), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), }, - [859] = { - [sym_function_modifiers] = STATE(3341), - [sym_removed_trait_bound] = STATE(1684), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1752), - [sym_bracketed_type] = STATE(3559), - [sym_lifetime] = STATE(841), - [sym_array_type] = STATE(1684), - [sym_for_lifetimes] = STATE(1591), - [sym_function_type] = STATE(1684), - [sym_tuple_type] = STATE(1684), - [sym_unit_type] = STATE(1684), - [sym_generic_type] = STATE(1649), - [sym_generic_type_with_turbofish] = STATE(3551), - [sym_bounded_type] = STATE(1684), - [sym_reference_type] = STATE(1684), - [sym_pointer_type] = STATE(1684), - [sym_never_type] = STATE(1684), - [sym_abstract_type] = STATE(1684), - [sym_dynamic_type] = STATE(1684), - [sym_macro_invocation] = STATE(1684), - [sym_scoped_identifier] = STATE(3288), - [sym_scoped_type_identifier] = STATE(1548), - [sym_line_comment] = STATE(859), - [sym_block_comment] = STATE(859), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(3141), - [anon_sym_LBRACK] = ACTIONS(3143), - [anon_sym_STAR] = ACTIONS(3147), - [anon_sym_QMARK] = ACTIONS(3149), - [anon_sym_u8] = ACTIONS(3151), - [anon_sym_i8] = ACTIONS(3151), - [anon_sym_u16] = ACTIONS(3151), - [anon_sym_i16] = ACTIONS(3151), - [anon_sym_u32] = ACTIONS(3151), - [anon_sym_i32] = ACTIONS(3151), - [anon_sym_u64] = ACTIONS(3151), - [anon_sym_i64] = ACTIONS(3151), - [anon_sym_u128] = ACTIONS(3151), - [anon_sym_i128] = ACTIONS(3151), - [anon_sym_isize] = ACTIONS(3151), - [anon_sym_usize] = ACTIONS(3151), - [anon_sym_f32] = ACTIONS(3151), - [anon_sym_f64] = ACTIONS(3151), - [anon_sym_bool] = ACTIONS(3151), - [anon_sym_str] = ACTIONS(3151), - [anon_sym_char] = ACTIONS(3151), - [anon_sym_BANG] = ACTIONS(3153), - [anon_sym_AMP] = ACTIONS(3155), + [903] = { + [sym_bracketed_type] = STATE(3973), + [sym_generic_type] = STATE(3972), + [sym_generic_type_with_turbofish] = STATE(3591), + [sym_macro_invocation] = STATE(2409), + [sym_scoped_identifier] = STATE(2246), + [sym_scoped_type_identifier] = STATE(3197), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(2958), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(903), + [sym_block_comment] = STATE(903), + [sym_identifier] = ACTIONS(3377), + [anon_sym_LPAREN] = ACTIONS(3379), + [anon_sym_RPAREN] = ACTIONS(3475), + [anon_sym_LBRACK] = ACTIONS(3383), + [anon_sym_u8] = ACTIONS(3385), + [anon_sym_i8] = ACTIONS(3385), + [anon_sym_u16] = ACTIONS(3385), + [anon_sym_i16] = ACTIONS(3385), + [anon_sym_u32] = ACTIONS(3385), + [anon_sym_i32] = ACTIONS(3385), + [anon_sym_u64] = ACTIONS(3385), + [anon_sym_i64] = ACTIONS(3385), + [anon_sym_u128] = ACTIONS(3385), + [anon_sym_i128] = ACTIONS(3385), + [anon_sym_isize] = ACTIONS(3385), + [anon_sym_usize] = ACTIONS(3385), + [anon_sym_f32] = ACTIONS(3385), + [anon_sym_f64] = ACTIONS(3385), + [anon_sym_bool] = ACTIONS(3385), + [anon_sym_str] = ACTIONS(3385), + [anon_sym_char] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_PIPE] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3157), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(3159), - [anon_sym_fn] = ACTIONS(3161), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(3163), - [anon_sym_impl] = ACTIONS(3165), - [anon_sym_union] = ACTIONS(3163), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(3167), - [sym_mutable_specifier] = ACTIONS(3207), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_const] = ACTIONS(3391), + [anon_sym_default] = ACTIONS(3393), + [anon_sym_gen] = ACTIONS(3393), + [anon_sym_union] = ACTIONS(3393), + [anon_sym_ref] = ACTIONS(1345), + [sym_mutable_specifier] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3171), - [sym_super] = ACTIONS(3171), - [sym_crate] = ACTIONS(3171), - [sym_metavariable] = ACTIONS(3173), + [sym_self] = ACTIONS(3395), + [sym_super] = ACTIONS(3395), + [sym_crate] = ACTIONS(3395), + [sym_metavariable] = ACTIONS(3397), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), }, - [860] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_type_parameters] = STATE(955), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2394), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(2398), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(2152), - [sym_line_comment] = STATE(860), - [sym_block_comment] = STATE(860), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3209), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(3211), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(3179), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [904] = { + [sym_bracketed_type] = STATE(3973), + [sym_generic_type] = STATE(3972), + [sym_generic_type_with_turbofish] = STATE(3591), + [sym_macro_invocation] = STATE(2409), + [sym_scoped_identifier] = STATE(2246), + [sym_scoped_type_identifier] = STATE(3197), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(2958), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(904), + [sym_block_comment] = STATE(904), + [sym_identifier] = ACTIONS(3377), + [anon_sym_LPAREN] = ACTIONS(3379), + [anon_sym_RPAREN] = ACTIONS(3477), + [anon_sym_LBRACK] = ACTIONS(3383), + [anon_sym_u8] = ACTIONS(3385), + [anon_sym_i8] = ACTIONS(3385), + [anon_sym_u16] = ACTIONS(3385), + [anon_sym_i16] = ACTIONS(3385), + [anon_sym_u32] = ACTIONS(3385), + [anon_sym_i32] = ACTIONS(3385), + [anon_sym_u64] = ACTIONS(3385), + [anon_sym_i64] = ACTIONS(3385), + [anon_sym_u128] = ACTIONS(3385), + [anon_sym_i128] = ACTIONS(3385), + [anon_sym_isize] = ACTIONS(3385), + [anon_sym_usize] = ACTIONS(3385), + [anon_sym_f32] = ACTIONS(3385), + [anon_sym_f64] = ACTIONS(3385), + [anon_sym_bool] = ACTIONS(3385), + [anon_sym_str] = ACTIONS(3385), + [anon_sym_char] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_PIPE] = ACTIONS(1313), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_const] = ACTIONS(3391), + [anon_sym_default] = ACTIONS(3393), + [anon_sym_gen] = ACTIONS(3393), + [anon_sym_union] = ACTIONS(3393), + [anon_sym_ref] = ACTIONS(1345), + [sym_mutable_specifier] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [sym_self] = ACTIONS(3395), + [sym_super] = ACTIONS(3395), + [sym_crate] = ACTIONS(3395), + [sym_metavariable] = ACTIONS(3397), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), }, - [861] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_type_parameters] = STATE(889), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2312), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(2315), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(2167), - [sym_line_comment] = STATE(861), - [sym_block_comment] = STATE(861), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3213), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(3215), - [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(3179), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [905] = { + [sym_bracketed_type] = STATE(3973), + [sym_generic_type] = STATE(3972), + [sym_generic_type_with_turbofish] = STATE(3591), + [sym_macro_invocation] = STATE(2409), + [sym_scoped_identifier] = STATE(2246), + [sym_scoped_type_identifier] = STATE(3197), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(2958), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(905), + [sym_block_comment] = STATE(905), + [sym_identifier] = ACTIONS(3377), + [anon_sym_LPAREN] = ACTIONS(3379), + [anon_sym_LBRACK] = ACTIONS(3383), + [anon_sym_RBRACK] = ACTIONS(3479), + [anon_sym_u8] = ACTIONS(3385), + [anon_sym_i8] = ACTIONS(3385), + [anon_sym_u16] = ACTIONS(3385), + [anon_sym_i16] = ACTIONS(3385), + [anon_sym_u32] = ACTIONS(3385), + [anon_sym_i32] = ACTIONS(3385), + [anon_sym_u64] = ACTIONS(3385), + [anon_sym_i64] = ACTIONS(3385), + [anon_sym_u128] = ACTIONS(3385), + [anon_sym_i128] = ACTIONS(3385), + [anon_sym_isize] = ACTIONS(3385), + [anon_sym_usize] = ACTIONS(3385), + [anon_sym_f32] = ACTIONS(3385), + [anon_sym_f64] = ACTIONS(3385), + [anon_sym_bool] = ACTIONS(3385), + [anon_sym_str] = ACTIONS(3385), + [anon_sym_char] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_PIPE] = ACTIONS(1313), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_const] = ACTIONS(3391), + [anon_sym_default] = ACTIONS(3393), + [anon_sym_gen] = ACTIONS(3393), + [anon_sym_union] = ACTIONS(3393), + [anon_sym_ref] = ACTIONS(1345), + [sym_mutable_specifier] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [sym_self] = ACTIONS(3395), + [sym_super] = ACTIONS(3395), + [sym_crate] = ACTIONS(3395), + [sym_metavariable] = ACTIONS(3397), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), }, - [862] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(3000), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(862), - [sym_block_comment] = STATE(862), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1605), + [906] = { + [sym_parameter] = STATE(3196), + [sym_bracketed_type] = STATE(3973), + [sym_generic_type] = STATE(3972), + [sym_generic_type_with_turbofish] = STATE(3591), + [sym_macro_invocation] = STATE(2409), + [sym_scoped_identifier] = STATE(2246), + [sym_scoped_type_identifier] = STATE(3197), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(2812), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(906), + [sym_block_comment] = STATE(906), + [sym_identifier] = ACTIONS(3377), + [anon_sym_LPAREN] = ACTIONS(3379), + [anon_sym_LBRACK] = ACTIONS(3383), + [anon_sym_u8] = ACTIONS(3385), + [anon_sym_i8] = ACTIONS(3385), + [anon_sym_u16] = ACTIONS(3385), + [anon_sym_i16] = ACTIONS(3385), + [anon_sym_u32] = ACTIONS(3385), + [anon_sym_i32] = ACTIONS(3385), + [anon_sym_u64] = ACTIONS(3385), + [anon_sym_i64] = ACTIONS(3385), + [anon_sym_u128] = ACTIONS(3385), + [anon_sym_i128] = ACTIONS(3385), + [anon_sym_isize] = ACTIONS(3385), + [anon_sym_usize] = ACTIONS(3385), + [anon_sym_f32] = ACTIONS(3385), + [anon_sym_f64] = ACTIONS(3385), + [anon_sym_bool] = ACTIONS(3385), + [anon_sym_str] = ACTIONS(3385), + [anon_sym_char] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_PIPE] = ACTIONS(3481), [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_const] = ACTIONS(3391), + [anon_sym_default] = ACTIONS(3393), + [anon_sym_gen] = ACTIONS(3393), + [anon_sym_union] = ACTIONS(3393), + [anon_sym_ref] = ACTIONS(1345), + [sym_mutable_specifier] = ACTIONS(3471), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [sym_self] = ACTIONS(3473), + [sym_super] = ACTIONS(3395), + [sym_crate] = ACTIONS(3395), + [sym_metavariable] = ACTIONS(3397), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), }, - [863] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2747), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(863), - [sym_block_comment] = STATE(863), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(3219), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1605), + [907] = { + [sym_bracketed_type] = STATE(3973), + [sym_generic_type] = STATE(3972), + [sym_generic_type_with_turbofish] = STATE(3591), + [sym_macro_invocation] = STATE(2409), + [sym_scoped_identifier] = STATE(2246), + [sym_scoped_type_identifier] = STATE(3197), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(2958), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(907), + [sym_block_comment] = STATE(907), + [sym_identifier] = ACTIONS(3377), + [anon_sym_LPAREN] = ACTIONS(3379), + [anon_sym_RPAREN] = ACTIONS(3483), + [anon_sym_LBRACK] = ACTIONS(3383), + [anon_sym_u8] = ACTIONS(3385), + [anon_sym_i8] = ACTIONS(3385), + [anon_sym_u16] = ACTIONS(3385), + [anon_sym_i16] = ACTIONS(3385), + [anon_sym_u32] = ACTIONS(3385), + [anon_sym_i32] = ACTIONS(3385), + [anon_sym_u64] = ACTIONS(3385), + [anon_sym_i64] = ACTIONS(3385), + [anon_sym_u128] = ACTIONS(3385), + [anon_sym_i128] = ACTIONS(3385), + [anon_sym_isize] = ACTIONS(3385), + [anon_sym_usize] = ACTIONS(3385), + [anon_sym_f32] = ACTIONS(3385), + [anon_sym_f64] = ACTIONS(3385), + [anon_sym_bool] = ACTIONS(3385), + [anon_sym_str] = ACTIONS(3385), + [anon_sym_char] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_PIPE] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_const] = ACTIONS(3391), + [anon_sym_default] = ACTIONS(3393), + [anon_sym_gen] = ACTIONS(3393), + [anon_sym_union] = ACTIONS(3393), + [anon_sym_ref] = ACTIONS(1345), + [sym_mutable_specifier] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [sym_self] = ACTIONS(3395), + [sym_super] = ACTIONS(3395), + [sym_crate] = ACTIONS(3395), + [sym_metavariable] = ACTIONS(3397), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), }, - [864] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(3117), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(837), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(864), - [sym_block_comment] = STATE(864), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1605), + [908] = { + [sym_bracketed_type] = STATE(3973), + [sym_generic_type] = STATE(3972), + [sym_generic_type_with_turbofish] = STATE(3591), + [sym_macro_invocation] = STATE(2409), + [sym_scoped_identifier] = STATE(2246), + [sym_scoped_type_identifier] = STATE(3197), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(2958), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(908), + [sym_block_comment] = STATE(908), + [sym_identifier] = ACTIONS(3377), + [anon_sym_LPAREN] = ACTIONS(3379), + [anon_sym_RPAREN] = ACTIONS(3485), + [anon_sym_LBRACK] = ACTIONS(3383), + [anon_sym_u8] = ACTIONS(3385), + [anon_sym_i8] = ACTIONS(3385), + [anon_sym_u16] = ACTIONS(3385), + [anon_sym_i16] = ACTIONS(3385), + [anon_sym_u32] = ACTIONS(3385), + [anon_sym_i32] = ACTIONS(3385), + [anon_sym_u64] = ACTIONS(3385), + [anon_sym_i64] = ACTIONS(3385), + [anon_sym_u128] = ACTIONS(3385), + [anon_sym_i128] = ACTIONS(3385), + [anon_sym_isize] = ACTIONS(3385), + [anon_sym_usize] = ACTIONS(3385), + [anon_sym_f32] = ACTIONS(3385), + [anon_sym_f64] = ACTIONS(3385), + [anon_sym_bool] = ACTIONS(3385), + [anon_sym_str] = ACTIONS(3385), + [anon_sym_char] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_PIPE] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), - [sym_mutable_specifier] = ACTIONS(3221), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_const] = ACTIONS(3391), + [anon_sym_default] = ACTIONS(3393), + [anon_sym_gen] = ACTIONS(3393), + [anon_sym_union] = ACTIONS(3393), + [anon_sym_ref] = ACTIONS(1345), + [sym_mutable_specifier] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [sym_self] = ACTIONS(3395), + [sym_super] = ACTIONS(3395), + [sym_crate] = ACTIONS(3395), + [sym_metavariable] = ACTIONS(3397), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), }, - [865] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2661), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(865), - [sym_block_comment] = STATE(865), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1605), + [909] = { + [sym_bracketed_type] = STATE(3973), + [sym_generic_type] = STATE(3972), + [sym_generic_type_with_turbofish] = STATE(3591), + [sym_macro_invocation] = STATE(2409), + [sym_scoped_identifier] = STATE(2246), + [sym_scoped_type_identifier] = STATE(3197), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(2958), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(909), + [sym_block_comment] = STATE(909), + [sym_identifier] = ACTIONS(3377), + [anon_sym_LPAREN] = ACTIONS(3379), + [anon_sym_LBRACK] = ACTIONS(3383), + [anon_sym_RBRACK] = ACTIONS(3487), + [anon_sym_u8] = ACTIONS(3385), + [anon_sym_i8] = ACTIONS(3385), + [anon_sym_u16] = ACTIONS(3385), + [anon_sym_i16] = ACTIONS(3385), + [anon_sym_u32] = ACTIONS(3385), + [anon_sym_i32] = ACTIONS(3385), + [anon_sym_u64] = ACTIONS(3385), + [anon_sym_i64] = ACTIONS(3385), + [anon_sym_u128] = ACTIONS(3385), + [anon_sym_i128] = ACTIONS(3385), + [anon_sym_isize] = ACTIONS(3385), + [anon_sym_usize] = ACTIONS(3385), + [anon_sym_f32] = ACTIONS(3385), + [anon_sym_f64] = ACTIONS(3385), + [anon_sym_bool] = ACTIONS(3385), + [anon_sym_str] = ACTIONS(3385), + [anon_sym_char] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_PIPE] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3223), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_const] = ACTIONS(3391), + [anon_sym_default] = ACTIONS(3393), + [anon_sym_gen] = ACTIONS(3393), + [anon_sym_union] = ACTIONS(3393), + [anon_sym_ref] = ACTIONS(1345), + [sym_mutable_specifier] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [sym_self] = ACTIONS(3395), + [sym_super] = ACTIONS(3395), + [sym_crate] = ACTIONS(3395), + [sym_metavariable] = ACTIONS(3397), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), }, - [866] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2576), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(866), - [sym_block_comment] = STATE(866), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1605), + [910] = { + [sym_bracketed_type] = STATE(3973), + [sym_generic_type] = STATE(3972), + [sym_generic_type_with_turbofish] = STATE(3591), + [sym_macro_invocation] = STATE(2409), + [sym_scoped_identifier] = STATE(2246), + [sym_scoped_type_identifier] = STATE(3197), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(2958), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(910), + [sym_block_comment] = STATE(910), + [sym_identifier] = ACTIONS(3377), + [anon_sym_LPAREN] = ACTIONS(3379), + [anon_sym_RPAREN] = ACTIONS(3489), + [anon_sym_LBRACK] = ACTIONS(3383), + [anon_sym_u8] = ACTIONS(3385), + [anon_sym_i8] = ACTIONS(3385), + [anon_sym_u16] = ACTIONS(3385), + [anon_sym_i16] = ACTIONS(3385), + [anon_sym_u32] = ACTIONS(3385), + [anon_sym_i32] = ACTIONS(3385), + [anon_sym_u64] = ACTIONS(3385), + [anon_sym_i64] = ACTIONS(3385), + [anon_sym_u128] = ACTIONS(3385), + [anon_sym_i128] = ACTIONS(3385), + [anon_sym_isize] = ACTIONS(3385), + [anon_sym_usize] = ACTIONS(3385), + [anon_sym_f32] = ACTIONS(3385), + [anon_sym_f64] = ACTIONS(3385), + [anon_sym_bool] = ACTIONS(3385), + [anon_sym_str] = ACTIONS(3385), + [anon_sym_char] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_PIPE] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_const] = ACTIONS(3391), + [anon_sym_default] = ACTIONS(3393), + [anon_sym_gen] = ACTIONS(3393), + [anon_sym_union] = ACTIONS(3393), + [anon_sym_ref] = ACTIONS(1345), + [sym_mutable_specifier] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [sym_self] = ACTIONS(3395), + [sym_super] = ACTIONS(3395), + [sym_crate] = ACTIONS(3395), + [sym_metavariable] = ACTIONS(3397), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), }, - [867] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(3129), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(867), - [sym_block_comment] = STATE(867), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1605), + [911] = { + [sym_bracketed_type] = STATE(3973), + [sym_generic_type] = STATE(3972), + [sym_generic_type_with_turbofish] = STATE(3591), + [sym_macro_invocation] = STATE(2409), + [sym_scoped_identifier] = STATE(2246), + [sym_scoped_type_identifier] = STATE(3197), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(2958), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(911), + [sym_block_comment] = STATE(911), + [sym_identifier] = ACTIONS(3377), + [anon_sym_LPAREN] = ACTIONS(3379), + [anon_sym_RPAREN] = ACTIONS(3491), + [anon_sym_LBRACK] = ACTIONS(3383), + [anon_sym_u8] = ACTIONS(3385), + [anon_sym_i8] = ACTIONS(3385), + [anon_sym_u16] = ACTIONS(3385), + [anon_sym_i16] = ACTIONS(3385), + [anon_sym_u32] = ACTIONS(3385), + [anon_sym_i32] = ACTIONS(3385), + [anon_sym_u64] = ACTIONS(3385), + [anon_sym_i64] = ACTIONS(3385), + [anon_sym_u128] = ACTIONS(3385), + [anon_sym_i128] = ACTIONS(3385), + [anon_sym_isize] = ACTIONS(3385), + [anon_sym_usize] = ACTIONS(3385), + [anon_sym_f32] = ACTIONS(3385), + [anon_sym_f64] = ACTIONS(3385), + [anon_sym_bool] = ACTIONS(3385), + [anon_sym_str] = ACTIONS(3385), + [anon_sym_char] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_PIPE] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_const] = ACTIONS(3391), + [anon_sym_default] = ACTIONS(3393), + [anon_sym_gen] = ACTIONS(3393), + [anon_sym_union] = ACTIONS(3393), + [anon_sym_ref] = ACTIONS(1345), + [sym_mutable_specifier] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [sym_self] = ACTIONS(3395), + [sym_super] = ACTIONS(3395), + [sym_crate] = ACTIONS(3395), + [sym_metavariable] = ACTIONS(3397), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), }, - [868] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2930), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(868), - [sym_block_comment] = STATE(868), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1605), + [912] = { + [sym_bracketed_type] = STATE(3973), + [sym_generic_type] = STATE(3972), + [sym_generic_type_with_turbofish] = STATE(3591), + [sym_macro_invocation] = STATE(2409), + [sym_scoped_identifier] = STATE(2246), + [sym_scoped_type_identifier] = STATE(3197), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(2958), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(912), + [sym_block_comment] = STATE(912), + [sym_identifier] = ACTIONS(3377), + [anon_sym_LPAREN] = ACTIONS(3379), + [anon_sym_RPAREN] = ACTIONS(3493), + [anon_sym_LBRACK] = ACTIONS(3383), + [anon_sym_u8] = ACTIONS(3385), + [anon_sym_i8] = ACTIONS(3385), + [anon_sym_u16] = ACTIONS(3385), + [anon_sym_i16] = ACTIONS(3385), + [anon_sym_u32] = ACTIONS(3385), + [anon_sym_i32] = ACTIONS(3385), + [anon_sym_u64] = ACTIONS(3385), + [anon_sym_i64] = ACTIONS(3385), + [anon_sym_u128] = ACTIONS(3385), + [anon_sym_i128] = ACTIONS(3385), + [anon_sym_isize] = ACTIONS(3385), + [anon_sym_usize] = ACTIONS(3385), + [anon_sym_f32] = ACTIONS(3385), + [anon_sym_f64] = ACTIONS(3385), + [anon_sym_bool] = ACTIONS(3385), + [anon_sym_str] = ACTIONS(3385), + [anon_sym_char] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_PIPE] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_const] = ACTIONS(3391), + [anon_sym_default] = ACTIONS(3393), + [anon_sym_gen] = ACTIONS(3393), + [anon_sym_union] = ACTIONS(3393), + [anon_sym_ref] = ACTIONS(1345), + [sym_mutable_specifier] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [sym_self] = ACTIONS(3395), + [sym_super] = ACTIONS(3395), + [sym_crate] = ACTIONS(3395), + [sym_metavariable] = ACTIONS(3397), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), }, - [869] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(3262), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(869), - [sym_block_comment] = STATE(869), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1605), + [913] = { + [sym_bracketed_type] = STATE(3973), + [sym_generic_type] = STATE(3972), + [sym_generic_type_with_turbofish] = STATE(3591), + [sym_macro_invocation] = STATE(2409), + [sym_scoped_identifier] = STATE(2246), + [sym_scoped_type_identifier] = STATE(3197), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(2958), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(913), + [sym_block_comment] = STATE(913), + [sym_identifier] = ACTIONS(3377), + [anon_sym_LPAREN] = ACTIONS(3379), + [anon_sym_LBRACK] = ACTIONS(3383), + [anon_sym_RBRACK] = ACTIONS(3495), + [anon_sym_u8] = ACTIONS(3385), + [anon_sym_i8] = ACTIONS(3385), + [anon_sym_u16] = ACTIONS(3385), + [anon_sym_i16] = ACTIONS(3385), + [anon_sym_u32] = ACTIONS(3385), + [anon_sym_i32] = ACTIONS(3385), + [anon_sym_u64] = ACTIONS(3385), + [anon_sym_i64] = ACTIONS(3385), + [anon_sym_u128] = ACTIONS(3385), + [anon_sym_i128] = ACTIONS(3385), + [anon_sym_isize] = ACTIONS(3385), + [anon_sym_usize] = ACTIONS(3385), + [anon_sym_f32] = ACTIONS(3385), + [anon_sym_f64] = ACTIONS(3385), + [anon_sym_bool] = ACTIONS(3385), + [anon_sym_str] = ACTIONS(3385), + [anon_sym_char] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_PIPE] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_const] = ACTIONS(3391), + [anon_sym_default] = ACTIONS(3393), + [anon_sym_gen] = ACTIONS(3393), + [anon_sym_union] = ACTIONS(3393), + [anon_sym_ref] = ACTIONS(1345), + [sym_mutable_specifier] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [sym_self] = ACTIONS(3395), + [sym_super] = ACTIONS(3395), + [sym_crate] = ACTIONS(3395), + [sym_metavariable] = ACTIONS(3397), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), }, - [870] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2202), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(870), - [sym_block_comment] = STATE(870), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1605), + [914] = { + [sym_parameter] = STATE(3196), + [sym_bracketed_type] = STATE(3973), + [sym_generic_type] = STATE(3972), + [sym_generic_type_with_turbofish] = STATE(3591), + [sym_macro_invocation] = STATE(2409), + [sym_scoped_identifier] = STATE(2246), + [sym_scoped_type_identifier] = STATE(3197), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(3067), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(914), + [sym_block_comment] = STATE(914), + [sym_identifier] = ACTIONS(3377), + [anon_sym_LPAREN] = ACTIONS(3379), + [anon_sym_LBRACK] = ACTIONS(3383), + [anon_sym_u8] = ACTIONS(3385), + [anon_sym_i8] = ACTIONS(3385), + [anon_sym_u16] = ACTIONS(3385), + [anon_sym_i16] = ACTIONS(3385), + [anon_sym_u32] = ACTIONS(3385), + [anon_sym_i32] = ACTIONS(3385), + [anon_sym_u64] = ACTIONS(3385), + [anon_sym_i64] = ACTIONS(3385), + [anon_sym_u128] = ACTIONS(3385), + [anon_sym_i128] = ACTIONS(3385), + [anon_sym_isize] = ACTIONS(3385), + [anon_sym_usize] = ACTIONS(3385), + [anon_sym_f32] = ACTIONS(3385), + [anon_sym_f64] = ACTIONS(3385), + [anon_sym_bool] = ACTIONS(3385), + [anon_sym_str] = ACTIONS(3385), + [anon_sym_char] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_PIPE] = ACTIONS(3481), [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_const] = ACTIONS(3391), + [anon_sym_default] = ACTIONS(3393), + [anon_sym_gen] = ACTIONS(3393), + [anon_sym_union] = ACTIONS(3393), + [anon_sym_ref] = ACTIONS(1345), + [sym_mutable_specifier] = ACTIONS(3471), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [sym_self] = ACTIONS(3473), + [sym_super] = ACTIONS(3395), + [sym_crate] = ACTIONS(3395), + [sym_metavariable] = ACTIONS(3397), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), }, - [871] = { - [sym_function_modifiers] = STATE(3367), - [sym_removed_trait_bound] = STATE(1416), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1380), - [sym_bracketed_type] = STATE(3544), - [sym_lifetime] = STATE(3348), - [sym_array_type] = STATE(1416), - [sym_for_lifetimes] = STATE(1584), - [sym_function_type] = STATE(1416), - [sym_tuple_type] = STATE(1416), - [sym_unit_type] = STATE(1416), - [sym_generic_type] = STATE(1083), - [sym_generic_type_with_turbofish] = STATE(3535), - [sym_bounded_type] = STATE(1416), - [sym_reference_type] = STATE(1416), - [sym_pointer_type] = STATE(1416), - [sym_never_type] = STATE(1416), - [sym_abstract_type] = STATE(1416), - [sym_dynamic_type] = STATE(1416), - [sym_macro_invocation] = STATE(1416), - [sym_scoped_identifier] = STATE(3224), - [sym_scoped_type_identifier] = STATE(1034), - [sym_line_comment] = STATE(871), - [sym_block_comment] = STATE(871), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3097), - [anon_sym_LPAREN] = ACTIONS(3099), - [anon_sym_LBRACK] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_QMARK] = ACTIONS(3107), - [anon_sym_u8] = ACTIONS(3109), - [anon_sym_i8] = ACTIONS(3109), - [anon_sym_u16] = ACTIONS(3109), - [anon_sym_i16] = ACTIONS(3109), - [anon_sym_u32] = ACTIONS(3109), - [anon_sym_i32] = ACTIONS(3109), - [anon_sym_u64] = ACTIONS(3109), - [anon_sym_i64] = ACTIONS(3109), - [anon_sym_u128] = ACTIONS(3109), - [anon_sym_i128] = ACTIONS(3109), - [anon_sym_isize] = ACTIONS(3109), - [anon_sym_usize] = ACTIONS(3109), - [anon_sym_f32] = ACTIONS(3109), - [anon_sym_f64] = ACTIONS(3109), - [anon_sym_bool] = ACTIONS(3109), - [anon_sym_str] = ACTIONS(3109), - [anon_sym_char] = ACTIONS(3109), - [anon_sym_BANG] = ACTIONS(3111), - [anon_sym_AMP] = ACTIONS(3113), + [915] = { + [sym_bracketed_type] = STATE(3973), + [sym_generic_type] = STATE(3972), + [sym_generic_type_with_turbofish] = STATE(3591), + [sym_macro_invocation] = STATE(2409), + [sym_scoped_identifier] = STATE(2246), + [sym_scoped_type_identifier] = STATE(3197), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(2933), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(915), + [sym_block_comment] = STATE(915), + [sym_identifier] = ACTIONS(3377), + [anon_sym_LPAREN] = ACTIONS(3379), + [anon_sym_LBRACK] = ACTIONS(3383), + [anon_sym_u8] = ACTIONS(3385), + [anon_sym_i8] = ACTIONS(3385), + [anon_sym_u16] = ACTIONS(3385), + [anon_sym_i16] = ACTIONS(3385), + [anon_sym_u32] = ACTIONS(3385), + [anon_sym_i32] = ACTIONS(3385), + [anon_sym_u64] = ACTIONS(3385), + [anon_sym_i64] = ACTIONS(3385), + [anon_sym_u128] = ACTIONS(3385), + [anon_sym_i128] = ACTIONS(3385), + [anon_sym_isize] = ACTIONS(3385), + [anon_sym_usize] = ACTIONS(3385), + [anon_sym_f32] = ACTIONS(3385), + [anon_sym_f64] = ACTIONS(3385), + [anon_sym_bool] = ACTIONS(3385), + [anon_sym_str] = ACTIONS(3385), + [anon_sym_char] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_PIPE] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3115), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(3117), - [anon_sym_fn] = ACTIONS(3119), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(3121), - [anon_sym_impl] = ACTIONS(3123), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(3125), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1317), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3497), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_const] = ACTIONS(3391), + [anon_sym_default] = ACTIONS(3393), + [anon_sym_gen] = ACTIONS(3393), + [anon_sym_union] = ACTIONS(3393), + [anon_sym_ref] = ACTIONS(1345), + [sym_mutable_specifier] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3129), - [sym_super] = ACTIONS(3129), - [sym_crate] = ACTIONS(3129), - [sym_metavariable] = ACTIONS(3131), + [sym_self] = ACTIONS(3499), + [sym_super] = ACTIONS(3395), + [sym_crate] = ACTIONS(3395), + [sym_metavariable] = ACTIONS(3397), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), }, - [872] = { - [sym_function_modifiers] = STATE(3367), - [sym_removed_trait_bound] = STATE(1416), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1381), - [sym_bracketed_type] = STATE(3544), - [sym_lifetime] = STATE(3348), - [sym_array_type] = STATE(1416), - [sym_for_lifetimes] = STATE(1584), - [sym_function_type] = STATE(1416), - [sym_tuple_type] = STATE(1416), - [sym_unit_type] = STATE(1416), - [sym_generic_type] = STATE(1083), - [sym_generic_type_with_turbofish] = STATE(3535), - [sym_bounded_type] = STATE(1416), - [sym_reference_type] = STATE(1416), - [sym_pointer_type] = STATE(1416), - [sym_never_type] = STATE(1416), - [sym_abstract_type] = STATE(1416), - [sym_dynamic_type] = STATE(1416), - [sym_macro_invocation] = STATE(1416), - [sym_scoped_identifier] = STATE(3224), - [sym_scoped_type_identifier] = STATE(1034), - [sym_line_comment] = STATE(872), - [sym_block_comment] = STATE(872), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3097), - [anon_sym_LPAREN] = ACTIONS(3099), - [anon_sym_LBRACK] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_QMARK] = ACTIONS(3107), - [anon_sym_u8] = ACTIONS(3109), - [anon_sym_i8] = ACTIONS(3109), - [anon_sym_u16] = ACTIONS(3109), - [anon_sym_i16] = ACTIONS(3109), - [anon_sym_u32] = ACTIONS(3109), - [anon_sym_i32] = ACTIONS(3109), - [anon_sym_u64] = ACTIONS(3109), - [anon_sym_i64] = ACTIONS(3109), - [anon_sym_u128] = ACTIONS(3109), - [anon_sym_i128] = ACTIONS(3109), - [anon_sym_isize] = ACTIONS(3109), - [anon_sym_usize] = ACTIONS(3109), - [anon_sym_f32] = ACTIONS(3109), - [anon_sym_f64] = ACTIONS(3109), - [anon_sym_bool] = ACTIONS(3109), - [anon_sym_str] = ACTIONS(3109), - [anon_sym_char] = ACTIONS(3109), - [anon_sym_BANG] = ACTIONS(3111), - [anon_sym_AMP] = ACTIONS(3113), + [916] = { + [sym_bracketed_type] = STATE(3973), + [sym_generic_type] = STATE(3972), + [sym_generic_type_with_turbofish] = STATE(3591), + [sym_macro_invocation] = STATE(2409), + [sym_scoped_identifier] = STATE(2246), + [sym_scoped_type_identifier] = STATE(3197), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(2780), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(916), + [sym_block_comment] = STATE(916), + [sym_identifier] = ACTIONS(3377), + [anon_sym_LPAREN] = ACTIONS(3379), + [anon_sym_LBRACK] = ACTIONS(3383), + [anon_sym_u8] = ACTIONS(3385), + [anon_sym_i8] = ACTIONS(3385), + [anon_sym_u16] = ACTIONS(3385), + [anon_sym_i16] = ACTIONS(3385), + [anon_sym_u32] = ACTIONS(3385), + [anon_sym_i32] = ACTIONS(3385), + [anon_sym_u64] = ACTIONS(3385), + [anon_sym_i64] = ACTIONS(3385), + [anon_sym_u128] = ACTIONS(3385), + [anon_sym_i128] = ACTIONS(3385), + [anon_sym_isize] = ACTIONS(3385), + [anon_sym_usize] = ACTIONS(3385), + [anon_sym_f32] = ACTIONS(3385), + [anon_sym_f64] = ACTIONS(3385), + [anon_sym_bool] = ACTIONS(3385), + [anon_sym_str] = ACTIONS(3385), + [anon_sym_char] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_PIPE] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3115), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(3117), - [anon_sym_fn] = ACTIONS(3119), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(3121), - [anon_sym_impl] = ACTIONS(3123), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(3125), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_const] = ACTIONS(3391), + [anon_sym_default] = ACTIONS(3393), + [anon_sym_gen] = ACTIONS(3393), + [anon_sym_union] = ACTIONS(3393), + [anon_sym_ref] = ACTIONS(1345), + [sym_mutable_specifier] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3129), - [sym_super] = ACTIONS(3129), - [sym_crate] = ACTIONS(3129), - [sym_metavariable] = ACTIONS(3131), + [sym_self] = ACTIONS(3395), + [sym_super] = ACTIONS(3395), + [sym_crate] = ACTIONS(3395), + [sym_metavariable] = ACTIONS(3397), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), }, - [873] = { - [sym_function_modifiers] = STATE(3341), - [sym_removed_trait_bound] = STATE(1684), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1777), - [sym_bracketed_type] = STATE(3559), - [sym_lifetime] = STATE(3394), - [sym_array_type] = STATE(1684), - [sym_for_lifetimes] = STATE(1591), - [sym_function_type] = STATE(1684), - [sym_tuple_type] = STATE(1684), - [sym_unit_type] = STATE(1684), - [sym_generic_type] = STATE(1649), - [sym_generic_type_with_turbofish] = STATE(3551), - [sym_bounded_type] = STATE(1684), - [sym_reference_type] = STATE(1684), - [sym_pointer_type] = STATE(1684), - [sym_never_type] = STATE(1684), - [sym_abstract_type] = STATE(1684), - [sym_dynamic_type] = STATE(1684), - [sym_macro_invocation] = STATE(1684), - [sym_scoped_identifier] = STATE(3288), - [sym_scoped_type_identifier] = STATE(1548), - [sym_line_comment] = STATE(873), - [sym_block_comment] = STATE(873), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(3141), - [anon_sym_LBRACK] = ACTIONS(3143), - [anon_sym_STAR] = ACTIONS(3147), - [anon_sym_QMARK] = ACTIONS(3149), - [anon_sym_u8] = ACTIONS(3151), - [anon_sym_i8] = ACTIONS(3151), - [anon_sym_u16] = ACTIONS(3151), - [anon_sym_i16] = ACTIONS(3151), - [anon_sym_u32] = ACTIONS(3151), - [anon_sym_i32] = ACTIONS(3151), - [anon_sym_u64] = ACTIONS(3151), - [anon_sym_i64] = ACTIONS(3151), - [anon_sym_u128] = ACTIONS(3151), - [anon_sym_i128] = ACTIONS(3151), - [anon_sym_isize] = ACTIONS(3151), - [anon_sym_usize] = ACTIONS(3151), - [anon_sym_f32] = ACTIONS(3151), - [anon_sym_f64] = ACTIONS(3151), - [anon_sym_bool] = ACTIONS(3151), - [anon_sym_str] = ACTIONS(3151), - [anon_sym_char] = ACTIONS(3151), - [anon_sym_BANG] = ACTIONS(3153), - [anon_sym_AMP] = ACTIONS(3155), + [917] = { + [sym_bracketed_type] = STATE(3973), + [sym_generic_type] = STATE(3972), + [sym_generic_type_with_turbofish] = STATE(3591), + [sym_macro_invocation] = STATE(2409), + [sym_scoped_identifier] = STATE(2246), + [sym_scoped_type_identifier] = STATE(3197), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(3522), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(917), + [sym_block_comment] = STATE(917), + [sym_identifier] = ACTIONS(3377), + [anon_sym_LPAREN] = ACTIONS(3379), + [anon_sym_LBRACK] = ACTIONS(3383), + [anon_sym_u8] = ACTIONS(3385), + [anon_sym_i8] = ACTIONS(3385), + [anon_sym_u16] = ACTIONS(3385), + [anon_sym_i16] = ACTIONS(3385), + [anon_sym_u32] = ACTIONS(3385), + [anon_sym_i32] = ACTIONS(3385), + [anon_sym_u64] = ACTIONS(3385), + [anon_sym_i64] = ACTIONS(3385), + [anon_sym_u128] = ACTIONS(3385), + [anon_sym_i128] = ACTIONS(3385), + [anon_sym_isize] = ACTIONS(3385), + [anon_sym_usize] = ACTIONS(3385), + [anon_sym_f32] = ACTIONS(3385), + [anon_sym_f64] = ACTIONS(3385), + [anon_sym_bool] = ACTIONS(3385), + [anon_sym_str] = ACTIONS(3385), + [anon_sym_char] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_PIPE] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3157), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(3159), - [anon_sym_fn] = ACTIONS(3161), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(3163), - [anon_sym_impl] = ACTIONS(3165), - [anon_sym_union] = ACTIONS(3163), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(3167), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_const] = ACTIONS(3391), + [anon_sym_default] = ACTIONS(3393), + [anon_sym_gen] = ACTIONS(3393), + [anon_sym_union] = ACTIONS(3393), + [anon_sym_ref] = ACTIONS(1345), + [sym_mutable_specifier] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3171), - [sym_super] = ACTIONS(3171), - [sym_crate] = ACTIONS(3171), - [sym_metavariable] = ACTIONS(3173), + [sym_self] = ACTIONS(3395), + [sym_super] = ACTIONS(3395), + [sym_crate] = ACTIONS(3395), + [sym_metavariable] = ACTIONS(3397), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), }, - [874] = { - [sym_function_modifiers] = STATE(3341), - [sym_removed_trait_bound] = STATE(1684), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1728), - [sym_bracketed_type] = STATE(3559), - [sym_lifetime] = STATE(3394), - [sym_array_type] = STATE(1684), - [sym_for_lifetimes] = STATE(1591), - [sym_function_type] = STATE(1684), - [sym_tuple_type] = STATE(1684), - [sym_unit_type] = STATE(1684), - [sym_generic_type] = STATE(1649), - [sym_generic_type_with_turbofish] = STATE(3551), - [sym_bounded_type] = STATE(1684), - [sym_reference_type] = STATE(1684), - [sym_pointer_type] = STATE(1684), - [sym_never_type] = STATE(1684), - [sym_abstract_type] = STATE(1684), - [sym_dynamic_type] = STATE(1684), - [sym_macro_invocation] = STATE(1684), - [sym_scoped_identifier] = STATE(3288), - [sym_scoped_type_identifier] = STATE(1548), - [sym_line_comment] = STATE(874), - [sym_block_comment] = STATE(874), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(3141), - [anon_sym_LBRACK] = ACTIONS(3143), - [anon_sym_STAR] = ACTIONS(3147), - [anon_sym_QMARK] = ACTIONS(3149), - [anon_sym_u8] = ACTIONS(3151), - [anon_sym_i8] = ACTIONS(3151), - [anon_sym_u16] = ACTIONS(3151), - [anon_sym_i16] = ACTIONS(3151), - [anon_sym_u32] = ACTIONS(3151), - [anon_sym_i32] = ACTIONS(3151), - [anon_sym_u64] = ACTIONS(3151), - [anon_sym_i64] = ACTIONS(3151), - [anon_sym_u128] = ACTIONS(3151), - [anon_sym_i128] = ACTIONS(3151), - [anon_sym_isize] = ACTIONS(3151), - [anon_sym_usize] = ACTIONS(3151), - [anon_sym_f32] = ACTIONS(3151), - [anon_sym_f64] = ACTIONS(3151), - [anon_sym_bool] = ACTIONS(3151), - [anon_sym_str] = ACTIONS(3151), - [anon_sym_char] = ACTIONS(3151), - [anon_sym_BANG] = ACTIONS(3153), - [anon_sym_AMP] = ACTIONS(3155), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3157), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(3159), - [anon_sym_fn] = ACTIONS(3161), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(3163), - [anon_sym_impl] = ACTIONS(3165), - [anon_sym_union] = ACTIONS(3163), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(3167), + [918] = { + [sym_bracketed_type] = STATE(4029), + [sym_generic_type] = STATE(3972), + [sym_generic_type_with_turbofish] = STATE(3589), + [sym_macro_invocation] = STATE(3205), + [sym_scoped_identifier] = STATE(2461), + [sym_scoped_type_identifier] = STATE(3294), + [sym_const_block] = STATE(3205), + [sym__pattern] = STATE(3187), + [sym_tuple_pattern] = STATE(3205), + [sym_slice_pattern] = STATE(3205), + [sym_tuple_struct_pattern] = STATE(3205), + [sym_struct_pattern] = STATE(3205), + [sym_remaining_field_pattern] = STATE(3205), + [sym_mut_pattern] = STATE(3205), + [sym_range_pattern] = STATE(3205), + [sym_ref_pattern] = STATE(3205), + [sym_captured_pattern] = STATE(3205), + [sym_reference_pattern] = STATE(3205), + [sym_or_pattern] = STATE(3205), + [sym__literal_pattern] = STATE(2617), + [sym_negative_literal] = STATE(2620), + [sym_string_literal] = STATE(2620), + [sym_raw_string_literal] = STATE(2620), + [sym_boolean_literal] = STATE(2620), + [sym_line_comment] = STATE(918), + [sym_block_comment] = STATE(918), + [sym_identifier] = ACTIONS(1649), + [anon_sym_LPAREN] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_u8] = ACTIONS(1657), + [anon_sym_i8] = ACTIONS(1657), + [anon_sym_u16] = ACTIONS(1657), + [anon_sym_i16] = ACTIONS(1657), + [anon_sym_u32] = ACTIONS(1657), + [anon_sym_i32] = ACTIONS(1657), + [anon_sym_u64] = ACTIONS(1657), + [anon_sym_i64] = ACTIONS(1657), + [anon_sym_u128] = ACTIONS(1657), + [anon_sym_i128] = ACTIONS(1657), + [anon_sym_isize] = ACTIONS(1657), + [anon_sym_usize] = ACTIONS(1657), + [anon_sym_f32] = ACTIONS(1657), + [anon_sym_f64] = ACTIONS(1657), + [anon_sym_bool] = ACTIONS(1657), + [anon_sym_str] = ACTIONS(1657), + [anon_sym_char] = ACTIONS(1657), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_AMP] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(1663), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1665), + [anon_sym_DOT_DOT] = ACTIONS(1667), + [anon_sym_COLON_COLON] = ACTIONS(1669), + [anon_sym_const] = ACTIONS(1673), + [anon_sym_default] = ACTIONS(1675), + [anon_sym_gen] = ACTIONS(1675), + [anon_sym_union] = ACTIONS(1675), + [anon_sym_ref] = ACTIONS(1677), + [sym_mutable_specifier] = ACTIONS(1679), + [sym_integer_literal] = ACTIONS(1681), + [aux_sym_string_literal_token1] = ACTIONS(1683), + [sym_char_literal] = ACTIONS(1681), + [anon_sym_true] = ACTIONS(1685), + [anon_sym_false] = ACTIONS(1685), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1687), + [sym_super] = ACTIONS(1687), + [sym_crate] = ACTIONS(1687), + [sym_metavariable] = ACTIONS(1689), + [sym__raw_string_literal_start] = ACTIONS(1691), + [sym_float_literal] = ACTIONS(1681), + }, + [919] = { + [sym_bracketed_type] = STATE(4029), + [sym_generic_type] = STATE(3972), + [sym_generic_type_with_turbofish] = STATE(3589), + [sym_macro_invocation] = STATE(3205), + [sym_scoped_identifier] = STATE(2461), + [sym_scoped_type_identifier] = STATE(3294), + [sym_const_block] = STATE(3205), + [sym__pattern] = STATE(3195), + [sym_tuple_pattern] = STATE(3205), + [sym_slice_pattern] = STATE(3205), + [sym_tuple_struct_pattern] = STATE(3205), + [sym_struct_pattern] = STATE(3205), + [sym_remaining_field_pattern] = STATE(3205), + [sym_mut_pattern] = STATE(3205), + [sym_range_pattern] = STATE(3205), + [sym_ref_pattern] = STATE(3205), + [sym_captured_pattern] = STATE(3205), + [sym_reference_pattern] = STATE(3205), + [sym_or_pattern] = STATE(3205), + [sym__literal_pattern] = STATE(2617), + [sym_negative_literal] = STATE(2620), + [sym_string_literal] = STATE(2620), + [sym_raw_string_literal] = STATE(2620), + [sym_boolean_literal] = STATE(2620), + [sym_line_comment] = STATE(919), + [sym_block_comment] = STATE(919), + [sym_identifier] = ACTIONS(1649), + [anon_sym_LPAREN] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_u8] = ACTIONS(1657), + [anon_sym_i8] = ACTIONS(1657), + [anon_sym_u16] = ACTIONS(1657), + [anon_sym_i16] = ACTIONS(1657), + [anon_sym_u32] = ACTIONS(1657), + [anon_sym_i32] = ACTIONS(1657), + [anon_sym_u64] = ACTIONS(1657), + [anon_sym_i64] = ACTIONS(1657), + [anon_sym_u128] = ACTIONS(1657), + [anon_sym_i128] = ACTIONS(1657), + [anon_sym_isize] = ACTIONS(1657), + [anon_sym_usize] = ACTIONS(1657), + [anon_sym_f32] = ACTIONS(1657), + [anon_sym_f64] = ACTIONS(1657), + [anon_sym_bool] = ACTIONS(1657), + [anon_sym_str] = ACTIONS(1657), + [anon_sym_char] = ACTIONS(1657), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_AMP] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(1663), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1665), + [anon_sym_DOT_DOT] = ACTIONS(1667), + [anon_sym_COLON_COLON] = ACTIONS(1669), + [anon_sym_const] = ACTIONS(1673), + [anon_sym_default] = ACTIONS(1675), + [anon_sym_gen] = ACTIONS(1675), + [anon_sym_union] = ACTIONS(1675), + [anon_sym_ref] = ACTIONS(1677), + [sym_mutable_specifier] = ACTIONS(1679), + [sym_integer_literal] = ACTIONS(1681), + [aux_sym_string_literal_token1] = ACTIONS(1683), + [sym_char_literal] = ACTIONS(1681), + [anon_sym_true] = ACTIONS(1685), + [anon_sym_false] = ACTIONS(1685), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1687), + [sym_super] = ACTIONS(1687), + [sym_crate] = ACTIONS(1687), + [sym_metavariable] = ACTIONS(1689), + [sym__raw_string_literal_start] = ACTIONS(1691), + [sym_float_literal] = ACTIONS(1681), + }, + [920] = { + [sym_bracketed_type] = STATE(3973), + [sym_generic_type] = STATE(3972), + [sym_generic_type_with_turbofish] = STATE(3591), + [sym_macro_invocation] = STATE(2409), + [sym_scoped_identifier] = STATE(2246), + [sym_scoped_type_identifier] = STATE(3197), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(3494), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(920), + [sym_block_comment] = STATE(920), + [sym_identifier] = ACTIONS(3377), + [anon_sym_LPAREN] = ACTIONS(3379), + [anon_sym_LBRACK] = ACTIONS(3383), + [anon_sym_u8] = ACTIONS(3385), + [anon_sym_i8] = ACTIONS(3385), + [anon_sym_u16] = ACTIONS(3385), + [anon_sym_i16] = ACTIONS(3385), + [anon_sym_u32] = ACTIONS(3385), + [anon_sym_i32] = ACTIONS(3385), + [anon_sym_u64] = ACTIONS(3385), + [anon_sym_i64] = ACTIONS(3385), + [anon_sym_u128] = ACTIONS(3385), + [anon_sym_i128] = ACTIONS(3385), + [anon_sym_isize] = ACTIONS(3385), + [anon_sym_usize] = ACTIONS(3385), + [anon_sym_f32] = ACTIONS(3385), + [anon_sym_f64] = ACTIONS(3385), + [anon_sym_bool] = ACTIONS(3385), + [anon_sym_str] = ACTIONS(3385), + [anon_sym_char] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_PIPE] = ACTIONS(1313), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_const] = ACTIONS(3391), + [anon_sym_default] = ACTIONS(3393), + [anon_sym_gen] = ACTIONS(3393), + [anon_sym_union] = ACTIONS(3393), + [anon_sym_ref] = ACTIONS(1345), + [sym_mutable_specifier] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3171), - [sym_super] = ACTIONS(3171), - [sym_crate] = ACTIONS(3171), - [sym_metavariable] = ACTIONS(3173), + [sym_self] = ACTIONS(3395), + [sym_super] = ACTIONS(3395), + [sym_crate] = ACTIONS(3395), + [sym_metavariable] = ACTIONS(3397), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), }, - [875] = { - [sym_function_modifiers] = STATE(3341), - [sym_removed_trait_bound] = STATE(1684), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1778), - [sym_bracketed_type] = STATE(3559), - [sym_lifetime] = STATE(3394), - [sym_array_type] = STATE(1684), - [sym_for_lifetimes] = STATE(1591), - [sym_function_type] = STATE(1684), - [sym_tuple_type] = STATE(1684), - [sym_unit_type] = STATE(1684), - [sym_generic_type] = STATE(1649), - [sym_generic_type_with_turbofish] = STATE(3551), - [sym_bounded_type] = STATE(1684), - [sym_reference_type] = STATE(1684), - [sym_pointer_type] = STATE(1684), - [sym_never_type] = STATE(1684), - [sym_abstract_type] = STATE(1684), - [sym_dynamic_type] = STATE(1684), - [sym_macro_invocation] = STATE(1684), - [sym_scoped_identifier] = STATE(3288), - [sym_scoped_type_identifier] = STATE(1548), - [sym_line_comment] = STATE(875), - [sym_block_comment] = STATE(875), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(3141), - [anon_sym_LBRACK] = ACTIONS(3143), - [anon_sym_STAR] = ACTIONS(3147), - [anon_sym_QMARK] = ACTIONS(3149), - [anon_sym_u8] = ACTIONS(3151), - [anon_sym_i8] = ACTIONS(3151), - [anon_sym_u16] = ACTIONS(3151), - [anon_sym_i16] = ACTIONS(3151), - [anon_sym_u32] = ACTIONS(3151), - [anon_sym_i32] = ACTIONS(3151), - [anon_sym_u64] = ACTIONS(3151), - [anon_sym_i64] = ACTIONS(3151), - [anon_sym_u128] = ACTIONS(3151), - [anon_sym_i128] = ACTIONS(3151), - [anon_sym_isize] = ACTIONS(3151), - [anon_sym_usize] = ACTIONS(3151), - [anon_sym_f32] = ACTIONS(3151), - [anon_sym_f64] = ACTIONS(3151), - [anon_sym_bool] = ACTIONS(3151), - [anon_sym_str] = ACTIONS(3151), - [anon_sym_char] = ACTIONS(3151), - [anon_sym_BANG] = ACTIONS(3153), - [anon_sym_AMP] = ACTIONS(3155), + [921] = { + [sym_bracketed_type] = STATE(4029), + [sym_generic_type] = STATE(3972), + [sym_generic_type_with_turbofish] = STATE(3589), + [sym_macro_invocation] = STATE(3205), + [sym_scoped_identifier] = STATE(2461), + [sym_scoped_type_identifier] = STATE(3294), + [sym_const_block] = STATE(3205), + [sym__pattern] = STATE(3194), + [sym_tuple_pattern] = STATE(3205), + [sym_slice_pattern] = STATE(3205), + [sym_tuple_struct_pattern] = STATE(3205), + [sym_struct_pattern] = STATE(3205), + [sym_remaining_field_pattern] = STATE(3205), + [sym_mut_pattern] = STATE(3205), + [sym_range_pattern] = STATE(3205), + [sym_ref_pattern] = STATE(3205), + [sym_captured_pattern] = STATE(3205), + [sym_reference_pattern] = STATE(3205), + [sym_or_pattern] = STATE(3205), + [sym__literal_pattern] = STATE(2617), + [sym_negative_literal] = STATE(2620), + [sym_string_literal] = STATE(2620), + [sym_raw_string_literal] = STATE(2620), + [sym_boolean_literal] = STATE(2620), + [sym_line_comment] = STATE(921), + [sym_block_comment] = STATE(921), + [sym_identifier] = ACTIONS(1649), + [anon_sym_LPAREN] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_u8] = ACTIONS(1657), + [anon_sym_i8] = ACTIONS(1657), + [anon_sym_u16] = ACTIONS(1657), + [anon_sym_i16] = ACTIONS(1657), + [anon_sym_u32] = ACTIONS(1657), + [anon_sym_i32] = ACTIONS(1657), + [anon_sym_u64] = ACTIONS(1657), + [anon_sym_i64] = ACTIONS(1657), + [anon_sym_u128] = ACTIONS(1657), + [anon_sym_i128] = ACTIONS(1657), + [anon_sym_isize] = ACTIONS(1657), + [anon_sym_usize] = ACTIONS(1657), + [anon_sym_f32] = ACTIONS(1657), + [anon_sym_f64] = ACTIONS(1657), + [anon_sym_bool] = ACTIONS(1657), + [anon_sym_str] = ACTIONS(1657), + [anon_sym_char] = ACTIONS(1657), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_AMP] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(1663), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1665), + [anon_sym_DOT_DOT] = ACTIONS(1667), + [anon_sym_COLON_COLON] = ACTIONS(1669), + [anon_sym_const] = ACTIONS(1673), + [anon_sym_default] = ACTIONS(1675), + [anon_sym_gen] = ACTIONS(1675), + [anon_sym_union] = ACTIONS(1675), + [anon_sym_ref] = ACTIONS(1677), + [sym_mutable_specifier] = ACTIONS(1679), + [sym_integer_literal] = ACTIONS(1681), + [aux_sym_string_literal_token1] = ACTIONS(1683), + [sym_char_literal] = ACTIONS(1681), + [anon_sym_true] = ACTIONS(1685), + [anon_sym_false] = ACTIONS(1685), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1687), + [sym_super] = ACTIONS(1687), + [sym_crate] = ACTIONS(1687), + [sym_metavariable] = ACTIONS(1689), + [sym__raw_string_literal_start] = ACTIONS(1691), + [sym_float_literal] = ACTIONS(1681), + }, + [922] = { + [sym_bracketed_type] = STATE(3973), + [sym_generic_type] = STATE(3972), + [sym_generic_type_with_turbofish] = STATE(3591), + [sym_macro_invocation] = STATE(2409), + [sym_scoped_identifier] = STATE(2246), + [sym_scoped_type_identifier] = STATE(3197), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(2420), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(922), + [sym_block_comment] = STATE(922), + [sym_identifier] = ACTIONS(3377), + [anon_sym_LPAREN] = ACTIONS(3379), + [anon_sym_LBRACK] = ACTIONS(3383), + [anon_sym_u8] = ACTIONS(3385), + [anon_sym_i8] = ACTIONS(3385), + [anon_sym_u16] = ACTIONS(3385), + [anon_sym_i16] = ACTIONS(3385), + [anon_sym_u32] = ACTIONS(3385), + [anon_sym_i32] = ACTIONS(3385), + [anon_sym_u64] = ACTIONS(3385), + [anon_sym_i64] = ACTIONS(3385), + [anon_sym_u128] = ACTIONS(3385), + [anon_sym_i128] = ACTIONS(3385), + [anon_sym_isize] = ACTIONS(3385), + [anon_sym_usize] = ACTIONS(3385), + [anon_sym_f32] = ACTIONS(3385), + [anon_sym_f64] = ACTIONS(3385), + [anon_sym_bool] = ACTIONS(3385), + [anon_sym_str] = ACTIONS(3385), + [anon_sym_char] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_PIPE] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3157), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(3159), - [anon_sym_fn] = ACTIONS(3161), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(3163), - [anon_sym_impl] = ACTIONS(3165), - [anon_sym_union] = ACTIONS(3163), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(3167), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_const] = ACTIONS(3391), + [anon_sym_default] = ACTIONS(3393), + [anon_sym_gen] = ACTIONS(3393), + [anon_sym_union] = ACTIONS(3393), + [anon_sym_ref] = ACTIONS(1345), + [sym_mutable_specifier] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3171), - [sym_super] = ACTIONS(3171), - [sym_crate] = ACTIONS(3171), - [sym_metavariable] = ACTIONS(3173), + [sym_self] = ACTIONS(3395), + [sym_super] = ACTIONS(3395), + [sym_crate] = ACTIONS(3395), + [sym_metavariable] = ACTIONS(3397), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), }, - [876] = { - [sym_function_modifiers] = STATE(3341), - [sym_removed_trait_bound] = STATE(1684), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1730), - [sym_bracketed_type] = STATE(3559), - [sym_lifetime] = STATE(3394), - [sym_array_type] = STATE(1684), - [sym_for_lifetimes] = STATE(1591), - [sym_function_type] = STATE(1684), - [sym_tuple_type] = STATE(1684), - [sym_unit_type] = STATE(1684), - [sym_generic_type] = STATE(1649), - [sym_generic_type_with_turbofish] = STATE(3551), - [sym_bounded_type] = STATE(1684), - [sym_reference_type] = STATE(1684), - [sym_pointer_type] = STATE(1684), - [sym_never_type] = STATE(1684), - [sym_abstract_type] = STATE(1684), - [sym_dynamic_type] = STATE(1684), - [sym_macro_invocation] = STATE(1684), - [sym_scoped_identifier] = STATE(3288), - [sym_scoped_type_identifier] = STATE(1548), - [sym_line_comment] = STATE(876), - [sym_block_comment] = STATE(876), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(3141), - [anon_sym_LBRACK] = ACTIONS(3143), - [anon_sym_STAR] = ACTIONS(3147), - [anon_sym_QMARK] = ACTIONS(3149), - [anon_sym_u8] = ACTIONS(3151), - [anon_sym_i8] = ACTIONS(3151), - [anon_sym_u16] = ACTIONS(3151), - [anon_sym_i16] = ACTIONS(3151), - [anon_sym_u32] = ACTIONS(3151), - [anon_sym_i32] = ACTIONS(3151), - [anon_sym_u64] = ACTIONS(3151), - [anon_sym_i64] = ACTIONS(3151), - [anon_sym_u128] = ACTIONS(3151), - [anon_sym_i128] = ACTIONS(3151), - [anon_sym_isize] = ACTIONS(3151), - [anon_sym_usize] = ACTIONS(3151), - [anon_sym_f32] = ACTIONS(3151), - [anon_sym_f64] = ACTIONS(3151), - [anon_sym_bool] = ACTIONS(3151), - [anon_sym_str] = ACTIONS(3151), - [anon_sym_char] = ACTIONS(3151), - [anon_sym_BANG] = ACTIONS(3153), - [anon_sym_AMP] = ACTIONS(3155), + [923] = { + [sym_bracketed_type] = STATE(3973), + [sym_generic_type] = STATE(3972), + [sym_generic_type_with_turbofish] = STATE(3591), + [sym_macro_invocation] = STATE(2409), + [sym_scoped_identifier] = STATE(2246), + [sym_scoped_type_identifier] = STATE(3197), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(3496), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(923), + [sym_block_comment] = STATE(923), + [sym_identifier] = ACTIONS(3377), + [anon_sym_LPAREN] = ACTIONS(3379), + [anon_sym_LBRACK] = ACTIONS(3383), + [anon_sym_u8] = ACTIONS(3385), + [anon_sym_i8] = ACTIONS(3385), + [anon_sym_u16] = ACTIONS(3385), + [anon_sym_i16] = ACTIONS(3385), + [anon_sym_u32] = ACTIONS(3385), + [anon_sym_i32] = ACTIONS(3385), + [anon_sym_u64] = ACTIONS(3385), + [anon_sym_i64] = ACTIONS(3385), + [anon_sym_u128] = ACTIONS(3385), + [anon_sym_i128] = ACTIONS(3385), + [anon_sym_isize] = ACTIONS(3385), + [anon_sym_usize] = ACTIONS(3385), + [anon_sym_f32] = ACTIONS(3385), + [anon_sym_f64] = ACTIONS(3385), + [anon_sym_bool] = ACTIONS(3385), + [anon_sym_str] = ACTIONS(3385), + [anon_sym_char] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_PIPE] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3157), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(3159), - [anon_sym_fn] = ACTIONS(3161), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(3163), - [anon_sym_impl] = ACTIONS(3165), - [anon_sym_union] = ACTIONS(3163), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(3167), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_const] = ACTIONS(3391), + [anon_sym_default] = ACTIONS(3393), + [anon_sym_gen] = ACTIONS(3393), + [anon_sym_union] = ACTIONS(3393), + [anon_sym_ref] = ACTIONS(1345), + [sym_mutable_specifier] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3171), - [sym_super] = ACTIONS(3171), - [sym_crate] = ACTIONS(3171), - [sym_metavariable] = ACTIONS(3173), + [sym_self] = ACTIONS(3395), + [sym_super] = ACTIONS(3395), + [sym_crate] = ACTIONS(3395), + [sym_metavariable] = ACTIONS(3397), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), }, - [877] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2747), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(877), - [sym_block_comment] = STATE(877), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1605), + [924] = { + [sym_bracketed_type] = STATE(4029), + [sym_generic_type] = STATE(3972), + [sym_generic_type_with_turbofish] = STATE(3589), + [sym_macro_invocation] = STATE(3205), + [sym_scoped_identifier] = STATE(2461), + [sym_scoped_type_identifier] = STATE(3294), + [sym_const_block] = STATE(3205), + [sym__pattern] = STATE(3192), + [sym_tuple_pattern] = STATE(3205), + [sym_slice_pattern] = STATE(3205), + [sym_tuple_struct_pattern] = STATE(3205), + [sym_struct_pattern] = STATE(3205), + [sym_remaining_field_pattern] = STATE(3205), + [sym_mut_pattern] = STATE(3205), + [sym_range_pattern] = STATE(3205), + [sym_ref_pattern] = STATE(3205), + [sym_captured_pattern] = STATE(3205), + [sym_reference_pattern] = STATE(3205), + [sym_or_pattern] = STATE(3205), + [sym__literal_pattern] = STATE(2617), + [sym_negative_literal] = STATE(2620), + [sym_string_literal] = STATE(2620), + [sym_raw_string_literal] = STATE(2620), + [sym_boolean_literal] = STATE(2620), + [sym_line_comment] = STATE(924), + [sym_block_comment] = STATE(924), + [sym_identifier] = ACTIONS(1649), + [anon_sym_LPAREN] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_u8] = ACTIONS(1657), + [anon_sym_i8] = ACTIONS(1657), + [anon_sym_u16] = ACTIONS(1657), + [anon_sym_i16] = ACTIONS(1657), + [anon_sym_u32] = ACTIONS(1657), + [anon_sym_i32] = ACTIONS(1657), + [anon_sym_u64] = ACTIONS(1657), + [anon_sym_i64] = ACTIONS(1657), + [anon_sym_u128] = ACTIONS(1657), + [anon_sym_i128] = ACTIONS(1657), + [anon_sym_isize] = ACTIONS(1657), + [anon_sym_usize] = ACTIONS(1657), + [anon_sym_f32] = ACTIONS(1657), + [anon_sym_f64] = ACTIONS(1657), + [anon_sym_bool] = ACTIONS(1657), + [anon_sym_str] = ACTIONS(1657), + [anon_sym_char] = ACTIONS(1657), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_AMP] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(1663), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1665), + [anon_sym_DOT_DOT] = ACTIONS(1667), + [anon_sym_COLON_COLON] = ACTIONS(1669), + [anon_sym_const] = ACTIONS(1673), + [anon_sym_default] = ACTIONS(1675), + [anon_sym_gen] = ACTIONS(1675), + [anon_sym_union] = ACTIONS(1675), + [anon_sym_ref] = ACTIONS(1677), + [sym_mutable_specifier] = ACTIONS(3501), + [sym_integer_literal] = ACTIONS(1681), + [aux_sym_string_literal_token1] = ACTIONS(1683), + [sym_char_literal] = ACTIONS(1681), + [anon_sym_true] = ACTIONS(1685), + [anon_sym_false] = ACTIONS(1685), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1687), + [sym_super] = ACTIONS(1687), + [sym_crate] = ACTIONS(1687), + [sym_metavariable] = ACTIONS(1689), + [sym__raw_string_literal_start] = ACTIONS(1691), + [sym_float_literal] = ACTIONS(1681), + }, + [925] = { + [sym_bracketed_type] = STATE(3973), + [sym_generic_type] = STATE(3972), + [sym_generic_type_with_turbofish] = STATE(3591), + [sym_macro_invocation] = STATE(2409), + [sym_scoped_identifier] = STATE(2246), + [sym_scoped_type_identifier] = STATE(3197), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(3738), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(925), + [sym_block_comment] = STATE(925), + [sym_identifier] = ACTIONS(3377), + [anon_sym_LPAREN] = ACTIONS(3379), + [anon_sym_LBRACK] = ACTIONS(3383), + [anon_sym_u8] = ACTIONS(3385), + [anon_sym_i8] = ACTIONS(3385), + [anon_sym_u16] = ACTIONS(3385), + [anon_sym_i16] = ACTIONS(3385), + [anon_sym_u32] = ACTIONS(3385), + [anon_sym_i32] = ACTIONS(3385), + [anon_sym_u64] = ACTIONS(3385), + [anon_sym_i64] = ACTIONS(3385), + [anon_sym_u128] = ACTIONS(3385), + [anon_sym_i128] = ACTIONS(3385), + [anon_sym_isize] = ACTIONS(3385), + [anon_sym_usize] = ACTIONS(3385), + [anon_sym_f32] = ACTIONS(3385), + [anon_sym_f64] = ACTIONS(3385), + [anon_sym_bool] = ACTIONS(3385), + [anon_sym_str] = ACTIONS(3385), + [anon_sym_char] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_PIPE] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_const] = ACTIONS(3391), + [anon_sym_default] = ACTIONS(3393), + [anon_sym_gen] = ACTIONS(3393), + [anon_sym_union] = ACTIONS(3393), + [anon_sym_ref] = ACTIONS(1345), + [sym_mutable_specifier] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [sym_self] = ACTIONS(3395), + [sym_super] = ACTIONS(3395), + [sym_crate] = ACTIONS(3395), + [sym_metavariable] = ACTIONS(3397), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), }, - [878] = { - [sym_function_modifiers] = STATE(3341), - [sym_removed_trait_bound] = STATE(1684), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1731), - [sym_bracketed_type] = STATE(3559), - [sym_lifetime] = STATE(3394), - [sym_array_type] = STATE(1684), - [sym_for_lifetimes] = STATE(1591), - [sym_function_type] = STATE(1684), - [sym_tuple_type] = STATE(1684), - [sym_unit_type] = STATE(1684), - [sym_generic_type] = STATE(1649), - [sym_generic_type_with_turbofish] = STATE(3551), - [sym_bounded_type] = STATE(1684), - [sym_reference_type] = STATE(1684), - [sym_pointer_type] = STATE(1684), - [sym_never_type] = STATE(1684), - [sym_abstract_type] = STATE(1684), - [sym_dynamic_type] = STATE(1684), - [sym_macro_invocation] = STATE(1684), - [sym_scoped_identifier] = STATE(3288), - [sym_scoped_type_identifier] = STATE(1548), - [sym_line_comment] = STATE(878), - [sym_block_comment] = STATE(878), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(3141), - [anon_sym_LBRACK] = ACTIONS(3143), - [anon_sym_STAR] = ACTIONS(3147), - [anon_sym_QMARK] = ACTIONS(3149), - [anon_sym_u8] = ACTIONS(3151), - [anon_sym_i8] = ACTIONS(3151), - [anon_sym_u16] = ACTIONS(3151), - [anon_sym_i16] = ACTIONS(3151), - [anon_sym_u32] = ACTIONS(3151), - [anon_sym_i32] = ACTIONS(3151), - [anon_sym_u64] = ACTIONS(3151), - [anon_sym_i64] = ACTIONS(3151), - [anon_sym_u128] = ACTIONS(3151), - [anon_sym_i128] = ACTIONS(3151), - [anon_sym_isize] = ACTIONS(3151), - [anon_sym_usize] = ACTIONS(3151), - [anon_sym_f32] = ACTIONS(3151), - [anon_sym_f64] = ACTIONS(3151), - [anon_sym_bool] = ACTIONS(3151), - [anon_sym_str] = ACTIONS(3151), - [anon_sym_char] = ACTIONS(3151), - [anon_sym_BANG] = ACTIONS(3153), - [anon_sym_AMP] = ACTIONS(3155), + [926] = { + [sym_bracketed_type] = STATE(3973), + [sym_generic_type] = STATE(3972), + [sym_generic_type_with_turbofish] = STATE(3591), + [sym_macro_invocation] = STATE(2409), + [sym_scoped_identifier] = STATE(2246), + [sym_scoped_type_identifier] = STATE(3197), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(3499), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(926), + [sym_block_comment] = STATE(926), + [sym_identifier] = ACTIONS(3377), + [anon_sym_LPAREN] = ACTIONS(3379), + [anon_sym_LBRACK] = ACTIONS(3383), + [anon_sym_u8] = ACTIONS(3385), + [anon_sym_i8] = ACTIONS(3385), + [anon_sym_u16] = ACTIONS(3385), + [anon_sym_i16] = ACTIONS(3385), + [anon_sym_u32] = ACTIONS(3385), + [anon_sym_i32] = ACTIONS(3385), + [anon_sym_u64] = ACTIONS(3385), + [anon_sym_i64] = ACTIONS(3385), + [anon_sym_u128] = ACTIONS(3385), + [anon_sym_i128] = ACTIONS(3385), + [anon_sym_isize] = ACTIONS(3385), + [anon_sym_usize] = ACTIONS(3385), + [anon_sym_f32] = ACTIONS(3385), + [anon_sym_f64] = ACTIONS(3385), + [anon_sym_bool] = ACTIONS(3385), + [anon_sym_str] = ACTIONS(3385), + [anon_sym_char] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_PIPE] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3157), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(3159), - [anon_sym_fn] = ACTIONS(3161), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(3163), - [anon_sym_impl] = ACTIONS(3165), - [anon_sym_union] = ACTIONS(3163), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(3167), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_const] = ACTIONS(3391), + [anon_sym_default] = ACTIONS(3393), + [anon_sym_gen] = ACTIONS(3393), + [anon_sym_union] = ACTIONS(3393), + [anon_sym_ref] = ACTIONS(1345), + [sym_mutable_specifier] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3171), - [sym_super] = ACTIONS(3171), - [sym_crate] = ACTIONS(3171), - [sym_metavariable] = ACTIONS(3173), + [sym_self] = ACTIONS(3395), + [sym_super] = ACTIONS(3395), + [sym_crate] = ACTIONS(3395), + [sym_metavariable] = ACTIONS(3397), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), }, - [879] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2014), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(1999), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(879), - [sym_block_comment] = STATE(879), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1605), + [927] = { + [sym_bracketed_type] = STATE(3973), + [sym_generic_type] = STATE(3972), + [sym_generic_type_with_turbofish] = STATE(3591), + [sym_macro_invocation] = STATE(2409), + [sym_scoped_identifier] = STATE(2246), + [sym_scoped_type_identifier] = STATE(3197), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(2758), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(927), + [sym_block_comment] = STATE(927), + [sym_identifier] = ACTIONS(3377), + [anon_sym_LPAREN] = ACTIONS(3379), + [anon_sym_LBRACK] = ACTIONS(3383), + [anon_sym_u8] = ACTIONS(3385), + [anon_sym_i8] = ACTIONS(3385), + [anon_sym_u16] = ACTIONS(3385), + [anon_sym_i16] = ACTIONS(3385), + [anon_sym_u32] = ACTIONS(3385), + [anon_sym_i32] = ACTIONS(3385), + [anon_sym_u64] = ACTIONS(3385), + [anon_sym_i64] = ACTIONS(3385), + [anon_sym_u128] = ACTIONS(3385), + [anon_sym_i128] = ACTIONS(3385), + [anon_sym_isize] = ACTIONS(3385), + [anon_sym_usize] = ACTIONS(3385), + [anon_sym_f32] = ACTIONS(3385), + [anon_sym_f64] = ACTIONS(3385), + [anon_sym_bool] = ACTIONS(3385), + [anon_sym_str] = ACTIONS(3385), + [anon_sym_char] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_PIPE] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_const] = ACTIONS(3391), + [anon_sym_default] = ACTIONS(3393), + [anon_sym_gen] = ACTIONS(3393), + [anon_sym_union] = ACTIONS(3393), + [anon_sym_ref] = ACTIONS(1345), + [sym_mutable_specifier] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [sym_self] = ACTIONS(3395), + [sym_super] = ACTIONS(3395), + [sym_crate] = ACTIONS(3395), + [sym_metavariable] = ACTIONS(3397), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), }, - [880] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2767), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(880), - [sym_block_comment] = STATE(880), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1605), + [928] = { + [sym_bracketed_type] = STATE(3973), + [sym_generic_type] = STATE(3972), + [sym_generic_type_with_turbofish] = STATE(3591), + [sym_macro_invocation] = STATE(2409), + [sym_scoped_identifier] = STATE(2246), + [sym_scoped_type_identifier] = STATE(3197), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(3242), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(928), + [sym_block_comment] = STATE(928), + [sym_identifier] = ACTIONS(3377), + [anon_sym_LPAREN] = ACTIONS(3379), + [anon_sym_LBRACK] = ACTIONS(3383), + [anon_sym_u8] = ACTIONS(3385), + [anon_sym_i8] = ACTIONS(3385), + [anon_sym_u16] = ACTIONS(3385), + [anon_sym_i16] = ACTIONS(3385), + [anon_sym_u32] = ACTIONS(3385), + [anon_sym_i32] = ACTIONS(3385), + [anon_sym_u64] = ACTIONS(3385), + [anon_sym_i64] = ACTIONS(3385), + [anon_sym_u128] = ACTIONS(3385), + [anon_sym_i128] = ACTIONS(3385), + [anon_sym_isize] = ACTIONS(3385), + [anon_sym_usize] = ACTIONS(3385), + [anon_sym_f32] = ACTIONS(3385), + [anon_sym_f64] = ACTIONS(3385), + [anon_sym_bool] = ACTIONS(3385), + [anon_sym_str] = ACTIONS(3385), + [anon_sym_char] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_PIPE] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_const] = ACTIONS(3391), + [anon_sym_default] = ACTIONS(3393), + [anon_sym_gen] = ACTIONS(3393), + [anon_sym_union] = ACTIONS(3393), + [anon_sym_ref] = ACTIONS(1345), + [sym_mutable_specifier] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [sym_self] = ACTIONS(3395), + [sym_super] = ACTIONS(3395), + [sym_crate] = ACTIONS(3395), + [sym_metavariable] = ACTIONS(3397), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), }, - [881] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2368), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(881), - [sym_block_comment] = STATE(881), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1605), + [929] = { + [sym_bracketed_type] = STATE(3973), + [sym_generic_type] = STATE(3972), + [sym_generic_type_with_turbofish] = STATE(3591), + [sym_macro_invocation] = STATE(2409), + [sym_scoped_identifier] = STATE(2246), + [sym_scoped_type_identifier] = STATE(3197), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(3012), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(929), + [sym_block_comment] = STATE(929), + [sym_identifier] = ACTIONS(3377), + [anon_sym_LPAREN] = ACTIONS(3379), + [anon_sym_LBRACK] = ACTIONS(3383), + [anon_sym_u8] = ACTIONS(3385), + [anon_sym_i8] = ACTIONS(3385), + [anon_sym_u16] = ACTIONS(3385), + [anon_sym_i16] = ACTIONS(3385), + [anon_sym_u32] = ACTIONS(3385), + [anon_sym_i32] = ACTIONS(3385), + [anon_sym_u64] = ACTIONS(3385), + [anon_sym_i64] = ACTIONS(3385), + [anon_sym_u128] = ACTIONS(3385), + [anon_sym_i128] = ACTIONS(3385), + [anon_sym_isize] = ACTIONS(3385), + [anon_sym_usize] = ACTIONS(3385), + [anon_sym_f32] = ACTIONS(3385), + [anon_sym_f64] = ACTIONS(3385), + [anon_sym_bool] = ACTIONS(3385), + [anon_sym_str] = ACTIONS(3385), + [anon_sym_char] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_PIPE] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_const] = ACTIONS(3391), + [anon_sym_default] = ACTIONS(3393), + [anon_sym_gen] = ACTIONS(3393), + [anon_sym_union] = ACTIONS(3393), + [anon_sym_ref] = ACTIONS(1345), + [sym_mutable_specifier] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [sym_self] = ACTIONS(3503), + [sym_super] = ACTIONS(3395), + [sym_crate] = ACTIONS(3395), + [sym_metavariable] = ACTIONS(3397), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), }, - [882] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2371), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(882), - [sym_block_comment] = STATE(882), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), - [anon_sym_u8] = ACTIONS(1603), - [anon_sym_i8] = ACTIONS(1603), - [anon_sym_u16] = ACTIONS(1603), - [anon_sym_i16] = ACTIONS(1603), - [anon_sym_u32] = ACTIONS(1603), - [anon_sym_i32] = ACTIONS(1603), - [anon_sym_u64] = ACTIONS(1603), - [anon_sym_i64] = ACTIONS(1603), - [anon_sym_u128] = ACTIONS(1603), - [anon_sym_i128] = ACTIONS(1603), - [anon_sym_isize] = ACTIONS(1603), - [anon_sym_usize] = ACTIONS(1603), - [anon_sym_f32] = ACTIONS(1603), - [anon_sym_f64] = ACTIONS(1603), - [anon_sym_bool] = ACTIONS(1603), - [anon_sym_str] = ACTIONS(1603), - [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), - [anon_sym_AMP] = ACTIONS(1605), + [930] = { + [sym_bracketed_type] = STATE(3973), + [sym_generic_type] = STATE(3972), + [sym_generic_type_with_turbofish] = STATE(3591), + [sym_macro_invocation] = STATE(2409), + [sym_scoped_identifier] = STATE(2246), + [sym_scoped_type_identifier] = STATE(3197), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(2789), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(930), + [sym_block_comment] = STATE(930), + [sym_identifier] = ACTIONS(3377), + [anon_sym_LPAREN] = ACTIONS(3379), + [anon_sym_LBRACK] = ACTIONS(3383), + [anon_sym_u8] = ACTIONS(3385), + [anon_sym_i8] = ACTIONS(3385), + [anon_sym_u16] = ACTIONS(3385), + [anon_sym_i16] = ACTIONS(3385), + [anon_sym_u32] = ACTIONS(3385), + [anon_sym_i32] = ACTIONS(3385), + [anon_sym_u64] = ACTIONS(3385), + [anon_sym_i64] = ACTIONS(3385), + [anon_sym_u128] = ACTIONS(3385), + [anon_sym_i128] = ACTIONS(3385), + [anon_sym_isize] = ACTIONS(3385), + [anon_sym_usize] = ACTIONS(3385), + [anon_sym_f32] = ACTIONS(3385), + [anon_sym_f64] = ACTIONS(3385), + [anon_sym_bool] = ACTIONS(3385), + [anon_sym_str] = ACTIONS(3385), + [anon_sym_char] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_PIPE] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), - [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_const] = ACTIONS(3391), + [anon_sym_default] = ACTIONS(3393), + [anon_sym_gen] = ACTIONS(3393), + [anon_sym_union] = ACTIONS(3393), + [anon_sym_ref] = ACTIONS(1345), + [sym_mutable_specifier] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), - [sym_super] = ACTIONS(1619), - [sym_crate] = ACTIONS(1619), - [sym_metavariable] = ACTIONS(1621), + [sym_self] = ACTIONS(3395), + [sym_super] = ACTIONS(3395), + [sym_crate] = ACTIONS(3395), + [sym_metavariable] = ACTIONS(3397), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), }, - [883] = { - [sym_function_modifiers] = STATE(3341), - [sym_removed_trait_bound] = STATE(1684), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1736), - [sym_bracketed_type] = STATE(3559), - [sym_lifetime] = STATE(3394), - [sym_array_type] = STATE(1684), - [sym_for_lifetimes] = STATE(1591), - [sym_function_type] = STATE(1684), - [sym_tuple_type] = STATE(1684), - [sym_unit_type] = STATE(1684), - [sym_generic_type] = STATE(1649), - [sym_generic_type_with_turbofish] = STATE(3551), - [sym_bounded_type] = STATE(1684), - [sym_reference_type] = STATE(1684), - [sym_pointer_type] = STATE(1684), - [sym_never_type] = STATE(1684), - [sym_abstract_type] = STATE(1684), - [sym_dynamic_type] = STATE(1684), - [sym_macro_invocation] = STATE(1684), - [sym_scoped_identifier] = STATE(3288), - [sym_scoped_type_identifier] = STATE(1548), - [sym_line_comment] = STATE(883), - [sym_block_comment] = STATE(883), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(3141), - [anon_sym_LBRACK] = ACTIONS(3143), - [anon_sym_STAR] = ACTIONS(3147), - [anon_sym_QMARK] = ACTIONS(3149), - [anon_sym_u8] = ACTIONS(3151), - [anon_sym_i8] = ACTIONS(3151), - [anon_sym_u16] = ACTIONS(3151), - [anon_sym_i16] = ACTIONS(3151), - [anon_sym_u32] = ACTIONS(3151), - [anon_sym_i32] = ACTIONS(3151), - [anon_sym_u64] = ACTIONS(3151), - [anon_sym_i64] = ACTIONS(3151), - [anon_sym_u128] = ACTIONS(3151), - [anon_sym_i128] = ACTIONS(3151), - [anon_sym_isize] = ACTIONS(3151), - [anon_sym_usize] = ACTIONS(3151), - [anon_sym_f32] = ACTIONS(3151), - [anon_sym_f64] = ACTIONS(3151), - [anon_sym_bool] = ACTIONS(3151), - [anon_sym_str] = ACTIONS(3151), - [anon_sym_char] = ACTIONS(3151), - [anon_sym_BANG] = ACTIONS(3153), - [anon_sym_AMP] = ACTIONS(3155), + [931] = { + [sym_bracketed_type] = STATE(3973), + [sym_generic_type] = STATE(3972), + [sym_generic_type_with_turbofish] = STATE(3591), + [sym_macro_invocation] = STATE(2409), + [sym_scoped_identifier] = STATE(2246), + [sym_scoped_type_identifier] = STATE(3197), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(2958), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(931), + [sym_block_comment] = STATE(931), + [sym_identifier] = ACTIONS(3377), + [anon_sym_LPAREN] = ACTIONS(3379), + [anon_sym_LBRACK] = ACTIONS(3383), + [anon_sym_u8] = ACTIONS(3385), + [anon_sym_i8] = ACTIONS(3385), + [anon_sym_u16] = ACTIONS(3385), + [anon_sym_i16] = ACTIONS(3385), + [anon_sym_u32] = ACTIONS(3385), + [anon_sym_i32] = ACTIONS(3385), + [anon_sym_u64] = ACTIONS(3385), + [anon_sym_i64] = ACTIONS(3385), + [anon_sym_u128] = ACTIONS(3385), + [anon_sym_i128] = ACTIONS(3385), + [anon_sym_isize] = ACTIONS(3385), + [anon_sym_usize] = ACTIONS(3385), + [anon_sym_f32] = ACTIONS(3385), + [anon_sym_f64] = ACTIONS(3385), + [anon_sym_bool] = ACTIONS(3385), + [anon_sym_str] = ACTIONS(3385), + [anon_sym_char] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_PIPE] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3157), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(3159), - [anon_sym_fn] = ACTIONS(3161), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(3163), - [anon_sym_impl] = ACTIONS(3165), - [anon_sym_union] = ACTIONS(3163), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(3167), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_const] = ACTIONS(3391), + [anon_sym_default] = ACTIONS(3393), + [anon_sym_gen] = ACTIONS(3393), + [anon_sym_union] = ACTIONS(3393), + [anon_sym_ref] = ACTIONS(1345), + [sym_mutable_specifier] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3171), - [sym_super] = ACTIONS(3171), - [sym_crate] = ACTIONS(3171), - [sym_metavariable] = ACTIONS(3173), + [sym_self] = ACTIONS(3395), + [sym_super] = ACTIONS(3395), + [sym_crate] = ACTIONS(3395), + [sym_metavariable] = ACTIONS(3397), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), }, - [884] = { - [sym_function_modifiers] = STATE(3341), - [sym_removed_trait_bound] = STATE(1684), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1737), - [sym_bracketed_type] = STATE(3559), - [sym_lifetime] = STATE(3394), - [sym_array_type] = STATE(1684), - [sym_for_lifetimes] = STATE(1591), - [sym_function_type] = STATE(1684), - [sym_tuple_type] = STATE(1684), - [sym_unit_type] = STATE(1684), - [sym_generic_type] = STATE(1649), - [sym_generic_type_with_turbofish] = STATE(3551), - [sym_bounded_type] = STATE(1684), - [sym_reference_type] = STATE(1684), - [sym_pointer_type] = STATE(1684), - [sym_never_type] = STATE(1684), - [sym_abstract_type] = STATE(1684), - [sym_dynamic_type] = STATE(1684), - [sym_macro_invocation] = STATE(1684), - [sym_scoped_identifier] = STATE(3288), - [sym_scoped_type_identifier] = STATE(1548), - [sym_line_comment] = STATE(884), - [sym_block_comment] = STATE(884), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(3141), - [anon_sym_LBRACK] = ACTIONS(3143), - [anon_sym_STAR] = ACTIONS(3147), - [anon_sym_QMARK] = ACTIONS(3149), - [anon_sym_u8] = ACTIONS(3151), - [anon_sym_i8] = ACTIONS(3151), - [anon_sym_u16] = ACTIONS(3151), - [anon_sym_i16] = ACTIONS(3151), - [anon_sym_u32] = ACTIONS(3151), - [anon_sym_i32] = ACTIONS(3151), - [anon_sym_u64] = ACTIONS(3151), - [anon_sym_i64] = ACTIONS(3151), - [anon_sym_u128] = ACTIONS(3151), - [anon_sym_i128] = ACTIONS(3151), - [anon_sym_isize] = ACTIONS(3151), - [anon_sym_usize] = ACTIONS(3151), - [anon_sym_f32] = ACTIONS(3151), - [anon_sym_f64] = ACTIONS(3151), - [anon_sym_bool] = ACTIONS(3151), - [anon_sym_str] = ACTIONS(3151), - [anon_sym_char] = ACTIONS(3151), - [anon_sym_BANG] = ACTIONS(3153), - [anon_sym_AMP] = ACTIONS(3155), + [932] = { + [sym_bracketed_type] = STATE(3973), + [sym_generic_type] = STATE(3972), + [sym_generic_type_with_turbofish] = STATE(3591), + [sym_macro_invocation] = STATE(2409), + [sym_scoped_identifier] = STATE(2246), + [sym_scoped_type_identifier] = STATE(3197), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(2421), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(932), + [sym_block_comment] = STATE(932), + [sym_identifier] = ACTIONS(3377), + [anon_sym_LPAREN] = ACTIONS(3379), + [anon_sym_LBRACK] = ACTIONS(3383), + [anon_sym_u8] = ACTIONS(3385), + [anon_sym_i8] = ACTIONS(3385), + [anon_sym_u16] = ACTIONS(3385), + [anon_sym_i16] = ACTIONS(3385), + [anon_sym_u32] = ACTIONS(3385), + [anon_sym_i32] = ACTIONS(3385), + [anon_sym_u64] = ACTIONS(3385), + [anon_sym_i64] = ACTIONS(3385), + [anon_sym_u128] = ACTIONS(3385), + [anon_sym_i128] = ACTIONS(3385), + [anon_sym_isize] = ACTIONS(3385), + [anon_sym_usize] = ACTIONS(3385), + [anon_sym_f32] = ACTIONS(3385), + [anon_sym_f64] = ACTIONS(3385), + [anon_sym_bool] = ACTIONS(3385), + [anon_sym_str] = ACTIONS(3385), + [anon_sym_char] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_PIPE] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3157), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(3159), - [anon_sym_fn] = ACTIONS(3161), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(3163), - [anon_sym_impl] = ACTIONS(3165), - [anon_sym_union] = ACTIONS(3163), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(3167), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_const] = ACTIONS(3391), + [anon_sym_default] = ACTIONS(3393), + [anon_sym_gen] = ACTIONS(3393), + [anon_sym_union] = ACTIONS(3393), + [anon_sym_ref] = ACTIONS(1345), + [sym_mutable_specifier] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3171), - [sym_super] = ACTIONS(3171), - [sym_crate] = ACTIONS(3171), - [sym_metavariable] = ACTIONS(3173), + [sym_self] = ACTIONS(3395), + [sym_super] = ACTIONS(3395), + [sym_crate] = ACTIONS(3395), + [sym_metavariable] = ACTIONS(3397), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), }, - [885] = { - [sym_function_modifiers] = STATE(3341), - [sym_removed_trait_bound] = STATE(1684), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1738), - [sym_bracketed_type] = STATE(3559), - [sym_lifetime] = STATE(3394), - [sym_array_type] = STATE(1684), - [sym_for_lifetimes] = STATE(1591), - [sym_function_type] = STATE(1684), - [sym_tuple_type] = STATE(1684), - [sym_unit_type] = STATE(1684), - [sym_generic_type] = STATE(1649), - [sym_generic_type_with_turbofish] = STATE(3551), - [sym_bounded_type] = STATE(1684), - [sym_reference_type] = STATE(1684), - [sym_pointer_type] = STATE(1684), - [sym_never_type] = STATE(1684), - [sym_abstract_type] = STATE(1684), - [sym_dynamic_type] = STATE(1684), - [sym_macro_invocation] = STATE(1684), - [sym_scoped_identifier] = STATE(3288), - [sym_scoped_type_identifier] = STATE(1548), - [sym_line_comment] = STATE(885), - [sym_block_comment] = STATE(885), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(3141), - [anon_sym_LBRACK] = ACTIONS(3143), - [anon_sym_STAR] = ACTIONS(3147), - [anon_sym_QMARK] = ACTIONS(3149), - [anon_sym_u8] = ACTIONS(3151), - [anon_sym_i8] = ACTIONS(3151), - [anon_sym_u16] = ACTIONS(3151), - [anon_sym_i16] = ACTIONS(3151), - [anon_sym_u32] = ACTIONS(3151), - [anon_sym_i32] = ACTIONS(3151), - [anon_sym_u64] = ACTIONS(3151), - [anon_sym_i64] = ACTIONS(3151), - [anon_sym_u128] = ACTIONS(3151), - [anon_sym_i128] = ACTIONS(3151), - [anon_sym_isize] = ACTIONS(3151), - [anon_sym_usize] = ACTIONS(3151), - [anon_sym_f32] = ACTIONS(3151), - [anon_sym_f64] = ACTIONS(3151), - [anon_sym_bool] = ACTIONS(3151), - [anon_sym_str] = ACTIONS(3151), - [anon_sym_char] = ACTIONS(3151), - [anon_sym_BANG] = ACTIONS(3153), - [anon_sym_AMP] = ACTIONS(3155), + [933] = { + [sym_bracketed_type] = STATE(3973), + [sym_generic_type] = STATE(3972), + [sym_generic_type_with_turbofish] = STATE(3591), + [sym_macro_invocation] = STATE(2409), + [sym_scoped_identifier] = STATE(2246), + [sym_scoped_type_identifier] = STATE(3197), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(3495), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(933), + [sym_block_comment] = STATE(933), + [sym_identifier] = ACTIONS(3377), + [anon_sym_LPAREN] = ACTIONS(3379), + [anon_sym_LBRACK] = ACTIONS(3383), + [anon_sym_u8] = ACTIONS(3385), + [anon_sym_i8] = ACTIONS(3385), + [anon_sym_u16] = ACTIONS(3385), + [anon_sym_i16] = ACTIONS(3385), + [anon_sym_u32] = ACTIONS(3385), + [anon_sym_i32] = ACTIONS(3385), + [anon_sym_u64] = ACTIONS(3385), + [anon_sym_i64] = ACTIONS(3385), + [anon_sym_u128] = ACTIONS(3385), + [anon_sym_i128] = ACTIONS(3385), + [anon_sym_isize] = ACTIONS(3385), + [anon_sym_usize] = ACTIONS(3385), + [anon_sym_f32] = ACTIONS(3385), + [anon_sym_f64] = ACTIONS(3385), + [anon_sym_bool] = ACTIONS(3385), + [anon_sym_str] = ACTIONS(3385), + [anon_sym_char] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_PIPE] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3157), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(3159), - [anon_sym_fn] = ACTIONS(3161), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(3163), - [anon_sym_impl] = ACTIONS(3165), - [anon_sym_union] = ACTIONS(3163), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(3167), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_const] = ACTIONS(3391), + [anon_sym_default] = ACTIONS(3393), + [anon_sym_gen] = ACTIONS(3393), + [anon_sym_union] = ACTIONS(3393), + [anon_sym_ref] = ACTIONS(1345), + [sym_mutable_specifier] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3171), - [sym_super] = ACTIONS(3171), - [sym_crate] = ACTIONS(3171), - [sym_metavariable] = ACTIONS(3173), + [sym_self] = ACTIONS(3395), + [sym_super] = ACTIONS(3395), + [sym_crate] = ACTIONS(3395), + [sym_metavariable] = ACTIONS(3397), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), }, - [886] = { - [sym_function_modifiers] = STATE(3367), - [sym_removed_trait_bound] = STATE(1416), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1382), - [sym_bracketed_type] = STATE(3544), - [sym_lifetime] = STATE(3348), - [sym_array_type] = STATE(1416), - [sym_for_lifetimes] = STATE(1584), - [sym_function_type] = STATE(1416), - [sym_tuple_type] = STATE(1416), - [sym_unit_type] = STATE(1416), - [sym_generic_type] = STATE(1083), - [sym_generic_type_with_turbofish] = STATE(3535), - [sym_bounded_type] = STATE(1416), - [sym_reference_type] = STATE(1416), - [sym_pointer_type] = STATE(1416), - [sym_never_type] = STATE(1416), - [sym_abstract_type] = STATE(1416), - [sym_dynamic_type] = STATE(1416), - [sym_macro_invocation] = STATE(1416), - [sym_scoped_identifier] = STATE(3224), - [sym_scoped_type_identifier] = STATE(1034), - [sym_line_comment] = STATE(886), - [sym_block_comment] = STATE(886), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3097), - [anon_sym_LPAREN] = ACTIONS(3099), - [anon_sym_LBRACK] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_QMARK] = ACTIONS(3107), - [anon_sym_u8] = ACTIONS(3109), - [anon_sym_i8] = ACTIONS(3109), - [anon_sym_u16] = ACTIONS(3109), - [anon_sym_i16] = ACTIONS(3109), - [anon_sym_u32] = ACTIONS(3109), - [anon_sym_i32] = ACTIONS(3109), - [anon_sym_u64] = ACTIONS(3109), - [anon_sym_i64] = ACTIONS(3109), - [anon_sym_u128] = ACTIONS(3109), - [anon_sym_i128] = ACTIONS(3109), - [anon_sym_isize] = ACTIONS(3109), - [anon_sym_usize] = ACTIONS(3109), - [anon_sym_f32] = ACTIONS(3109), - [anon_sym_f64] = ACTIONS(3109), - [anon_sym_bool] = ACTIONS(3109), - [anon_sym_str] = ACTIONS(3109), - [anon_sym_char] = ACTIONS(3109), - [anon_sym_BANG] = ACTIONS(3111), - [anon_sym_AMP] = ACTIONS(3113), + [934] = { + [sym_bracketed_type] = STATE(3973), + [sym_generic_type] = STATE(3972), + [sym_generic_type_with_turbofish] = STATE(3591), + [sym_macro_invocation] = STATE(2409), + [sym_scoped_identifier] = STATE(2246), + [sym_scoped_type_identifier] = STATE(3197), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(2381), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(934), + [sym_block_comment] = STATE(934), + [sym_identifier] = ACTIONS(3377), + [anon_sym_LPAREN] = ACTIONS(3379), + [anon_sym_LBRACK] = ACTIONS(3383), + [anon_sym_u8] = ACTIONS(3385), + [anon_sym_i8] = ACTIONS(3385), + [anon_sym_u16] = ACTIONS(3385), + [anon_sym_i16] = ACTIONS(3385), + [anon_sym_u32] = ACTIONS(3385), + [anon_sym_i32] = ACTIONS(3385), + [anon_sym_u64] = ACTIONS(3385), + [anon_sym_i64] = ACTIONS(3385), + [anon_sym_u128] = ACTIONS(3385), + [anon_sym_i128] = ACTIONS(3385), + [anon_sym_isize] = ACTIONS(3385), + [anon_sym_usize] = ACTIONS(3385), + [anon_sym_f32] = ACTIONS(3385), + [anon_sym_f64] = ACTIONS(3385), + [anon_sym_bool] = ACTIONS(3385), + [anon_sym_str] = ACTIONS(3385), + [anon_sym_char] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_PIPE] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3115), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(3117), - [anon_sym_fn] = ACTIONS(3119), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(3121), - [anon_sym_impl] = ACTIONS(3123), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(3125), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_const] = ACTIONS(3391), + [anon_sym_default] = ACTIONS(3393), + [anon_sym_gen] = ACTIONS(3393), + [anon_sym_union] = ACTIONS(3393), + [anon_sym_ref] = ACTIONS(1345), + [sym_mutable_specifier] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3129), - [sym_super] = ACTIONS(3129), - [sym_crate] = ACTIONS(3129), - [sym_metavariable] = ACTIONS(3131), + [sym_self] = ACTIONS(3395), + [sym_super] = ACTIONS(3395), + [sym_crate] = ACTIONS(3395), + [sym_metavariable] = ACTIONS(3397), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), }, - [887] = { - [sym_function_modifiers] = STATE(3341), - [sym_removed_trait_bound] = STATE(1684), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1739), - [sym_bracketed_type] = STATE(3559), - [sym_lifetime] = STATE(3394), - [sym_array_type] = STATE(1684), - [sym_for_lifetimes] = STATE(1591), - [sym_function_type] = STATE(1684), - [sym_tuple_type] = STATE(1684), - [sym_unit_type] = STATE(1684), - [sym_generic_type] = STATE(1649), - [sym_generic_type_with_turbofish] = STATE(3551), - [sym_bounded_type] = STATE(1684), - [sym_reference_type] = STATE(1684), - [sym_pointer_type] = STATE(1684), - [sym_never_type] = STATE(1684), - [sym_abstract_type] = STATE(1684), - [sym_dynamic_type] = STATE(1684), - [sym_macro_invocation] = STATE(1684), - [sym_scoped_identifier] = STATE(3288), - [sym_scoped_type_identifier] = STATE(1548), - [sym_line_comment] = STATE(887), - [sym_block_comment] = STATE(887), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(3141), - [anon_sym_LBRACK] = ACTIONS(3143), - [anon_sym_STAR] = ACTIONS(3147), - [anon_sym_QMARK] = ACTIONS(3149), - [anon_sym_u8] = ACTIONS(3151), - [anon_sym_i8] = ACTIONS(3151), - [anon_sym_u16] = ACTIONS(3151), - [anon_sym_i16] = ACTIONS(3151), - [anon_sym_u32] = ACTIONS(3151), - [anon_sym_i32] = ACTIONS(3151), - [anon_sym_u64] = ACTIONS(3151), - [anon_sym_i64] = ACTIONS(3151), - [anon_sym_u128] = ACTIONS(3151), - [anon_sym_i128] = ACTIONS(3151), - [anon_sym_isize] = ACTIONS(3151), - [anon_sym_usize] = ACTIONS(3151), - [anon_sym_f32] = ACTIONS(3151), - [anon_sym_f64] = ACTIONS(3151), - [anon_sym_bool] = ACTIONS(3151), - [anon_sym_str] = ACTIONS(3151), - [anon_sym_char] = ACTIONS(3151), - [anon_sym_BANG] = ACTIONS(3153), - [anon_sym_AMP] = ACTIONS(3155), + [935] = { + [sym_bracketed_type] = STATE(3973), + [sym_generic_type] = STATE(3972), + [sym_generic_type_with_turbofish] = STATE(3591), + [sym_macro_invocation] = STATE(2409), + [sym_scoped_identifier] = STATE(2246), + [sym_scoped_type_identifier] = STATE(3197), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(3576), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(935), + [sym_block_comment] = STATE(935), + [sym_identifier] = ACTIONS(3377), + [anon_sym_LPAREN] = ACTIONS(3379), + [anon_sym_LBRACK] = ACTIONS(3383), + [anon_sym_u8] = ACTIONS(3385), + [anon_sym_i8] = ACTIONS(3385), + [anon_sym_u16] = ACTIONS(3385), + [anon_sym_i16] = ACTIONS(3385), + [anon_sym_u32] = ACTIONS(3385), + [anon_sym_i32] = ACTIONS(3385), + [anon_sym_u64] = ACTIONS(3385), + [anon_sym_i64] = ACTIONS(3385), + [anon_sym_u128] = ACTIONS(3385), + [anon_sym_i128] = ACTIONS(3385), + [anon_sym_isize] = ACTIONS(3385), + [anon_sym_usize] = ACTIONS(3385), + [anon_sym_f32] = ACTIONS(3385), + [anon_sym_f64] = ACTIONS(3385), + [anon_sym_bool] = ACTIONS(3385), + [anon_sym_str] = ACTIONS(3385), + [anon_sym_char] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_PIPE] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3157), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(3159), - [anon_sym_fn] = ACTIONS(3161), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(3163), - [anon_sym_impl] = ACTIONS(3165), - [anon_sym_union] = ACTIONS(3163), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(3167), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_const] = ACTIONS(3391), + [anon_sym_default] = ACTIONS(3393), + [anon_sym_gen] = ACTIONS(3393), + [anon_sym_union] = ACTIONS(3393), + [anon_sym_ref] = ACTIONS(1345), + [sym_mutable_specifier] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3171), - [sym_super] = ACTIONS(3171), - [sym_crate] = ACTIONS(3171), - [sym_metavariable] = ACTIONS(3173), + [sym_self] = ACTIONS(3395), + [sym_super] = ACTIONS(3395), + [sym_crate] = ACTIONS(3395), + [sym_metavariable] = ACTIONS(3397), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), }, - [888] = { - [sym_function_modifiers] = STATE(3367), - [sym_removed_trait_bound] = STATE(1416), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1407), - [sym_bracketed_type] = STATE(3544), - [sym_lifetime] = STATE(3348), - [sym_array_type] = STATE(1416), - [sym_for_lifetimes] = STATE(1584), - [sym_function_type] = STATE(1416), - [sym_tuple_type] = STATE(1416), - [sym_unit_type] = STATE(1416), - [sym_generic_type] = STATE(1083), - [sym_generic_type_with_turbofish] = STATE(3535), - [sym_bounded_type] = STATE(1416), - [sym_reference_type] = STATE(1416), - [sym_pointer_type] = STATE(1416), - [sym_never_type] = STATE(1416), - [sym_abstract_type] = STATE(1416), - [sym_dynamic_type] = STATE(1416), - [sym_macro_invocation] = STATE(1416), - [sym_scoped_identifier] = STATE(3224), - [sym_scoped_type_identifier] = STATE(1034), - [sym_line_comment] = STATE(888), - [sym_block_comment] = STATE(888), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3097), - [anon_sym_LPAREN] = ACTIONS(3099), - [anon_sym_LBRACK] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_QMARK] = ACTIONS(3107), - [anon_sym_u8] = ACTIONS(3109), - [anon_sym_i8] = ACTIONS(3109), - [anon_sym_u16] = ACTIONS(3109), - [anon_sym_i16] = ACTIONS(3109), - [anon_sym_u32] = ACTIONS(3109), - [anon_sym_i32] = ACTIONS(3109), - [anon_sym_u64] = ACTIONS(3109), - [anon_sym_i64] = ACTIONS(3109), - [anon_sym_u128] = ACTIONS(3109), - [anon_sym_i128] = ACTIONS(3109), - [anon_sym_isize] = ACTIONS(3109), - [anon_sym_usize] = ACTIONS(3109), - [anon_sym_f32] = ACTIONS(3109), - [anon_sym_f64] = ACTIONS(3109), - [anon_sym_bool] = ACTIONS(3109), - [anon_sym_str] = ACTIONS(3109), - [anon_sym_char] = ACTIONS(3109), - [anon_sym_BANG] = ACTIONS(3111), - [anon_sym_AMP] = ACTIONS(3113), + [936] = { + [sym_bracketed_type] = STATE(3973), + [sym_generic_type] = STATE(3972), + [sym_generic_type_with_turbofish] = STATE(3591), + [sym_macro_invocation] = STATE(2409), + [sym_scoped_identifier] = STATE(2246), + [sym_scoped_type_identifier] = STATE(3197), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(2835), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(936), + [sym_block_comment] = STATE(936), + [sym_identifier] = ACTIONS(3377), + [anon_sym_LPAREN] = ACTIONS(3379), + [anon_sym_LBRACK] = ACTIONS(3383), + [anon_sym_u8] = ACTIONS(3385), + [anon_sym_i8] = ACTIONS(3385), + [anon_sym_u16] = ACTIONS(3385), + [anon_sym_i16] = ACTIONS(3385), + [anon_sym_u32] = ACTIONS(3385), + [anon_sym_i32] = ACTIONS(3385), + [anon_sym_u64] = ACTIONS(3385), + [anon_sym_i64] = ACTIONS(3385), + [anon_sym_u128] = ACTIONS(3385), + [anon_sym_i128] = ACTIONS(3385), + [anon_sym_isize] = ACTIONS(3385), + [anon_sym_usize] = ACTIONS(3385), + [anon_sym_f32] = ACTIONS(3385), + [anon_sym_f64] = ACTIONS(3385), + [anon_sym_bool] = ACTIONS(3385), + [anon_sym_str] = ACTIONS(3385), + [anon_sym_char] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_PIPE] = ACTIONS(1313), [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3115), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(3117), - [anon_sym_fn] = ACTIONS(3119), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(3121), - [anon_sym_impl] = ACTIONS(3123), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(3125), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_const] = ACTIONS(3391), + [anon_sym_default] = ACTIONS(3393), + [anon_sym_gen] = ACTIONS(3393), + [anon_sym_union] = ACTIONS(3393), + [anon_sym_ref] = ACTIONS(1345), + [sym_mutable_specifier] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3129), - [sym_super] = ACTIONS(3129), - [sym_crate] = ACTIONS(3129), - [sym_metavariable] = ACTIONS(3131), + [sym_self] = ACTIONS(3395), + [sym_super] = ACTIONS(3395), + [sym_crate] = ACTIONS(3395), + [sym_metavariable] = ACTIONS(3397), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), }, - [889] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2365), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(2366), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(2175), - [sym_line_comment] = STATE(889), - [sym_block_comment] = STATE(889), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3225), + [937] = { + [sym_bracketed_type] = STATE(3973), + [sym_generic_type] = STATE(3972), + [sym_generic_type_with_turbofish] = STATE(3591), + [sym_macro_invocation] = STATE(2409), + [sym_scoped_identifier] = STATE(2246), + [sym_scoped_type_identifier] = STATE(3197), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(3730), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(937), + [sym_block_comment] = STATE(937), + [sym_identifier] = ACTIONS(3377), + [anon_sym_LPAREN] = ACTIONS(3379), + [anon_sym_LBRACK] = ACTIONS(3383), + [anon_sym_u8] = ACTIONS(3385), + [anon_sym_i8] = ACTIONS(3385), + [anon_sym_u16] = ACTIONS(3385), + [anon_sym_i16] = ACTIONS(3385), + [anon_sym_u32] = ACTIONS(3385), + [anon_sym_i32] = ACTIONS(3385), + [anon_sym_u64] = ACTIONS(3385), + [anon_sym_i64] = ACTIONS(3385), + [anon_sym_u128] = ACTIONS(3385), + [anon_sym_i128] = ACTIONS(3385), + [anon_sym_isize] = ACTIONS(3385), + [anon_sym_usize] = ACTIONS(3385), + [anon_sym_f32] = ACTIONS(3385), + [anon_sym_f64] = ACTIONS(3385), + [anon_sym_bool] = ACTIONS(3385), + [anon_sym_str] = ACTIONS(3385), + [anon_sym_char] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_PIPE] = ACTIONS(1313), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_const] = ACTIONS(3391), + [anon_sym_default] = ACTIONS(3393), + [anon_sym_gen] = ACTIONS(3393), + [anon_sym_union] = ACTIONS(3393), + [anon_sym_ref] = ACTIONS(1345), + [sym_mutable_specifier] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3395), + [sym_super] = ACTIONS(3395), + [sym_crate] = ACTIONS(3395), + [sym_metavariable] = ACTIONS(3397), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), + }, + [938] = { + [sym_bracketed_type] = STATE(3973), + [sym_generic_type] = STATE(3972), + [sym_generic_type_with_turbofish] = STATE(3591), + [sym_macro_invocation] = STATE(2409), + [sym_scoped_identifier] = STATE(2246), + [sym_scoped_type_identifier] = STATE(3197), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(2408), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(938), + [sym_block_comment] = STATE(938), + [sym_identifier] = ACTIONS(3377), + [anon_sym_LPAREN] = ACTIONS(3379), + [anon_sym_LBRACK] = ACTIONS(3383), + [anon_sym_u8] = ACTIONS(3385), + [anon_sym_i8] = ACTIONS(3385), + [anon_sym_u16] = ACTIONS(3385), + [anon_sym_i16] = ACTIONS(3385), + [anon_sym_u32] = ACTIONS(3385), + [anon_sym_i32] = ACTIONS(3385), + [anon_sym_u64] = ACTIONS(3385), + [anon_sym_i64] = ACTIONS(3385), + [anon_sym_u128] = ACTIONS(3385), + [anon_sym_i128] = ACTIONS(3385), + [anon_sym_isize] = ACTIONS(3385), + [anon_sym_usize] = ACTIONS(3385), + [anon_sym_f32] = ACTIONS(3385), + [anon_sym_f64] = ACTIONS(3385), + [anon_sym_bool] = ACTIONS(3385), + [anon_sym_str] = ACTIONS(3385), + [anon_sym_char] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_PIPE] = ACTIONS(1313), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_const] = ACTIONS(3391), + [anon_sym_default] = ACTIONS(3393), + [anon_sym_gen] = ACTIONS(3393), + [anon_sym_union] = ACTIONS(3393), + [anon_sym_ref] = ACTIONS(1345), + [sym_mutable_specifier] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3395), + [sym_super] = ACTIONS(3395), + [sym_crate] = ACTIONS(3395), + [sym_metavariable] = ACTIONS(3397), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), + }, + [939] = { + [sym_bracketed_type] = STATE(3973), + [sym_generic_type] = STATE(3972), + [sym_generic_type_with_turbofish] = STATE(3591), + [sym_macro_invocation] = STATE(2409), + [sym_scoped_identifier] = STATE(2246), + [sym_scoped_type_identifier] = STATE(3197), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(2834), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(939), + [sym_block_comment] = STATE(939), + [sym_identifier] = ACTIONS(3377), + [anon_sym_LPAREN] = ACTIONS(3379), + [anon_sym_LBRACK] = ACTIONS(3383), + [anon_sym_u8] = ACTIONS(3385), + [anon_sym_i8] = ACTIONS(3385), + [anon_sym_u16] = ACTIONS(3385), + [anon_sym_i16] = ACTIONS(3385), + [anon_sym_u32] = ACTIONS(3385), + [anon_sym_i32] = ACTIONS(3385), + [anon_sym_u64] = ACTIONS(3385), + [anon_sym_i64] = ACTIONS(3385), + [anon_sym_u128] = ACTIONS(3385), + [anon_sym_i128] = ACTIONS(3385), + [anon_sym_isize] = ACTIONS(3385), + [anon_sym_usize] = ACTIONS(3385), + [anon_sym_f32] = ACTIONS(3385), + [anon_sym_f64] = ACTIONS(3385), + [anon_sym_bool] = ACTIONS(3385), + [anon_sym_str] = ACTIONS(3385), + [anon_sym_char] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_PIPE] = ACTIONS(1313), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_const] = ACTIONS(3391), + [anon_sym_default] = ACTIONS(3393), + [anon_sym_gen] = ACTIONS(3393), + [anon_sym_union] = ACTIONS(3393), + [anon_sym_ref] = ACTIONS(1345), + [sym_mutable_specifier] = ACTIONS(3505), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3395), + [sym_super] = ACTIONS(3395), + [sym_crate] = ACTIONS(3395), + [sym_metavariable] = ACTIONS(3397), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), + }, + [940] = { + [sym_bracketed_type] = STATE(3973), + [sym_generic_type] = STATE(3972), + [sym_generic_type_with_turbofish] = STATE(3591), + [sym_macro_invocation] = STATE(2409), + [sym_scoped_identifier] = STATE(2246), + [sym_scoped_type_identifier] = STATE(3197), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(2762), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(940), + [sym_block_comment] = STATE(940), + [sym_identifier] = ACTIONS(3377), + [anon_sym_LPAREN] = ACTIONS(3379), + [anon_sym_LBRACK] = ACTIONS(3383), + [anon_sym_u8] = ACTIONS(3385), + [anon_sym_i8] = ACTIONS(3385), + [anon_sym_u16] = ACTIONS(3385), + [anon_sym_i16] = ACTIONS(3385), + [anon_sym_u32] = ACTIONS(3385), + [anon_sym_i32] = ACTIONS(3385), + [anon_sym_u64] = ACTIONS(3385), + [anon_sym_i64] = ACTIONS(3385), + [anon_sym_u128] = ACTIONS(3385), + [anon_sym_i128] = ACTIONS(3385), + [anon_sym_isize] = ACTIONS(3385), + [anon_sym_usize] = ACTIONS(3385), + [anon_sym_f32] = ACTIONS(3385), + [anon_sym_f64] = ACTIONS(3385), + [anon_sym_bool] = ACTIONS(3385), + [anon_sym_str] = ACTIONS(3385), + [anon_sym_char] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_PIPE] = ACTIONS(1313), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_const] = ACTIONS(3391), + [anon_sym_default] = ACTIONS(3393), + [anon_sym_gen] = ACTIONS(3393), + [anon_sym_union] = ACTIONS(3393), + [anon_sym_ref] = ACTIONS(1345), + [sym_mutable_specifier] = ACTIONS(3507), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3395), + [sym_super] = ACTIONS(3395), + [sym_crate] = ACTIONS(3395), + [sym_metavariable] = ACTIONS(3397), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), + }, + [941] = { + [sym_bracketed_type] = STATE(3973), + [sym_generic_type] = STATE(3972), + [sym_generic_type_with_turbofish] = STATE(3591), + [sym_macro_invocation] = STATE(2409), + [sym_scoped_identifier] = STATE(2246), + [sym_scoped_type_identifier] = STATE(3197), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(3276), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(941), + [sym_block_comment] = STATE(941), + [sym_identifier] = ACTIONS(3377), + [anon_sym_LPAREN] = ACTIONS(3379), + [anon_sym_LBRACK] = ACTIONS(3383), + [anon_sym_u8] = ACTIONS(3385), + [anon_sym_i8] = ACTIONS(3385), + [anon_sym_u16] = ACTIONS(3385), + [anon_sym_i16] = ACTIONS(3385), + [anon_sym_u32] = ACTIONS(3385), + [anon_sym_i32] = ACTIONS(3385), + [anon_sym_u64] = ACTIONS(3385), + [anon_sym_i64] = ACTIONS(3385), + [anon_sym_u128] = ACTIONS(3385), + [anon_sym_i128] = ACTIONS(3385), + [anon_sym_isize] = ACTIONS(3385), + [anon_sym_usize] = ACTIONS(3385), + [anon_sym_f32] = ACTIONS(3385), + [anon_sym_f64] = ACTIONS(3385), + [anon_sym_bool] = ACTIONS(3385), + [anon_sym_str] = ACTIONS(3385), + [anon_sym_char] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_PIPE] = ACTIONS(1313), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_const] = ACTIONS(3391), + [anon_sym_default] = ACTIONS(3393), + [anon_sym_gen] = ACTIONS(3393), + [anon_sym_union] = ACTIONS(3393), + [anon_sym_ref] = ACTIONS(1345), + [sym_mutable_specifier] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3395), + [sym_super] = ACTIONS(3395), + [sym_crate] = ACTIONS(3395), + [sym_metavariable] = ACTIONS(3397), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), + }, + [942] = { + [sym_bracketed_type] = STATE(3973), + [sym_generic_type] = STATE(3972), + [sym_generic_type_with_turbofish] = STATE(3591), + [sym_macro_invocation] = STATE(2409), + [sym_scoped_identifier] = STATE(2246), + [sym_scoped_type_identifier] = STATE(3197), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(2417), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(942), + [sym_block_comment] = STATE(942), + [sym_identifier] = ACTIONS(3377), + [anon_sym_LPAREN] = ACTIONS(3379), + [anon_sym_LBRACK] = ACTIONS(3383), + [anon_sym_u8] = ACTIONS(3385), + [anon_sym_i8] = ACTIONS(3385), + [anon_sym_u16] = ACTIONS(3385), + [anon_sym_i16] = ACTIONS(3385), + [anon_sym_u32] = ACTIONS(3385), + [anon_sym_i32] = ACTIONS(3385), + [anon_sym_u64] = ACTIONS(3385), + [anon_sym_i64] = ACTIONS(3385), + [anon_sym_u128] = ACTIONS(3385), + [anon_sym_i128] = ACTIONS(3385), + [anon_sym_isize] = ACTIONS(3385), + [anon_sym_usize] = ACTIONS(3385), + [anon_sym_f32] = ACTIONS(3385), + [anon_sym_f64] = ACTIONS(3385), + [anon_sym_bool] = ACTIONS(3385), + [anon_sym_str] = ACTIONS(3385), + [anon_sym_char] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_PIPE] = ACTIONS(1313), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_const] = ACTIONS(3391), + [anon_sym_default] = ACTIONS(3393), + [anon_sym_gen] = ACTIONS(3393), + [anon_sym_union] = ACTIONS(3393), + [anon_sym_ref] = ACTIONS(1345), + [sym_mutable_specifier] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3395), + [sym_super] = ACTIONS(3395), + [sym_crate] = ACTIONS(3395), + [sym_metavariable] = ACTIONS(3397), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), + }, + [943] = { + [sym_bracketed_type] = STATE(3973), + [sym_generic_type] = STATE(3972), + [sym_generic_type_with_turbofish] = STATE(3591), + [sym_macro_invocation] = STATE(2409), + [sym_scoped_identifier] = STATE(2246), + [sym_scoped_type_identifier] = STATE(3197), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(2411), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(943), + [sym_block_comment] = STATE(943), + [sym_identifier] = ACTIONS(3377), + [anon_sym_LPAREN] = ACTIONS(3379), + [anon_sym_LBRACK] = ACTIONS(3383), + [anon_sym_u8] = ACTIONS(3385), + [anon_sym_i8] = ACTIONS(3385), + [anon_sym_u16] = ACTIONS(3385), + [anon_sym_i16] = ACTIONS(3385), + [anon_sym_u32] = ACTIONS(3385), + [anon_sym_i32] = ACTIONS(3385), + [anon_sym_u64] = ACTIONS(3385), + [anon_sym_i64] = ACTIONS(3385), + [anon_sym_u128] = ACTIONS(3385), + [anon_sym_i128] = ACTIONS(3385), + [anon_sym_isize] = ACTIONS(3385), + [anon_sym_usize] = ACTIONS(3385), + [anon_sym_f32] = ACTIONS(3385), + [anon_sym_f64] = ACTIONS(3385), + [anon_sym_bool] = ACTIONS(3385), + [anon_sym_str] = ACTIONS(3385), + [anon_sym_char] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_PIPE] = ACTIONS(1313), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_const] = ACTIONS(3391), + [anon_sym_default] = ACTIONS(3393), + [anon_sym_gen] = ACTIONS(3393), + [anon_sym_union] = ACTIONS(3393), + [anon_sym_ref] = ACTIONS(1345), + [sym_mutable_specifier] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3395), + [sym_super] = ACTIONS(3395), + [sym_crate] = ACTIONS(3395), + [sym_metavariable] = ACTIONS(3397), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), + }, + [944] = { + [sym_bracketed_type] = STATE(3973), + [sym_generic_type] = STATE(3972), + [sym_generic_type_with_turbofish] = STATE(3591), + [sym_macro_invocation] = STATE(2409), + [sym_scoped_identifier] = STATE(2246), + [sym_scoped_type_identifier] = STATE(3197), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(3615), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(944), + [sym_block_comment] = STATE(944), + [sym_identifier] = ACTIONS(3377), + [anon_sym_LPAREN] = ACTIONS(3379), + [anon_sym_LBRACK] = ACTIONS(3383), + [anon_sym_u8] = ACTIONS(3385), + [anon_sym_i8] = ACTIONS(3385), + [anon_sym_u16] = ACTIONS(3385), + [anon_sym_i16] = ACTIONS(3385), + [anon_sym_u32] = ACTIONS(3385), + [anon_sym_i32] = ACTIONS(3385), + [anon_sym_u64] = ACTIONS(3385), + [anon_sym_i64] = ACTIONS(3385), + [anon_sym_u128] = ACTIONS(3385), + [anon_sym_i128] = ACTIONS(3385), + [anon_sym_isize] = ACTIONS(3385), + [anon_sym_usize] = ACTIONS(3385), + [anon_sym_f32] = ACTIONS(3385), + [anon_sym_f64] = ACTIONS(3385), + [anon_sym_bool] = ACTIONS(3385), + [anon_sym_str] = ACTIONS(3385), + [anon_sym_char] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_PIPE] = ACTIONS(1313), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_const] = ACTIONS(3391), + [anon_sym_default] = ACTIONS(3393), + [anon_sym_gen] = ACTIONS(3393), + [anon_sym_union] = ACTIONS(3393), + [anon_sym_ref] = ACTIONS(1345), + [sym_mutable_specifier] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3395), + [sym_super] = ACTIONS(3395), + [sym_crate] = ACTIONS(3395), + [sym_metavariable] = ACTIONS(3397), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), + }, + [945] = { + [sym_bracketed_type] = STATE(3973), + [sym_generic_type] = STATE(3972), + [sym_generic_type_with_turbofish] = STATE(3591), + [sym_macro_invocation] = STATE(2409), + [sym_scoped_identifier] = STATE(2246), + [sym_scoped_type_identifier] = STATE(3197), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(2858), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(945), + [sym_block_comment] = STATE(945), + [sym_identifier] = ACTIONS(3377), + [anon_sym_LPAREN] = ACTIONS(3379), + [anon_sym_LBRACK] = ACTIONS(3383), + [anon_sym_u8] = ACTIONS(3385), + [anon_sym_i8] = ACTIONS(3385), + [anon_sym_u16] = ACTIONS(3385), + [anon_sym_i16] = ACTIONS(3385), + [anon_sym_u32] = ACTIONS(3385), + [anon_sym_i32] = ACTIONS(3385), + [anon_sym_u64] = ACTIONS(3385), + [anon_sym_i64] = ACTIONS(3385), + [anon_sym_u128] = ACTIONS(3385), + [anon_sym_i128] = ACTIONS(3385), + [anon_sym_isize] = ACTIONS(3385), + [anon_sym_usize] = ACTIONS(3385), + [anon_sym_f32] = ACTIONS(3385), + [anon_sym_f64] = ACTIONS(3385), + [anon_sym_bool] = ACTIONS(3385), + [anon_sym_str] = ACTIONS(3385), + [anon_sym_char] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_PIPE] = ACTIONS(1313), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_const] = ACTIONS(3391), + [anon_sym_default] = ACTIONS(3393), + [anon_sym_gen] = ACTIONS(3393), + [anon_sym_union] = ACTIONS(3393), + [anon_sym_ref] = ACTIONS(1345), + [sym_mutable_specifier] = ACTIONS(3509), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3395), + [sym_super] = ACTIONS(3395), + [sym_crate] = ACTIONS(3395), + [sym_metavariable] = ACTIONS(3397), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), + }, + [946] = { + [sym_bracketed_type] = STATE(4029), + [sym_generic_type] = STATE(3972), + [sym_generic_type_with_turbofish] = STATE(3589), + [sym_macro_invocation] = STATE(3205), + [sym_scoped_identifier] = STATE(2461), + [sym_scoped_type_identifier] = STATE(3294), + [sym_const_block] = STATE(3205), + [sym__pattern] = STATE(3163), + [sym_tuple_pattern] = STATE(3205), + [sym_slice_pattern] = STATE(3205), + [sym_tuple_struct_pattern] = STATE(3205), + [sym_struct_pattern] = STATE(3205), + [sym_remaining_field_pattern] = STATE(3205), + [sym_mut_pattern] = STATE(3205), + [sym_range_pattern] = STATE(3205), + [sym_ref_pattern] = STATE(3205), + [sym_captured_pattern] = STATE(3205), + [sym_reference_pattern] = STATE(3205), + [sym_or_pattern] = STATE(3205), + [sym__literal_pattern] = STATE(2617), + [sym_negative_literal] = STATE(2620), + [sym_string_literal] = STATE(2620), + [sym_raw_string_literal] = STATE(2620), + [sym_boolean_literal] = STATE(2620), + [sym_line_comment] = STATE(946), + [sym_block_comment] = STATE(946), + [sym_identifier] = ACTIONS(1649), + [anon_sym_LPAREN] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_u8] = ACTIONS(1657), + [anon_sym_i8] = ACTIONS(1657), + [anon_sym_u16] = ACTIONS(1657), + [anon_sym_i16] = ACTIONS(1657), + [anon_sym_u32] = ACTIONS(1657), + [anon_sym_i32] = ACTIONS(1657), + [anon_sym_u64] = ACTIONS(1657), + [anon_sym_i64] = ACTIONS(1657), + [anon_sym_u128] = ACTIONS(1657), + [anon_sym_i128] = ACTIONS(1657), + [anon_sym_isize] = ACTIONS(1657), + [anon_sym_usize] = ACTIONS(1657), + [anon_sym_f32] = ACTIONS(1657), + [anon_sym_f64] = ACTIONS(1657), + [anon_sym_bool] = ACTIONS(1657), + [anon_sym_str] = ACTIONS(1657), + [anon_sym_char] = ACTIONS(1657), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_AMP] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(1663), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1665), + [anon_sym_DOT_DOT] = ACTIONS(1667), + [anon_sym_COLON_COLON] = ACTIONS(1669), + [anon_sym_const] = ACTIONS(1673), + [anon_sym_default] = ACTIONS(1675), + [anon_sym_gen] = ACTIONS(1675), + [anon_sym_union] = ACTIONS(1675), + [anon_sym_ref] = ACTIONS(1677), + [sym_mutable_specifier] = ACTIONS(1679), + [sym_integer_literal] = ACTIONS(1681), + [aux_sym_string_literal_token1] = ACTIONS(1683), + [sym_char_literal] = ACTIONS(1681), + [anon_sym_true] = ACTIONS(1685), + [anon_sym_false] = ACTIONS(1685), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1687), + [sym_super] = ACTIONS(1687), + [sym_crate] = ACTIONS(1687), + [sym_metavariable] = ACTIONS(1689), + [sym__raw_string_literal_start] = ACTIONS(1691), + [sym_float_literal] = ACTIONS(1681), + }, + [947] = { + [sym_bracketed_type] = STATE(3973), + [sym_generic_type] = STATE(3972), + [sym_generic_type_with_turbofish] = STATE(3591), + [sym_macro_invocation] = STATE(2409), + [sym_scoped_identifier] = STATE(2246), + [sym_scoped_type_identifier] = STATE(3197), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(2414), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(947), + [sym_block_comment] = STATE(947), + [sym_identifier] = ACTIONS(3377), + [anon_sym_LPAREN] = ACTIONS(3379), + [anon_sym_LBRACK] = ACTIONS(3383), + [anon_sym_u8] = ACTIONS(3385), + [anon_sym_i8] = ACTIONS(3385), + [anon_sym_u16] = ACTIONS(3385), + [anon_sym_i16] = ACTIONS(3385), + [anon_sym_u32] = ACTIONS(3385), + [anon_sym_i32] = ACTIONS(3385), + [anon_sym_u64] = ACTIONS(3385), + [anon_sym_i64] = ACTIONS(3385), + [anon_sym_u128] = ACTIONS(3385), + [anon_sym_i128] = ACTIONS(3385), + [anon_sym_isize] = ACTIONS(3385), + [anon_sym_usize] = ACTIONS(3385), + [anon_sym_f32] = ACTIONS(3385), + [anon_sym_f64] = ACTIONS(3385), + [anon_sym_bool] = ACTIONS(3385), + [anon_sym_str] = ACTIONS(3385), + [anon_sym_char] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_PIPE] = ACTIONS(1313), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_const] = ACTIONS(3391), + [anon_sym_default] = ACTIONS(3393), + [anon_sym_gen] = ACTIONS(3393), + [anon_sym_union] = ACTIONS(3393), + [anon_sym_ref] = ACTIONS(1345), + [sym_mutable_specifier] = ACTIONS(3511), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3395), + [sym_super] = ACTIONS(3395), + [sym_crate] = ACTIONS(3395), + [sym_metavariable] = ACTIONS(3397), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), + }, + [948] = { + [sym_bracketed_type] = STATE(3973), + [sym_generic_type] = STATE(3972), + [sym_generic_type_with_turbofish] = STATE(3591), + [sym_macro_invocation] = STATE(2409), + [sym_scoped_identifier] = STATE(2246), + [sym_scoped_type_identifier] = STATE(3197), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(3356), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(948), + [sym_block_comment] = STATE(948), + [sym_identifier] = ACTIONS(3377), + [anon_sym_LPAREN] = ACTIONS(3379), + [anon_sym_LBRACK] = ACTIONS(3383), + [anon_sym_u8] = ACTIONS(3385), + [anon_sym_i8] = ACTIONS(3385), + [anon_sym_u16] = ACTIONS(3385), + [anon_sym_i16] = ACTIONS(3385), + [anon_sym_u32] = ACTIONS(3385), + [anon_sym_i32] = ACTIONS(3385), + [anon_sym_u64] = ACTIONS(3385), + [anon_sym_i64] = ACTIONS(3385), + [anon_sym_u128] = ACTIONS(3385), + [anon_sym_i128] = ACTIONS(3385), + [anon_sym_isize] = ACTIONS(3385), + [anon_sym_usize] = ACTIONS(3385), + [anon_sym_f32] = ACTIONS(3385), + [anon_sym_f64] = ACTIONS(3385), + [anon_sym_bool] = ACTIONS(3385), + [anon_sym_str] = ACTIONS(3385), + [anon_sym_char] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_PIPE] = ACTIONS(1313), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_const] = ACTIONS(3391), + [anon_sym_default] = ACTIONS(3393), + [anon_sym_gen] = ACTIONS(3393), + [anon_sym_union] = ACTIONS(3393), + [anon_sym_ref] = ACTIONS(1345), + [sym_mutable_specifier] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3395), + [sym_super] = ACTIONS(3395), + [sym_crate] = ACTIONS(3395), + [sym_metavariable] = ACTIONS(3397), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), + }, + [949] = { + [sym_bracketed_type] = STATE(3973), + [sym_generic_type] = STATE(3972), + [sym_generic_type_with_turbofish] = STATE(3591), + [sym_macro_invocation] = STATE(2409), + [sym_scoped_identifier] = STATE(2246), + [sym_scoped_type_identifier] = STATE(3197), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(2841), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(949), + [sym_block_comment] = STATE(949), + [sym_identifier] = ACTIONS(3377), + [anon_sym_LPAREN] = ACTIONS(3379), + [anon_sym_LBRACK] = ACTIONS(3383), + [anon_sym_u8] = ACTIONS(3385), + [anon_sym_i8] = ACTIONS(3385), + [anon_sym_u16] = ACTIONS(3385), + [anon_sym_i16] = ACTIONS(3385), + [anon_sym_u32] = ACTIONS(3385), + [anon_sym_i32] = ACTIONS(3385), + [anon_sym_u64] = ACTIONS(3385), + [anon_sym_i64] = ACTIONS(3385), + [anon_sym_u128] = ACTIONS(3385), + [anon_sym_i128] = ACTIONS(3385), + [anon_sym_isize] = ACTIONS(3385), + [anon_sym_usize] = ACTIONS(3385), + [anon_sym_f32] = ACTIONS(3385), + [anon_sym_f64] = ACTIONS(3385), + [anon_sym_bool] = ACTIONS(3385), + [anon_sym_str] = ACTIONS(3385), + [anon_sym_char] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_PIPE] = ACTIONS(1313), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_const] = ACTIONS(3391), + [anon_sym_default] = ACTIONS(3393), + [anon_sym_gen] = ACTIONS(3393), + [anon_sym_union] = ACTIONS(3393), + [anon_sym_ref] = ACTIONS(1345), + [sym_mutable_specifier] = ACTIONS(3513), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3395), + [sym_super] = ACTIONS(3395), + [sym_crate] = ACTIONS(3395), + [sym_metavariable] = ACTIONS(3397), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), + }, + [950] = { + [sym_bracketed_type] = STATE(3973), + [sym_generic_type] = STATE(3972), + [sym_generic_type_with_turbofish] = STATE(3591), + [sym_macro_invocation] = STATE(2409), + [sym_scoped_identifier] = STATE(2246), + [sym_scoped_type_identifier] = STATE(3197), + [sym_const_block] = STATE(2409), + [sym__pattern] = STATE(3544), + [sym_tuple_pattern] = STATE(2409), + [sym_slice_pattern] = STATE(2409), + [sym_tuple_struct_pattern] = STATE(2409), + [sym_struct_pattern] = STATE(2409), + [sym_remaining_field_pattern] = STATE(2409), + [sym_mut_pattern] = STATE(2409), + [sym_range_pattern] = STATE(2409), + [sym_ref_pattern] = STATE(2409), + [sym_captured_pattern] = STATE(2409), + [sym_reference_pattern] = STATE(2409), + [sym_or_pattern] = STATE(2409), + [sym__literal_pattern] = STATE(2299), + [sym_negative_literal] = STATE(2301), + [sym_string_literal] = STATE(2301), + [sym_raw_string_literal] = STATE(2301), + [sym_boolean_literal] = STATE(2301), + [sym_line_comment] = STATE(950), + [sym_block_comment] = STATE(950), + [sym_identifier] = ACTIONS(3377), + [anon_sym_LPAREN] = ACTIONS(3379), + [anon_sym_LBRACK] = ACTIONS(3383), + [anon_sym_u8] = ACTIONS(3385), + [anon_sym_i8] = ACTIONS(3385), + [anon_sym_u16] = ACTIONS(3385), + [anon_sym_i16] = ACTIONS(3385), + [anon_sym_u32] = ACTIONS(3385), + [anon_sym_i32] = ACTIONS(3385), + [anon_sym_u64] = ACTIONS(3385), + [anon_sym_i64] = ACTIONS(3385), + [anon_sym_u128] = ACTIONS(3385), + [anon_sym_i128] = ACTIONS(3385), + [anon_sym_isize] = ACTIONS(3385), + [anon_sym_usize] = ACTIONS(3385), + [anon_sym_f32] = ACTIONS(3385), + [anon_sym_f64] = ACTIONS(3385), + [anon_sym_bool] = ACTIONS(3385), + [anon_sym_str] = ACTIONS(3385), + [anon_sym_char] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(1307), + [anon_sym_AMP] = ACTIONS(3387), + [anon_sym_PIPE] = ACTIONS(1313), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1517), + [anon_sym_DOT_DOT] = ACTIONS(1519), + [anon_sym_COLON_COLON] = ACTIONS(3389), + [anon_sym_const] = ACTIONS(3391), + [anon_sym_default] = ACTIONS(3393), + [anon_sym_gen] = ACTIONS(3393), + [anon_sym_union] = ACTIONS(3393), + [anon_sym_ref] = ACTIONS(1345), + [sym_mutable_specifier] = ACTIONS(1525), + [sym_integer_literal] = ACTIONS(1351), + [aux_sym_string_literal_token1] = ACTIONS(1353), + [sym_char_literal] = ACTIONS(1351), + [anon_sym_true] = ACTIONS(1355), + [anon_sym_false] = ACTIONS(1355), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3395), + [sym_super] = ACTIONS(3395), + [sym_crate] = ACTIONS(3395), + [sym_metavariable] = ACTIONS(3397), + [sym__raw_string_literal_start] = ACTIONS(1363), + [sym_float_literal] = ACTIONS(1351), + }, + [951] = { + [sym_bracketed_type] = STATE(4029), + [sym_generic_type] = STATE(3972), + [sym_generic_type_with_turbofish] = STATE(3589), + [sym_macro_invocation] = STATE(3205), + [sym_scoped_identifier] = STATE(2461), + [sym_scoped_type_identifier] = STATE(3294), + [sym_const_block] = STATE(3205), + [sym__pattern] = STATE(3174), + [sym_tuple_pattern] = STATE(3205), + [sym_slice_pattern] = STATE(3205), + [sym_tuple_struct_pattern] = STATE(3205), + [sym_struct_pattern] = STATE(3205), + [sym_remaining_field_pattern] = STATE(3205), + [sym_mut_pattern] = STATE(3205), + [sym_range_pattern] = STATE(3205), + [sym_ref_pattern] = STATE(3205), + [sym_captured_pattern] = STATE(3205), + [sym_reference_pattern] = STATE(3205), + [sym_or_pattern] = STATE(3205), + [sym__literal_pattern] = STATE(2617), + [sym_negative_literal] = STATE(2620), + [sym_string_literal] = STATE(2620), + [sym_raw_string_literal] = STATE(2620), + [sym_boolean_literal] = STATE(2620), + [sym_line_comment] = STATE(951), + [sym_block_comment] = STATE(951), + [sym_identifier] = ACTIONS(1649), + [anon_sym_LPAREN] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_u8] = ACTIONS(1657), + [anon_sym_i8] = ACTIONS(1657), + [anon_sym_u16] = ACTIONS(1657), + [anon_sym_i16] = ACTIONS(1657), + [anon_sym_u32] = ACTIONS(1657), + [anon_sym_i32] = ACTIONS(1657), + [anon_sym_u64] = ACTIONS(1657), + [anon_sym_i64] = ACTIONS(1657), + [anon_sym_u128] = ACTIONS(1657), + [anon_sym_i128] = ACTIONS(1657), + [anon_sym_isize] = ACTIONS(1657), + [anon_sym_usize] = ACTIONS(1657), + [anon_sym_f32] = ACTIONS(1657), + [anon_sym_f64] = ACTIONS(1657), + [anon_sym_bool] = ACTIONS(1657), + [anon_sym_str] = ACTIONS(1657), + [anon_sym_char] = ACTIONS(1657), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_AMP] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(1663), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1665), + [anon_sym_DOT_DOT] = ACTIONS(1667), + [anon_sym_COLON_COLON] = ACTIONS(1669), + [anon_sym_const] = ACTIONS(1673), + [anon_sym_default] = ACTIONS(1675), + [anon_sym_gen] = ACTIONS(1675), + [anon_sym_union] = ACTIONS(1675), + [anon_sym_ref] = ACTIONS(1677), + [sym_mutable_specifier] = ACTIONS(1679), + [sym_integer_literal] = ACTIONS(1681), + [aux_sym_string_literal_token1] = ACTIONS(1683), + [sym_char_literal] = ACTIONS(1681), + [anon_sym_true] = ACTIONS(1685), + [anon_sym_false] = ACTIONS(1685), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1687), + [sym_super] = ACTIONS(1687), + [sym_crate] = ACTIONS(1687), + [sym_metavariable] = ACTIONS(1689), + [sym__raw_string_literal_start] = ACTIONS(1691), + [sym_float_literal] = ACTIONS(1681), + }, + [952] = { + [sym_bracketed_type] = STATE(4029), + [sym_generic_type] = STATE(3972), + [sym_generic_type_with_turbofish] = STATE(3589), + [sym_macro_invocation] = STATE(3205), + [sym_scoped_identifier] = STATE(2461), + [sym_scoped_type_identifier] = STATE(3294), + [sym_const_block] = STATE(3205), + [sym__pattern] = STATE(3179), + [sym_tuple_pattern] = STATE(3205), + [sym_slice_pattern] = STATE(3205), + [sym_tuple_struct_pattern] = STATE(3205), + [sym_struct_pattern] = STATE(3205), + [sym_remaining_field_pattern] = STATE(3205), + [sym_mut_pattern] = STATE(3205), + [sym_range_pattern] = STATE(3205), + [sym_ref_pattern] = STATE(3205), + [sym_captured_pattern] = STATE(3205), + [sym_reference_pattern] = STATE(3205), + [sym_or_pattern] = STATE(3205), + [sym__literal_pattern] = STATE(2617), + [sym_negative_literal] = STATE(2620), + [sym_string_literal] = STATE(2620), + [sym_raw_string_literal] = STATE(2620), + [sym_boolean_literal] = STATE(2620), + [sym_line_comment] = STATE(952), + [sym_block_comment] = STATE(952), + [sym_identifier] = ACTIONS(1649), + [anon_sym_LPAREN] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_u8] = ACTIONS(1657), + [anon_sym_i8] = ACTIONS(1657), + [anon_sym_u16] = ACTIONS(1657), + [anon_sym_i16] = ACTIONS(1657), + [anon_sym_u32] = ACTIONS(1657), + [anon_sym_i32] = ACTIONS(1657), + [anon_sym_u64] = ACTIONS(1657), + [anon_sym_i64] = ACTIONS(1657), + [anon_sym_u128] = ACTIONS(1657), + [anon_sym_i128] = ACTIONS(1657), + [anon_sym_isize] = ACTIONS(1657), + [anon_sym_usize] = ACTIONS(1657), + [anon_sym_f32] = ACTIONS(1657), + [anon_sym_f64] = ACTIONS(1657), + [anon_sym_bool] = ACTIONS(1657), + [anon_sym_str] = ACTIONS(1657), + [anon_sym_char] = ACTIONS(1657), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_AMP] = ACTIONS(1661), + [anon_sym_PIPE] = ACTIONS(1663), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1665), + [anon_sym_DOT_DOT] = ACTIONS(1667), + [anon_sym_COLON_COLON] = ACTIONS(1669), + [anon_sym_const] = ACTIONS(1673), + [anon_sym_default] = ACTIONS(1675), + [anon_sym_gen] = ACTIONS(1675), + [anon_sym_union] = ACTIONS(1675), + [anon_sym_ref] = ACTIONS(1677), + [sym_mutable_specifier] = ACTIONS(1679), + [sym_integer_literal] = ACTIONS(1681), + [aux_sym_string_literal_token1] = ACTIONS(1683), + [sym_char_literal] = ACTIONS(1681), + [anon_sym_true] = ACTIONS(1685), + [anon_sym_false] = ACTIONS(1685), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1687), + [sym_super] = ACTIONS(1687), + [sym_crate] = ACTIONS(1687), + [sym_metavariable] = ACTIONS(1689), + [sym__raw_string_literal_start] = ACTIONS(1691), + [sym_float_literal] = ACTIONS(1681), + }, + [953] = { + [sym_function_modifiers] = STATE(3801), + [sym_removed_trait_bound] = STATE(1632), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(1634), + [sym_bracketed_type] = STATE(4021), + [sym_lifetime] = STATE(3861), + [sym_array_type] = STATE(1632), + [sym_for_lifetimes] = STATE(1834), + [sym_function_type] = STATE(1632), + [sym_tuple_type] = STATE(1632), + [sym_unit_type] = STATE(1632), + [sym_generic_type] = STATE(1410), + [sym_generic_type_with_turbofish] = STATE(4011), + [sym_bounded_type] = STATE(1632), + [sym_reference_type] = STATE(1632), + [sym_pointer_type] = STATE(1632), + [sym_never_type] = STATE(1632), + [sym_abstract_type] = STATE(1632), + [sym_dynamic_type] = STATE(1632), + [sym_macro_invocation] = STATE(1632), + [sym_scoped_identifier] = STATE(3763), + [sym_scoped_type_identifier] = STATE(1185), + [sym_line_comment] = STATE(953), + [sym_block_comment] = STATE(953), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3515), + [anon_sym_LPAREN] = ACTIONS(3517), + [anon_sym_LBRACK] = ACTIONS(3519), + [anon_sym_PLUS] = ACTIONS(3521), + [anon_sym_STAR] = ACTIONS(3523), + [anon_sym_QMARK] = ACTIONS(3525), + [anon_sym_u8] = ACTIONS(3527), + [anon_sym_i8] = ACTIONS(3527), + [anon_sym_u16] = ACTIONS(3527), + [anon_sym_i16] = ACTIONS(3527), + [anon_sym_u32] = ACTIONS(3527), + [anon_sym_i32] = ACTIONS(3527), + [anon_sym_u64] = ACTIONS(3527), + [anon_sym_i64] = ACTIONS(3527), + [anon_sym_u128] = ACTIONS(3527), + [anon_sym_i128] = ACTIONS(3527), + [anon_sym_isize] = ACTIONS(3527), + [anon_sym_usize] = ACTIONS(3527), + [anon_sym_f32] = ACTIONS(3527), + [anon_sym_f64] = ACTIONS(3527), + [anon_sym_bool] = ACTIONS(3527), + [anon_sym_str] = ACTIONS(3527), + [anon_sym_char] = ACTIONS(3527), + [anon_sym_BANG] = ACTIONS(3529), + [anon_sym_AMP] = ACTIONS(3531), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3533), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(3535), + [anon_sym_fn] = ACTIONS(3537), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(3539), + [anon_sym_impl] = ACTIONS(3541), + [anon_sym_union] = ACTIONS(3539), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(3543), + [sym_mutable_specifier] = ACTIONS(3545), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3547), + [sym_super] = ACTIONS(3547), + [sym_crate] = ACTIONS(3547), + [sym_metavariable] = ACTIONS(3549), + }, + [954] = { + [sym_function_modifiers] = STATE(3979), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2034), + [sym_bracketed_type] = STATE(4035), + [sym_lifetime] = STATE(4057), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1826), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), + [sym_generic_type] = STATE(1896), + [sym_generic_type_with_turbofish] = STATE(4027), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3587), + [sym_scoped_type_identifier] = STATE(1798), + [sym_line_comment] = STATE(954), + [sym_block_comment] = STATE(954), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3551), + [anon_sym_LPAREN] = ACTIONS(3553), + [anon_sym_LBRACK] = ACTIONS(3555), + [anon_sym_PLUS] = ACTIONS(3557), + [anon_sym_STAR] = ACTIONS(3559), + [anon_sym_QMARK] = ACTIONS(3561), + [anon_sym_u8] = ACTIONS(3563), + [anon_sym_i8] = ACTIONS(3563), + [anon_sym_u16] = ACTIONS(3563), + [anon_sym_i16] = ACTIONS(3563), + [anon_sym_u32] = ACTIONS(3563), + [anon_sym_i32] = ACTIONS(3563), + [anon_sym_u64] = ACTIONS(3563), + [anon_sym_i64] = ACTIONS(3563), + [anon_sym_u128] = ACTIONS(3563), + [anon_sym_i128] = ACTIONS(3563), + [anon_sym_isize] = ACTIONS(3563), + [anon_sym_usize] = ACTIONS(3563), + [anon_sym_f32] = ACTIONS(3563), + [anon_sym_f64] = ACTIONS(3563), + [anon_sym_bool] = ACTIONS(3563), + [anon_sym_str] = ACTIONS(3563), + [anon_sym_char] = ACTIONS(3563), + [anon_sym_BANG] = ACTIONS(3565), + [anon_sym_AMP] = ACTIONS(3567), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3569), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(3571), + [anon_sym_fn] = ACTIONS(3573), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(3575), + [anon_sym_impl] = ACTIONS(3577), + [anon_sym_union] = ACTIONS(3575), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(3579), + [sym_mutable_specifier] = ACTIONS(3581), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3583), + [sym_super] = ACTIONS(3583), + [sym_crate] = ACTIONS(3583), + [sym_metavariable] = ACTIONS(3585), + }, + [955] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2255), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(955), + [sym_block_comment] = STATE(955), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_PLUS] = ACTIONS(3587), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -101905,202 +109310,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(3227), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), + [sym_mutable_specifier] = ACTIONS(3589), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), + [sym_self] = ACTIONS(3591), [sym_super] = ACTIONS(1619), [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [890] = { - [sym_function_modifiers] = STATE(3367), - [sym_removed_trait_bound] = STATE(1416), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1409), - [sym_bracketed_type] = STATE(3544), - [sym_lifetime] = STATE(3348), - [sym_array_type] = STATE(1416), - [sym_for_lifetimes] = STATE(1584), - [sym_function_type] = STATE(1416), - [sym_tuple_type] = STATE(1416), - [sym_unit_type] = STATE(1416), - [sym_generic_type] = STATE(1083), - [sym_generic_type_with_turbofish] = STATE(3535), - [sym_bounded_type] = STATE(1416), - [sym_reference_type] = STATE(1416), - [sym_pointer_type] = STATE(1416), - [sym_never_type] = STATE(1416), - [sym_abstract_type] = STATE(1416), - [sym_dynamic_type] = STATE(1416), - [sym_macro_invocation] = STATE(1416), - [sym_scoped_identifier] = STATE(3224), - [sym_scoped_type_identifier] = STATE(1034), - [sym_line_comment] = STATE(890), - [sym_block_comment] = STATE(890), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3097), - [anon_sym_LPAREN] = ACTIONS(3099), - [anon_sym_LBRACK] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_QMARK] = ACTIONS(3107), - [anon_sym_u8] = ACTIONS(3109), - [anon_sym_i8] = ACTIONS(3109), - [anon_sym_u16] = ACTIONS(3109), - [anon_sym_i16] = ACTIONS(3109), - [anon_sym_u32] = ACTIONS(3109), - [anon_sym_i32] = ACTIONS(3109), - [anon_sym_u64] = ACTIONS(3109), - [anon_sym_i64] = ACTIONS(3109), - [anon_sym_u128] = ACTIONS(3109), - [anon_sym_i128] = ACTIONS(3109), - [anon_sym_isize] = ACTIONS(3109), - [anon_sym_usize] = ACTIONS(3109), - [anon_sym_f32] = ACTIONS(3109), - [anon_sym_f64] = ACTIONS(3109), - [anon_sym_bool] = ACTIONS(3109), - [anon_sym_str] = ACTIONS(3109), - [anon_sym_char] = ACTIONS(3109), - [anon_sym_BANG] = ACTIONS(3111), - [anon_sym_AMP] = ACTIONS(3113), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3115), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(3117), - [anon_sym_fn] = ACTIONS(3119), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(3121), - [anon_sym_impl] = ACTIONS(3123), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(3125), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3129), - [sym_super] = ACTIONS(3129), - [sym_crate] = ACTIONS(3129), - [sym_metavariable] = ACTIONS(3131), - }, - [891] = { - [sym_function_modifiers] = STATE(3367), - [sym_removed_trait_bound] = STATE(1416), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1463), - [sym_bracketed_type] = STATE(3544), - [sym_lifetime] = STATE(3348), - [sym_array_type] = STATE(1416), - [sym_for_lifetimes] = STATE(1584), - [sym_function_type] = STATE(1416), - [sym_tuple_type] = STATE(1416), - [sym_unit_type] = STATE(1416), - [sym_generic_type] = STATE(1083), - [sym_generic_type_with_turbofish] = STATE(3535), - [sym_bounded_type] = STATE(1416), - [sym_reference_type] = STATE(1416), - [sym_pointer_type] = STATE(1416), - [sym_never_type] = STATE(1416), - [sym_abstract_type] = STATE(1416), - [sym_dynamic_type] = STATE(1416), - [sym_macro_invocation] = STATE(1416), - [sym_scoped_identifier] = STATE(3224), - [sym_scoped_type_identifier] = STATE(1034), - [sym_line_comment] = STATE(891), - [sym_block_comment] = STATE(891), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3097), - [anon_sym_LPAREN] = ACTIONS(3099), - [anon_sym_LBRACK] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_QMARK] = ACTIONS(3107), - [anon_sym_u8] = ACTIONS(3109), - [anon_sym_i8] = ACTIONS(3109), - [anon_sym_u16] = ACTIONS(3109), - [anon_sym_i16] = ACTIONS(3109), - [anon_sym_u32] = ACTIONS(3109), - [anon_sym_i32] = ACTIONS(3109), - [anon_sym_u64] = ACTIONS(3109), - [anon_sym_i64] = ACTIONS(3109), - [anon_sym_u128] = ACTIONS(3109), - [anon_sym_i128] = ACTIONS(3109), - [anon_sym_isize] = ACTIONS(3109), - [anon_sym_usize] = ACTIONS(3109), - [anon_sym_f32] = ACTIONS(3109), - [anon_sym_f64] = ACTIONS(3109), - [anon_sym_bool] = ACTIONS(3109), - [anon_sym_str] = ACTIONS(3109), - [anon_sym_char] = ACTIONS(3109), - [anon_sym_BANG] = ACTIONS(3111), - [anon_sym_AMP] = ACTIONS(3113), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3115), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(3117), - [anon_sym_fn] = ACTIONS(3119), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(3121), - [anon_sym_impl] = ACTIONS(3123), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(3125), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3129), - [sym_super] = ACTIONS(3129), - [sym_crate] = ACTIONS(3129), - [sym_metavariable] = ACTIONS(3131), - }, - [892] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2345), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(892), - [sym_block_comment] = STATE(892), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [956] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2255), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(956), + [sym_block_comment] = STATE(956), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_PLUS] = ACTIONS(3587), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -102118,22 +109383,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), + [sym_mutable_specifier] = ACTIONS(3593), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -102141,37 +109407,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [893] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2006), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(893), - [sym_block_comment] = STATE(893), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [957] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(3755), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(957), + [sym_block_comment] = STATE(957), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_PLUS] = ACTIONS(3587), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -102189,22 +109456,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), + [sym_mutable_specifier] = ACTIONS(3595), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -102212,179 +109480,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [894] = { - [sym_function_modifiers] = STATE(3341), - [sym_removed_trait_bound] = STATE(1684), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1693), - [sym_bracketed_type] = STATE(3559), - [sym_lifetime] = STATE(3394), - [sym_array_type] = STATE(1684), - [sym_for_lifetimes] = STATE(1591), - [sym_function_type] = STATE(1684), - [sym_tuple_type] = STATE(1684), - [sym_unit_type] = STATE(1684), - [sym_generic_type] = STATE(1649), - [sym_generic_type_with_turbofish] = STATE(3551), - [sym_bounded_type] = STATE(1684), - [sym_reference_type] = STATE(1684), - [sym_pointer_type] = STATE(1684), - [sym_never_type] = STATE(1684), - [sym_abstract_type] = STATE(1684), - [sym_dynamic_type] = STATE(1684), - [sym_macro_invocation] = STATE(1684), - [sym_scoped_identifier] = STATE(3288), - [sym_scoped_type_identifier] = STATE(1548), - [sym_line_comment] = STATE(894), - [sym_block_comment] = STATE(894), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(3141), - [anon_sym_LBRACK] = ACTIONS(3143), - [anon_sym_STAR] = ACTIONS(3147), - [anon_sym_QMARK] = ACTIONS(3149), - [anon_sym_u8] = ACTIONS(3151), - [anon_sym_i8] = ACTIONS(3151), - [anon_sym_u16] = ACTIONS(3151), - [anon_sym_i16] = ACTIONS(3151), - [anon_sym_u32] = ACTIONS(3151), - [anon_sym_i32] = ACTIONS(3151), - [anon_sym_u64] = ACTIONS(3151), - [anon_sym_i64] = ACTIONS(3151), - [anon_sym_u128] = ACTIONS(3151), - [anon_sym_i128] = ACTIONS(3151), - [anon_sym_isize] = ACTIONS(3151), - [anon_sym_usize] = ACTIONS(3151), - [anon_sym_f32] = ACTIONS(3151), - [anon_sym_f64] = ACTIONS(3151), - [anon_sym_bool] = ACTIONS(3151), - [anon_sym_str] = ACTIONS(3151), - [anon_sym_char] = ACTIONS(3151), - [anon_sym_BANG] = ACTIONS(3153), - [anon_sym_AMP] = ACTIONS(3155), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3157), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(3159), - [anon_sym_fn] = ACTIONS(3161), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(3163), - [anon_sym_impl] = ACTIONS(3165), - [anon_sym_union] = ACTIONS(3163), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(3167), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3171), - [sym_super] = ACTIONS(3171), - [sym_crate] = ACTIONS(3171), - [sym_metavariable] = ACTIONS(3173), - }, - [895] = { - [sym_function_modifiers] = STATE(3367), - [sym_removed_trait_bound] = STATE(1416), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1412), - [sym_bracketed_type] = STATE(3544), - [sym_lifetime] = STATE(3348), - [sym_array_type] = STATE(1416), - [sym_for_lifetimes] = STATE(1584), - [sym_function_type] = STATE(1416), - [sym_tuple_type] = STATE(1416), - [sym_unit_type] = STATE(1416), - [sym_generic_type] = STATE(1083), - [sym_generic_type_with_turbofish] = STATE(3535), - [sym_bounded_type] = STATE(1416), - [sym_reference_type] = STATE(1416), - [sym_pointer_type] = STATE(1416), - [sym_never_type] = STATE(1416), - [sym_abstract_type] = STATE(1416), - [sym_dynamic_type] = STATE(1416), - [sym_macro_invocation] = STATE(1416), - [sym_scoped_identifier] = STATE(3224), - [sym_scoped_type_identifier] = STATE(1034), - [sym_line_comment] = STATE(895), - [sym_block_comment] = STATE(895), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3097), - [anon_sym_LPAREN] = ACTIONS(3099), - [anon_sym_LBRACK] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_QMARK] = ACTIONS(3107), - [anon_sym_u8] = ACTIONS(3109), - [anon_sym_i8] = ACTIONS(3109), - [anon_sym_u16] = ACTIONS(3109), - [anon_sym_i16] = ACTIONS(3109), - [anon_sym_u32] = ACTIONS(3109), - [anon_sym_i32] = ACTIONS(3109), - [anon_sym_u64] = ACTIONS(3109), - [anon_sym_i64] = ACTIONS(3109), - [anon_sym_u128] = ACTIONS(3109), - [anon_sym_i128] = ACTIONS(3109), - [anon_sym_isize] = ACTIONS(3109), - [anon_sym_usize] = ACTIONS(3109), - [anon_sym_f32] = ACTIONS(3109), - [anon_sym_f64] = ACTIONS(3109), - [anon_sym_bool] = ACTIONS(3109), - [anon_sym_str] = ACTIONS(3109), - [anon_sym_char] = ACTIONS(3109), - [anon_sym_BANG] = ACTIONS(3111), - [anon_sym_AMP] = ACTIONS(3113), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3115), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(3117), - [anon_sym_fn] = ACTIONS(3119), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(3121), - [anon_sym_impl] = ACTIONS(3123), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(3125), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3129), - [sym_super] = ACTIONS(3129), - [sym_crate] = ACTIONS(3129), - [sym_metavariable] = ACTIONS(3131), - }, - [896] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2571), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(896), - [sym_block_comment] = STATE(896), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [958] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(3432), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(958), + [sym_block_comment] = STATE(958), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_RPAREN] = ACTIONS(3597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -102402,22 +109529,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -102425,37 +109552,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [897] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2642), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(897), - [sym_block_comment] = STATE(897), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [959] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(3432), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(959), + [sym_block_comment] = STATE(959), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_RPAREN] = ACTIONS(3599), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -102473,22 +109601,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -102496,179 +109624,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [898] = { - [sym_function_modifiers] = STATE(3367), - [sym_removed_trait_bound] = STATE(1416), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1415), - [sym_bracketed_type] = STATE(3544), - [sym_lifetime] = STATE(3348), - [sym_array_type] = STATE(1416), - [sym_for_lifetimes] = STATE(1584), - [sym_function_type] = STATE(1416), - [sym_tuple_type] = STATE(1416), - [sym_unit_type] = STATE(1416), - [sym_generic_type] = STATE(1083), - [sym_generic_type_with_turbofish] = STATE(3535), - [sym_bounded_type] = STATE(1416), - [sym_reference_type] = STATE(1416), - [sym_pointer_type] = STATE(1416), - [sym_never_type] = STATE(1416), - [sym_abstract_type] = STATE(1416), - [sym_dynamic_type] = STATE(1416), - [sym_macro_invocation] = STATE(1416), - [sym_scoped_identifier] = STATE(3224), - [sym_scoped_type_identifier] = STATE(1034), - [sym_line_comment] = STATE(898), - [sym_block_comment] = STATE(898), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3097), - [anon_sym_LPAREN] = ACTIONS(3099), - [anon_sym_LBRACK] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_QMARK] = ACTIONS(3107), - [anon_sym_u8] = ACTIONS(3109), - [anon_sym_i8] = ACTIONS(3109), - [anon_sym_u16] = ACTIONS(3109), - [anon_sym_i16] = ACTIONS(3109), - [anon_sym_u32] = ACTIONS(3109), - [anon_sym_i32] = ACTIONS(3109), - [anon_sym_u64] = ACTIONS(3109), - [anon_sym_i64] = ACTIONS(3109), - [anon_sym_u128] = ACTIONS(3109), - [anon_sym_i128] = ACTIONS(3109), - [anon_sym_isize] = ACTIONS(3109), - [anon_sym_usize] = ACTIONS(3109), - [anon_sym_f32] = ACTIONS(3109), - [anon_sym_f64] = ACTIONS(3109), - [anon_sym_bool] = ACTIONS(3109), - [anon_sym_str] = ACTIONS(3109), - [anon_sym_char] = ACTIONS(3109), - [anon_sym_BANG] = ACTIONS(3111), - [anon_sym_AMP] = ACTIONS(3113), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3115), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(3117), - [anon_sym_fn] = ACTIONS(3119), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(3121), - [anon_sym_impl] = ACTIONS(3123), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(3125), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3129), - [sym_super] = ACTIONS(3129), - [sym_crate] = ACTIONS(3129), - [sym_metavariable] = ACTIONS(3131), - }, - [899] = { - [sym_line_comment] = STATE(899), - [sym_block_comment] = STATE(899), - [sym_identifier] = ACTIONS(2101), - [anon_sym_LPAREN] = ACTIONS(2099), - [anon_sym_LBRACK] = ACTIONS(2099), - [anon_sym_RBRACK] = ACTIONS(2099), - [anon_sym_LBRACE] = ACTIONS(2099), - [anon_sym_STAR] = ACTIONS(2099), - [anon_sym_u8] = ACTIONS(2101), - [anon_sym_i8] = ACTIONS(2101), - [anon_sym_u16] = ACTIONS(2101), - [anon_sym_i16] = ACTIONS(2101), - [anon_sym_u32] = ACTIONS(2101), - [anon_sym_i32] = ACTIONS(2101), - [anon_sym_u64] = ACTIONS(2101), - [anon_sym_i64] = ACTIONS(2101), - [anon_sym_u128] = ACTIONS(2101), - [anon_sym_i128] = ACTIONS(2101), - [anon_sym_isize] = ACTIONS(2101), - [anon_sym_usize] = ACTIONS(2101), - [anon_sym_f32] = ACTIONS(2101), - [anon_sym_f64] = ACTIONS(2101), - [anon_sym_bool] = ACTIONS(2101), - [anon_sym_str] = ACTIONS(2101), - [anon_sym_char] = ACTIONS(2101), - [anon_sym_DASH] = ACTIONS(2099), - [anon_sym_BANG] = ACTIONS(2099), - [anon_sym_AMP] = ACTIONS(2099), - [anon_sym_PIPE] = ACTIONS(2099), - [anon_sym_LT] = ACTIONS(2099), - [anon_sym__] = ACTIONS(2101), - [anon_sym_DOT_DOT] = ACTIONS(2099), - [anon_sym_COMMA] = ACTIONS(2099), - [anon_sym_COLON_COLON] = ACTIONS(2099), - [anon_sym_POUND] = ACTIONS(2099), - [anon_sym_SQUOTE] = ACTIONS(2101), - [anon_sym_async] = ACTIONS(2101), - [anon_sym_break] = ACTIONS(2101), - [anon_sym_const] = ACTIONS(2101), - [anon_sym_continue] = ACTIONS(2101), - [anon_sym_default] = ACTIONS(2101), - [anon_sym_for] = ACTIONS(2101), - [anon_sym_gen] = ACTIONS(2101), - [anon_sym_if] = ACTIONS(2101), - [anon_sym_loop] = ACTIONS(2101), - [anon_sym_match] = ACTIONS(2101), - [anon_sym_return] = ACTIONS(2101), - [anon_sym_static] = ACTIONS(2101), - [anon_sym_union] = ACTIONS(2101), - [anon_sym_unsafe] = ACTIONS(2101), - [anon_sym_while] = ACTIONS(2101), - [anon_sym_ref] = ACTIONS(2101), - [sym_mutable_specifier] = ACTIONS(2101), - [anon_sym_yield] = ACTIONS(2101), - [anon_sym_move] = ACTIONS(2101), - [anon_sym_try] = ACTIONS(2101), - [sym_integer_literal] = ACTIONS(2099), - [aux_sym_string_literal_token1] = ACTIONS(2099), - [sym_char_literal] = ACTIONS(2099), - [anon_sym_true] = ACTIONS(2101), - [anon_sym_false] = ACTIONS(2101), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(2101), - [sym_super] = ACTIONS(2101), - [sym_crate] = ACTIONS(2101), - [sym_metavariable] = ACTIONS(2099), - [sym__raw_string_literal_start] = ACTIONS(2099), - [sym_float_literal] = ACTIONS(2099), - }, - [900] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2951), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(900), - [sym_block_comment] = STATE(900), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [960] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(3432), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(960), + [sym_block_comment] = STATE(960), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_RPAREN] = ACTIONS(3601), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -102686,22 +109673,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -102709,37 +109696,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [901] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1998), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(901), - [sym_block_comment] = STATE(901), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [961] = { + [sym_function_modifiers] = STATE(3979), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(1914), + [sym_bracketed_type] = STATE(4035), + [sym_lifetime] = STATE(954), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1826), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), + [sym_generic_type] = STATE(1896), + [sym_generic_type_with_turbofish] = STATE(4027), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3587), + [sym_scoped_type_identifier] = STATE(1798), + [sym_line_comment] = STATE(961), + [sym_block_comment] = STATE(961), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3551), + [anon_sym_LPAREN] = ACTIONS(3553), + [anon_sym_LBRACK] = ACTIONS(3555), + [anon_sym_STAR] = ACTIONS(3559), + [anon_sym_QMARK] = ACTIONS(3561), + [anon_sym_u8] = ACTIONS(3563), + [anon_sym_i8] = ACTIONS(3563), + [anon_sym_u16] = ACTIONS(3563), + [anon_sym_i16] = ACTIONS(3563), + [anon_sym_u32] = ACTIONS(3563), + [anon_sym_i32] = ACTIONS(3563), + [anon_sym_u64] = ACTIONS(3563), + [anon_sym_i64] = ACTIONS(3563), + [anon_sym_u128] = ACTIONS(3563), + [anon_sym_i128] = ACTIONS(3563), + [anon_sym_isize] = ACTIONS(3563), + [anon_sym_usize] = ACTIONS(3563), + [anon_sym_f32] = ACTIONS(3563), + [anon_sym_f64] = ACTIONS(3563), + [anon_sym_bool] = ACTIONS(3563), + [anon_sym_str] = ACTIONS(3563), + [anon_sym_char] = ACTIONS(3563), + [anon_sym_BANG] = ACTIONS(3565), + [anon_sym_AMP] = ACTIONS(3567), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3569), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(3571), + [anon_sym_fn] = ACTIONS(3573), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(3575), + [anon_sym_impl] = ACTIONS(3577), + [anon_sym_union] = ACTIONS(3575), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(3579), + [sym_mutable_specifier] = ACTIONS(3603), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3583), + [sym_super] = ACTIONS(3583), + [sym_crate] = ACTIONS(3583), + [sym_metavariable] = ACTIONS(3585), + }, + [962] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(3073), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(962), + [sym_block_comment] = STATE(962), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_RPAREN] = ACTIONS(3605), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -102757,22 +109817,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -102780,37 +109840,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [902] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2661), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(902), - [sym_block_comment] = STATE(902), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [963] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_type_parameters] = STATE(1137), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2720), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2690), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2453), + [sym_line_comment] = STATE(963), + [sym_block_comment] = STATE(963), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3607), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -102828,22 +109889,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(3609), [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(3611), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -102851,37 +109912,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [903] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2408), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(903), - [sym_block_comment] = STATE(903), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [964] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2952), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(964), + [sym_block_comment] = STATE(964), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -102899,22 +109960,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3613), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -102922,37 +109984,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [904] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2618), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(904), - [sym_block_comment] = STATE(904), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [965] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(3432), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(965), + [sym_block_comment] = STATE(965), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_RPAREN] = ACTIONS(3615), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -102970,22 +110033,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -102993,37 +110056,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [905] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2012), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(905), - [sym_block_comment] = STATE(905), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [966] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2963), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(966), + [sym_block_comment] = STATE(966), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -103041,22 +110104,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3617), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -103064,37 +110128,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [906] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2450), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(906), - [sym_block_comment] = STATE(906), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [967] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(3432), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(967), + [sym_block_comment] = STATE(967), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_RPAREN] = ACTIONS(3619), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -103112,22 +110177,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -103135,37 +110200,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [907] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(3035), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(907), - [sym_block_comment] = STATE(907), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [968] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_type_parameters] = STATE(1088), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2641), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2644), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2459), + [sym_line_comment] = STATE(968), + [sym_block_comment] = STATE(968), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3621), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -103183,22 +110249,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(3623), [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(3611), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -103206,108 +110272,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [908] = { - [sym_function_modifiers] = STATE(3367), - [sym_removed_trait_bound] = STATE(1416), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1460), - [sym_bracketed_type] = STATE(3544), - [sym_lifetime] = STATE(3348), - [sym_array_type] = STATE(1416), - [sym_for_lifetimes] = STATE(1584), - [sym_function_type] = STATE(1416), - [sym_tuple_type] = STATE(1416), - [sym_unit_type] = STATE(1416), - [sym_generic_type] = STATE(1083), - [sym_generic_type_with_turbofish] = STATE(3535), - [sym_bounded_type] = STATE(1416), - [sym_reference_type] = STATE(1416), - [sym_pointer_type] = STATE(1416), - [sym_never_type] = STATE(1416), - [sym_abstract_type] = STATE(1416), - [sym_dynamic_type] = STATE(1416), - [sym_macro_invocation] = STATE(1416), - [sym_scoped_identifier] = STATE(3224), - [sym_scoped_type_identifier] = STATE(1034), - [sym_line_comment] = STATE(908), - [sym_block_comment] = STATE(908), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3097), - [anon_sym_LPAREN] = ACTIONS(3099), - [anon_sym_LBRACK] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_QMARK] = ACTIONS(3107), - [anon_sym_u8] = ACTIONS(3109), - [anon_sym_i8] = ACTIONS(3109), - [anon_sym_u16] = ACTIONS(3109), - [anon_sym_i16] = ACTIONS(3109), - [anon_sym_u32] = ACTIONS(3109), - [anon_sym_i32] = ACTIONS(3109), - [anon_sym_u64] = ACTIONS(3109), - [anon_sym_i64] = ACTIONS(3109), - [anon_sym_u128] = ACTIONS(3109), - [anon_sym_i128] = ACTIONS(3109), - [anon_sym_isize] = ACTIONS(3109), - [anon_sym_usize] = ACTIONS(3109), - [anon_sym_f32] = ACTIONS(3109), - [anon_sym_f64] = ACTIONS(3109), - [anon_sym_bool] = ACTIONS(3109), - [anon_sym_str] = ACTIONS(3109), - [anon_sym_char] = ACTIONS(3109), - [anon_sym_BANG] = ACTIONS(3111), - [anon_sym_AMP] = ACTIONS(3113), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3115), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(3117), - [anon_sym_fn] = ACTIONS(3119), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(3121), - [anon_sym_impl] = ACTIONS(3123), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(3125), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3129), - [sym_super] = ACTIONS(3129), - [sym_crate] = ACTIONS(3129), - [sym_metavariable] = ACTIONS(3131), - }, - [909] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(3002), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(909), - [sym_block_comment] = STATE(909), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [969] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_type_parameters] = STATE(1000), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2667), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2665), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2435), + [sym_line_comment] = STATE(969), + [sym_block_comment] = STATE(969), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3625), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -103325,22 +110321,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(3627), [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(3611), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -103348,108 +110344,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [910] = { - [sym_function_modifiers] = STATE(3367), - [sym_removed_trait_bound] = STATE(1416), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1461), - [sym_bracketed_type] = STATE(3544), - [sym_lifetime] = STATE(3348), - [sym_array_type] = STATE(1416), - [sym_for_lifetimes] = STATE(1584), - [sym_function_type] = STATE(1416), - [sym_tuple_type] = STATE(1416), - [sym_unit_type] = STATE(1416), - [sym_generic_type] = STATE(1083), - [sym_generic_type_with_turbofish] = STATE(3535), - [sym_bounded_type] = STATE(1416), - [sym_reference_type] = STATE(1416), - [sym_pointer_type] = STATE(1416), - [sym_never_type] = STATE(1416), - [sym_abstract_type] = STATE(1416), - [sym_dynamic_type] = STATE(1416), - [sym_macro_invocation] = STATE(1416), - [sym_scoped_identifier] = STATE(3224), - [sym_scoped_type_identifier] = STATE(1034), - [sym_line_comment] = STATE(910), - [sym_block_comment] = STATE(910), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3097), - [anon_sym_LPAREN] = ACTIONS(3099), - [anon_sym_LBRACK] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_QMARK] = ACTIONS(3107), - [anon_sym_u8] = ACTIONS(3109), - [anon_sym_i8] = ACTIONS(3109), - [anon_sym_u16] = ACTIONS(3109), - [anon_sym_i16] = ACTIONS(3109), - [anon_sym_u32] = ACTIONS(3109), - [anon_sym_i32] = ACTIONS(3109), - [anon_sym_u64] = ACTIONS(3109), - [anon_sym_i64] = ACTIONS(3109), - [anon_sym_u128] = ACTIONS(3109), - [anon_sym_i128] = ACTIONS(3109), - [anon_sym_isize] = ACTIONS(3109), - [anon_sym_usize] = ACTIONS(3109), - [anon_sym_f32] = ACTIONS(3109), - [anon_sym_f64] = ACTIONS(3109), - [anon_sym_bool] = ACTIONS(3109), - [anon_sym_str] = ACTIONS(3109), - [anon_sym_char] = ACTIONS(3109), - [anon_sym_BANG] = ACTIONS(3111), - [anon_sym_AMP] = ACTIONS(3113), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3115), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(3117), - [anon_sym_fn] = ACTIONS(3119), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(3121), - [anon_sym_impl] = ACTIONS(3123), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(3125), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3129), - [sym_super] = ACTIONS(3129), - [sym_crate] = ACTIONS(3129), - [sym_metavariable] = ACTIONS(3131), - }, - [911] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2851), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(911), - [sym_block_comment] = STATE(911), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [970] = { + [sym_function_modifiers] = STATE(3957), + [sym_higher_ranked_trait_bound] = STATE(2521), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2523), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(2524), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(970), + [sym_block_comment] = STATE(970), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -103467,22 +110393,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(3629), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -103490,108 +110416,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [912] = { - [sym_function_modifiers] = STATE(3367), - [sym_removed_trait_bound] = STATE(1416), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1466), - [sym_bracketed_type] = STATE(3544), - [sym_lifetime] = STATE(3348), - [sym_array_type] = STATE(1416), - [sym_for_lifetimes] = STATE(1584), - [sym_function_type] = STATE(1416), - [sym_tuple_type] = STATE(1416), - [sym_unit_type] = STATE(1416), - [sym_generic_type] = STATE(1083), - [sym_generic_type_with_turbofish] = STATE(3535), - [sym_bounded_type] = STATE(1416), - [sym_reference_type] = STATE(1416), - [sym_pointer_type] = STATE(1416), - [sym_never_type] = STATE(1416), - [sym_abstract_type] = STATE(1416), - [sym_dynamic_type] = STATE(1416), - [sym_macro_invocation] = STATE(1416), - [sym_scoped_identifier] = STATE(3224), - [sym_scoped_type_identifier] = STATE(1034), - [sym_line_comment] = STATE(912), - [sym_block_comment] = STATE(912), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3097), - [anon_sym_LPAREN] = ACTIONS(3099), - [anon_sym_LBRACK] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_QMARK] = ACTIONS(3107), - [anon_sym_u8] = ACTIONS(3109), - [anon_sym_i8] = ACTIONS(3109), - [anon_sym_u16] = ACTIONS(3109), - [anon_sym_i16] = ACTIONS(3109), - [anon_sym_u32] = ACTIONS(3109), - [anon_sym_i32] = ACTIONS(3109), - [anon_sym_u64] = ACTIONS(3109), - [anon_sym_i64] = ACTIONS(3109), - [anon_sym_u128] = ACTIONS(3109), - [anon_sym_i128] = ACTIONS(3109), - [anon_sym_isize] = ACTIONS(3109), - [anon_sym_usize] = ACTIONS(3109), - [anon_sym_f32] = ACTIONS(3109), - [anon_sym_f64] = ACTIONS(3109), - [anon_sym_bool] = ACTIONS(3109), - [anon_sym_str] = ACTIONS(3109), - [anon_sym_char] = ACTIONS(3109), - [anon_sym_BANG] = ACTIONS(3111), - [anon_sym_AMP] = ACTIONS(3113), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3115), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(3117), - [anon_sym_fn] = ACTIONS(3119), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(3121), - [anon_sym_impl] = ACTIONS(3123), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(3125), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3129), - [sym_super] = ACTIONS(3129), - [sym_crate] = ACTIONS(3129), - [sym_metavariable] = ACTIONS(3131), - }, - [913] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2589), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(913), - [sym_block_comment] = STATE(913), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [971] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(3702), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(957), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(971), + [sym_block_comment] = STATE(971), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -103609,22 +110464,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), + [sym_mutable_specifier] = ACTIONS(3631), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -103632,37 +110488,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [914] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2002), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(914), - [sym_block_comment] = STATE(914), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [972] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(3088), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(972), + [sym_block_comment] = STATE(972), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_RPAREN] = ACTIONS(3633), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -103680,22 +110537,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -103703,37 +110560,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [915] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2201), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(915), - [sym_block_comment] = STATE(915), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [973] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_type_parameters] = STATE(1039), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2729), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2730), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2432), + [sym_line_comment] = STATE(973), + [sym_block_comment] = STATE(973), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3635), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -103751,22 +110609,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(3637), [anon_sym_AMP] = ACTIONS(1605), - [anon_sym_LT] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(3611), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -103774,37 +110632,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [916] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2916), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(916), - [sym_block_comment] = STATE(916), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [974] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(3004), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(974), + [sym_block_comment] = STATE(974), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_RPAREN] = ACTIONS(3639), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -103822,22 +110681,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -103845,37 +110704,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [917] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2904), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(917), - [sym_block_comment] = STATE(917), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [975] = { + [sym_function_modifiers] = STATE(3957), + [sym_higher_ranked_trait_bound] = STATE(2521), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2526), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(2528), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(975), + [sym_block_comment] = STATE(975), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -103893,22 +110753,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(3629), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -103916,37 +110776,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [918] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2586), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(918), - [sym_block_comment] = STATE(918), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [976] = { + [sym_function_modifiers] = STATE(3957), + [sym_higher_ranked_trait_bound] = STATE(2521), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2526), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(2524), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(976), + [sym_block_comment] = STATE(976), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -103964,22 +110825,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(3629), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -103987,108 +110848,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [919] = { - [sym_function_modifiers] = STATE(3367), - [sym_removed_trait_bound] = STATE(1416), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1392), - [sym_bracketed_type] = STATE(3544), - [sym_lifetime] = STATE(3348), - [sym_array_type] = STATE(1416), - [sym_for_lifetimes] = STATE(1584), - [sym_function_type] = STATE(1416), - [sym_tuple_type] = STATE(1416), - [sym_unit_type] = STATE(1416), - [sym_generic_type] = STATE(1083), - [sym_generic_type_with_turbofish] = STATE(3535), - [sym_bounded_type] = STATE(1416), - [sym_reference_type] = STATE(1416), - [sym_pointer_type] = STATE(1416), - [sym_never_type] = STATE(1416), - [sym_abstract_type] = STATE(1416), - [sym_dynamic_type] = STATE(1416), - [sym_macro_invocation] = STATE(1416), - [sym_scoped_identifier] = STATE(3224), - [sym_scoped_type_identifier] = STATE(1034), - [sym_line_comment] = STATE(919), - [sym_block_comment] = STATE(919), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3097), - [anon_sym_LPAREN] = ACTIONS(3099), - [anon_sym_LBRACK] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_QMARK] = ACTIONS(3107), - [anon_sym_u8] = ACTIONS(3109), - [anon_sym_i8] = ACTIONS(3109), - [anon_sym_u16] = ACTIONS(3109), - [anon_sym_i16] = ACTIONS(3109), - [anon_sym_u32] = ACTIONS(3109), - [anon_sym_i32] = ACTIONS(3109), - [anon_sym_u64] = ACTIONS(3109), - [anon_sym_i64] = ACTIONS(3109), - [anon_sym_u128] = ACTIONS(3109), - [anon_sym_i128] = ACTIONS(3109), - [anon_sym_isize] = ACTIONS(3109), - [anon_sym_usize] = ACTIONS(3109), - [anon_sym_f32] = ACTIONS(3109), - [anon_sym_f64] = ACTIONS(3109), - [anon_sym_bool] = ACTIONS(3109), - [anon_sym_str] = ACTIONS(3109), - [anon_sym_char] = ACTIONS(3109), - [anon_sym_BANG] = ACTIONS(3111), - [anon_sym_AMP] = ACTIONS(3113), + [977] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(3209), + [sym_bracketed_type] = STATE(3795), + [sym_qualified_type] = STATE(3953), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(977), + [sym_block_comment] = STATE(977), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3115), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(3117), - [anon_sym_fn] = ACTIONS(3119), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(3121), - [anon_sym_impl] = ACTIONS(3123), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(3125), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3129), - [sym_super] = ACTIONS(3129), - [sym_crate] = ACTIONS(3129), - [sym_metavariable] = ACTIONS(3131), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), }, - [920] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2963), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(920), - [sym_block_comment] = STATE(920), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [978] = { + [sym_function_modifiers] = STATE(3957), + [sym_higher_ranked_trait_bound] = STATE(2474), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2480), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(2469), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(978), + [sym_block_comment] = STATE(978), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -104106,22 +110969,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(3629), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -104129,37 +110992,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [921] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2313), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(921), - [sym_block_comment] = STATE(921), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [979] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_type_parameters] = STATE(1131), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2695), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2649), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2443), + [sym_line_comment] = STATE(979), + [sym_block_comment] = STATE(979), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3641), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(3643), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(3611), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), + }, + [980] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2284), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(956), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(980), + [sym_block_comment] = STATE(980), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -104177,22 +111112,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), + [sym_mutable_specifier] = ACTIONS(3645), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -104200,37 +111136,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [922] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2318), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(922), - [sym_block_comment] = STATE(922), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [981] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_type_parameters] = STATE(1053), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2626), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2652), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2479), + [sym_line_comment] = STATE(981), + [sym_block_comment] = STATE(981), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3647), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -104248,22 +111185,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(3649), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(3611), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), + }, + [982] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(3432), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(982), + [sym_block_comment] = STATE(982), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_RPAREN] = ACTIONS(3651), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -104271,37 +111280,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [923] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2326), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(923), - [sym_block_comment] = STATE(923), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [983] = { + [sym_function_modifiers] = STATE(3801), + [sym_removed_trait_bound] = STATE(1632), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(1723), + [sym_bracketed_type] = STATE(4021), + [sym_lifetime] = STATE(953), + [sym_array_type] = STATE(1632), + [sym_for_lifetimes] = STATE(1834), + [sym_function_type] = STATE(1632), + [sym_tuple_type] = STATE(1632), + [sym_unit_type] = STATE(1632), + [sym_generic_type] = STATE(1410), + [sym_generic_type_with_turbofish] = STATE(4011), + [sym_bounded_type] = STATE(1632), + [sym_reference_type] = STATE(1632), + [sym_pointer_type] = STATE(1632), + [sym_never_type] = STATE(1632), + [sym_abstract_type] = STATE(1632), + [sym_dynamic_type] = STATE(1632), + [sym_macro_invocation] = STATE(1632), + [sym_scoped_identifier] = STATE(3763), + [sym_scoped_type_identifier] = STATE(1185), + [sym_line_comment] = STATE(983), + [sym_block_comment] = STATE(983), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3515), + [anon_sym_LPAREN] = ACTIONS(3517), + [anon_sym_LBRACK] = ACTIONS(3519), + [anon_sym_STAR] = ACTIONS(3523), + [anon_sym_QMARK] = ACTIONS(3525), + [anon_sym_u8] = ACTIONS(3527), + [anon_sym_i8] = ACTIONS(3527), + [anon_sym_u16] = ACTIONS(3527), + [anon_sym_i16] = ACTIONS(3527), + [anon_sym_u32] = ACTIONS(3527), + [anon_sym_i32] = ACTIONS(3527), + [anon_sym_u64] = ACTIONS(3527), + [anon_sym_i64] = ACTIONS(3527), + [anon_sym_u128] = ACTIONS(3527), + [anon_sym_i128] = ACTIONS(3527), + [anon_sym_isize] = ACTIONS(3527), + [anon_sym_usize] = ACTIONS(3527), + [anon_sym_f32] = ACTIONS(3527), + [anon_sym_f64] = ACTIONS(3527), + [anon_sym_bool] = ACTIONS(3527), + [anon_sym_str] = ACTIONS(3527), + [anon_sym_char] = ACTIONS(3527), + [anon_sym_BANG] = ACTIONS(3529), + [anon_sym_AMP] = ACTIONS(3531), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3533), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(3535), + [anon_sym_fn] = ACTIONS(3537), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(3539), + [anon_sym_impl] = ACTIONS(3541), + [anon_sym_union] = ACTIONS(3539), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(3543), + [sym_mutable_specifier] = ACTIONS(3653), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3547), + [sym_super] = ACTIONS(3547), + [sym_crate] = ACTIONS(3547), + [sym_metavariable] = ACTIONS(3549), + }, + [984] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(3346), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(984), + [sym_block_comment] = STATE(984), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -104319,22 +111400,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -104342,37 +111423,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [924] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1997), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(924), - [sym_block_comment] = STATE(924), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [985] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2857), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(985), + [sym_block_comment] = STATE(985), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -104390,22 +111471,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -104413,37 +111494,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [925] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2327), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(925), - [sym_block_comment] = STATE(925), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [986] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2643), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(986), + [sym_block_comment] = STATE(986), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -104461,22 +111542,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -104484,37 +111565,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [926] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2250), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(926), - [sym_block_comment] = STATE(926), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [987] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2642), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(987), + [sym_block_comment] = STATE(987), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -104532,22 +111613,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -104555,37 +111636,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [927] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1992), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(927), - [sym_block_comment] = STATE(927), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [988] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(3222), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(988), + [sym_block_comment] = STATE(988), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -104603,22 +111684,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -104626,108 +111707,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [928] = { - [sym_function_modifiers] = STATE(3367), - [sym_removed_trait_bound] = STATE(1416), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1393), - [sym_bracketed_type] = STATE(3544), - [sym_lifetime] = STATE(3348), - [sym_array_type] = STATE(1416), - [sym_for_lifetimes] = STATE(1584), - [sym_function_type] = STATE(1416), - [sym_tuple_type] = STATE(1416), - [sym_unit_type] = STATE(1416), - [sym_generic_type] = STATE(1083), - [sym_generic_type_with_turbofish] = STATE(3535), - [sym_bounded_type] = STATE(1416), - [sym_reference_type] = STATE(1416), - [sym_pointer_type] = STATE(1416), - [sym_never_type] = STATE(1416), - [sym_abstract_type] = STATE(1416), - [sym_dynamic_type] = STATE(1416), - [sym_macro_invocation] = STATE(1416), - [sym_scoped_identifier] = STATE(3224), - [sym_scoped_type_identifier] = STATE(1034), - [sym_line_comment] = STATE(928), - [sym_block_comment] = STATE(928), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3097), - [anon_sym_LPAREN] = ACTIONS(3099), - [anon_sym_LBRACK] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_QMARK] = ACTIONS(3107), - [anon_sym_u8] = ACTIONS(3109), - [anon_sym_i8] = ACTIONS(3109), - [anon_sym_u16] = ACTIONS(3109), - [anon_sym_i16] = ACTIONS(3109), - [anon_sym_u32] = ACTIONS(3109), - [anon_sym_i32] = ACTIONS(3109), - [anon_sym_u64] = ACTIONS(3109), - [anon_sym_i64] = ACTIONS(3109), - [anon_sym_u128] = ACTIONS(3109), - [anon_sym_i128] = ACTIONS(3109), - [anon_sym_isize] = ACTIONS(3109), - [anon_sym_usize] = ACTIONS(3109), - [anon_sym_f32] = ACTIONS(3109), - [anon_sym_f64] = ACTIONS(3109), - [anon_sym_bool] = ACTIONS(3109), - [anon_sym_str] = ACTIONS(3109), - [anon_sym_char] = ACTIONS(3109), - [anon_sym_BANG] = ACTIONS(3111), - [anon_sym_AMP] = ACTIONS(3113), + [989] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2513), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(989), + [sym_block_comment] = STATE(989), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3115), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(3117), - [anon_sym_fn] = ACTIONS(3119), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(3121), - [anon_sym_impl] = ACTIONS(3123), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(3125), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3129), - [sym_super] = ACTIONS(3129), - [sym_crate] = ACTIONS(3129), - [sym_metavariable] = ACTIONS(3131), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), }, - [929] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2517), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(929), - [sym_block_comment] = STATE(929), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [990] = { + [sym_function_modifiers] = STATE(3979), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(1918), + [sym_bracketed_type] = STATE(4035), + [sym_lifetime] = STATE(4057), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1826), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), + [sym_generic_type] = STATE(1896), + [sym_generic_type_with_turbofish] = STATE(4027), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3587), + [sym_scoped_type_identifier] = STATE(1798), + [sym_line_comment] = STATE(990), + [sym_block_comment] = STATE(990), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3551), + [anon_sym_LPAREN] = ACTIONS(3553), + [anon_sym_LBRACK] = ACTIONS(3555), + [anon_sym_STAR] = ACTIONS(3559), + [anon_sym_QMARK] = ACTIONS(3561), + [anon_sym_u8] = ACTIONS(3563), + [anon_sym_i8] = ACTIONS(3563), + [anon_sym_u16] = ACTIONS(3563), + [anon_sym_i16] = ACTIONS(3563), + [anon_sym_u32] = ACTIONS(3563), + [anon_sym_i32] = ACTIONS(3563), + [anon_sym_u64] = ACTIONS(3563), + [anon_sym_i64] = ACTIONS(3563), + [anon_sym_u128] = ACTIONS(3563), + [anon_sym_i128] = ACTIONS(3563), + [anon_sym_isize] = ACTIONS(3563), + [anon_sym_usize] = ACTIONS(3563), + [anon_sym_f32] = ACTIONS(3563), + [anon_sym_f64] = ACTIONS(3563), + [anon_sym_bool] = ACTIONS(3563), + [anon_sym_str] = ACTIONS(3563), + [anon_sym_char] = ACTIONS(3563), + [anon_sym_BANG] = ACTIONS(3565), + [anon_sym_AMP] = ACTIONS(3567), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3569), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(3571), + [anon_sym_fn] = ACTIONS(3573), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(3575), + [anon_sym_impl] = ACTIONS(3577), + [anon_sym_union] = ACTIONS(3575), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(3579), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3583), + [sym_super] = ACTIONS(3583), + [sym_crate] = ACTIONS(3583), + [sym_metavariable] = ACTIONS(3585), + }, + [991] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2287), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(991), + [sym_block_comment] = STATE(991), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -104745,22 +111897,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -104768,37 +111920,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [930] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2237), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(930), - [sym_block_comment] = STATE(930), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [992] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(3257), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(992), + [sym_block_comment] = STATE(992), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -104816,22 +111968,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -104839,37 +111991,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [931] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(3260), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(931), - [sym_block_comment] = STATE(931), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [993] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(3184), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(993), + [sym_block_comment] = STATE(993), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -104887,22 +112039,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -104910,37 +112062,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [932] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2728), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(932), - [sym_block_comment] = STATE(932), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [994] = { + [sym_function_modifiers] = STATE(3979), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2061), + [sym_bracketed_type] = STATE(4035), + [sym_lifetime] = STATE(4057), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1826), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), + [sym_generic_type] = STATE(1896), + [sym_generic_type_with_turbofish] = STATE(4027), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3587), + [sym_scoped_type_identifier] = STATE(1798), + [sym_line_comment] = STATE(994), + [sym_block_comment] = STATE(994), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3551), + [anon_sym_LPAREN] = ACTIONS(3553), + [anon_sym_LBRACK] = ACTIONS(3555), + [anon_sym_STAR] = ACTIONS(3559), + [anon_sym_QMARK] = ACTIONS(3561), + [anon_sym_u8] = ACTIONS(3563), + [anon_sym_i8] = ACTIONS(3563), + [anon_sym_u16] = ACTIONS(3563), + [anon_sym_i16] = ACTIONS(3563), + [anon_sym_u32] = ACTIONS(3563), + [anon_sym_i32] = ACTIONS(3563), + [anon_sym_u64] = ACTIONS(3563), + [anon_sym_i64] = ACTIONS(3563), + [anon_sym_u128] = ACTIONS(3563), + [anon_sym_i128] = ACTIONS(3563), + [anon_sym_isize] = ACTIONS(3563), + [anon_sym_usize] = ACTIONS(3563), + [anon_sym_f32] = ACTIONS(3563), + [anon_sym_f64] = ACTIONS(3563), + [anon_sym_bool] = ACTIONS(3563), + [anon_sym_str] = ACTIONS(3563), + [anon_sym_char] = ACTIONS(3563), + [anon_sym_BANG] = ACTIONS(3565), + [anon_sym_AMP] = ACTIONS(3567), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3569), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(3571), + [anon_sym_fn] = ACTIONS(3573), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(3575), + [anon_sym_impl] = ACTIONS(3577), + [anon_sym_union] = ACTIONS(3575), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(3579), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3583), + [sym_super] = ACTIONS(3583), + [sym_crate] = ACTIONS(3583), + [sym_metavariable] = ACTIONS(3585), + }, + [995] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2260), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(2270), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(995), + [sym_block_comment] = STATE(995), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -104958,22 +112181,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3429), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -104981,37 +112204,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [933] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2014), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(1999), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(933), - [sym_block_comment] = STATE(933), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [996] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2727), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(996), + [sym_block_comment] = STATE(996), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -105029,22 +112252,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(2999), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -105052,37 +112275,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [934] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2407), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(934), - [sym_block_comment] = STATE(934), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [997] = { + [sym_function_modifiers] = STATE(3979), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2065), + [sym_bracketed_type] = STATE(4035), + [sym_lifetime] = STATE(4057), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1826), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), + [sym_generic_type] = STATE(1896), + [sym_generic_type_with_turbofish] = STATE(4027), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3587), + [sym_scoped_type_identifier] = STATE(1798), + [sym_line_comment] = STATE(997), + [sym_block_comment] = STATE(997), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3551), + [anon_sym_LPAREN] = ACTIONS(3553), + [anon_sym_LBRACK] = ACTIONS(3555), + [anon_sym_STAR] = ACTIONS(3559), + [anon_sym_QMARK] = ACTIONS(3561), + [anon_sym_u8] = ACTIONS(3563), + [anon_sym_i8] = ACTIONS(3563), + [anon_sym_u16] = ACTIONS(3563), + [anon_sym_i16] = ACTIONS(3563), + [anon_sym_u32] = ACTIONS(3563), + [anon_sym_i32] = ACTIONS(3563), + [anon_sym_u64] = ACTIONS(3563), + [anon_sym_i64] = ACTIONS(3563), + [anon_sym_u128] = ACTIONS(3563), + [anon_sym_i128] = ACTIONS(3563), + [anon_sym_isize] = ACTIONS(3563), + [anon_sym_usize] = ACTIONS(3563), + [anon_sym_f32] = ACTIONS(3563), + [anon_sym_f64] = ACTIONS(3563), + [anon_sym_bool] = ACTIONS(3563), + [anon_sym_str] = ACTIONS(3563), + [anon_sym_char] = ACTIONS(3563), + [anon_sym_BANG] = ACTIONS(3565), + [anon_sym_AMP] = ACTIONS(3567), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3569), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(3571), + [anon_sym_fn] = ACTIONS(3573), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(3575), + [anon_sym_impl] = ACTIONS(3577), + [anon_sym_union] = ACTIONS(3575), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(3579), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3583), + [sym_super] = ACTIONS(3583), + [sym_crate] = ACTIONS(3583), + [sym_metavariable] = ACTIONS(3585), + }, + [998] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2675), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(998), + [sym_block_comment] = STATE(998), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -105100,22 +112394,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -105123,37 +112417,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [935] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2356), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(935), - [sym_block_comment] = STATE(935), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [999] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(3261), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(999), + [sym_block_comment] = STATE(999), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -105171,22 +112465,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -105194,37 +112488,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [936] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(3271), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(936), - [sym_block_comment] = STATE(936), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [1000] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2640), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2658), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2458), + [sym_line_comment] = STATE(1000), + [sym_block_comment] = STATE(1000), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3655), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -105242,22 +112536,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(3657), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -105265,37 +112559,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [937] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2783), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(937), - [sym_block_comment] = STATE(937), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [1001] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2527), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1001), + [sym_block_comment] = STATE(1001), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -105313,22 +112607,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -105336,37 +112630,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [938] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(3026), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(938), - [sym_block_comment] = STATE(938), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [1002] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2277), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1002), + [sym_block_comment] = STATE(1002), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -105384,22 +112678,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -105407,37 +112701,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [939] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2346), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(2400), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(2193), - [sym_line_comment] = STATE(939), - [sym_block_comment] = STATE(939), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3229), + [1003] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(3083), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1003), + [sym_block_comment] = STATE(1003), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -105455,22 +112749,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(3231), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -105478,37 +112772,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [940] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2909), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(940), - [sym_block_comment] = STATE(940), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [1004] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2261), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1004), + [sym_block_comment] = STATE(1004), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -105526,22 +112820,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -105549,37 +112843,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [941] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2415), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(941), - [sym_block_comment] = STATE(941), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [1005] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2944), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1005), + [sym_block_comment] = STATE(1005), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -105597,22 +112891,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -105620,37 +112914,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [942] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2373), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(942), - [sym_block_comment] = STATE(942), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [1006] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2726), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1006), + [sym_block_comment] = STATE(1006), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -105668,22 +112962,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -105691,37 +112985,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [943] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2014), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(943), - [sym_block_comment] = STATE(943), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [1007] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(3238), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1007), + [sym_block_comment] = STATE(1007), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -105739,22 +113033,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -105762,108 +113056,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [944] = { - [sym_function_modifiers] = STATE(3341), - [sym_removed_trait_bound] = STATE(1684), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1771), - [sym_bracketed_type] = STATE(3559), - [sym_lifetime] = STATE(3394), - [sym_array_type] = STATE(1684), - [sym_for_lifetimes] = STATE(1591), - [sym_function_type] = STATE(1684), - [sym_tuple_type] = STATE(1684), - [sym_unit_type] = STATE(1684), - [sym_generic_type] = STATE(1649), - [sym_generic_type_with_turbofish] = STATE(3551), - [sym_bounded_type] = STATE(1684), - [sym_reference_type] = STATE(1684), - [sym_pointer_type] = STATE(1684), - [sym_never_type] = STATE(1684), - [sym_abstract_type] = STATE(1684), - [sym_dynamic_type] = STATE(1684), - [sym_macro_invocation] = STATE(1684), - [sym_scoped_identifier] = STATE(3288), - [sym_scoped_type_identifier] = STATE(1548), - [sym_line_comment] = STATE(944), - [sym_block_comment] = STATE(944), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(3141), - [anon_sym_LBRACK] = ACTIONS(3143), - [anon_sym_STAR] = ACTIONS(3147), - [anon_sym_QMARK] = ACTIONS(3149), - [anon_sym_u8] = ACTIONS(3151), - [anon_sym_i8] = ACTIONS(3151), - [anon_sym_u16] = ACTIONS(3151), - [anon_sym_i16] = ACTIONS(3151), - [anon_sym_u32] = ACTIONS(3151), - [anon_sym_i32] = ACTIONS(3151), - [anon_sym_u64] = ACTIONS(3151), - [anon_sym_i64] = ACTIONS(3151), - [anon_sym_u128] = ACTIONS(3151), - [anon_sym_i128] = ACTIONS(3151), - [anon_sym_isize] = ACTIONS(3151), - [anon_sym_usize] = ACTIONS(3151), - [anon_sym_f32] = ACTIONS(3151), - [anon_sym_f64] = ACTIONS(3151), - [anon_sym_bool] = ACTIONS(3151), - [anon_sym_str] = ACTIONS(3151), - [anon_sym_char] = ACTIONS(3151), - [anon_sym_BANG] = ACTIONS(3153), - [anon_sym_AMP] = ACTIONS(3155), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3157), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(3159), - [anon_sym_fn] = ACTIONS(3161), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(3163), - [anon_sym_impl] = ACTIONS(3165), - [anon_sym_union] = ACTIONS(3163), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(3167), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3171), - [sym_super] = ACTIONS(3171), - [sym_crate] = ACTIONS(3171), - [sym_metavariable] = ACTIONS(3173), - }, - [945] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2784), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(945), - [sym_block_comment] = STATE(945), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [1008] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2684), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1008), + [sym_block_comment] = STATE(1008), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -105881,22 +113104,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -105904,37 +113127,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [946] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2380), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(946), - [sym_block_comment] = STATE(946), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [1009] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2692), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1009), + [sym_block_comment] = STATE(1009), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -105952,22 +113175,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -105975,37 +113198,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [947] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2383), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(947), - [sym_block_comment] = STATE(947), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [1010] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2283), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1010), + [sym_block_comment] = STATE(1010), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -106023,22 +113246,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -106046,37 +113269,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [948] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2541), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(948), - [sym_block_comment] = STATE(948), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [1011] = { + [sym_function_modifiers] = STATE(3801), + [sym_removed_trait_bound] = STATE(1632), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(1662), + [sym_bracketed_type] = STATE(4021), + [sym_lifetime] = STATE(3861), + [sym_array_type] = STATE(1632), + [sym_for_lifetimes] = STATE(1834), + [sym_function_type] = STATE(1632), + [sym_tuple_type] = STATE(1632), + [sym_unit_type] = STATE(1632), + [sym_generic_type] = STATE(1410), + [sym_generic_type_with_turbofish] = STATE(4011), + [sym_bounded_type] = STATE(1632), + [sym_reference_type] = STATE(1632), + [sym_pointer_type] = STATE(1632), + [sym_never_type] = STATE(1632), + [sym_abstract_type] = STATE(1632), + [sym_dynamic_type] = STATE(1632), + [sym_macro_invocation] = STATE(1632), + [sym_scoped_identifier] = STATE(3763), + [sym_scoped_type_identifier] = STATE(1185), + [sym_line_comment] = STATE(1011), + [sym_block_comment] = STATE(1011), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3515), + [anon_sym_LPAREN] = ACTIONS(3517), + [anon_sym_LBRACK] = ACTIONS(3519), + [anon_sym_STAR] = ACTIONS(3523), + [anon_sym_QMARK] = ACTIONS(3525), + [anon_sym_u8] = ACTIONS(3527), + [anon_sym_i8] = ACTIONS(3527), + [anon_sym_u16] = ACTIONS(3527), + [anon_sym_i16] = ACTIONS(3527), + [anon_sym_u32] = ACTIONS(3527), + [anon_sym_i32] = ACTIONS(3527), + [anon_sym_u64] = ACTIONS(3527), + [anon_sym_i64] = ACTIONS(3527), + [anon_sym_u128] = ACTIONS(3527), + [anon_sym_i128] = ACTIONS(3527), + [anon_sym_isize] = ACTIONS(3527), + [anon_sym_usize] = ACTIONS(3527), + [anon_sym_f32] = ACTIONS(3527), + [anon_sym_f64] = ACTIONS(3527), + [anon_sym_bool] = ACTIONS(3527), + [anon_sym_str] = ACTIONS(3527), + [anon_sym_char] = ACTIONS(3527), + [anon_sym_BANG] = ACTIONS(3529), + [anon_sym_AMP] = ACTIONS(3531), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3533), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(3535), + [anon_sym_fn] = ACTIONS(3537), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(3539), + [anon_sym_impl] = ACTIONS(3541), + [anon_sym_union] = ACTIONS(3539), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(3543), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3547), + [sym_super] = ACTIONS(3547), + [sym_crate] = ACTIONS(3547), + [sym_metavariable] = ACTIONS(3549), + }, + [1012] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2683), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1012), + [sym_block_comment] = STATE(1012), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -106094,22 +113388,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -106117,108 +113411,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [949] = { - [sym_function_modifiers] = STATE(3341), - [sym_removed_trait_bound] = STATE(1684), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1772), - [sym_bracketed_type] = STATE(3559), - [sym_lifetime] = STATE(3394), - [sym_array_type] = STATE(1684), - [sym_for_lifetimes] = STATE(1591), - [sym_function_type] = STATE(1684), - [sym_tuple_type] = STATE(1684), - [sym_unit_type] = STATE(1684), - [sym_generic_type] = STATE(1649), - [sym_generic_type_with_turbofish] = STATE(3551), - [sym_bounded_type] = STATE(1684), - [sym_reference_type] = STATE(1684), - [sym_pointer_type] = STATE(1684), - [sym_never_type] = STATE(1684), - [sym_abstract_type] = STATE(1684), - [sym_dynamic_type] = STATE(1684), - [sym_macro_invocation] = STATE(1684), - [sym_scoped_identifier] = STATE(3288), - [sym_scoped_type_identifier] = STATE(1548), - [sym_line_comment] = STATE(949), - [sym_block_comment] = STATE(949), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(3141), - [anon_sym_LBRACK] = ACTIONS(3143), - [anon_sym_STAR] = ACTIONS(3147), - [anon_sym_QMARK] = ACTIONS(3149), - [anon_sym_u8] = ACTIONS(3151), - [anon_sym_i8] = ACTIONS(3151), - [anon_sym_u16] = ACTIONS(3151), - [anon_sym_i16] = ACTIONS(3151), - [anon_sym_u32] = ACTIONS(3151), - [anon_sym_i32] = ACTIONS(3151), - [anon_sym_u64] = ACTIONS(3151), - [anon_sym_i64] = ACTIONS(3151), - [anon_sym_u128] = ACTIONS(3151), - [anon_sym_i128] = ACTIONS(3151), - [anon_sym_isize] = ACTIONS(3151), - [anon_sym_usize] = ACTIONS(3151), - [anon_sym_f32] = ACTIONS(3151), - [anon_sym_f64] = ACTIONS(3151), - [anon_sym_bool] = ACTIONS(3151), - [anon_sym_str] = ACTIONS(3151), - [anon_sym_char] = ACTIONS(3151), - [anon_sym_BANG] = ACTIONS(3153), - [anon_sym_AMP] = ACTIONS(3155), + [1013] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2725), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1013), + [sym_block_comment] = STATE(1013), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3157), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(3159), - [anon_sym_fn] = ACTIONS(3161), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(3163), - [anon_sym_impl] = ACTIONS(3165), - [anon_sym_union] = ACTIONS(3163), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(3167), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3171), - [sym_super] = ACTIONS(3171), - [sym_crate] = ACTIONS(3171), - [sym_metavariable] = ACTIONS(3173), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), }, - [950] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2801), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(950), - [sym_block_comment] = STATE(950), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [1014] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(3622), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1014), + [sym_block_comment] = STATE(1014), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -106236,22 +113530,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -106259,37 +113553,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [951] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2427), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(951), - [sym_block_comment] = STATE(951), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [1015] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2921), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1015), + [sym_block_comment] = STATE(1015), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -106307,22 +113601,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -106330,37 +113624,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [952] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2550), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(952), - [sym_block_comment] = STATE(952), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [1016] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2724), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1016), + [sym_block_comment] = STATE(1016), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -106378,22 +113672,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -106401,37 +113695,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [953] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2385), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(2404), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(2168), - [sym_line_comment] = STATE(953), - [sym_block_comment] = STATE(953), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3233), + [1017] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2280), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1017), + [sym_block_comment] = STATE(1017), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -106449,22 +113743,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(3235), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -106472,37 +113766,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [954] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2900), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(954), - [sym_block_comment] = STATE(954), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [1018] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2260), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1018), + [sym_block_comment] = STATE(1018), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -106520,22 +113814,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -106543,37 +113837,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [955] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2363), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(2405), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(2155), - [sym_line_comment] = STATE(955), - [sym_block_comment] = STATE(955), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3237), + [1019] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(3216), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1019), + [sym_block_comment] = STATE(1019), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -106591,22 +113885,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(3239), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -106614,37 +113908,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [956] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2218), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(956), - [sym_block_comment] = STATE(956), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [1020] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2799), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1020), + [sym_block_comment] = STATE(1020), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -106662,22 +113956,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -106685,37 +113979,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [957] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2310), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(957), - [sym_block_comment] = STATE(957), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [1021] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2518), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1021), + [sym_block_comment] = STATE(1021), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -106733,22 +114027,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -106756,37 +114050,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [958] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2399), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(958), - [sym_block_comment] = STATE(958), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [1022] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2507), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1022), + [sym_block_comment] = STATE(1022), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -106804,22 +114098,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -106827,37 +114121,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [959] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2401), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(959), - [sym_block_comment] = STATE(959), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [1023] = { + [sym_function_modifiers] = STATE(3801), + [sym_removed_trait_bound] = STATE(1632), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(1625), + [sym_bracketed_type] = STATE(4021), + [sym_lifetime] = STATE(3861), + [sym_array_type] = STATE(1632), + [sym_for_lifetimes] = STATE(1834), + [sym_function_type] = STATE(1632), + [sym_tuple_type] = STATE(1632), + [sym_unit_type] = STATE(1632), + [sym_generic_type] = STATE(1410), + [sym_generic_type_with_turbofish] = STATE(4011), + [sym_bounded_type] = STATE(1632), + [sym_reference_type] = STATE(1632), + [sym_pointer_type] = STATE(1632), + [sym_never_type] = STATE(1632), + [sym_abstract_type] = STATE(1632), + [sym_dynamic_type] = STATE(1632), + [sym_macro_invocation] = STATE(1632), + [sym_scoped_identifier] = STATE(3763), + [sym_scoped_type_identifier] = STATE(1185), + [sym_line_comment] = STATE(1023), + [sym_block_comment] = STATE(1023), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3515), + [anon_sym_LPAREN] = ACTIONS(3517), + [anon_sym_LBRACK] = ACTIONS(3519), + [anon_sym_STAR] = ACTIONS(3523), + [anon_sym_QMARK] = ACTIONS(3525), + [anon_sym_u8] = ACTIONS(3527), + [anon_sym_i8] = ACTIONS(3527), + [anon_sym_u16] = ACTIONS(3527), + [anon_sym_i16] = ACTIONS(3527), + [anon_sym_u32] = ACTIONS(3527), + [anon_sym_i32] = ACTIONS(3527), + [anon_sym_u64] = ACTIONS(3527), + [anon_sym_i64] = ACTIONS(3527), + [anon_sym_u128] = ACTIONS(3527), + [anon_sym_i128] = ACTIONS(3527), + [anon_sym_isize] = ACTIONS(3527), + [anon_sym_usize] = ACTIONS(3527), + [anon_sym_f32] = ACTIONS(3527), + [anon_sym_f64] = ACTIONS(3527), + [anon_sym_bool] = ACTIONS(3527), + [anon_sym_str] = ACTIONS(3527), + [anon_sym_char] = ACTIONS(3527), + [anon_sym_BANG] = ACTIONS(3529), + [anon_sym_AMP] = ACTIONS(3531), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3533), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(3535), + [anon_sym_fn] = ACTIONS(3537), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(3539), + [anon_sym_impl] = ACTIONS(3541), + [anon_sym_union] = ACTIONS(3539), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(3543), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3547), + [sym_super] = ACTIONS(3547), + [sym_crate] = ACTIONS(3547), + [sym_metavariable] = ACTIONS(3549), + }, + [1024] = { + [sym_function_modifiers] = STATE(3979), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(1933), + [sym_bracketed_type] = STATE(4035), + [sym_lifetime] = STATE(4057), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1826), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), + [sym_generic_type] = STATE(1896), + [sym_generic_type_with_turbofish] = STATE(4027), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3587), + [sym_scoped_type_identifier] = STATE(1798), + [sym_line_comment] = STATE(1024), + [sym_block_comment] = STATE(1024), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3551), + [anon_sym_LPAREN] = ACTIONS(3553), + [anon_sym_LBRACK] = ACTIONS(3555), + [anon_sym_STAR] = ACTIONS(3559), + [anon_sym_QMARK] = ACTIONS(3561), + [anon_sym_u8] = ACTIONS(3563), + [anon_sym_i8] = ACTIONS(3563), + [anon_sym_u16] = ACTIONS(3563), + [anon_sym_i16] = ACTIONS(3563), + [anon_sym_u32] = ACTIONS(3563), + [anon_sym_i32] = ACTIONS(3563), + [anon_sym_u64] = ACTIONS(3563), + [anon_sym_i64] = ACTIONS(3563), + [anon_sym_u128] = ACTIONS(3563), + [anon_sym_i128] = ACTIONS(3563), + [anon_sym_isize] = ACTIONS(3563), + [anon_sym_usize] = ACTIONS(3563), + [anon_sym_f32] = ACTIONS(3563), + [anon_sym_f64] = ACTIONS(3563), + [anon_sym_bool] = ACTIONS(3563), + [anon_sym_str] = ACTIONS(3563), + [anon_sym_char] = ACTIONS(3563), + [anon_sym_BANG] = ACTIONS(3565), + [anon_sym_AMP] = ACTIONS(3567), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3569), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(3571), + [anon_sym_fn] = ACTIONS(3573), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(3575), + [anon_sym_impl] = ACTIONS(3577), + [anon_sym_union] = ACTIONS(3575), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(3579), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3583), + [sym_super] = ACTIONS(3583), + [sym_crate] = ACTIONS(3583), + [sym_metavariable] = ACTIONS(3585), + }, + [1025] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(3004), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1025), + [sym_block_comment] = STATE(1025), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -106875,22 +114311,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -106898,37 +114334,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [960] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2403), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(960), - [sym_block_comment] = STATE(960), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [1026] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2543), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1026), + [sym_block_comment] = STATE(1026), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -106946,22 +114382,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -106969,37 +114405,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [961] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2678), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(961), - [sym_block_comment] = STATE(961), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [1027] = { + [sym_function_modifiers] = STATE(3801), + [sym_removed_trait_bound] = STATE(1632), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(1699), + [sym_bracketed_type] = STATE(4021), + [sym_lifetime] = STATE(3861), + [sym_array_type] = STATE(1632), + [sym_for_lifetimes] = STATE(1834), + [sym_function_type] = STATE(1632), + [sym_tuple_type] = STATE(1632), + [sym_unit_type] = STATE(1632), + [sym_generic_type] = STATE(1410), + [sym_generic_type_with_turbofish] = STATE(4011), + [sym_bounded_type] = STATE(1632), + [sym_reference_type] = STATE(1632), + [sym_pointer_type] = STATE(1632), + [sym_never_type] = STATE(1632), + [sym_abstract_type] = STATE(1632), + [sym_dynamic_type] = STATE(1632), + [sym_macro_invocation] = STATE(1632), + [sym_scoped_identifier] = STATE(3763), + [sym_scoped_type_identifier] = STATE(1185), + [sym_line_comment] = STATE(1027), + [sym_block_comment] = STATE(1027), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3515), + [anon_sym_LPAREN] = ACTIONS(3517), + [anon_sym_LBRACK] = ACTIONS(3519), + [anon_sym_STAR] = ACTIONS(3523), + [anon_sym_QMARK] = ACTIONS(3525), + [anon_sym_u8] = ACTIONS(3527), + [anon_sym_i8] = ACTIONS(3527), + [anon_sym_u16] = ACTIONS(3527), + [anon_sym_i16] = ACTIONS(3527), + [anon_sym_u32] = ACTIONS(3527), + [anon_sym_i32] = ACTIONS(3527), + [anon_sym_u64] = ACTIONS(3527), + [anon_sym_i64] = ACTIONS(3527), + [anon_sym_u128] = ACTIONS(3527), + [anon_sym_i128] = ACTIONS(3527), + [anon_sym_isize] = ACTIONS(3527), + [anon_sym_usize] = ACTIONS(3527), + [anon_sym_f32] = ACTIONS(3527), + [anon_sym_f64] = ACTIONS(3527), + [anon_sym_bool] = ACTIONS(3527), + [anon_sym_str] = ACTIONS(3527), + [anon_sym_char] = ACTIONS(3527), + [anon_sym_BANG] = ACTIONS(3529), + [anon_sym_AMP] = ACTIONS(3531), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3533), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(3535), + [anon_sym_fn] = ACTIONS(3537), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(3539), + [anon_sym_impl] = ACTIONS(3541), + [anon_sym_union] = ACTIONS(3539), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(3543), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3547), + [sym_super] = ACTIONS(3547), + [sym_crate] = ACTIONS(3547), + [sym_metavariable] = ACTIONS(3549), + }, + [1028] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2495), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1028), + [sym_block_comment] = STATE(1028), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -107017,22 +114524,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -107040,37 +114547,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [962] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2847), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(962), - [sym_block_comment] = STATE(962), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [1029] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2540), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1029), + [sym_block_comment] = STATE(1029), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -107088,22 +114595,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -107111,37 +114618,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [963] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2437), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(963), - [sym_block_comment] = STATE(963), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [1030] = { + [sym_function_modifiers] = STATE(3979), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2087), + [sym_bracketed_type] = STATE(4035), + [sym_lifetime] = STATE(4057), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1826), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), + [sym_generic_type] = STATE(1896), + [sym_generic_type_with_turbofish] = STATE(4027), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3587), + [sym_scoped_type_identifier] = STATE(1798), + [sym_line_comment] = STATE(1030), + [sym_block_comment] = STATE(1030), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3551), + [anon_sym_LPAREN] = ACTIONS(3553), + [anon_sym_LBRACK] = ACTIONS(3555), + [anon_sym_STAR] = ACTIONS(3559), + [anon_sym_QMARK] = ACTIONS(3561), + [anon_sym_u8] = ACTIONS(3563), + [anon_sym_i8] = ACTIONS(3563), + [anon_sym_u16] = ACTIONS(3563), + [anon_sym_i16] = ACTIONS(3563), + [anon_sym_u32] = ACTIONS(3563), + [anon_sym_i32] = ACTIONS(3563), + [anon_sym_u64] = ACTIONS(3563), + [anon_sym_i64] = ACTIONS(3563), + [anon_sym_u128] = ACTIONS(3563), + [anon_sym_i128] = ACTIONS(3563), + [anon_sym_isize] = ACTIONS(3563), + [anon_sym_usize] = ACTIONS(3563), + [anon_sym_f32] = ACTIONS(3563), + [anon_sym_f64] = ACTIONS(3563), + [anon_sym_bool] = ACTIONS(3563), + [anon_sym_str] = ACTIONS(3563), + [anon_sym_char] = ACTIONS(3563), + [anon_sym_BANG] = ACTIONS(3565), + [anon_sym_AMP] = ACTIONS(3567), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3569), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(3571), + [anon_sym_fn] = ACTIONS(3573), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(3575), + [anon_sym_impl] = ACTIONS(3577), + [anon_sym_union] = ACTIONS(3575), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(3579), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3583), + [sym_super] = ACTIONS(3583), + [sym_crate] = ACTIONS(3583), + [sym_metavariable] = ACTIONS(3585), + }, + [1031] = { + [sym_function_modifiers] = STATE(3979), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2086), + [sym_bracketed_type] = STATE(4035), + [sym_lifetime] = STATE(4057), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1826), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), + [sym_generic_type] = STATE(1896), + [sym_generic_type_with_turbofish] = STATE(4027), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3587), + [sym_scoped_type_identifier] = STATE(1798), + [sym_line_comment] = STATE(1031), + [sym_block_comment] = STATE(1031), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3551), + [anon_sym_LPAREN] = ACTIONS(3553), + [anon_sym_LBRACK] = ACTIONS(3555), + [anon_sym_STAR] = ACTIONS(3559), + [anon_sym_QMARK] = ACTIONS(3561), + [anon_sym_u8] = ACTIONS(3563), + [anon_sym_i8] = ACTIONS(3563), + [anon_sym_u16] = ACTIONS(3563), + [anon_sym_i16] = ACTIONS(3563), + [anon_sym_u32] = ACTIONS(3563), + [anon_sym_i32] = ACTIONS(3563), + [anon_sym_u64] = ACTIONS(3563), + [anon_sym_i64] = ACTIONS(3563), + [anon_sym_u128] = ACTIONS(3563), + [anon_sym_i128] = ACTIONS(3563), + [anon_sym_isize] = ACTIONS(3563), + [anon_sym_usize] = ACTIONS(3563), + [anon_sym_f32] = ACTIONS(3563), + [anon_sym_f64] = ACTIONS(3563), + [anon_sym_bool] = ACTIONS(3563), + [anon_sym_str] = ACTIONS(3563), + [anon_sym_char] = ACTIONS(3563), + [anon_sym_BANG] = ACTIONS(3565), + [anon_sym_AMP] = ACTIONS(3567), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3569), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(3571), + [anon_sym_fn] = ACTIONS(3573), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(3575), + [anon_sym_impl] = ACTIONS(3577), + [anon_sym_union] = ACTIONS(3575), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(3579), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3583), + [sym_super] = ACTIONS(3583), + [sym_crate] = ACTIONS(3583), + [sym_metavariable] = ACTIONS(3585), + }, + [1032] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2492), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1032), + [sym_block_comment] = STATE(1032), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -107159,22 +114808,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -107182,37 +114831,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [964] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2686), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(964), - [sym_block_comment] = STATE(964), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [1033] = { + [sym_function_modifiers] = STATE(3979), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2083), + [sym_bracketed_type] = STATE(4035), + [sym_lifetime] = STATE(4057), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1826), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), + [sym_generic_type] = STATE(1896), + [sym_generic_type_with_turbofish] = STATE(4027), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3587), + [sym_scoped_type_identifier] = STATE(1798), + [sym_line_comment] = STATE(1033), + [sym_block_comment] = STATE(1033), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3551), + [anon_sym_LPAREN] = ACTIONS(3553), + [anon_sym_LBRACK] = ACTIONS(3555), + [anon_sym_STAR] = ACTIONS(3559), + [anon_sym_QMARK] = ACTIONS(3561), + [anon_sym_u8] = ACTIONS(3563), + [anon_sym_i8] = ACTIONS(3563), + [anon_sym_u16] = ACTIONS(3563), + [anon_sym_i16] = ACTIONS(3563), + [anon_sym_u32] = ACTIONS(3563), + [anon_sym_i32] = ACTIONS(3563), + [anon_sym_u64] = ACTIONS(3563), + [anon_sym_i64] = ACTIONS(3563), + [anon_sym_u128] = ACTIONS(3563), + [anon_sym_i128] = ACTIONS(3563), + [anon_sym_isize] = ACTIONS(3563), + [anon_sym_usize] = ACTIONS(3563), + [anon_sym_f32] = ACTIONS(3563), + [anon_sym_f64] = ACTIONS(3563), + [anon_sym_bool] = ACTIONS(3563), + [anon_sym_str] = ACTIONS(3563), + [anon_sym_char] = ACTIONS(3563), + [anon_sym_BANG] = ACTIONS(3565), + [anon_sym_AMP] = ACTIONS(3567), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3569), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(3571), + [anon_sym_fn] = ACTIONS(3573), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(3575), + [anon_sym_impl] = ACTIONS(3577), + [anon_sym_union] = ACTIONS(3575), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(3579), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3583), + [sym_super] = ACTIONS(3583), + [sym_crate] = ACTIONS(3583), + [sym_metavariable] = ACTIONS(3585), + }, + [1034] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2275), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1034), + [sym_block_comment] = STATE(1034), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -107230,22 +114950,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -107253,37 +114973,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [965] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2853), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(965), - [sym_block_comment] = STATE(965), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [1035] = { + [sym_function_modifiers] = STATE(3801), + [sym_removed_trait_bound] = STATE(1632), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(1742), + [sym_bracketed_type] = STATE(4021), + [sym_lifetime] = STATE(3861), + [sym_array_type] = STATE(1632), + [sym_for_lifetimes] = STATE(1834), + [sym_function_type] = STATE(1632), + [sym_tuple_type] = STATE(1632), + [sym_unit_type] = STATE(1632), + [sym_generic_type] = STATE(1410), + [sym_generic_type_with_turbofish] = STATE(4011), + [sym_bounded_type] = STATE(1632), + [sym_reference_type] = STATE(1632), + [sym_pointer_type] = STATE(1632), + [sym_never_type] = STATE(1632), + [sym_abstract_type] = STATE(1632), + [sym_dynamic_type] = STATE(1632), + [sym_macro_invocation] = STATE(1632), + [sym_scoped_identifier] = STATE(3763), + [sym_scoped_type_identifier] = STATE(1185), + [sym_line_comment] = STATE(1035), + [sym_block_comment] = STATE(1035), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3515), + [anon_sym_LPAREN] = ACTIONS(3517), + [anon_sym_LBRACK] = ACTIONS(3519), + [anon_sym_STAR] = ACTIONS(3523), + [anon_sym_QMARK] = ACTIONS(3525), + [anon_sym_u8] = ACTIONS(3527), + [anon_sym_i8] = ACTIONS(3527), + [anon_sym_u16] = ACTIONS(3527), + [anon_sym_i16] = ACTIONS(3527), + [anon_sym_u32] = ACTIONS(3527), + [anon_sym_i32] = ACTIONS(3527), + [anon_sym_u64] = ACTIONS(3527), + [anon_sym_i64] = ACTIONS(3527), + [anon_sym_u128] = ACTIONS(3527), + [anon_sym_i128] = ACTIONS(3527), + [anon_sym_isize] = ACTIONS(3527), + [anon_sym_usize] = ACTIONS(3527), + [anon_sym_f32] = ACTIONS(3527), + [anon_sym_f64] = ACTIONS(3527), + [anon_sym_bool] = ACTIONS(3527), + [anon_sym_str] = ACTIONS(3527), + [anon_sym_char] = ACTIONS(3527), + [anon_sym_BANG] = ACTIONS(3529), + [anon_sym_AMP] = ACTIONS(3531), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3533), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(3535), + [anon_sym_fn] = ACTIONS(3537), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(3539), + [anon_sym_impl] = ACTIONS(3541), + [anon_sym_union] = ACTIONS(3539), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(3543), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3547), + [sym_super] = ACTIONS(3547), + [sym_crate] = ACTIONS(3547), + [sym_metavariable] = ACTIONS(3549), + }, + [1036] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2648), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1036), + [sym_block_comment] = STATE(1036), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -107301,22 +115092,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -107324,37 +115115,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [966] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2701), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(966), - [sym_block_comment] = STATE(966), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [1037] = { + [sym_function_modifiers] = STATE(3801), + [sym_removed_trait_bound] = STATE(1632), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(1724), + [sym_bracketed_type] = STATE(4021), + [sym_lifetime] = STATE(3861), + [sym_array_type] = STATE(1632), + [sym_for_lifetimes] = STATE(1834), + [sym_function_type] = STATE(1632), + [sym_tuple_type] = STATE(1632), + [sym_unit_type] = STATE(1632), + [sym_generic_type] = STATE(1410), + [sym_generic_type_with_turbofish] = STATE(4011), + [sym_bounded_type] = STATE(1632), + [sym_reference_type] = STATE(1632), + [sym_pointer_type] = STATE(1632), + [sym_never_type] = STATE(1632), + [sym_abstract_type] = STATE(1632), + [sym_dynamic_type] = STATE(1632), + [sym_macro_invocation] = STATE(1632), + [sym_scoped_identifier] = STATE(3763), + [sym_scoped_type_identifier] = STATE(1185), + [sym_line_comment] = STATE(1037), + [sym_block_comment] = STATE(1037), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3515), + [anon_sym_LPAREN] = ACTIONS(3517), + [anon_sym_LBRACK] = ACTIONS(3519), + [anon_sym_STAR] = ACTIONS(3523), + [anon_sym_QMARK] = ACTIONS(3525), + [anon_sym_u8] = ACTIONS(3527), + [anon_sym_i8] = ACTIONS(3527), + [anon_sym_u16] = ACTIONS(3527), + [anon_sym_i16] = ACTIONS(3527), + [anon_sym_u32] = ACTIONS(3527), + [anon_sym_i32] = ACTIONS(3527), + [anon_sym_u64] = ACTIONS(3527), + [anon_sym_i64] = ACTIONS(3527), + [anon_sym_u128] = ACTIONS(3527), + [anon_sym_i128] = ACTIONS(3527), + [anon_sym_isize] = ACTIONS(3527), + [anon_sym_usize] = ACTIONS(3527), + [anon_sym_f32] = ACTIONS(3527), + [anon_sym_f64] = ACTIONS(3527), + [anon_sym_bool] = ACTIONS(3527), + [anon_sym_str] = ACTIONS(3527), + [anon_sym_char] = ACTIONS(3527), + [anon_sym_BANG] = ACTIONS(3529), + [anon_sym_AMP] = ACTIONS(3531), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3533), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(3535), + [anon_sym_fn] = ACTIONS(3537), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(3539), + [anon_sym_impl] = ACTIONS(3541), + [anon_sym_union] = ACTIONS(3539), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(3543), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3547), + [sym_super] = ACTIONS(3547), + [sym_crate] = ACTIONS(3547), + [sym_metavariable] = ACTIONS(3549), + }, + [1038] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(3126), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1038), + [sym_block_comment] = STATE(1038), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -107372,22 +115234,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -107395,37 +115257,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [967] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2225), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(967), - [sym_block_comment] = STATE(967), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [1039] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2632), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2634), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2471), + [sym_line_comment] = STATE(1039), + [sym_block_comment] = STATE(1039), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3659), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -107443,22 +115305,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(3661), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -107466,37 +115328,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [968] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2319), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(968), - [sym_block_comment] = STATE(968), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [1040] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(3291), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1040), + [sym_block_comment] = STATE(1040), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -107514,22 +115376,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -107537,37 +115399,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [969] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2320), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(969), - [sym_block_comment] = STATE(969), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [1041] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2952), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1041), + [sym_block_comment] = STATE(1041), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -107585,22 +115447,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -107608,37 +115470,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [970] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2934), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(970), - [sym_block_comment] = STATE(970), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [1042] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2509), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1042), + [sym_block_comment] = STATE(1042), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -107656,22 +115518,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -107679,37 +115541,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [971] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2880), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(971), - [sym_block_comment] = STATE(971), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [1043] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(3433), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1043), + [sym_block_comment] = STATE(1043), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -107727,22 +115589,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -107750,37 +115612,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [972] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2478), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(972), - [sym_block_comment] = STATE(972), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [1044] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2655), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1044), + [sym_block_comment] = STATE(1044), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -107798,22 +115660,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -107821,37 +115683,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [973] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2322), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(973), - [sym_block_comment] = STATE(973), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [1045] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2701), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1045), + [sym_block_comment] = STATE(1045), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -107869,22 +115731,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -107892,37 +115754,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [974] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2323), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(974), - [sym_block_comment] = STATE(974), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [1046] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2702), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1046), + [sym_block_comment] = STATE(1046), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -107940,22 +115802,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -107963,37 +115825,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [975] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2324), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(975), - [sym_block_comment] = STATE(975), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [1047] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2646), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1047), + [sym_block_comment] = STATE(1047), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -108011,22 +115873,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -108034,37 +115896,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [976] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2325), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(976), - [sym_block_comment] = STATE(976), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [1048] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(3408), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1048), + [sym_block_comment] = STATE(1048), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -108082,22 +115944,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -108105,37 +115967,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [977] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2226), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(977), - [sym_block_comment] = STATE(977), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [1049] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2258), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1049), + [sym_block_comment] = STATE(1049), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -108153,22 +116015,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -108176,37 +116038,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [978] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2522), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(978), - [sym_block_comment] = STATE(978), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [1050] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(3079), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1050), + [sym_block_comment] = STATE(1050), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -108224,22 +116086,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -108247,37 +116109,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [979] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2240), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(979), - [sym_block_comment] = STATE(979), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [1051] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2674), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1051), + [sym_block_comment] = STATE(1051), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -108295,22 +116157,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -108318,37 +116180,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [980] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2706), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(980), - [sym_block_comment] = STATE(980), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [1052] = { + [sym_function_modifiers] = STATE(3979), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2078), + [sym_bracketed_type] = STATE(4035), + [sym_lifetime] = STATE(4057), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1826), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), + [sym_generic_type] = STATE(1896), + [sym_generic_type_with_turbofish] = STATE(4027), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3587), + [sym_scoped_type_identifier] = STATE(1798), + [sym_line_comment] = STATE(1052), + [sym_block_comment] = STATE(1052), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3551), + [anon_sym_LPAREN] = ACTIONS(3553), + [anon_sym_LBRACK] = ACTIONS(3555), + [anon_sym_STAR] = ACTIONS(3559), + [anon_sym_QMARK] = ACTIONS(3561), + [anon_sym_u8] = ACTIONS(3563), + [anon_sym_i8] = ACTIONS(3563), + [anon_sym_u16] = ACTIONS(3563), + [anon_sym_i16] = ACTIONS(3563), + [anon_sym_u32] = ACTIONS(3563), + [anon_sym_i32] = ACTIONS(3563), + [anon_sym_u64] = ACTIONS(3563), + [anon_sym_i64] = ACTIONS(3563), + [anon_sym_u128] = ACTIONS(3563), + [anon_sym_i128] = ACTIONS(3563), + [anon_sym_isize] = ACTIONS(3563), + [anon_sym_usize] = ACTIONS(3563), + [anon_sym_f32] = ACTIONS(3563), + [anon_sym_f64] = ACTIONS(3563), + [anon_sym_bool] = ACTIONS(3563), + [anon_sym_str] = ACTIONS(3563), + [anon_sym_char] = ACTIONS(3563), + [anon_sym_BANG] = ACTIONS(3565), + [anon_sym_AMP] = ACTIONS(3567), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3569), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(3571), + [anon_sym_fn] = ACTIONS(3573), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(3575), + [anon_sym_impl] = ACTIONS(3577), + [anon_sym_union] = ACTIONS(3575), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(3579), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3583), + [sym_super] = ACTIONS(3583), + [sym_crate] = ACTIONS(3583), + [sym_metavariable] = ACTIONS(3585), + }, + [1053] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2616), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2637), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2470), + [sym_line_comment] = STATE(1053), + [sym_block_comment] = STATE(1053), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3663), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -108366,22 +116299,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(3665), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -108389,37 +116322,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [981] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2331), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(981), - [sym_block_comment] = STATE(981), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [1054] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(3247), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1054), + [sym_block_comment] = STATE(1054), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -108437,22 +116370,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -108460,37 +116393,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [982] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2332), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(982), - [sym_block_comment] = STATE(982), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [1055] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2548), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1055), + [sym_block_comment] = STATE(1055), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -108508,22 +116441,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -108531,37 +116464,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [983] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2229), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(983), - [sym_block_comment] = STATE(983), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [1056] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2848), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1056), + [sym_block_comment] = STATE(1056), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -108579,22 +116512,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -108602,37 +116535,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [984] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2243), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(984), - [sym_block_comment] = STATE(984), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [1057] = { + [sym_function_modifiers] = STATE(3979), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(1986), + [sym_bracketed_type] = STATE(4035), + [sym_lifetime] = STATE(4057), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1826), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), + [sym_generic_type] = STATE(1896), + [sym_generic_type_with_turbofish] = STATE(4027), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3587), + [sym_scoped_type_identifier] = STATE(1798), + [sym_line_comment] = STATE(1057), + [sym_block_comment] = STATE(1057), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3551), + [anon_sym_LPAREN] = ACTIONS(3553), + [anon_sym_LBRACK] = ACTIONS(3555), + [anon_sym_STAR] = ACTIONS(3559), + [anon_sym_QMARK] = ACTIONS(3561), + [anon_sym_u8] = ACTIONS(3563), + [anon_sym_i8] = ACTIONS(3563), + [anon_sym_u16] = ACTIONS(3563), + [anon_sym_i16] = ACTIONS(3563), + [anon_sym_u32] = ACTIONS(3563), + [anon_sym_i32] = ACTIONS(3563), + [anon_sym_u64] = ACTIONS(3563), + [anon_sym_i64] = ACTIONS(3563), + [anon_sym_u128] = ACTIONS(3563), + [anon_sym_i128] = ACTIONS(3563), + [anon_sym_isize] = ACTIONS(3563), + [anon_sym_usize] = ACTIONS(3563), + [anon_sym_f32] = ACTIONS(3563), + [anon_sym_f64] = ACTIONS(3563), + [anon_sym_bool] = ACTIONS(3563), + [anon_sym_str] = ACTIONS(3563), + [anon_sym_char] = ACTIONS(3563), + [anon_sym_BANG] = ACTIONS(3565), + [anon_sym_AMP] = ACTIONS(3567), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3569), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(3571), + [anon_sym_fn] = ACTIONS(3573), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(3575), + [anon_sym_impl] = ACTIONS(3577), + [anon_sym_union] = ACTIONS(3575), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(3579), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3583), + [sym_super] = ACTIONS(3583), + [sym_crate] = ACTIONS(3583), + [sym_metavariable] = ACTIONS(3585), + }, + [1058] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(3459), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1058), + [sym_block_comment] = STATE(1058), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -108650,22 +116654,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -108673,37 +116677,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [985] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2896), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(985), - [sym_block_comment] = STATE(985), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [1059] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(3318), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1059), + [sym_block_comment] = STATE(1059), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -108721,22 +116725,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -108744,37 +116748,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [986] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2230), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(986), - [sym_block_comment] = STATE(986), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [1060] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(3434), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1060), + [sym_block_comment] = STATE(1060), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -108792,22 +116796,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -108815,37 +116819,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [987] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2750), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(987), - [sym_block_comment] = STATE(987), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [1061] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2275), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1061), + [sym_block_comment] = STATE(1061), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -108863,60 +116867,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1619), + [sym_self] = ACTIONS(3667), [sym_super] = ACTIONS(1619), [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [988] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2231), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(988), - [sym_block_comment] = STATE(988), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [1062] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2549), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1062), + [sym_block_comment] = STATE(1062), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -108934,22 +116938,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -108957,37 +116961,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [989] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2578), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(989), - [sym_block_comment] = STATE(989), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [1063] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(3432), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1063), + [sym_block_comment] = STATE(1063), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -109005,22 +117009,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -109028,37 +117032,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [990] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2350), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(990), - [sym_block_comment] = STATE(990), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [1064] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(3419), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1064), + [sym_block_comment] = STATE(1064), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -109076,22 +117080,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -109099,37 +117103,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [991] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1985), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(991), - [sym_block_comment] = STATE(991), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [1065] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2255), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1065), + [sym_block_comment] = STATE(1065), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -109147,22 +117151,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -109170,37 +117174,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [992] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2912), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(992), - [sym_block_comment] = STATE(992), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [1066] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2963), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1066), + [sym_block_comment] = STATE(1066), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -109218,22 +117222,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -109241,108 +117245,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [993] = { - [sym_function_modifiers] = STATE(3341), - [sym_removed_trait_bound] = STATE(1684), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1723), - [sym_bracketed_type] = STATE(3559), - [sym_lifetime] = STATE(3394), - [sym_array_type] = STATE(1684), - [sym_for_lifetimes] = STATE(1591), - [sym_function_type] = STATE(1684), - [sym_tuple_type] = STATE(1684), - [sym_unit_type] = STATE(1684), - [sym_generic_type] = STATE(1649), - [sym_generic_type_with_turbofish] = STATE(3551), - [sym_bounded_type] = STATE(1684), - [sym_reference_type] = STATE(1684), - [sym_pointer_type] = STATE(1684), - [sym_never_type] = STATE(1684), - [sym_abstract_type] = STATE(1684), - [sym_dynamic_type] = STATE(1684), - [sym_macro_invocation] = STATE(1684), - [sym_scoped_identifier] = STATE(3288), - [sym_scoped_type_identifier] = STATE(1548), - [sym_line_comment] = STATE(993), - [sym_block_comment] = STATE(993), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(3141), - [anon_sym_LBRACK] = ACTIONS(3143), - [anon_sym_STAR] = ACTIONS(3147), - [anon_sym_QMARK] = ACTIONS(3149), - [anon_sym_u8] = ACTIONS(3151), - [anon_sym_i8] = ACTIONS(3151), - [anon_sym_u16] = ACTIONS(3151), - [anon_sym_i16] = ACTIONS(3151), - [anon_sym_u32] = ACTIONS(3151), - [anon_sym_i32] = ACTIONS(3151), - [anon_sym_u64] = ACTIONS(3151), - [anon_sym_i64] = ACTIONS(3151), - [anon_sym_u128] = ACTIONS(3151), - [anon_sym_i128] = ACTIONS(3151), - [anon_sym_isize] = ACTIONS(3151), - [anon_sym_usize] = ACTIONS(3151), - [anon_sym_f32] = ACTIONS(3151), - [anon_sym_f64] = ACTIONS(3151), - [anon_sym_bool] = ACTIONS(3151), - [anon_sym_str] = ACTIONS(3151), - [anon_sym_char] = ACTIONS(3151), - [anon_sym_BANG] = ACTIONS(3153), - [anon_sym_AMP] = ACTIONS(3155), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3157), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(3159), - [anon_sym_fn] = ACTIONS(3161), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(3163), - [anon_sym_impl] = ACTIONS(3165), - [anon_sym_union] = ACTIONS(3163), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(3167), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3171), - [sym_super] = ACTIONS(3171), - [sym_crate] = ACTIONS(3171), - [sym_metavariable] = ACTIONS(3173), - }, - [994] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2351), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(994), - [sym_block_comment] = STATE(994), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [1067] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2715), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1067), + [sym_block_comment] = STATE(1067), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -109360,22 +117293,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -109383,37 +117316,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [995] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(3000), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(995), - [sym_block_comment] = STATE(995), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [1068] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2263), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1068), + [sym_block_comment] = STATE(1068), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -109431,22 +117364,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -109454,37 +117387,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [996] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2396), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(996), - [sym_block_comment] = STATE(996), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [1069] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2719), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1069), + [sym_block_comment] = STATE(1069), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -109502,22 +117435,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -109525,37 +117458,179 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [997] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2003), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(997), - [sym_block_comment] = STATE(997), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [1070] = { + [sym_line_comment] = STATE(1070), + [sym_block_comment] = STATE(1070), + [sym_identifier] = ACTIONS(3669), + [anon_sym_LPAREN] = ACTIONS(3671), + [anon_sym_LBRACK] = ACTIONS(3671), + [anon_sym_RBRACK] = ACTIONS(3671), + [anon_sym_LBRACE] = ACTIONS(3671), + [anon_sym_STAR] = ACTIONS(3671), + [anon_sym_u8] = ACTIONS(3669), + [anon_sym_i8] = ACTIONS(3669), + [anon_sym_u16] = ACTIONS(3669), + [anon_sym_i16] = ACTIONS(3669), + [anon_sym_u32] = ACTIONS(3669), + [anon_sym_i32] = ACTIONS(3669), + [anon_sym_u64] = ACTIONS(3669), + [anon_sym_i64] = ACTIONS(3669), + [anon_sym_u128] = ACTIONS(3669), + [anon_sym_i128] = ACTIONS(3669), + [anon_sym_isize] = ACTIONS(3669), + [anon_sym_usize] = ACTIONS(3669), + [anon_sym_f32] = ACTIONS(3669), + [anon_sym_f64] = ACTIONS(3669), + [anon_sym_bool] = ACTIONS(3669), + [anon_sym_str] = ACTIONS(3669), + [anon_sym_char] = ACTIONS(3669), + [anon_sym_DASH] = ACTIONS(3671), + [anon_sym_BANG] = ACTIONS(3671), + [anon_sym_AMP] = ACTIONS(3671), + [anon_sym_PIPE] = ACTIONS(3671), + [anon_sym_LT] = ACTIONS(3671), + [anon_sym__] = ACTIONS(3669), + [anon_sym_DOT_DOT] = ACTIONS(3671), + [anon_sym_COMMA] = ACTIONS(3671), + [anon_sym_COLON_COLON] = ACTIONS(3671), + [anon_sym_POUND] = ACTIONS(3671), + [anon_sym_SQUOTE] = ACTIONS(3669), + [anon_sym_async] = ACTIONS(3669), + [anon_sym_break] = ACTIONS(3669), + [anon_sym_const] = ACTIONS(3669), + [anon_sym_continue] = ACTIONS(3669), + [anon_sym_default] = ACTIONS(3669), + [anon_sym_for] = ACTIONS(3669), + [anon_sym_gen] = ACTIONS(3669), + [anon_sym_if] = ACTIONS(3669), + [anon_sym_loop] = ACTIONS(3669), + [anon_sym_match] = ACTIONS(3669), + [anon_sym_return] = ACTIONS(3669), + [anon_sym_static] = ACTIONS(3669), + [anon_sym_union] = ACTIONS(3669), + [anon_sym_unsafe] = ACTIONS(3669), + [anon_sym_while] = ACTIONS(3669), + [anon_sym_ref] = ACTIONS(3669), + [sym_mutable_specifier] = ACTIONS(3669), + [anon_sym_yield] = ACTIONS(3669), + [anon_sym_move] = ACTIONS(3669), + [anon_sym_try] = ACTIONS(3669), + [sym_integer_literal] = ACTIONS(3671), + [aux_sym_string_literal_token1] = ACTIONS(3671), + [sym_char_literal] = ACTIONS(3671), + [anon_sym_true] = ACTIONS(3669), + [anon_sym_false] = ACTIONS(3669), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3669), + [sym_super] = ACTIONS(3669), + [sym_crate] = ACTIONS(3669), + [sym_metavariable] = ACTIONS(3671), + [sym__raw_string_literal_start] = ACTIONS(3671), + [sym_float_literal] = ACTIONS(3671), + }, + [1071] = { + [sym_function_modifiers] = STATE(3801), + [sym_removed_trait_bound] = STATE(1632), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(1683), + [sym_bracketed_type] = STATE(4021), + [sym_lifetime] = STATE(3861), + [sym_array_type] = STATE(1632), + [sym_for_lifetimes] = STATE(1834), + [sym_function_type] = STATE(1632), + [sym_tuple_type] = STATE(1632), + [sym_unit_type] = STATE(1632), + [sym_generic_type] = STATE(1410), + [sym_generic_type_with_turbofish] = STATE(4011), + [sym_bounded_type] = STATE(1632), + [sym_reference_type] = STATE(1632), + [sym_pointer_type] = STATE(1632), + [sym_never_type] = STATE(1632), + [sym_abstract_type] = STATE(1632), + [sym_dynamic_type] = STATE(1632), + [sym_macro_invocation] = STATE(1632), + [sym_scoped_identifier] = STATE(3763), + [sym_scoped_type_identifier] = STATE(1185), + [sym_line_comment] = STATE(1071), + [sym_block_comment] = STATE(1071), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3515), + [anon_sym_LPAREN] = ACTIONS(3517), + [anon_sym_LBRACK] = ACTIONS(3519), + [anon_sym_STAR] = ACTIONS(3523), + [anon_sym_QMARK] = ACTIONS(3525), + [anon_sym_u8] = ACTIONS(3527), + [anon_sym_i8] = ACTIONS(3527), + [anon_sym_u16] = ACTIONS(3527), + [anon_sym_i16] = ACTIONS(3527), + [anon_sym_u32] = ACTIONS(3527), + [anon_sym_i32] = ACTIONS(3527), + [anon_sym_u64] = ACTIONS(3527), + [anon_sym_i64] = ACTIONS(3527), + [anon_sym_u128] = ACTIONS(3527), + [anon_sym_i128] = ACTIONS(3527), + [anon_sym_isize] = ACTIONS(3527), + [anon_sym_usize] = ACTIONS(3527), + [anon_sym_f32] = ACTIONS(3527), + [anon_sym_f64] = ACTIONS(3527), + [anon_sym_bool] = ACTIONS(3527), + [anon_sym_str] = ACTIONS(3527), + [anon_sym_char] = ACTIONS(3527), + [anon_sym_BANG] = ACTIONS(3529), + [anon_sym_AMP] = ACTIONS(3531), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3533), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(3535), + [anon_sym_fn] = ACTIONS(3537), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(3539), + [anon_sym_impl] = ACTIONS(3541), + [anon_sym_union] = ACTIONS(3539), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(3543), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3547), + [sym_super] = ACTIONS(3547), + [sym_crate] = ACTIONS(3547), + [sym_metavariable] = ACTIONS(3549), + }, + [1072] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2274), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1072), + [sym_block_comment] = STATE(1072), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -109573,22 +117648,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -109596,37 +117671,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [998] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2861), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(998), - [sym_block_comment] = STATE(998), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [1073] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2266), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1073), + [sym_block_comment] = STATE(1073), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -109644,22 +117719,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -109667,37 +117742,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [999] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2002), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(999), - [sym_block_comment] = STATE(999), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [1074] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2966), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1074), + [sym_block_comment] = STATE(1074), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -109715,131 +117790,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3241), + [sym_self] = ACTIONS(1619), [sym_super] = ACTIONS(1619), [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [1000] = { - [sym_function_modifiers] = STATE(3367), - [sym_removed_trait_bound] = STATE(1416), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1436), - [sym_bracketed_type] = STATE(3544), - [sym_lifetime] = STATE(3348), - [sym_array_type] = STATE(1416), - [sym_for_lifetimes] = STATE(1584), - [sym_function_type] = STATE(1416), - [sym_tuple_type] = STATE(1416), - [sym_unit_type] = STATE(1416), - [sym_generic_type] = STATE(1083), - [sym_generic_type_with_turbofish] = STATE(3535), - [sym_bounded_type] = STATE(1416), - [sym_reference_type] = STATE(1416), - [sym_pointer_type] = STATE(1416), - [sym_never_type] = STATE(1416), - [sym_abstract_type] = STATE(1416), - [sym_dynamic_type] = STATE(1416), - [sym_macro_invocation] = STATE(1416), - [sym_scoped_identifier] = STATE(3224), - [sym_scoped_type_identifier] = STATE(1034), - [sym_line_comment] = STATE(1000), - [sym_block_comment] = STATE(1000), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3097), - [anon_sym_LPAREN] = ACTIONS(3099), - [anon_sym_LBRACK] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_QMARK] = ACTIONS(3107), - [anon_sym_u8] = ACTIONS(3109), - [anon_sym_i8] = ACTIONS(3109), - [anon_sym_u16] = ACTIONS(3109), - [anon_sym_i16] = ACTIONS(3109), - [anon_sym_u32] = ACTIONS(3109), - [anon_sym_i32] = ACTIONS(3109), - [anon_sym_u64] = ACTIONS(3109), - [anon_sym_i64] = ACTIONS(3109), - [anon_sym_u128] = ACTIONS(3109), - [anon_sym_i128] = ACTIONS(3109), - [anon_sym_isize] = ACTIONS(3109), - [anon_sym_usize] = ACTIONS(3109), - [anon_sym_f32] = ACTIONS(3109), - [anon_sym_f64] = ACTIONS(3109), - [anon_sym_bool] = ACTIONS(3109), - [anon_sym_str] = ACTIONS(3109), - [anon_sym_char] = ACTIONS(3109), - [anon_sym_BANG] = ACTIONS(3111), - [anon_sym_AMP] = ACTIONS(3113), + [1075] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2264), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1075), + [sym_block_comment] = STATE(1075), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3115), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(3117), - [anon_sym_fn] = ACTIONS(3119), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(3121), - [anon_sym_impl] = ACTIONS(3123), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(3125), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3129), - [sym_super] = ACTIONS(3129), - [sym_crate] = ACTIONS(3129), - [sym_metavariable] = ACTIONS(3131), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), }, - [1001] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(3325), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(1001), - [sym_block_comment] = STATE(1001), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [1076] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(3233), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1076), + [sym_block_comment] = STATE(1076), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -109857,22 +117932,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -109880,37 +117955,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [1002] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2016), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(1002), - [sym_block_comment] = STATE(1002), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [1077] = { + [sym_function_modifiers] = STATE(3801), + [sym_removed_trait_bound] = STATE(1632), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(1670), + [sym_bracketed_type] = STATE(4021), + [sym_lifetime] = STATE(3861), + [sym_array_type] = STATE(1632), + [sym_for_lifetimes] = STATE(1834), + [sym_function_type] = STATE(1632), + [sym_tuple_type] = STATE(1632), + [sym_unit_type] = STATE(1632), + [sym_generic_type] = STATE(1410), + [sym_generic_type_with_turbofish] = STATE(4011), + [sym_bounded_type] = STATE(1632), + [sym_reference_type] = STATE(1632), + [sym_pointer_type] = STATE(1632), + [sym_never_type] = STATE(1632), + [sym_abstract_type] = STATE(1632), + [sym_dynamic_type] = STATE(1632), + [sym_macro_invocation] = STATE(1632), + [sym_scoped_identifier] = STATE(3763), + [sym_scoped_type_identifier] = STATE(1185), + [sym_line_comment] = STATE(1077), + [sym_block_comment] = STATE(1077), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3515), + [anon_sym_LPAREN] = ACTIONS(3517), + [anon_sym_LBRACK] = ACTIONS(3519), + [anon_sym_STAR] = ACTIONS(3523), + [anon_sym_QMARK] = ACTIONS(3525), + [anon_sym_u8] = ACTIONS(3527), + [anon_sym_i8] = ACTIONS(3527), + [anon_sym_u16] = ACTIONS(3527), + [anon_sym_i16] = ACTIONS(3527), + [anon_sym_u32] = ACTIONS(3527), + [anon_sym_i32] = ACTIONS(3527), + [anon_sym_u64] = ACTIONS(3527), + [anon_sym_i64] = ACTIONS(3527), + [anon_sym_u128] = ACTIONS(3527), + [anon_sym_i128] = ACTIONS(3527), + [anon_sym_isize] = ACTIONS(3527), + [anon_sym_usize] = ACTIONS(3527), + [anon_sym_f32] = ACTIONS(3527), + [anon_sym_f64] = ACTIONS(3527), + [anon_sym_bool] = ACTIONS(3527), + [anon_sym_str] = ACTIONS(3527), + [anon_sym_char] = ACTIONS(3527), + [anon_sym_BANG] = ACTIONS(3529), + [anon_sym_AMP] = ACTIONS(3531), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3533), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(3535), + [anon_sym_fn] = ACTIONS(3537), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(3539), + [anon_sym_impl] = ACTIONS(3541), + [anon_sym_union] = ACTIONS(3539), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(3543), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3547), + [sym_super] = ACTIONS(3547), + [sym_crate] = ACTIONS(3547), + [sym_metavariable] = ACTIONS(3549), + }, + [1078] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(3030), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1078), + [sym_block_comment] = STATE(1078), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -109928,22 +118074,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -109951,37 +118097,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [1003] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2008), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(1003), - [sym_block_comment] = STATE(1003), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [1079] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2882), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1079), + [sym_block_comment] = STATE(1079), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -109999,22 +118145,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -110022,108 +118168,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [1004] = { - [sym_function_modifiers] = STATE(3341), - [sym_removed_trait_bound] = STATE(1684), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(1860), - [sym_bracketed_type] = STATE(3559), - [sym_lifetime] = STATE(3394), - [sym_array_type] = STATE(1684), - [sym_for_lifetimes] = STATE(1591), - [sym_function_type] = STATE(1684), - [sym_tuple_type] = STATE(1684), - [sym_unit_type] = STATE(1684), - [sym_generic_type] = STATE(1649), - [sym_generic_type_with_turbofish] = STATE(3551), - [sym_bounded_type] = STATE(1684), - [sym_reference_type] = STATE(1684), - [sym_pointer_type] = STATE(1684), - [sym_never_type] = STATE(1684), - [sym_abstract_type] = STATE(1684), - [sym_dynamic_type] = STATE(1684), - [sym_macro_invocation] = STATE(1684), - [sym_scoped_identifier] = STATE(3288), - [sym_scoped_type_identifier] = STATE(1548), - [sym_line_comment] = STATE(1004), - [sym_block_comment] = STATE(1004), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(3141), - [anon_sym_LBRACK] = ACTIONS(3143), - [anon_sym_STAR] = ACTIONS(3147), - [anon_sym_QMARK] = ACTIONS(3149), - [anon_sym_u8] = ACTIONS(3151), - [anon_sym_i8] = ACTIONS(3151), - [anon_sym_u16] = ACTIONS(3151), - [anon_sym_i16] = ACTIONS(3151), - [anon_sym_u32] = ACTIONS(3151), - [anon_sym_i32] = ACTIONS(3151), - [anon_sym_u64] = ACTIONS(3151), - [anon_sym_i64] = ACTIONS(3151), - [anon_sym_u128] = ACTIONS(3151), - [anon_sym_i128] = ACTIONS(3151), - [anon_sym_isize] = ACTIONS(3151), - [anon_sym_usize] = ACTIONS(3151), - [anon_sym_f32] = ACTIONS(3151), - [anon_sym_f64] = ACTIONS(3151), - [anon_sym_bool] = ACTIONS(3151), - [anon_sym_str] = ACTIONS(3151), - [anon_sym_char] = ACTIONS(3151), - [anon_sym_BANG] = ACTIONS(3153), - [anon_sym_AMP] = ACTIONS(3155), + [1080] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2547), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1080), + [sym_block_comment] = STATE(1080), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3157), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), - [anon_sym_default] = ACTIONS(3159), - [anon_sym_fn] = ACTIONS(3161), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_gen] = ACTIONS(3163), - [anon_sym_impl] = ACTIONS(3165), - [anon_sym_union] = ACTIONS(3163), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(3167), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3171), - [sym_super] = ACTIONS(3171), - [sym_crate] = ACTIONS(3171), - [sym_metavariable] = ACTIONS(3173), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), }, - [1005] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2680), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(1005), - [sym_block_comment] = STATE(1005), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [1081] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2645), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1081), + [sym_block_comment] = STATE(1081), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -110141,22 +118287,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -110164,37 +118310,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [1006] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2532), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(1006), - [sym_block_comment] = STATE(1006), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [1082] = { + [sym_function_modifiers] = STATE(3801), + [sym_removed_trait_bound] = STATE(1632), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(1688), + [sym_bracketed_type] = STATE(4021), + [sym_lifetime] = STATE(3861), + [sym_array_type] = STATE(1632), + [sym_for_lifetimes] = STATE(1834), + [sym_function_type] = STATE(1632), + [sym_tuple_type] = STATE(1632), + [sym_unit_type] = STATE(1632), + [sym_generic_type] = STATE(1410), + [sym_generic_type_with_turbofish] = STATE(4011), + [sym_bounded_type] = STATE(1632), + [sym_reference_type] = STATE(1632), + [sym_pointer_type] = STATE(1632), + [sym_never_type] = STATE(1632), + [sym_abstract_type] = STATE(1632), + [sym_dynamic_type] = STATE(1632), + [sym_macro_invocation] = STATE(1632), + [sym_scoped_identifier] = STATE(3763), + [sym_scoped_type_identifier] = STATE(1185), + [sym_line_comment] = STATE(1082), + [sym_block_comment] = STATE(1082), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3515), + [anon_sym_LPAREN] = ACTIONS(3517), + [anon_sym_LBRACK] = ACTIONS(3519), + [anon_sym_STAR] = ACTIONS(3523), + [anon_sym_QMARK] = ACTIONS(3525), + [anon_sym_u8] = ACTIONS(3527), + [anon_sym_i8] = ACTIONS(3527), + [anon_sym_u16] = ACTIONS(3527), + [anon_sym_i16] = ACTIONS(3527), + [anon_sym_u32] = ACTIONS(3527), + [anon_sym_i32] = ACTIONS(3527), + [anon_sym_u64] = ACTIONS(3527), + [anon_sym_i64] = ACTIONS(3527), + [anon_sym_u128] = ACTIONS(3527), + [anon_sym_i128] = ACTIONS(3527), + [anon_sym_isize] = ACTIONS(3527), + [anon_sym_usize] = ACTIONS(3527), + [anon_sym_f32] = ACTIONS(3527), + [anon_sym_f64] = ACTIONS(3527), + [anon_sym_bool] = ACTIONS(3527), + [anon_sym_str] = ACTIONS(3527), + [anon_sym_char] = ACTIONS(3527), + [anon_sym_BANG] = ACTIONS(3529), + [anon_sym_AMP] = ACTIONS(3531), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3533), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(3535), + [anon_sym_fn] = ACTIONS(3537), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(3539), + [anon_sym_impl] = ACTIONS(3541), + [anon_sym_union] = ACTIONS(3539), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(3543), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3547), + [sym_super] = ACTIONS(3547), + [sym_crate] = ACTIONS(3547), + [sym_metavariable] = ACTIONS(3549), + }, + [1083] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2662), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1083), + [sym_block_comment] = STATE(1083), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -110212,22 +118429,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -110235,37 +118452,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [1007] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2009), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(1007), - [sym_block_comment] = STATE(1007), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [1084] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2638), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1084), + [sym_block_comment] = STATE(1084), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -110283,22 +118500,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -110306,37 +118523,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [1008] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2010), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(1008), - [sym_block_comment] = STATE(1008), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [1085] = { + [sym_function_modifiers] = STATE(3979), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2070), + [sym_bracketed_type] = STATE(4035), + [sym_lifetime] = STATE(4057), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1826), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), + [sym_generic_type] = STATE(1896), + [sym_generic_type_with_turbofish] = STATE(4027), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3587), + [sym_scoped_type_identifier] = STATE(1798), + [sym_line_comment] = STATE(1085), + [sym_block_comment] = STATE(1085), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3551), + [anon_sym_LPAREN] = ACTIONS(3553), + [anon_sym_LBRACK] = ACTIONS(3555), + [anon_sym_STAR] = ACTIONS(3559), + [anon_sym_QMARK] = ACTIONS(3561), + [anon_sym_u8] = ACTIONS(3563), + [anon_sym_i8] = ACTIONS(3563), + [anon_sym_u16] = ACTIONS(3563), + [anon_sym_i16] = ACTIONS(3563), + [anon_sym_u32] = ACTIONS(3563), + [anon_sym_i32] = ACTIONS(3563), + [anon_sym_u64] = ACTIONS(3563), + [anon_sym_i64] = ACTIONS(3563), + [anon_sym_u128] = ACTIONS(3563), + [anon_sym_i128] = ACTIONS(3563), + [anon_sym_isize] = ACTIONS(3563), + [anon_sym_usize] = ACTIONS(3563), + [anon_sym_f32] = ACTIONS(3563), + [anon_sym_f64] = ACTIONS(3563), + [anon_sym_bool] = ACTIONS(3563), + [anon_sym_str] = ACTIONS(3563), + [anon_sym_char] = ACTIONS(3563), + [anon_sym_BANG] = ACTIONS(3565), + [anon_sym_AMP] = ACTIONS(3567), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3569), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(3571), + [anon_sym_fn] = ACTIONS(3573), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(3575), + [anon_sym_impl] = ACTIONS(3577), + [anon_sym_union] = ACTIONS(3575), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(3579), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3583), + [sym_super] = ACTIONS(3583), + [sym_crate] = ACTIONS(3583), + [sym_metavariable] = ACTIONS(3585), + }, + [1086] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2859), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1086), + [sym_block_comment] = STATE(1086), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -110354,22 +118642,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -110377,37 +118665,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [1009] = { - [sym_function_modifiers] = STATE(3386), - [sym_removed_trait_bound] = STATE(1991), - [sym_extern_modifier] = STATE(2387), - [sym__type] = STATE(2511), - [sym_bracketed_type] = STATE(3361), - [sym_lifetime] = STATE(3635), - [sym_array_type] = STATE(1991), - [sym_for_lifetimes] = STATE(1565), - [sym_function_type] = STATE(1991), - [sym_tuple_type] = STATE(1991), - [sym_unit_type] = STATE(1991), - [sym_generic_type] = STATE(1962), - [sym_generic_type_with_turbofish] = STATE(3641), - [sym_bounded_type] = STATE(1991), - [sym_reference_type] = STATE(1991), - [sym_pointer_type] = STATE(1991), - [sym_never_type] = STATE(1991), - [sym_abstract_type] = STATE(1991), - [sym_dynamic_type] = STATE(1991), - [sym_macro_invocation] = STATE(1991), - [sym_scoped_identifier] = STATE(3121), - [sym_scoped_type_identifier] = STATE(1936), - [sym_line_comment] = STATE(1009), - [sym_block_comment] = STATE(1009), - [aux_sym_function_modifiers_repeat1] = STATE(2239), - [sym_identifier] = ACTIONS(3005), + [1087] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2687), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1087), + [sym_block_comment] = STATE(1087), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), [anon_sym_LPAREN] = ACTIONS(1597), [anon_sym_LBRACK] = ACTIONS(1599), - [anon_sym_STAR] = ACTIONS(1289), - [anon_sym_QMARK] = ACTIONS(1291), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), [anon_sym_u8] = ACTIONS(1603), [anon_sym_i8] = ACTIONS(1603), [anon_sym_u16] = ACTIONS(1603), @@ -110425,22 +118713,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1603), [anon_sym_str] = ACTIONS(1603), [anon_sym_char] = ACTIONS(1603), - [anon_sym_BANG] = ACTIONS(1297), + [anon_sym_BANG] = ACTIONS(1309), [anon_sym_AMP] = ACTIONS(1605), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1609), - [anon_sym_SQUOTE] = ACTIONS(3011), - [anon_sym_async] = ACTIONS(1317), - [anon_sym_const] = ACTIONS(1317), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), [anon_sym_default] = ACTIONS(1613), - [anon_sym_fn] = ACTIONS(1323), - [anon_sym_for] = ACTIONS(1325), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), [anon_sym_gen] = ACTIONS(1615), - [anon_sym_impl] = ACTIONS(1329), + [anon_sym_impl] = ACTIONS(1341), [anon_sym_union] = ACTIONS(1615), - [anon_sym_unsafe] = ACTIONS(1317), - [anon_sym_extern] = ACTIONS(1331), - [anon_sym_dyn] = ACTIONS(1335), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), [sym_self] = ACTIONS(1619), @@ -110448,541 +118736,20399 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1619), [sym_metavariable] = ACTIONS(1621), }, - [1010] = { - [sym_attribute_item] = STATE(1011), - [sym_line_comment] = STATE(1010), - [sym_block_comment] = STATE(1010), - [aux_sym_enum_variant_list_repeat1] = STATE(1010), - [sym_identifier] = ACTIONS(3243), - [anon_sym_LPAREN] = ACTIONS(789), - [anon_sym_LBRACK] = ACTIONS(789), - [anon_sym_RBRACK] = ACTIONS(789), - [anon_sym_LBRACE] = ACTIONS(789), - [anon_sym_STAR] = ACTIONS(789), - [anon_sym_u8] = ACTIONS(3243), - [anon_sym_i8] = ACTIONS(3243), - [anon_sym_u16] = ACTIONS(3243), - [anon_sym_i16] = ACTIONS(3243), - [anon_sym_u32] = ACTIONS(3243), - [anon_sym_i32] = ACTIONS(3243), - [anon_sym_u64] = ACTIONS(3243), - [anon_sym_i64] = ACTIONS(3243), - [anon_sym_u128] = ACTIONS(3243), - [anon_sym_i128] = ACTIONS(3243), - [anon_sym_isize] = ACTIONS(3243), - [anon_sym_usize] = ACTIONS(3243), - [anon_sym_f32] = ACTIONS(3243), - [anon_sym_f64] = ACTIONS(3243), - [anon_sym_bool] = ACTIONS(3243), - [anon_sym_str] = ACTIONS(3243), - [anon_sym_char] = ACTIONS(3243), - [anon_sym_DASH] = ACTIONS(789), - [anon_sym_BANG] = ACTIONS(789), - [anon_sym_AMP] = ACTIONS(789), - [anon_sym_PIPE] = ACTIONS(789), - [anon_sym_LT] = ACTIONS(789), - [anon_sym_DOT_DOT] = ACTIONS(789), - [anon_sym_COMMA] = ACTIONS(789), - [anon_sym_COLON_COLON] = ACTIONS(789), - [anon_sym_POUND] = ACTIONS(815), - [anon_sym_SQUOTE] = ACTIONS(3243), - [anon_sym_async] = ACTIONS(3243), - [anon_sym_break] = ACTIONS(3243), - [anon_sym_const] = ACTIONS(3243), - [anon_sym_continue] = ACTIONS(3243), - [anon_sym_default] = ACTIONS(3243), - [anon_sym_for] = ACTIONS(3243), - [anon_sym_gen] = ACTIONS(3243), - [anon_sym_if] = ACTIONS(3243), - [anon_sym_loop] = ACTIONS(3243), - [anon_sym_match] = ACTIONS(3243), - [anon_sym_return] = ACTIONS(3243), - [anon_sym_static] = ACTIONS(3243), - [anon_sym_union] = ACTIONS(3243), - [anon_sym_unsafe] = ACTIONS(3243), - [anon_sym_while] = ACTIONS(3243), - [anon_sym_yield] = ACTIONS(3243), - [anon_sym_move] = ACTIONS(3243), - [anon_sym_try] = ACTIONS(3243), - [sym_integer_literal] = ACTIONS(789), - [aux_sym_string_literal_token1] = ACTIONS(789), - [sym_char_literal] = ACTIONS(789), - [anon_sym_true] = ACTIONS(3243), - [anon_sym_false] = ACTIONS(3243), + [1088] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2705), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2704), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2467), + [sym_line_comment] = STATE(1088), + [sym_block_comment] = STATE(1088), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3673), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(3675), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3243), - [sym_super] = ACTIONS(3243), - [sym_crate] = ACTIONS(3243), - [sym_metavariable] = ACTIONS(789), - [sym__raw_string_literal_start] = ACTIONS(789), - [sym_float_literal] = ACTIONS(789), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), }, - [1011] = { - [sym_line_comment] = STATE(1011), - [sym_block_comment] = STATE(1011), - [sym_identifier] = ACTIONS(3245), - [anon_sym_LPAREN] = ACTIONS(3247), - [anon_sym_LBRACK] = ACTIONS(3247), - [anon_sym_RBRACK] = ACTIONS(3247), - [anon_sym_LBRACE] = ACTIONS(3247), - [anon_sym_STAR] = ACTIONS(3247), - [anon_sym_u8] = ACTIONS(3245), - [anon_sym_i8] = ACTIONS(3245), - [anon_sym_u16] = ACTIONS(3245), - [anon_sym_i16] = ACTIONS(3245), - [anon_sym_u32] = ACTIONS(3245), - [anon_sym_i32] = ACTIONS(3245), - [anon_sym_u64] = ACTIONS(3245), - [anon_sym_i64] = ACTIONS(3245), - [anon_sym_u128] = ACTIONS(3245), - [anon_sym_i128] = ACTIONS(3245), - [anon_sym_isize] = ACTIONS(3245), - [anon_sym_usize] = ACTIONS(3245), - [anon_sym_f32] = ACTIONS(3245), - [anon_sym_f64] = ACTIONS(3245), - [anon_sym_bool] = ACTIONS(3245), - [anon_sym_str] = ACTIONS(3245), - [anon_sym_char] = ACTIONS(3245), - [anon_sym_DASH] = ACTIONS(3247), - [anon_sym_BANG] = ACTIONS(3247), - [anon_sym_AMP] = ACTIONS(3247), - [anon_sym_PIPE] = ACTIONS(3247), - [anon_sym_LT] = ACTIONS(3247), - [anon_sym_DOT_DOT] = ACTIONS(3247), - [anon_sym_COMMA] = ACTIONS(3247), - [anon_sym_COLON_COLON] = ACTIONS(3247), - [anon_sym_POUND] = ACTIONS(3247), - [anon_sym_SQUOTE] = ACTIONS(3245), - [anon_sym_async] = ACTIONS(3245), - [anon_sym_break] = ACTIONS(3245), - [anon_sym_const] = ACTIONS(3245), - [anon_sym_continue] = ACTIONS(3245), - [anon_sym_default] = ACTIONS(3245), - [anon_sym_for] = ACTIONS(3245), - [anon_sym_gen] = ACTIONS(3245), - [anon_sym_if] = ACTIONS(3245), - [anon_sym_loop] = ACTIONS(3245), - [anon_sym_match] = ACTIONS(3245), - [anon_sym_return] = ACTIONS(3245), - [anon_sym_static] = ACTIONS(3245), - [anon_sym_union] = ACTIONS(3245), - [anon_sym_unsafe] = ACTIONS(3245), - [anon_sym_while] = ACTIONS(3245), - [anon_sym_yield] = ACTIONS(3245), - [anon_sym_move] = ACTIONS(3245), - [anon_sym_try] = ACTIONS(3245), - [sym_integer_literal] = ACTIONS(3247), - [aux_sym_string_literal_token1] = ACTIONS(3247), - [sym_char_literal] = ACTIONS(3247), - [anon_sym_true] = ACTIONS(3245), - [anon_sym_false] = ACTIONS(3245), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3245), - [sym_super] = ACTIONS(3245), - [sym_crate] = ACTIONS(3245), - [sym_metavariable] = ACTIONS(3247), - [sym__raw_string_literal_start] = ACTIONS(3247), - [sym_float_literal] = ACTIONS(3247), + [1089] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(3425), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1089), + [sym_block_comment] = STATE(1089), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), }, - [1012] = { - [sym_line_comment] = STATE(1012), - [sym_block_comment] = STATE(1012), - [sym_identifier] = ACTIONS(3249), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym_LBRACK] = ACTIONS(3251), - [anon_sym_LBRACE] = ACTIONS(3251), - [anon_sym_STAR] = ACTIONS(3251), - [anon_sym_u8] = ACTIONS(3249), - [anon_sym_i8] = ACTIONS(3249), - [anon_sym_u16] = ACTIONS(3249), - [anon_sym_i16] = ACTIONS(3249), - [anon_sym_u32] = ACTIONS(3249), - [anon_sym_i32] = ACTIONS(3249), - [anon_sym_u64] = ACTIONS(3249), - [anon_sym_i64] = ACTIONS(3249), - [anon_sym_u128] = ACTIONS(3249), - [anon_sym_i128] = ACTIONS(3249), - [anon_sym_isize] = ACTIONS(3249), - [anon_sym_usize] = ACTIONS(3249), - [anon_sym_f32] = ACTIONS(3249), - [anon_sym_f64] = ACTIONS(3249), - [anon_sym_bool] = ACTIONS(3249), - [anon_sym_str] = ACTIONS(3249), - [anon_sym_char] = ACTIONS(3249), - [anon_sym_DASH] = ACTIONS(3249), - [anon_sym_BANG] = ACTIONS(3251), - [anon_sym_AMP] = ACTIONS(3251), - [anon_sym_PIPE] = ACTIONS(3251), - [anon_sym_LT] = ACTIONS(3251), - [anon_sym__] = ACTIONS(3249), - [anon_sym_DOT_DOT] = ACTIONS(3251), - [anon_sym_COLON_COLON] = ACTIONS(3251), - [anon_sym_DASH_GT] = ACTIONS(3251), - [anon_sym_SQUOTE] = ACTIONS(3249), - [anon_sym_async] = ACTIONS(3249), - [anon_sym_break] = ACTIONS(3249), - [anon_sym_const] = ACTIONS(3249), - [anon_sym_continue] = ACTIONS(3249), - [anon_sym_default] = ACTIONS(3249), - [anon_sym_for] = ACTIONS(3249), - [anon_sym_gen] = ACTIONS(3249), - [anon_sym_if] = ACTIONS(3249), - [anon_sym_loop] = ACTIONS(3249), - [anon_sym_match] = ACTIONS(3249), - [anon_sym_return] = ACTIONS(3249), - [anon_sym_static] = ACTIONS(3249), - [anon_sym_union] = ACTIONS(3249), - [anon_sym_unsafe] = ACTIONS(3249), - [anon_sym_while] = ACTIONS(3249), - [anon_sym_yield] = ACTIONS(3249), - [anon_sym_move] = ACTIONS(3249), - [anon_sym_try] = ACTIONS(3249), - [sym_integer_literal] = ACTIONS(3251), - [aux_sym_string_literal_token1] = ACTIONS(3251), - [sym_char_literal] = ACTIONS(3251), - [anon_sym_true] = ACTIONS(3249), - [anon_sym_false] = ACTIONS(3249), - [anon_sym_SLASH_SLASH] = ACTIONS(103), - [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(3249), - [sym_super] = ACTIONS(3249), - [sym_crate] = ACTIONS(3249), - [sym_metavariable] = ACTIONS(3251), - [sym__raw_string_literal_start] = ACTIONS(3251), - [sym_float_literal] = ACTIONS(3251), + [1090] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2900), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1090), + [sym_block_comment] = STATE(1090), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), }, - [1013] = { - [sym_line_comment] = STATE(1013), - [sym_block_comment] = STATE(1013), - [sym_identifier] = ACTIONS(1587), - [anon_sym_LPAREN] = ACTIONS(1589), - [anon_sym_LBRACK] = ACTIONS(1589), - [anon_sym_LBRACE] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1589), - [anon_sym_u8] = ACTIONS(1587), - [anon_sym_i8] = ACTIONS(1587), - [anon_sym_u16] = ACTIONS(1587), - [anon_sym_i16] = ACTIONS(1587), - [anon_sym_u32] = ACTIONS(1587), - [anon_sym_i32] = ACTIONS(1587), - [anon_sym_u64] = ACTIONS(1587), - [anon_sym_i64] = ACTIONS(1587), - [anon_sym_u128] = ACTIONS(1587), - [anon_sym_i128] = ACTIONS(1587), - [anon_sym_isize] = ACTIONS(1587), - [anon_sym_usize] = ACTIONS(1587), - [anon_sym_f32] = ACTIONS(1587), - [anon_sym_f64] = ACTIONS(1587), - [anon_sym_bool] = ACTIONS(1587), - [anon_sym_str] = ACTIONS(1587), - [anon_sym_char] = ACTIONS(1587), - [anon_sym_DASH] = ACTIONS(1587), - [anon_sym_BANG] = ACTIONS(1589), - [anon_sym_AMP] = ACTIONS(1589), - [anon_sym_PIPE] = ACTIONS(1589), - [anon_sym_LT] = ACTIONS(1589), - [anon_sym__] = ACTIONS(1587), - [anon_sym_DOT_DOT] = ACTIONS(1589), - [anon_sym_COLON_COLON] = ACTIONS(1589), - [anon_sym_DASH_GT] = ACTIONS(1589), - [anon_sym_SQUOTE] = ACTIONS(1587), - [anon_sym_async] = ACTIONS(1587), - [anon_sym_break] = ACTIONS(1587), - [anon_sym_const] = ACTIONS(1587), - [anon_sym_continue] = ACTIONS(1587), - [anon_sym_default] = ACTIONS(1587), - [anon_sym_for] = ACTIONS(1587), - [anon_sym_gen] = ACTIONS(1587), - [anon_sym_if] = ACTIONS(1587), - [anon_sym_loop] = ACTIONS(1587), - [anon_sym_match] = ACTIONS(1587), - [anon_sym_return] = ACTIONS(1587), - [anon_sym_static] = ACTIONS(1587), - [anon_sym_union] = ACTIONS(1587), - [anon_sym_unsafe] = ACTIONS(1587), - [anon_sym_while] = ACTIONS(1587), - [anon_sym_yield] = ACTIONS(1587), - [anon_sym_move] = ACTIONS(1587), - [anon_sym_try] = ACTIONS(1587), - [sym_integer_literal] = ACTIONS(1589), - [aux_sym_string_literal_token1] = ACTIONS(1589), - [sym_char_literal] = ACTIONS(1589), - [anon_sym_true] = ACTIONS(1587), - [anon_sym_false] = ACTIONS(1587), + [1091] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2967), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1091), + [sym_block_comment] = STATE(1091), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), [anon_sym_SLASH_SLASH] = ACTIONS(103), [anon_sym_SLASH_STAR] = ACTIONS(105), - [sym_self] = ACTIONS(1587), - [sym_super] = ACTIONS(1587), - [sym_crate] = ACTIONS(1587), - [sym_metavariable] = ACTIONS(1589), - [sym__raw_string_literal_start] = ACTIONS(1589), - [sym_float_literal] = ACTIONS(1589), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), }, -}; - -static const uint16_t ts_small_parse_table[] = { - [0] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1014), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1097), 18, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_DOT_DOT, - anon_sym_COLON_COLON, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(3253), 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_gen, - anon_sym_if, - anon_sym_loop, - anon_sym_match, - anon_sym_return, - anon_sym_static, - anon_sym_union, - anon_sym_unsafe, - anon_sym_while, - anon_sym_yield, - anon_sym_move, - anon_sym_try, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [75] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1015), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2099), 17, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_DASH, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_DOT_DOT_DOT, - anon_sym_COLON_COLON, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(2101), 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__, - anon_sym_DOT_DOT, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_for, - anon_sym_gen, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_ref, - anon_sym_dyn, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [146] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1016), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3257), 20, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(3255), 35, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_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_gen, - anon_sym_impl, - anon_sym_union, + [1092] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(3088), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1092), + [sym_block_comment] = STATE(1092), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), + }, + [1093] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2973), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1093), + [sym_block_comment] = STATE(1093), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), + }, + [1094] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2703), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1094), + [sym_block_comment] = STATE(1094), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), + }, + [1095] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2869), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1095), + [sym_block_comment] = STATE(1095), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), + }, + [1096] = { + [sym_function_modifiers] = STATE(3979), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2043), + [sym_bracketed_type] = STATE(4035), + [sym_lifetime] = STATE(4057), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1826), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), + [sym_generic_type] = STATE(1896), + [sym_generic_type_with_turbofish] = STATE(4027), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3587), + [sym_scoped_type_identifier] = STATE(1798), + [sym_line_comment] = STATE(1096), + [sym_block_comment] = STATE(1096), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3551), + [anon_sym_LPAREN] = ACTIONS(3553), + [anon_sym_LBRACK] = ACTIONS(3555), + [anon_sym_STAR] = ACTIONS(3559), + [anon_sym_QMARK] = ACTIONS(3561), + [anon_sym_u8] = ACTIONS(3563), + [anon_sym_i8] = ACTIONS(3563), + [anon_sym_u16] = ACTIONS(3563), + [anon_sym_i16] = ACTIONS(3563), + [anon_sym_u32] = ACTIONS(3563), + [anon_sym_i32] = ACTIONS(3563), + [anon_sym_u64] = ACTIONS(3563), + [anon_sym_i64] = ACTIONS(3563), + [anon_sym_u128] = ACTIONS(3563), + [anon_sym_i128] = ACTIONS(3563), + [anon_sym_isize] = ACTIONS(3563), + [anon_sym_usize] = ACTIONS(3563), + [anon_sym_f32] = ACTIONS(3563), + [anon_sym_f64] = ACTIONS(3563), + [anon_sym_bool] = ACTIONS(3563), + [anon_sym_str] = ACTIONS(3563), + [anon_sym_char] = ACTIONS(3563), + [anon_sym_BANG] = ACTIONS(3565), + [anon_sym_AMP] = ACTIONS(3567), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3569), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(3571), + [anon_sym_fn] = ACTIONS(3573), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(3575), + [anon_sym_impl] = ACTIONS(3577), + [anon_sym_union] = ACTIONS(3575), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(3579), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3583), + [sym_super] = ACTIONS(3583), + [sym_crate] = ACTIONS(3583), + [sym_metavariable] = ACTIONS(3585), + }, + [1097] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2682), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1097), + [sym_block_comment] = STATE(1097), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), + }, + [1098] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2489), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1098), + [sym_block_comment] = STATE(1098), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), + }, + [1099] = { + [sym_function_modifiers] = STATE(3979), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2039), + [sym_bracketed_type] = STATE(4035), + [sym_lifetime] = STATE(4057), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1826), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), + [sym_generic_type] = STATE(1896), + [sym_generic_type_with_turbofish] = STATE(4027), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3587), + [sym_scoped_type_identifier] = STATE(1798), + [sym_line_comment] = STATE(1099), + [sym_block_comment] = STATE(1099), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3551), + [anon_sym_LPAREN] = ACTIONS(3553), + [anon_sym_LBRACK] = ACTIONS(3555), + [anon_sym_STAR] = ACTIONS(3559), + [anon_sym_QMARK] = ACTIONS(3561), + [anon_sym_u8] = ACTIONS(3563), + [anon_sym_i8] = ACTIONS(3563), + [anon_sym_u16] = ACTIONS(3563), + [anon_sym_i16] = ACTIONS(3563), + [anon_sym_u32] = ACTIONS(3563), + [anon_sym_i32] = ACTIONS(3563), + [anon_sym_u64] = ACTIONS(3563), + [anon_sym_i64] = ACTIONS(3563), + [anon_sym_u128] = ACTIONS(3563), + [anon_sym_i128] = ACTIONS(3563), + [anon_sym_isize] = ACTIONS(3563), + [anon_sym_usize] = ACTIONS(3563), + [anon_sym_f32] = ACTIONS(3563), + [anon_sym_f64] = ACTIONS(3563), + [anon_sym_bool] = ACTIONS(3563), + [anon_sym_str] = ACTIONS(3563), + [anon_sym_char] = ACTIONS(3563), + [anon_sym_BANG] = ACTIONS(3565), + [anon_sym_AMP] = ACTIONS(3567), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3569), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(3571), + [anon_sym_fn] = ACTIONS(3573), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(3575), + [anon_sym_impl] = ACTIONS(3577), + [anon_sym_union] = ACTIONS(3575), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(3579), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3583), + [sym_super] = ACTIONS(3583), + [sym_crate] = ACTIONS(3583), + [sym_metavariable] = ACTIONS(3585), + }, + [1100] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2673), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1100), + [sym_block_comment] = STATE(1100), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), + }, + [1101] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(3082), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1101), + [sym_block_comment] = STATE(1101), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), + }, + [1102] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(3312), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1102), + [sym_block_comment] = STATE(1102), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), + }, + [1103] = { + [sym_function_modifiers] = STATE(3979), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2034), + [sym_bracketed_type] = STATE(4035), + [sym_lifetime] = STATE(4057), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1826), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), + [sym_generic_type] = STATE(1896), + [sym_generic_type_with_turbofish] = STATE(4027), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3587), + [sym_scoped_type_identifier] = STATE(1798), + [sym_line_comment] = STATE(1103), + [sym_block_comment] = STATE(1103), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3551), + [anon_sym_LPAREN] = ACTIONS(3553), + [anon_sym_LBRACK] = ACTIONS(3555), + [anon_sym_STAR] = ACTIONS(3559), + [anon_sym_QMARK] = ACTIONS(3561), + [anon_sym_u8] = ACTIONS(3563), + [anon_sym_i8] = ACTIONS(3563), + [anon_sym_u16] = ACTIONS(3563), + [anon_sym_i16] = ACTIONS(3563), + [anon_sym_u32] = ACTIONS(3563), + [anon_sym_i32] = ACTIONS(3563), + [anon_sym_u64] = ACTIONS(3563), + [anon_sym_i64] = ACTIONS(3563), + [anon_sym_u128] = ACTIONS(3563), + [anon_sym_i128] = ACTIONS(3563), + [anon_sym_isize] = ACTIONS(3563), + [anon_sym_usize] = ACTIONS(3563), + [anon_sym_f32] = ACTIONS(3563), + [anon_sym_f64] = ACTIONS(3563), + [anon_sym_bool] = ACTIONS(3563), + [anon_sym_str] = ACTIONS(3563), + [anon_sym_char] = ACTIONS(3563), + [anon_sym_BANG] = ACTIONS(3565), + [anon_sym_AMP] = ACTIONS(3567), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3569), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(3571), + [anon_sym_fn] = ACTIONS(3573), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(3575), + [anon_sym_impl] = ACTIONS(3577), + [anon_sym_union] = ACTIONS(3575), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(3579), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3583), + [sym_super] = ACTIONS(3583), + [sym_crate] = ACTIONS(3583), + [sym_metavariable] = ACTIONS(3585), + }, + [1104] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2488), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1104), + [sym_block_comment] = STATE(1104), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), + }, + [1105] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(3015), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1105), + [sym_block_comment] = STATE(1105), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), + }, + [1106] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2736), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1106), + [sym_block_comment] = STATE(1106), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), + }, + [1107] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2678), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1107), + [sym_block_comment] = STATE(1107), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), + }, + [1108] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2741), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1108), + [sym_block_comment] = STATE(1108), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), + }, + [1109] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(3331), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1109), + [sym_block_comment] = STATE(1109), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), + }, + [1110] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2710), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1110), + [sym_block_comment] = STATE(1110), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), + }, + [1111] = { + [sym_function_modifiers] = STATE(3979), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2102), + [sym_bracketed_type] = STATE(4035), + [sym_lifetime] = STATE(4057), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1826), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), + [sym_generic_type] = STATE(1896), + [sym_generic_type_with_turbofish] = STATE(4027), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3587), + [sym_scoped_type_identifier] = STATE(1798), + [sym_line_comment] = STATE(1111), + [sym_block_comment] = STATE(1111), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3551), + [anon_sym_LPAREN] = ACTIONS(3553), + [anon_sym_LBRACK] = ACTIONS(3555), + [anon_sym_STAR] = ACTIONS(3559), + [anon_sym_QMARK] = ACTIONS(3561), + [anon_sym_u8] = ACTIONS(3563), + [anon_sym_i8] = ACTIONS(3563), + [anon_sym_u16] = ACTIONS(3563), + [anon_sym_i16] = ACTIONS(3563), + [anon_sym_u32] = ACTIONS(3563), + [anon_sym_i32] = ACTIONS(3563), + [anon_sym_u64] = ACTIONS(3563), + [anon_sym_i64] = ACTIONS(3563), + [anon_sym_u128] = ACTIONS(3563), + [anon_sym_i128] = ACTIONS(3563), + [anon_sym_isize] = ACTIONS(3563), + [anon_sym_usize] = ACTIONS(3563), + [anon_sym_f32] = ACTIONS(3563), + [anon_sym_f64] = ACTIONS(3563), + [anon_sym_bool] = ACTIONS(3563), + [anon_sym_str] = ACTIONS(3563), + [anon_sym_char] = ACTIONS(3563), + [anon_sym_BANG] = ACTIONS(3565), + [anon_sym_AMP] = ACTIONS(3567), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3569), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(3571), + [anon_sym_fn] = ACTIONS(3573), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(3575), + [anon_sym_impl] = ACTIONS(3577), + [anon_sym_union] = ACTIONS(3575), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(3579), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3583), + [sym_super] = ACTIONS(3583), + [sym_crate] = ACTIONS(3583), + [sym_metavariable] = ACTIONS(3585), + }, + [1112] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2672), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1112), + [sym_block_comment] = STATE(1112), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), + }, + [1113] = { + [sym_function_modifiers] = STATE(3801), + [sym_removed_trait_bound] = STATE(1632), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(1640), + [sym_bracketed_type] = STATE(4021), + [sym_lifetime] = STATE(3861), + [sym_array_type] = STATE(1632), + [sym_for_lifetimes] = STATE(1834), + [sym_function_type] = STATE(1632), + [sym_tuple_type] = STATE(1632), + [sym_unit_type] = STATE(1632), + [sym_generic_type] = STATE(1410), + [sym_generic_type_with_turbofish] = STATE(4011), + [sym_bounded_type] = STATE(1632), + [sym_reference_type] = STATE(1632), + [sym_pointer_type] = STATE(1632), + [sym_never_type] = STATE(1632), + [sym_abstract_type] = STATE(1632), + [sym_dynamic_type] = STATE(1632), + [sym_macro_invocation] = STATE(1632), + [sym_scoped_identifier] = STATE(3763), + [sym_scoped_type_identifier] = STATE(1185), + [sym_line_comment] = STATE(1113), + [sym_block_comment] = STATE(1113), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3515), + [anon_sym_LPAREN] = ACTIONS(3517), + [anon_sym_LBRACK] = ACTIONS(3519), + [anon_sym_STAR] = ACTIONS(3523), + [anon_sym_QMARK] = ACTIONS(3525), + [anon_sym_u8] = ACTIONS(3527), + [anon_sym_i8] = ACTIONS(3527), + [anon_sym_u16] = ACTIONS(3527), + [anon_sym_i16] = ACTIONS(3527), + [anon_sym_u32] = ACTIONS(3527), + [anon_sym_i32] = ACTIONS(3527), + [anon_sym_u64] = ACTIONS(3527), + [anon_sym_i64] = ACTIONS(3527), + [anon_sym_u128] = ACTIONS(3527), + [anon_sym_i128] = ACTIONS(3527), + [anon_sym_isize] = ACTIONS(3527), + [anon_sym_usize] = ACTIONS(3527), + [anon_sym_f32] = ACTIONS(3527), + [anon_sym_f64] = ACTIONS(3527), + [anon_sym_bool] = ACTIONS(3527), + [anon_sym_str] = ACTIONS(3527), + [anon_sym_char] = ACTIONS(3527), + [anon_sym_BANG] = ACTIONS(3529), + [anon_sym_AMP] = ACTIONS(3531), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3533), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(3535), + [anon_sym_fn] = ACTIONS(3537), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(3539), + [anon_sym_impl] = ACTIONS(3541), + [anon_sym_union] = ACTIONS(3539), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(3543), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3547), + [sym_super] = ACTIONS(3547), + [sym_crate] = ACTIONS(3547), + [sym_metavariable] = ACTIONS(3549), + }, + [1114] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2959), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1114), + [sym_block_comment] = STATE(1114), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), + }, + [1115] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(3516), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1115), + [sym_block_comment] = STATE(1115), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), + }, + [1116] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(3285), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1116), + [sym_block_comment] = STATE(1116), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), + }, + [1117] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2740), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1117), + [sym_block_comment] = STATE(1117), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), + }, + [1118] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(3396), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1118), + [sym_block_comment] = STATE(1118), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), + }, + [1119] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2671), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1119), + [sym_block_comment] = STATE(1119), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), + }, + [1120] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(3336), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1120), + [sym_block_comment] = STATE(1120), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), + }, + [1121] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2503), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1121), + [sym_block_comment] = STATE(1121), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), + }, + [1122] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(3397), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1122), + [sym_block_comment] = STATE(1122), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), + }, + [1123] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2739), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1123), + [sym_block_comment] = STATE(1123), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), + }, + [1124] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2615), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1124), + [sym_block_comment] = STATE(1124), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), + }, + [1125] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2517), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1125), + [sym_block_comment] = STATE(1125), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), + }, + [1126] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(3401), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1126), + [sym_block_comment] = STATE(1126), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), + }, + [1127] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2670), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1127), + [sym_block_comment] = STATE(1127), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), + }, + [1128] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2837), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1128), + [sym_block_comment] = STATE(1128), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), + }, + [1129] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2694), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1129), + [sym_block_comment] = STATE(1129), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), + }, + [1130] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2697), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1130), + [sym_block_comment] = STATE(1130), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), + }, + [1131] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2733), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2738), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2441), + [sym_line_comment] = STATE(1131), + [sym_block_comment] = STATE(1131), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3677), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(3679), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), + }, + [1132] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(3721), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1132), + [sym_block_comment] = STATE(1132), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), + }, + [1133] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2260), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(2270), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1133), + [sym_block_comment] = STATE(1133), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), + }, + [1134] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2891), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1134), + [sym_block_comment] = STATE(1134), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), + }, + [1135] = { + [sym_function_modifiers] = STATE(3801), + [sym_removed_trait_bound] = STATE(1632), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(1667), + [sym_bracketed_type] = STATE(4021), + [sym_lifetime] = STATE(3861), + [sym_array_type] = STATE(1632), + [sym_for_lifetimes] = STATE(1834), + [sym_function_type] = STATE(1632), + [sym_tuple_type] = STATE(1632), + [sym_unit_type] = STATE(1632), + [sym_generic_type] = STATE(1410), + [sym_generic_type_with_turbofish] = STATE(4011), + [sym_bounded_type] = STATE(1632), + [sym_reference_type] = STATE(1632), + [sym_pointer_type] = STATE(1632), + [sym_never_type] = STATE(1632), + [sym_abstract_type] = STATE(1632), + [sym_dynamic_type] = STATE(1632), + [sym_macro_invocation] = STATE(1632), + [sym_scoped_identifier] = STATE(3763), + [sym_scoped_type_identifier] = STATE(1185), + [sym_line_comment] = STATE(1135), + [sym_block_comment] = STATE(1135), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3515), + [anon_sym_LPAREN] = ACTIONS(3517), + [anon_sym_LBRACK] = ACTIONS(3519), + [anon_sym_STAR] = ACTIONS(3523), + [anon_sym_QMARK] = ACTIONS(3525), + [anon_sym_u8] = ACTIONS(3527), + [anon_sym_i8] = ACTIONS(3527), + [anon_sym_u16] = ACTIONS(3527), + [anon_sym_i16] = ACTIONS(3527), + [anon_sym_u32] = ACTIONS(3527), + [anon_sym_i32] = ACTIONS(3527), + [anon_sym_u64] = ACTIONS(3527), + [anon_sym_i64] = ACTIONS(3527), + [anon_sym_u128] = ACTIONS(3527), + [anon_sym_i128] = ACTIONS(3527), + [anon_sym_isize] = ACTIONS(3527), + [anon_sym_usize] = ACTIONS(3527), + [anon_sym_f32] = ACTIONS(3527), + [anon_sym_f64] = ACTIONS(3527), + [anon_sym_bool] = ACTIONS(3527), + [anon_sym_str] = ACTIONS(3527), + [anon_sym_char] = ACTIONS(3527), + [anon_sym_BANG] = ACTIONS(3529), + [anon_sym_AMP] = ACTIONS(3531), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3533), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(3535), + [anon_sym_fn] = ACTIONS(3537), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(3539), + [anon_sym_impl] = ACTIONS(3541), + [anon_sym_union] = ACTIONS(3539), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(3543), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3547), + [sym_super] = ACTIONS(3547), + [sym_crate] = ACTIONS(3547), + [sym_metavariable] = ACTIONS(3549), + }, + [1136] = { + [sym_function_modifiers] = STATE(3801), + [sym_removed_trait_bound] = STATE(1632), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(1665), + [sym_bracketed_type] = STATE(4021), + [sym_lifetime] = STATE(3861), + [sym_array_type] = STATE(1632), + [sym_for_lifetimes] = STATE(1834), + [sym_function_type] = STATE(1632), + [sym_tuple_type] = STATE(1632), + [sym_unit_type] = STATE(1632), + [sym_generic_type] = STATE(1410), + [sym_generic_type_with_turbofish] = STATE(4011), + [sym_bounded_type] = STATE(1632), + [sym_reference_type] = STATE(1632), + [sym_pointer_type] = STATE(1632), + [sym_never_type] = STATE(1632), + [sym_abstract_type] = STATE(1632), + [sym_dynamic_type] = STATE(1632), + [sym_macro_invocation] = STATE(1632), + [sym_scoped_identifier] = STATE(3763), + [sym_scoped_type_identifier] = STATE(1185), + [sym_line_comment] = STATE(1136), + [sym_block_comment] = STATE(1136), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3515), + [anon_sym_LPAREN] = ACTIONS(3517), + [anon_sym_LBRACK] = ACTIONS(3519), + [anon_sym_STAR] = ACTIONS(3523), + [anon_sym_QMARK] = ACTIONS(3525), + [anon_sym_u8] = ACTIONS(3527), + [anon_sym_i8] = ACTIONS(3527), + [anon_sym_u16] = ACTIONS(3527), + [anon_sym_i16] = ACTIONS(3527), + [anon_sym_u32] = ACTIONS(3527), + [anon_sym_i32] = ACTIONS(3527), + [anon_sym_u64] = ACTIONS(3527), + [anon_sym_i64] = ACTIONS(3527), + [anon_sym_u128] = ACTIONS(3527), + [anon_sym_i128] = ACTIONS(3527), + [anon_sym_isize] = ACTIONS(3527), + [anon_sym_usize] = ACTIONS(3527), + [anon_sym_f32] = ACTIONS(3527), + [anon_sym_f64] = ACTIONS(3527), + [anon_sym_bool] = ACTIONS(3527), + [anon_sym_str] = ACTIONS(3527), + [anon_sym_char] = ACTIONS(3527), + [anon_sym_BANG] = ACTIONS(3529), + [anon_sym_AMP] = ACTIONS(3531), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3533), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(3535), + [anon_sym_fn] = ACTIONS(3537), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(3539), + [anon_sym_impl] = ACTIONS(3541), + [anon_sym_union] = ACTIONS(3539), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(3543), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3547), + [sym_super] = ACTIONS(3547), + [sym_crate] = ACTIONS(3547), + [sym_metavariable] = ACTIONS(3549), + }, + [1137] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2647), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2653), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2475), + [sym_line_comment] = STATE(1137), + [sym_block_comment] = STATE(1137), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3681), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(3683), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), + }, + [1138] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(3073), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1138), + [sym_block_comment] = STATE(1138), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), + }, + [1139] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(3758), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1139), + [sym_block_comment] = STATE(1139), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), + }, + [1140] = { + [sym_function_modifiers] = STATE(3801), + [sym_removed_trait_bound] = STATE(1632), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(1635), + [sym_bracketed_type] = STATE(4021), + [sym_lifetime] = STATE(3861), + [sym_array_type] = STATE(1632), + [sym_for_lifetimes] = STATE(1834), + [sym_function_type] = STATE(1632), + [sym_tuple_type] = STATE(1632), + [sym_unit_type] = STATE(1632), + [sym_generic_type] = STATE(1410), + [sym_generic_type_with_turbofish] = STATE(4011), + [sym_bounded_type] = STATE(1632), + [sym_reference_type] = STATE(1632), + [sym_pointer_type] = STATE(1632), + [sym_never_type] = STATE(1632), + [sym_abstract_type] = STATE(1632), + [sym_dynamic_type] = STATE(1632), + [sym_macro_invocation] = STATE(1632), + [sym_scoped_identifier] = STATE(3763), + [sym_scoped_type_identifier] = STATE(1185), + [sym_line_comment] = STATE(1140), + [sym_block_comment] = STATE(1140), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3515), + [anon_sym_LPAREN] = ACTIONS(3517), + [anon_sym_LBRACK] = ACTIONS(3519), + [anon_sym_STAR] = ACTIONS(3523), + [anon_sym_QMARK] = ACTIONS(3525), + [anon_sym_u8] = ACTIONS(3527), + [anon_sym_i8] = ACTIONS(3527), + [anon_sym_u16] = ACTIONS(3527), + [anon_sym_i16] = ACTIONS(3527), + [anon_sym_u32] = ACTIONS(3527), + [anon_sym_i32] = ACTIONS(3527), + [anon_sym_u64] = ACTIONS(3527), + [anon_sym_i64] = ACTIONS(3527), + [anon_sym_u128] = ACTIONS(3527), + [anon_sym_i128] = ACTIONS(3527), + [anon_sym_isize] = ACTIONS(3527), + [anon_sym_usize] = ACTIONS(3527), + [anon_sym_f32] = ACTIONS(3527), + [anon_sym_f64] = ACTIONS(3527), + [anon_sym_bool] = ACTIONS(3527), + [anon_sym_str] = ACTIONS(3527), + [anon_sym_char] = ACTIONS(3527), + [anon_sym_BANG] = ACTIONS(3529), + [anon_sym_AMP] = ACTIONS(3531), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3533), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(3535), + [anon_sym_fn] = ACTIONS(3537), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(3539), + [anon_sym_impl] = ACTIONS(3541), + [anon_sym_union] = ACTIONS(3539), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(3543), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3547), + [sym_super] = ACTIONS(3547), + [sym_crate] = ACTIONS(3547), + [sym_metavariable] = ACTIONS(3549), + }, + [1141] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(3172), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1141), + [sym_block_comment] = STATE(1141), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), + }, + [1142] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2711), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1142), + [sym_block_comment] = STATE(1142), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), + }, + [1143] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(3008), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1143), + [sym_block_comment] = STATE(1143), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), + }, + [1144] = { + [sym_function_modifiers] = STATE(3801), + [sym_removed_trait_bound] = STATE(1632), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(1634), + [sym_bracketed_type] = STATE(4021), + [sym_lifetime] = STATE(3861), + [sym_array_type] = STATE(1632), + [sym_for_lifetimes] = STATE(1834), + [sym_function_type] = STATE(1632), + [sym_tuple_type] = STATE(1632), + [sym_unit_type] = STATE(1632), + [sym_generic_type] = STATE(1410), + [sym_generic_type_with_turbofish] = STATE(4011), + [sym_bounded_type] = STATE(1632), + [sym_reference_type] = STATE(1632), + [sym_pointer_type] = STATE(1632), + [sym_never_type] = STATE(1632), + [sym_abstract_type] = STATE(1632), + [sym_dynamic_type] = STATE(1632), + [sym_macro_invocation] = STATE(1632), + [sym_scoped_identifier] = STATE(3763), + [sym_scoped_type_identifier] = STATE(1185), + [sym_line_comment] = STATE(1144), + [sym_block_comment] = STATE(1144), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3515), + [anon_sym_LPAREN] = ACTIONS(3517), + [anon_sym_LBRACK] = ACTIONS(3519), + [anon_sym_STAR] = ACTIONS(3523), + [anon_sym_QMARK] = ACTIONS(3525), + [anon_sym_u8] = ACTIONS(3527), + [anon_sym_i8] = ACTIONS(3527), + [anon_sym_u16] = ACTIONS(3527), + [anon_sym_i16] = ACTIONS(3527), + [anon_sym_u32] = ACTIONS(3527), + [anon_sym_i32] = ACTIONS(3527), + [anon_sym_u64] = ACTIONS(3527), + [anon_sym_i64] = ACTIONS(3527), + [anon_sym_u128] = ACTIONS(3527), + [anon_sym_i128] = ACTIONS(3527), + [anon_sym_isize] = ACTIONS(3527), + [anon_sym_usize] = ACTIONS(3527), + [anon_sym_f32] = ACTIONS(3527), + [anon_sym_f64] = ACTIONS(3527), + [anon_sym_bool] = ACTIONS(3527), + [anon_sym_str] = ACTIONS(3527), + [anon_sym_char] = ACTIONS(3527), + [anon_sym_BANG] = ACTIONS(3529), + [anon_sym_AMP] = ACTIONS(3531), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3533), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(3535), + [anon_sym_fn] = ACTIONS(3537), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(3539), + [anon_sym_impl] = ACTIONS(3541), + [anon_sym_union] = ACTIONS(3539), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(3543), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3547), + [sym_super] = ACTIONS(3547), + [sym_crate] = ACTIONS(3547), + [sym_metavariable] = ACTIONS(3549), + }, + [1145] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(3755), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1145), + [sym_block_comment] = STATE(1145), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), + }, + [1146] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(3025), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1146), + [sym_block_comment] = STATE(1146), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), + }, + [1147] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2717), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1147), + [sym_block_comment] = STATE(1147), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), + }, + [1148] = { + [sym_function_modifiers] = STATE(3801), + [sym_removed_trait_bound] = STATE(1632), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(1626), + [sym_bracketed_type] = STATE(4021), + [sym_lifetime] = STATE(3861), + [sym_array_type] = STATE(1632), + [sym_for_lifetimes] = STATE(1834), + [sym_function_type] = STATE(1632), + [sym_tuple_type] = STATE(1632), + [sym_unit_type] = STATE(1632), + [sym_generic_type] = STATE(1410), + [sym_generic_type_with_turbofish] = STATE(4011), + [sym_bounded_type] = STATE(1632), + [sym_reference_type] = STATE(1632), + [sym_pointer_type] = STATE(1632), + [sym_never_type] = STATE(1632), + [sym_abstract_type] = STATE(1632), + [sym_dynamic_type] = STATE(1632), + [sym_macro_invocation] = STATE(1632), + [sym_scoped_identifier] = STATE(3763), + [sym_scoped_type_identifier] = STATE(1185), + [sym_line_comment] = STATE(1148), + [sym_block_comment] = STATE(1148), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3515), + [anon_sym_LPAREN] = ACTIONS(3517), + [anon_sym_LBRACK] = ACTIONS(3519), + [anon_sym_STAR] = ACTIONS(3523), + [anon_sym_QMARK] = ACTIONS(3525), + [anon_sym_u8] = ACTIONS(3527), + [anon_sym_i8] = ACTIONS(3527), + [anon_sym_u16] = ACTIONS(3527), + [anon_sym_i16] = ACTIONS(3527), + [anon_sym_u32] = ACTIONS(3527), + [anon_sym_i32] = ACTIONS(3527), + [anon_sym_u64] = ACTIONS(3527), + [anon_sym_i64] = ACTIONS(3527), + [anon_sym_u128] = ACTIONS(3527), + [anon_sym_i128] = ACTIONS(3527), + [anon_sym_isize] = ACTIONS(3527), + [anon_sym_usize] = ACTIONS(3527), + [anon_sym_f32] = ACTIONS(3527), + [anon_sym_f64] = ACTIONS(3527), + [anon_sym_bool] = ACTIONS(3527), + [anon_sym_str] = ACTIONS(3527), + [anon_sym_char] = ACTIONS(3527), + [anon_sym_BANG] = ACTIONS(3529), + [anon_sym_AMP] = ACTIONS(3531), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3533), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(3535), + [anon_sym_fn] = ACTIONS(3537), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(3539), + [anon_sym_impl] = ACTIONS(3541), + [anon_sym_union] = ACTIONS(3539), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(3543), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3547), + [sym_super] = ACTIONS(3547), + [sym_crate] = ACTIONS(3547), + [sym_metavariable] = ACTIONS(3549), + }, + [1149] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2840), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1149), + [sym_block_comment] = STATE(1149), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), + }, + [1150] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(3090), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1150), + [sym_block_comment] = STATE(1150), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), + }, + [1151] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2761), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1151), + [sym_block_comment] = STATE(1151), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), + }, + [1152] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2718), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1152), + [sym_block_comment] = STATE(1152), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), + }, + [1153] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(3323), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1153), + [sym_block_comment] = STATE(1153), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), + }, + [1154] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(2860), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1154), + [sym_block_comment] = STATE(1154), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), + }, + [1155] = { + [sym_function_modifiers] = STATE(3957), + [sym_removed_trait_bound] = STATE(2285), + [sym_extern_modifier] = STATE(2621), + [sym__type] = STATE(3019), + [sym_bracketed_type] = STATE(3795), + [sym_lifetime] = STATE(3952), + [sym_array_type] = STATE(2285), + [sym_for_lifetimes] = STATE(1820), + [sym_function_type] = STATE(2285), + [sym_tuple_type] = STATE(2285), + [sym_unit_type] = STATE(2285), + [sym_generic_type] = STATE(2240), + [sym_generic_type_with_turbofish] = STATE(3951), + [sym_bounded_type] = STATE(2285), + [sym_reference_type] = STATE(2285), + [sym_pointer_type] = STATE(2285), + [sym_never_type] = STATE(2285), + [sym_abstract_type] = STATE(2285), + [sym_dynamic_type] = STATE(2285), + [sym_macro_invocation] = STATE(2285), + [sym_scoped_identifier] = STATE(3608), + [sym_scoped_type_identifier] = STATE(2204), + [sym_line_comment] = STATE(1155), + [sym_block_comment] = STATE(1155), + [aux_sym_function_modifiers_repeat1] = STATE(2519), + [sym_identifier] = ACTIONS(3411), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1301), + [anon_sym_QMARK] = ACTIONS(1303), + [anon_sym_u8] = ACTIONS(1603), + [anon_sym_i8] = ACTIONS(1603), + [anon_sym_u16] = ACTIONS(1603), + [anon_sym_i16] = ACTIONS(1603), + [anon_sym_u32] = ACTIONS(1603), + [anon_sym_i32] = ACTIONS(1603), + [anon_sym_u64] = ACTIONS(1603), + [anon_sym_i64] = ACTIONS(1603), + [anon_sym_u128] = ACTIONS(1603), + [anon_sym_i128] = ACTIONS(1603), + [anon_sym_isize] = ACTIONS(1603), + [anon_sym_usize] = ACTIONS(1603), + [anon_sym_f32] = ACTIONS(1603), + [anon_sym_f64] = ACTIONS(1603), + [anon_sym_bool] = ACTIONS(1603), + [anon_sym_str] = ACTIONS(1603), + [anon_sym_char] = ACTIONS(1603), + [anon_sym_BANG] = ACTIONS(1309), + [anon_sym_AMP] = ACTIONS(1605), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1609), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(1329), + [anon_sym_const] = ACTIONS(1329), + [anon_sym_default] = ACTIONS(1613), + [anon_sym_fn] = ACTIONS(1335), + [anon_sym_for] = ACTIONS(1337), + [anon_sym_gen] = ACTIONS(1615), + [anon_sym_impl] = ACTIONS(1341), + [anon_sym_union] = ACTIONS(1615), + [anon_sym_unsafe] = ACTIONS(1329), + [anon_sym_extern] = ACTIONS(1343), + [anon_sym_dyn] = ACTIONS(1347), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1619), + [sym_super] = ACTIONS(1619), + [sym_crate] = ACTIONS(1619), + [sym_metavariable] = ACTIONS(1621), + }, + [1156] = { + [sym_attribute_item] = STATE(1157), + [sym_line_comment] = STATE(1156), + [sym_block_comment] = STATE(1156), + [aux_sym_mod_item_repeat1] = STATE(1156), + [sym_identifier] = ACTIONS(3685), + [anon_sym_LPAREN] = ACTIONS(771), + [anon_sym_LBRACK] = ACTIONS(771), + [anon_sym_RBRACK] = ACTIONS(771), + [anon_sym_LBRACE] = ACTIONS(771), + [anon_sym_STAR] = ACTIONS(771), + [anon_sym_u8] = ACTIONS(3685), + [anon_sym_i8] = ACTIONS(3685), + [anon_sym_u16] = ACTIONS(3685), + [anon_sym_i16] = ACTIONS(3685), + [anon_sym_u32] = ACTIONS(3685), + [anon_sym_i32] = ACTIONS(3685), + [anon_sym_u64] = ACTIONS(3685), + [anon_sym_i64] = ACTIONS(3685), + [anon_sym_u128] = ACTIONS(3685), + [anon_sym_i128] = ACTIONS(3685), + [anon_sym_isize] = ACTIONS(3685), + [anon_sym_usize] = ACTIONS(3685), + [anon_sym_f32] = ACTIONS(3685), + [anon_sym_f64] = ACTIONS(3685), + [anon_sym_bool] = ACTIONS(3685), + [anon_sym_str] = ACTIONS(3685), + [anon_sym_char] = ACTIONS(3685), + [anon_sym_DASH] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_AMP] = ACTIONS(771), + [anon_sym_PIPE] = ACTIONS(771), + [anon_sym_LT] = ACTIONS(771), + [anon_sym_DOT_DOT] = ACTIONS(771), + [anon_sym_COMMA] = ACTIONS(771), + [anon_sym_COLON_COLON] = ACTIONS(771), + [anon_sym_POUND] = ACTIONS(797), + [anon_sym_SQUOTE] = ACTIONS(3685), + [anon_sym_async] = ACTIONS(3685), + [anon_sym_break] = ACTIONS(3685), + [anon_sym_const] = ACTIONS(3685), + [anon_sym_continue] = ACTIONS(3685), + [anon_sym_default] = ACTIONS(3685), + [anon_sym_for] = ACTIONS(3685), + [anon_sym_gen] = ACTIONS(3685), + [anon_sym_if] = ACTIONS(3685), + [anon_sym_loop] = ACTIONS(3685), + [anon_sym_match] = ACTIONS(3685), + [anon_sym_return] = ACTIONS(3685), + [anon_sym_static] = ACTIONS(3685), + [anon_sym_union] = ACTIONS(3685), + [anon_sym_unsafe] = ACTIONS(3685), + [anon_sym_while] = ACTIONS(3685), + [anon_sym_yield] = ACTIONS(3685), + [anon_sym_move] = ACTIONS(3685), + [anon_sym_try] = ACTIONS(3685), + [sym_integer_literal] = ACTIONS(771), + [aux_sym_string_literal_token1] = ACTIONS(771), + [sym_char_literal] = ACTIONS(771), + [anon_sym_true] = ACTIONS(3685), + [anon_sym_false] = ACTIONS(3685), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3685), + [sym_super] = ACTIONS(3685), + [sym_crate] = ACTIONS(3685), + [sym_metavariable] = ACTIONS(771), + [sym__raw_string_literal_start] = ACTIONS(771), + [sym_float_literal] = ACTIONS(771), + }, + [1157] = { + [sym_line_comment] = STATE(1157), + [sym_block_comment] = STATE(1157), + [sym_identifier] = ACTIONS(3687), + [anon_sym_LPAREN] = ACTIONS(3689), + [anon_sym_LBRACK] = ACTIONS(3689), + [anon_sym_RBRACK] = ACTIONS(3689), + [anon_sym_LBRACE] = ACTIONS(3689), + [anon_sym_STAR] = ACTIONS(3689), + [anon_sym_u8] = ACTIONS(3687), + [anon_sym_i8] = ACTIONS(3687), + [anon_sym_u16] = ACTIONS(3687), + [anon_sym_i16] = ACTIONS(3687), + [anon_sym_u32] = ACTIONS(3687), + [anon_sym_i32] = ACTIONS(3687), + [anon_sym_u64] = ACTIONS(3687), + [anon_sym_i64] = ACTIONS(3687), + [anon_sym_u128] = ACTIONS(3687), + [anon_sym_i128] = ACTIONS(3687), + [anon_sym_isize] = ACTIONS(3687), + [anon_sym_usize] = ACTIONS(3687), + [anon_sym_f32] = ACTIONS(3687), + [anon_sym_f64] = ACTIONS(3687), + [anon_sym_bool] = ACTIONS(3687), + [anon_sym_str] = ACTIONS(3687), + [anon_sym_char] = ACTIONS(3687), + [anon_sym_DASH] = ACTIONS(3689), + [anon_sym_BANG] = ACTIONS(3689), + [anon_sym_AMP] = ACTIONS(3689), + [anon_sym_PIPE] = ACTIONS(3689), + [anon_sym_LT] = ACTIONS(3689), + [anon_sym_DOT_DOT] = ACTIONS(3689), + [anon_sym_COMMA] = ACTIONS(3689), + [anon_sym_COLON_COLON] = ACTIONS(3689), + [anon_sym_POUND] = ACTIONS(3689), + [anon_sym_SQUOTE] = ACTIONS(3687), + [anon_sym_async] = ACTIONS(3687), + [anon_sym_break] = ACTIONS(3687), + [anon_sym_const] = ACTIONS(3687), + [anon_sym_continue] = ACTIONS(3687), + [anon_sym_default] = ACTIONS(3687), + [anon_sym_for] = ACTIONS(3687), + [anon_sym_gen] = ACTIONS(3687), + [anon_sym_if] = ACTIONS(3687), + [anon_sym_loop] = ACTIONS(3687), + [anon_sym_match] = ACTIONS(3687), + [anon_sym_return] = ACTIONS(3687), + [anon_sym_static] = ACTIONS(3687), + [anon_sym_union] = ACTIONS(3687), + [anon_sym_unsafe] = ACTIONS(3687), + [anon_sym_while] = ACTIONS(3687), + [anon_sym_yield] = ACTIONS(3687), + [anon_sym_move] = ACTIONS(3687), + [anon_sym_try] = ACTIONS(3687), + [sym_integer_literal] = ACTIONS(3689), + [aux_sym_string_literal_token1] = ACTIONS(3689), + [sym_char_literal] = ACTIONS(3689), + [anon_sym_true] = ACTIONS(3687), + [anon_sym_false] = ACTIONS(3687), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3687), + [sym_super] = ACTIONS(3687), + [sym_crate] = ACTIONS(3687), + [sym_metavariable] = ACTIONS(3689), + [sym__raw_string_literal_start] = ACTIONS(3689), + [sym_float_literal] = ACTIONS(3689), + }, + [1158] = { + [sym_line_comment] = STATE(1158), + [sym_block_comment] = STATE(1158), + [sym_identifier] = ACTIONS(3691), + [anon_sym_LPAREN] = ACTIONS(3693), + [anon_sym_LBRACK] = ACTIONS(3693), + [anon_sym_LBRACE] = ACTIONS(3693), + [anon_sym_STAR] = ACTIONS(3693), + [anon_sym_u8] = ACTIONS(3691), + [anon_sym_i8] = ACTIONS(3691), + [anon_sym_u16] = ACTIONS(3691), + [anon_sym_i16] = ACTIONS(3691), + [anon_sym_u32] = ACTIONS(3691), + [anon_sym_i32] = ACTIONS(3691), + [anon_sym_u64] = ACTIONS(3691), + [anon_sym_i64] = ACTIONS(3691), + [anon_sym_u128] = ACTIONS(3691), + [anon_sym_i128] = ACTIONS(3691), + [anon_sym_isize] = ACTIONS(3691), + [anon_sym_usize] = ACTIONS(3691), + [anon_sym_f32] = ACTIONS(3691), + [anon_sym_f64] = ACTIONS(3691), + [anon_sym_bool] = ACTIONS(3691), + [anon_sym_str] = ACTIONS(3691), + [anon_sym_char] = ACTIONS(3691), + [anon_sym_DASH] = ACTIONS(3691), + [anon_sym_BANG] = ACTIONS(3693), + [anon_sym_AMP] = ACTIONS(3693), + [anon_sym_PIPE] = ACTIONS(3693), + [anon_sym_LT] = ACTIONS(3693), + [anon_sym__] = ACTIONS(3691), + [anon_sym_DOT_DOT] = ACTIONS(3693), + [anon_sym_COLON_COLON] = ACTIONS(3693), + [anon_sym_DASH_GT] = ACTIONS(3693), + [anon_sym_SQUOTE] = ACTIONS(3691), + [anon_sym_async] = ACTIONS(3691), + [anon_sym_break] = ACTIONS(3691), + [anon_sym_const] = ACTIONS(3691), + [anon_sym_continue] = ACTIONS(3691), + [anon_sym_default] = ACTIONS(3691), + [anon_sym_for] = ACTIONS(3691), + [anon_sym_gen] = ACTIONS(3691), + [anon_sym_if] = ACTIONS(3691), + [anon_sym_loop] = ACTIONS(3691), + [anon_sym_match] = ACTIONS(3691), + [anon_sym_return] = ACTIONS(3691), + [anon_sym_static] = ACTIONS(3691), + [anon_sym_union] = ACTIONS(3691), + [anon_sym_unsafe] = ACTIONS(3691), + [anon_sym_while] = ACTIONS(3691), + [anon_sym_yield] = ACTIONS(3691), + [anon_sym_move] = ACTIONS(3691), + [anon_sym_try] = ACTIONS(3691), + [sym_integer_literal] = ACTIONS(3693), + [aux_sym_string_literal_token1] = ACTIONS(3693), + [sym_char_literal] = ACTIONS(3693), + [anon_sym_true] = ACTIONS(3691), + [anon_sym_false] = ACTIONS(3691), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(3691), + [sym_super] = ACTIONS(3691), + [sym_crate] = ACTIONS(3691), + [sym_metavariable] = ACTIONS(3693), + [sym__raw_string_literal_start] = ACTIONS(3693), + [sym_float_literal] = ACTIONS(3693), + }, + [1159] = { + [sym_line_comment] = STATE(1159), + [sym_block_comment] = STATE(1159), + [sym_identifier] = ACTIONS(1587), + [anon_sym_LPAREN] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1589), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_STAR] = ACTIONS(1589), + [anon_sym_u8] = ACTIONS(1587), + [anon_sym_i8] = ACTIONS(1587), + [anon_sym_u16] = ACTIONS(1587), + [anon_sym_i16] = ACTIONS(1587), + [anon_sym_u32] = ACTIONS(1587), + [anon_sym_i32] = ACTIONS(1587), + [anon_sym_u64] = ACTIONS(1587), + [anon_sym_i64] = ACTIONS(1587), + [anon_sym_u128] = ACTIONS(1587), + [anon_sym_i128] = ACTIONS(1587), + [anon_sym_isize] = ACTIONS(1587), + [anon_sym_usize] = ACTIONS(1587), + [anon_sym_f32] = ACTIONS(1587), + [anon_sym_f64] = ACTIONS(1587), + [anon_sym_bool] = ACTIONS(1587), + [anon_sym_str] = ACTIONS(1587), + [anon_sym_char] = ACTIONS(1587), + [anon_sym_DASH] = ACTIONS(1587), + [anon_sym_BANG] = ACTIONS(1589), + [anon_sym_AMP] = ACTIONS(1589), + [anon_sym_PIPE] = ACTIONS(1589), + [anon_sym_LT] = ACTIONS(1589), + [anon_sym__] = ACTIONS(1587), + [anon_sym_DOT_DOT] = ACTIONS(1589), + [anon_sym_COLON_COLON] = ACTIONS(1589), + [anon_sym_DASH_GT] = ACTIONS(1589), + [anon_sym_SQUOTE] = ACTIONS(1587), + [anon_sym_async] = ACTIONS(1587), + [anon_sym_break] = ACTIONS(1587), + [anon_sym_const] = ACTIONS(1587), + [anon_sym_continue] = ACTIONS(1587), + [anon_sym_default] = ACTIONS(1587), + [anon_sym_for] = ACTIONS(1587), + [anon_sym_gen] = ACTIONS(1587), + [anon_sym_if] = ACTIONS(1587), + [anon_sym_loop] = ACTIONS(1587), + [anon_sym_match] = ACTIONS(1587), + [anon_sym_return] = ACTIONS(1587), + [anon_sym_static] = ACTIONS(1587), + [anon_sym_union] = ACTIONS(1587), + [anon_sym_unsafe] = ACTIONS(1587), + [anon_sym_while] = ACTIONS(1587), + [anon_sym_yield] = ACTIONS(1587), + [anon_sym_move] = ACTIONS(1587), + [anon_sym_try] = ACTIONS(1587), + [sym_integer_literal] = ACTIONS(1589), + [aux_sym_string_literal_token1] = ACTIONS(1589), + [sym_char_literal] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(1587), + [anon_sym_false] = ACTIONS(1587), + [anon_sym_SLASH_SLASH] = ACTIONS(103), + [anon_sym_SLASH_STAR] = ACTIONS(105), + [sym_self] = ACTIONS(1587), + [sym_super] = ACTIONS(1587), + [sym_crate] = ACTIONS(1587), + [sym_metavariable] = ACTIONS(1589), + [sym__raw_string_literal_start] = ACTIONS(1589), + [sym_float_literal] = ACTIONS(1589), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1160), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1073), 18, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_DOT_DOT, + anon_sym_COLON_COLON, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(3695), 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_gen, + anon_sym_if, + anon_sym_loop, + anon_sym_match, + anon_sym_return, + anon_sym_static, + anon_sym_union, + anon_sym_unsafe, + anon_sym_while, + anon_sym_yield, + anon_sym_move, + anon_sym_try, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [75] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1161), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3671), 17, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_DASH, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + anon_sym_COLON_COLON, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(3669), 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__, + anon_sym_DOT_DOT, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_for, + anon_sym_gen, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_ref, + anon_sym_dyn, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [146] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1162), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3699), 20, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(3697), 35, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_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_gen, + anon_sym_impl, + anon_sym_union, + anon_sym_unsafe, + anon_sym_where, + anon_sym_extern, + anon_sym_else, + anon_sym_dyn, + sym_mutable_specifier, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [216] = 21, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1307), 1, + anon_sym_DASH, + ACTIONS(1353), 1, + aux_sym_string_literal_token1, + ACTIONS(1363), 1, + sym__raw_string_literal_start, + ACTIONS(1709), 1, + anon_sym_COLON_COLON, + ACTIONS(3701), 1, + sym_identifier, + ACTIONS(3711), 1, + sym_metavariable, + STATE(2329), 1, + sym_scoped_identifier, + STATE(2419), 1, + sym__literal_pattern, + STATE(3786), 1, + sym_bracketed_type, + STATE(3813), 1, + sym_generic_type_with_turbofish, + ACTIONS(1355), 2, + anon_sym_true, + anon_sym_false, + STATE(1163), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1351), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3705), 3, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + ACTIONS(3709), 3, + sym_self, + sym_super, + sym_crate, + STATE(2301), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3703), 7, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + ACTIONS(3707), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_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_gen, + anon_sym_union, + [316] = 21, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1307), 1, + anon_sym_DASH, + ACTIONS(1353), 1, + aux_sym_string_literal_token1, + ACTIONS(1363), 1, + sym__raw_string_literal_start, + ACTIONS(1709), 1, + anon_sym_COLON_COLON, + ACTIONS(3713), 1, + sym_identifier, + ACTIONS(3723), 1, + sym_metavariable, + STATE(2343), 1, + sym_scoped_identifier, + STATE(2398), 1, + sym__literal_pattern, + STATE(3786), 1, + sym_bracketed_type, + STATE(3813), 1, + sym_generic_type_with_turbofish, + ACTIONS(1355), 2, + anon_sym_true, + anon_sym_false, + STATE(1164), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1351), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3717), 3, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + ACTIONS(3721), 3, + sym_self, + sym_super, + sym_crate, + STATE(2301), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3715), 7, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + ACTIONS(3719), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_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_gen, + anon_sym_union, + [416] = 12, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3729), 1, + anon_sym_BANG, + ACTIONS(3731), 1, + anon_sym_COLON_COLON, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + ACTIONS(3735), 1, + anon_sym_move, + STATE(1658), 1, + sym_block, + STATE(4045), 1, + sym_label, + STATE(1165), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3727), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3725), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + anon_sym_else, + [495] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3739), 1, + anon_sym_LPAREN, + ACTIONS(3743), 1, + anon_sym_BANG, + ACTIONS(3745), 1, + anon_sym_COLON_COLON, + ACTIONS(3747), 1, + anon_sym_LT2, + STATE(1447), 1, + sym_type_arguments, + STATE(1458), 1, + sym_parameters, + STATE(1166), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3741), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3737), 27, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [572] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1167), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1051), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1049), 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_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_if, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [636] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1168), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1261), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1263), 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_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_if, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [700] = 10, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3739), 1, + anon_sym_LPAREN, + ACTIONS(3747), 1, + anon_sym_LT2, + ACTIONS(3753), 1, + anon_sym_COLON_COLON, + STATE(1447), 1, + sym_type_arguments, + STATE(1458), 1, + sym_parameters, + STATE(1169), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3751), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3749), 27, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [774] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1170), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1273), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1275), 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_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_if, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [838] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1171), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1257), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1259), 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_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_if, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [902] = 10, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3739), 1, + anon_sym_LPAREN, + ACTIONS(3747), 1, + anon_sym_LT2, + ACTIONS(3753), 1, + anon_sym_COLON_COLON, + STATE(1447), 1, + sym_type_arguments, + STATE(1458), 1, + sym_parameters, + STATE(1172), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3757), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3755), 27, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [976] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1173), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1411), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1413), 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_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_if, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [1040] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1174), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1269), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1271), 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_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_if, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [1104] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1175), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1265), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1267), 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_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_if, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [1168] = 10, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3739), 1, + anon_sym_LPAREN, + ACTIONS(3747), 1, + anon_sym_LT2, + ACTIONS(3753), 1, + anon_sym_COLON_COLON, + STATE(1447), 1, + sym_type_arguments, + STATE(1458), 1, + sym_parameters, + STATE(1176), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3761), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3759), 27, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [1242] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1177), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1429), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1431), 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_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_if, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [1306] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1178), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1047), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1045), 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_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_if, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [1370] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1179), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1967), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1969), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [1433] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3739), 1, + anon_sym_LPAREN, + ACTIONS(3747), 1, + anon_sym_LT2, + STATE(1448), 1, + sym_type_arguments, + STATE(1462), 1, + sym_parameters, + STATE(1180), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3765), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3763), 27, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [1504] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1181), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2653), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2655), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [1567] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1182), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3045), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3047), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [1630] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1183), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3257), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3259), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [1693] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3771), 1, + anon_sym_BANG, + ACTIONS(3773), 1, + anon_sym_COLON_COLON, + STATE(1184), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3769), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3767), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_LT2, + [1760] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3739), 1, + anon_sym_LPAREN, + ACTIONS(3747), 1, + anon_sym_LT2, + STATE(1448), 1, + sym_type_arguments, + STATE(1462), 1, + sym_parameters, + STATE(1185), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3777), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3775), 27, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [1831] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3739), 1, + anon_sym_LPAREN, + ACTIONS(3747), 1, + anon_sym_LT2, + STATE(1448), 1, + sym_type_arguments, + STATE(1462), 1, + sym_parameters, + STATE(1186), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3781), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3779), 27, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [1902] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3739), 1, + anon_sym_LPAREN, + ACTIONS(3747), 1, + anon_sym_LT2, + STATE(1448), 1, + sym_type_arguments, + STATE(1462), 1, + sym_parameters, + STATE(1187), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3785), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3783), 27, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [1973] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1188), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2797), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2799), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [2036] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3791), 1, + anon_sym_BANG, + ACTIONS(3793), 1, + anon_sym_COLON_COLON, + STATE(1189), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3789), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3787), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_LT2, + [2103] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3799), 1, + anon_sym_BANG, + ACTIONS(3801), 1, + anon_sym_COLON_COLON, + STATE(1190), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3797), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3795), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_LT2, + [2170] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3807), 1, + anon_sym_POUND, + STATE(1649), 2, + sym_attribute_item, + sym_inner_attribute_item, + STATE(1191), 3, + sym_line_comment, + sym_block_comment, + aux_sym_match_arm_repeat1, + ACTIONS(3805), 14, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_DOT_DOT, + anon_sym_COLON_COLON, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(3803), 30, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym__, + anon_sym_const, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [2237] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3814), 1, + anon_sym_BANG, + ACTIONS(3816), 1, + anon_sym_COLON_COLON, + STATE(1192), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3812), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3810), 29, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_LT2, + [2304] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1193), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3799), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3801), 31, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [2366] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1194), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3814), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3816), 31, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [2428] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3731), 1, + anon_sym_COLON_COLON, + ACTIONS(3818), 1, + anon_sym_BANG, + STATE(1195), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3820), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + ACTIONS(3727), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + anon_sym_as, + ACTIONS(3725), 23, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [2496] = 27, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1337), 1, + anon_sym_for, + ACTIONS(1343), 1, + anon_sym_extern, + ACTIONS(3561), 1, + anon_sym_QMARK, + ACTIONS(3573), 1, + anon_sym_fn, + ACTIONS(3822), 1, + sym_identifier, + ACTIONS(3824), 1, + anon_sym_LPAREN, + ACTIONS(3828), 1, + anon_sym_COLON_COLON, + ACTIONS(3830), 1, + anon_sym_default, + ACTIONS(3836), 1, + sym_metavariable, + STATE(1792), 1, + sym_scoped_type_identifier, + STATE(1826), 1, + sym_for_lifetimes, + STATE(1866), 1, + sym_generic_type, + STATE(2519), 1, + aux_sym_function_modifiers_repeat1, + STATE(2621), 1, + sym_extern_modifier, + STATE(3979), 1, + sym_function_modifiers, + STATE(4014), 1, + sym_scoped_identifier, + STATE(4030), 1, + sym_generic_type_with_turbofish, + STATE(4036), 1, + sym_bracketed_type, + ACTIONS(3832), 2, + anon_sym_gen, + anon_sym_union, + STATE(1196), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1329), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3834), 3, + sym_self, + sym_super, + sym_crate, + STATE(2044), 3, + sym_removed_trait_bound, + sym_function_type, + sym_tuple_type, + ACTIONS(3826), 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, + [2602] = 27, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1343), 1, + anon_sym_extern, + ACTIONS(3561), 1, + anon_sym_QMARK, + ACTIONS(3573), 1, + anon_sym_fn, + ACTIONS(3824), 1, + anon_sym_LPAREN, + ACTIONS(3828), 1, + anon_sym_COLON_COLON, + ACTIONS(3830), 1, + anon_sym_default, + ACTIONS(3836), 1, + sym_metavariable, + ACTIONS(3838), 1, + sym_identifier, + ACTIONS(3840), 1, + anon_sym_for, + STATE(1793), 1, + sym_scoped_type_identifier, + STATE(1826), 1, + sym_for_lifetimes, + STATE(1863), 1, + sym_generic_type, + STATE(2519), 1, + aux_sym_function_modifiers_repeat1, + STATE(2621), 1, + sym_extern_modifier, + STATE(3979), 1, + sym_function_modifiers, + STATE(4014), 1, + sym_scoped_identifier, + STATE(4030), 1, + sym_generic_type_with_turbofish, + STATE(4036), 1, + sym_bracketed_type, + ACTIONS(3832), 2, + anon_sym_gen, + anon_sym_union, + STATE(1197), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1329), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3834), 3, + sym_self, + sym_super, + sym_crate, + STATE(2051), 3, + sym_removed_trait_bound, + sym_function_type, + sym_tuple_type, + ACTIONS(3826), 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, + [2708] = 27, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1303), 1, + anon_sym_QMARK, + ACTIONS(1335), 1, + anon_sym_fn, + ACTIONS(1337), 1, + anon_sym_for, + ACTIONS(1343), 1, + anon_sym_extern, + ACTIONS(3842), 1, + sym_identifier, + ACTIONS(3844), 1, + anon_sym_LPAREN, + ACTIONS(3848), 1, + anon_sym_COLON_COLON, + ACTIONS(3850), 1, + anon_sym_default, + ACTIONS(3856), 1, + sym_metavariable, + STATE(1820), 1, + sym_for_lifetimes, + STATE(2201), 1, + sym_scoped_type_identifier, + STATE(2243), 1, + sym_generic_type, + STATE(2519), 1, + aux_sym_function_modifiers_repeat1, + STATE(2621), 1, + sym_extern_modifier, + STATE(3799), 1, + sym_scoped_identifier, + STATE(3803), 1, + sym_generic_type_with_turbofish, + STATE(3957), 1, + sym_function_modifiers, + STATE(3975), 1, + sym_bracketed_type, + ACTIONS(3852), 2, + anon_sym_gen, + anon_sym_union, + STATE(1198), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1329), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3854), 3, + sym_self, + sym_super, + sym_crate, + STATE(2262), 3, + sym_removed_trait_bound, + sym_function_type, + sym_tuple_type, + ACTIONS(3846), 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, + [2814] = 24, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1599), 1, + anon_sym_LBRACK, + ACTIONS(3844), 1, + anon_sym_LPAREN, + ACTIONS(3848), 1, + anon_sym_COLON_COLON, + ACTIONS(3856), 1, + sym_metavariable, + ACTIONS(3858), 1, + sym_identifier, + ACTIONS(3862), 1, + anon_sym_STAR, + ACTIONS(3866), 1, + anon_sym_AMP, + ACTIONS(3868), 1, + anon_sym_SQUOTE, + ACTIONS(3870), 1, + anon_sym_for, + STATE(2940), 1, + sym_where_predicate, + STATE(3045), 1, + sym_scoped_type_identifier, + STATE(3290), 1, + sym_generic_type, + STATE(3799), 1, + sym_scoped_identifier, + STATE(3803), 1, + sym_generic_type_with_turbofish, + STATE(3975), 1, + sym_bracketed_type, + ACTIONS(3860), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(1199), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3852), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + ACTIONS(3854), 3, + sym_self, + sym_super, + sym_crate, + STATE(3765), 6, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_array_type, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3864), 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, + [2914] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1200), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3791), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3793), 31, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [2976] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1201), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3771), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3773), 31, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [3038] = 24, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1599), 1, + anon_sym_LBRACK, + ACTIONS(3844), 1, + anon_sym_LPAREN, + ACTIONS(3848), 1, + anon_sym_COLON_COLON, + ACTIONS(3856), 1, + sym_metavariable, + ACTIONS(3858), 1, + sym_identifier, + ACTIONS(3862), 1, + anon_sym_STAR, + ACTIONS(3866), 1, + anon_sym_AMP, + ACTIONS(3868), 1, + anon_sym_SQUOTE, + ACTIONS(3870), 1, + anon_sym_for, + STATE(2940), 1, + sym_where_predicate, + STATE(3045), 1, + sym_scoped_type_identifier, + STATE(3290), 1, + sym_generic_type, + STATE(3799), 1, + sym_scoped_identifier, + STATE(3803), 1, + sym_generic_type_with_turbofish, + STATE(3975), 1, + sym_bracketed_type, + ACTIONS(3872), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + STATE(1202), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3852), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + ACTIONS(3854), 3, + sym_self, + sym_super, + sym_crate, + STATE(3765), 6, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_array_type, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3864), 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, + [3138] = 27, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1337), 1, + anon_sym_for, + ACTIONS(1343), 1, + anon_sym_extern, + ACTIONS(3525), 1, + anon_sym_QMARK, + ACTIONS(3537), 1, + anon_sym_fn, + ACTIONS(3874), 1, + sym_identifier, + ACTIONS(3876), 1, + anon_sym_LPAREN, + ACTIONS(3880), 1, + anon_sym_COLON_COLON, + ACTIONS(3882), 1, + anon_sym_default, + ACTIONS(3888), 1, + sym_metavariable, + STATE(1187), 1, + sym_scoped_type_identifier, + STATE(1538), 1, + sym_generic_type, + STATE(1834), 1, + sym_for_lifetimes, + STATE(2519), 1, + aux_sym_function_modifiers_repeat1, + STATE(2621), 1, + sym_extern_modifier, + STATE(3801), 1, + sym_function_modifiers, + STATE(3989), 1, + sym_scoped_identifier, + STATE(4023), 1, + sym_generic_type_with_turbofish, + STATE(4032), 1, + sym_bracketed_type, + ACTIONS(3884), 2, + anon_sym_gen, + anon_sym_union, + STATE(1203), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1329), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3886), 3, + sym_self, + sym_super, + sym_crate, + STATE(1669), 3, + sym_removed_trait_bound, + sym_function_type, + sym_tuple_type, + ACTIONS(3878), 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, + [3244] = 27, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1303), 1, + anon_sym_QMARK, + ACTIONS(1335), 1, + anon_sym_fn, + ACTIONS(1343), 1, + anon_sym_extern, + ACTIONS(3844), 1, + anon_sym_LPAREN, + ACTIONS(3848), 1, + anon_sym_COLON_COLON, + ACTIONS(3850), 1, + anon_sym_default, + ACTIONS(3856), 1, + sym_metavariable, + ACTIONS(3890), 1, + sym_identifier, + ACTIONS(3892), 1, + anon_sym_for, + STATE(1820), 1, + sym_for_lifetimes, + STATE(2202), 1, + sym_scoped_type_identifier, + STATE(2228), 1, + sym_generic_type, + STATE(2519), 1, + aux_sym_function_modifiers_repeat1, + STATE(2621), 1, + sym_extern_modifier, + STATE(3799), 1, + sym_scoped_identifier, + STATE(3803), 1, + sym_generic_type_with_turbofish, + STATE(3957), 1, + sym_function_modifiers, + STATE(3975), 1, + sym_bracketed_type, + ACTIONS(3852), 2, + anon_sym_gen, + anon_sym_union, + STATE(1204), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1329), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3854), 3, + sym_self, + sym_super, + sym_crate, + STATE(2268), 3, + sym_removed_trait_bound, + sym_function_type, + sym_tuple_type, + ACTIONS(3846), 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, + [3350] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3743), 1, + anon_sym_BANG, + ACTIONS(3894), 1, + anon_sym_LBRACE, + ACTIONS(3896), 1, + anon_sym_COLON_COLON, + STATE(1630), 1, + sym_field_initializer_list, + STATE(1205), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1451), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1449), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + anon_sym_else, + [3420] = 27, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1343), 1, + anon_sym_extern, + ACTIONS(3525), 1, + anon_sym_QMARK, + ACTIONS(3537), 1, + anon_sym_fn, + ACTIONS(3876), 1, + anon_sym_LPAREN, + ACTIONS(3880), 1, + anon_sym_COLON_COLON, + ACTIONS(3882), 1, + anon_sym_default, + ACTIONS(3888), 1, + sym_metavariable, + ACTIONS(3898), 1, + sym_identifier, + ACTIONS(3900), 1, + anon_sym_for, + STATE(1180), 1, + sym_scoped_type_identifier, + STATE(1455), 1, + sym_generic_type, + STATE(1834), 1, + sym_for_lifetimes, + STATE(2519), 1, + aux_sym_function_modifiers_repeat1, + STATE(2621), 1, + sym_extern_modifier, + STATE(3801), 1, + sym_function_modifiers, + STATE(3989), 1, + sym_scoped_identifier, + STATE(4023), 1, + sym_generic_type_with_turbofish, + STATE(4032), 1, + sym_bracketed_type, + ACTIONS(3884), 2, + anon_sym_gen, + anon_sym_union, + STATE(1206), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1329), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3886), 3, + sym_self, + sym_super, + sym_crate, + STATE(1717), 3, + sym_removed_trait_bound, + sym_function_type, + sym_tuple_type, + ACTIONS(3878), 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, + [3526] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1207), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2333), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2335), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [3587] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1208), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2321), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2323), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [3648] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1209), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2621), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2623), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [3709] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1210), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2625), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2627), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [3770] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1211), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2629), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2631), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [3831] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1212), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2633), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2635), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [3892] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1213), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2637), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2639), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [3953] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1214), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2189), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2191), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [4014] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1215), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2645), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2647), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [4075] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1216), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2649), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2651), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [4136] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1217), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2669), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2671), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [4197] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1218), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2673), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2675), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [4258] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1219), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2677), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2679), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [4319] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1220), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2193), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2195), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [4380] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1221), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2197), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2199), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [4441] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1222), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2681), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2683), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [4502] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1223), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2689), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2691), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [4563] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1224), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2693), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2695), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [4624] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1225), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2697), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2699), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [4685] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1226), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2701), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2703), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [4746] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1227), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2705), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2707), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [4807] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1228), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2713), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2715), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [4868] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1229), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2717), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2719), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [4929] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1230), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3904), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3902), 31, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [4990] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1231), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3908), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3906), 31, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [5051] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1232), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2721), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2723), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [5112] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1233), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2733), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2735), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [5173] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1234), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2745), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2747), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [5234] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1235), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2761), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2763), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [5295] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1236), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2777), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2779), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [5356] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1237), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2781), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2783), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [5417] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1238), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2785), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2787), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [5478] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1239), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2789), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2791), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [5539] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1240), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2793), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2795), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [5600] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1241), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2801), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2803), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [5661] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1242), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2205), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2207), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [5722] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1243), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2817), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2819), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [5783] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1244), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2821), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2823), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [5844] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1245), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2825), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2827), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [5905] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1246), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2829), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2831), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [5966] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1247), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2841), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2843), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [6027] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1248), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2225), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2227), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [6088] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1249), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2845), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2847), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [6149] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1250), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2849), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2851), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [6210] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1251), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2853), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2855), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [6271] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3912), 1, + anon_sym_LPAREN, + STATE(1675), 1, + sym_arguments, + STATE(1252), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3914), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3910), 29, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [6336] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1253), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2233), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2235), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [6397] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1254), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2857), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2859), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [6458] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1255), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2861), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2863), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [6519] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1256), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2869), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2871), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [6580] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1257), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2877), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2879), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [6641] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1258), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2881), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2883), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [6702] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1259), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2237), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2239), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [6763] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1260), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2893), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2895), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [6824] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1261), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2897), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2899), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [6885] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1262), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2901), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2903), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [6946] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1263), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2909), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2911), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [7007] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1264), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2913), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2915), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [7068] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1265), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2917), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2919), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [7129] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1266), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2921), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2923), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [7190] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1267), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2925), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2927), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [7251] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1268), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2929), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2931), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [7312] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1269), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2937), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2939), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [7373] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1270), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2961), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2963), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [7434] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1271), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2981), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2983), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [7495] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1272), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2253), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2255), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [7556] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1273), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2985), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2987), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [7617] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1274), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2993), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2995), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [7678] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1275), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3021), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3023), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [7739] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1276), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3025), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3027), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [7800] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1277), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3029), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3031), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [7861] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1278), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3918), 13, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(3916), 33, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_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_gen, + 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, + [7922] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1279), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3033), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3035), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [7983] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1280), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3037), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3039), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [8044] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1281), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3922), 13, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(3920), 33, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_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_gen, + 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, + [8105] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1282), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3041), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3043), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [8166] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1283), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2261), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2263), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [8227] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1284), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3101), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3103), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [8288] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1285), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3129), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3131), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [8349] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1286), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3133), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3135), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [8410] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1287), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3137), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3139), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [8471] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1288), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3141), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3143), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [8532] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1289), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3149), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3151), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [8593] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1290), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3153), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3155), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [8654] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1291), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3157), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3159), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [8715] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1292), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3926), 13, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(3924), 33, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_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_gen, + 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, + [8776] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1293), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3161), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3163), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [8837] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1294), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3169), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3171), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [8898] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1295), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3173), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3175), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [8959] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1296), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3197), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3199), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [9020] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1297), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3209), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3211), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [9081] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1298), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2613), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2615), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [9142] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1299), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2609), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2611), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [9203] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1300), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3217), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3219), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [9264] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1301), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3221), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3223), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [9325] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1302), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2265), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2267), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [9386] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1303), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3241), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3243), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [9447] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1304), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3249), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3251), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [9508] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1305), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3265), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3267), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [9569] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1306), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3277), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3279), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [9630] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1307), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3285), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3287), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [9691] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1308), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3309), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3311), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [9752] = 12, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1227), 1, + anon_sym_LBRACE, + ACTIONS(3729), 1, + anon_sym_BANG, + ACTIONS(3731), 1, + anon_sym_COLON_COLON, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + ACTIONS(3928), 1, + anon_sym_move, + STATE(489), 1, + sym_block, + STATE(4116), 1, + sym_label, + STATE(1309), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3727), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3725), 24, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + [9827] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1310), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3313), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3315), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [9888] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1311), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3317), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3319), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [9949] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1312), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2269), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2271), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [10010] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1313), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2605), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2607), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [10071] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1314), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3932), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3930), 31, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [10132] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1315), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2601), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2603), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [10193] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1316), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2597), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2599), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [10254] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1317), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2617), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2619), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [10315] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1318), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2593), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2595), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [10376] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1319), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2585), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2587), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [10437] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1320), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2273), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2275), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [10498] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1321), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2277), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2279), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [10559] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1322), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3936), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3934), 31, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [10620] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1323), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3357), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3359), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [10681] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1324), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2281), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2283), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [10742] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1325), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3369), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3371), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [10803] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1326), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2285), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2287), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [10864] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1327), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3345), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3347), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [10925] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1328), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1843), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1845), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [10986] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1329), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3305), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3307), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [11047] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1330), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3301), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3303), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [11108] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1331), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3273), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3275), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [11169] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1332), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3269), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3271), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [11230] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1333), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3253), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3255), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [11291] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1334), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3245), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3247), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [11352] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1335), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3237), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3239), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [11413] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1336), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3233), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3235), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [11474] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1337), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3229), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3231), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [11535] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1338), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3225), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3227), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [11596] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1339), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3213), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3215), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [11657] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1340), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3940), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3938), 31, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [11718] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1341), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3205), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3207), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [11779] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1342), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3201), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3203), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [11840] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1343), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3145), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3147), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [11901] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1344), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3125), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3127), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [11962] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1345), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3105), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3107), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [12023] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1346), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2289), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2291), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [12084] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1347), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3089), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3091), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [12145] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1348), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3081), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3083), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [12206] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1349), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3077), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3079), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [12267] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1350), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3073), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3075), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [12328] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1351), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3069), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3071), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [12389] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1352), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3065), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3067), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [12450] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1353), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1983), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1985), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [12511] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1354), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3061), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3063), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [12572] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1355), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3057), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3059), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [12633] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1356), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3053), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3055), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [12694] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1357), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3049), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3051), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [12755] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1358), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3944), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3942), 31, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [12816] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1359), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3013), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3015), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [12877] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1360), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2293), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2295), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [12938] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1361), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3009), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3011), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [12999] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1362), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3005), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3007), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [13060] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1363), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2297), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2299), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [13121] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3950), 1, + anon_sym_RBRACE, + STATE(1364), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3948), 15, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_DOT_DOT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(3946), 30, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym__, + anon_sym_const, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [13184] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1365), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3001), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(3003), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [13245] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3952), 1, + anon_sym_COLON_COLON, + STATE(1366), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1451), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1449), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [13308] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1367), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2997), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2999), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [13369] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1368), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2989), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2991), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [13430] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1369), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2973), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2975), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [13491] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1370), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2969), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2971), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [13552] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1371), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2941), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2943), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [13613] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1372), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2933), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2935), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [13674] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1373), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2301), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2303), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [13735] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1374), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2309), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2311), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [13796] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1375), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2905), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2907), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [13857] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1376), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2889), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2891), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [13918] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1377), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2865), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2867), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [13979] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1378), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2837), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2839), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [14040] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1379), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2833), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2835), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [14101] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1380), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2813), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2815), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [14162] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1381), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2809), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2811), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [14223] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1382), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2773), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2775), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [14284] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1383), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2317), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2319), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [14345] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1384), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2769), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2771), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [14406] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1385), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2765), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2767), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [14467] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1386), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2757), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2759), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [14528] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1387), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2753), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2755), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [14589] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1388), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1583), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1585), 31, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [14650] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1389), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2749), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2751), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [14711] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1390), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2741), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2743), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [14772] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1391), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2737), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2739), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [14833] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1392), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2729), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2731), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [14894] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1393), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2725), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2727), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [14955] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1394), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2709), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2711), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [15016] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1395), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2685), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2687), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [15077] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1396), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2581), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2583), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [15138] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1397), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2577), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2579), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [15199] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3954), 1, + anon_sym_COLON_COLON, + STATE(1398), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3777), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3775), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [15262] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1399), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2569), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2571), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [15323] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1400), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2665), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2667), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_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] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1401), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2661), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2663), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [15445] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1402), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2657), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2659), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [15506] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1403), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2641), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2643), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [15567] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1404), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2589), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2591), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [15628] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1405), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2573), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2575), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [15689] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1406), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2505), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2507), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [15750] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1407), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2473), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2475), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [15811] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1408), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2449), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2451), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [15872] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3956), 1, + anon_sym_COLON_COLON, + STATE(1409), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3777), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3775), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [15935] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3958), 1, + anon_sym_COLON_COLON, + STATE(1410), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3777), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3775), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [15998] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1411), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3962), 13, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(3960), 33, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_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_gen, + 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, + [16059] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1412), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2073), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2075), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [16120] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1413), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3966), 13, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(3964), 33, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_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_gen, + 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, + [16181] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1414), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3970), 13, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(3968), 33, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_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_gen, + 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, + [16242] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1415), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2077), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2079), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_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, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [16303] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1416), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2565), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2567), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [16364] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1417), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3974), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3972), 31, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_SQUOTE, + anon_sym_as, anon_sym_else, - anon_sym_dyn, - sym_mutable_specifier, + [16425] = 12, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3731), 1, + anon_sym_COLON_COLON, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + ACTIONS(3818), 1, + anon_sym_BANG, + ACTIONS(3976), 1, + anon_sym_move, + STATE(413), 1, + sym_block, + STATE(3944), 1, + sym_label, + STATE(1418), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3727), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3725), 24, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [16500] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1419), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2337), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2339), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, sym_identifier, sym_self, sym_super, sym_crate, - [216] = 21, + [16561] = 21, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1295), 1, + ACTIONS(1659), 1, anon_sym_DASH, - ACTIONS(1341), 1, + ACTIONS(1683), 1, aux_sym_string_literal_token1, - ACTIONS(1351), 1, + ACTIONS(1691), 1, sym__raw_string_literal_start, - ACTIONS(2471), 1, - anon_sym_COLON_COLON, - ACTIONS(3259), 1, + ACTIONS(3705), 1, + anon_sym_if, + ACTIONS(3978), 1, sym_identifier, - ACTIONS(3269), 1, + ACTIONS(3982), 1, + anon_sym_COLON_COLON, + ACTIONS(3986), 1, sym_metavariable, - STATE(2074), 1, + STATE(3039), 1, sym_scoped_identifier, - STATE(2129), 1, + STATE(3180), 1, sym__literal_pattern, - STATE(3353), 1, + STATE(3971), 1, sym_bracketed_type, - STATE(3379), 1, + STATE(3984), 1, sym_generic_type_with_turbofish, - ACTIONS(1343), 2, + ACTIONS(1685), 2, anon_sym_true, anon_sym_false, - STATE(1017), 2, + ACTIONS(3703), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + STATE(1420), 2, sym_line_comment, sym_block_comment, - ACTIONS(1339), 3, + ACTIONS(1681), 3, sym_float_literal, sym_integer_literal, sym_char_literal, - ACTIONS(3263), 3, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - ACTIONS(3267), 3, + ACTIONS(3984), 3, sym_self, sym_super, sym_crate, - STATE(2037), 4, + STATE(2620), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, sym_boolean_literal, - ACTIONS(3261), 7, + ACTIONS(3980), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_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_gen, + anon_sym_union, + [16654] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1421), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2341), 7, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - ACTIONS(3265), 20, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2343), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [16715] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1422), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2561), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2563), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [16776] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1423), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2557), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2559), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [16837] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1424), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2553), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2555), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [16898] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1425), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2549), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2551), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111000,68 +139146,45 @@ 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_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - [316] = 21, - ACTIONS(29), 1, - anon_sym_LT, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [16959] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1295), 1, - anon_sym_DASH, - ACTIONS(1341), 1, - aux_sym_string_literal_token1, - ACTIONS(1351), 1, - sym__raw_string_literal_start, - ACTIONS(2471), 1, - anon_sym_COLON_COLON, - ACTIONS(3271), 1, - sym_identifier, - ACTIONS(3281), 1, - sym_metavariable, - STATE(2079), 1, - sym_scoped_identifier, - STATE(2121), 1, - sym__literal_pattern, - STATE(3353), 1, - sym_bracketed_type, - STATE(3379), 1, - sym_generic_type_with_turbofish, - ACTIONS(1343), 2, - anon_sym_true, - anon_sym_false, - STATE(1018), 2, + STATE(1426), 2, sym_line_comment, sym_block_comment, - ACTIONS(1339), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3275), 3, - anon_sym_COLON, - anon_sym_else, - anon_sym_in, - ACTIONS(3279), 3, - sym_self, - sym_super, - sym_crate, - STATE(2037), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3273), 7, + ACTIONS(2345), 7, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - ACTIONS(3277), 20, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2347), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111079,32 +139202,37 @@ 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_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - [416] = 12, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [17020] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3287), 1, - anon_sym_BANG, - ACTIONS(3289), 1, - anon_sym_COLON_COLON, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(3293), 1, - anon_sym_move, - STATE(1421), 1, - sym_block, - STATE(3569), 1, - sym_label, - STATE(1019), 2, + STATE(1427), 2, sym_line_comment, sym_block_comment, - ACTIONS(3285), 15, + ACTIONS(3990), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -111120,12 +139248,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3283), 28, + ACTIONS(3988), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -111147,93 +139276,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [495] = 11, + [17081] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3297), 1, - anon_sym_LPAREN, - ACTIONS(3301), 1, - anon_sym_BANG, - ACTIONS(3303), 1, - anon_sym_COLON_COLON, - ACTIONS(3305), 1, - anon_sym_LT2, - STATE(1089), 1, - sym_type_arguments, - STATE(1095), 1, - sym_parameters, - STATE(1020), 2, + STATE(1428), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3295), 27, + ACTIONS(2545), 7, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [572] = 5, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2547), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [17142] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1021), 2, + STATE(1429), 2, sym_line_comment, sym_block_comment, - ACTIONS(1051), 9, + ACTIONS(2541), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_PIPE, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1049), 40, + ACTIONS(2543), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111257,7 +139376,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_fn, anon_sym_gen, - anon_sym_if, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -111274,48 +139392,39 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [636] = 10, + [17203] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3297), 1, - anon_sym_LPAREN, - ACTIONS(3305), 1, - anon_sym_LT2, - ACTIONS(3311), 1, - anon_sym_COLON_COLON, - STATE(1089), 1, - sym_type_arguments, - STATE(1095), 1, - sym_parameters, - STATE(1022), 2, + ACTIONS(3992), 1, + anon_sym_LBRACE, + STATE(1430), 2, sym_line_comment, sym_block_comment, - ACTIONS(3309), 17, + ACTIONS(3799), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3307), 27, + ACTIONS(3801), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -111328,35 +139437,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_SQUOTE, + anon_sym_COLON_COLON, anon_sym_as, anon_sym_else, - [710] = 5, + [17266] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1023), 2, + STATE(1431), 2, sym_line_comment, sym_block_comment, - ACTIONS(1047), 9, + ACTIONS(2305), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_PIPE, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1045), 40, + ACTIONS(2307), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111380,7 +139489,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_fn, anon_sym_gen, - anon_sym_if, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -111397,25 +139505,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [774] = 5, + [17327] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1024), 2, + STATE(1432), 2, sym_line_comment, sym_block_comment, - ACTIONS(1475), 9, + ACTIONS(2349), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_PIPE, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1477), 40, + ACTIONS(2351), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111439,7 +139545,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_fn, anon_sym_gen, - anon_sym_if, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -111456,25 +139561,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [838] = 5, + [17388] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1025), 2, + STATE(1433), 2, sym_line_comment, sym_block_comment, - ACTIONS(1257), 9, + ACTIONS(2257), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_PIPE, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1259), 40, + ACTIONS(2259), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111498,7 +139601,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_fn, anon_sym_gen, - anon_sym_if, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -111515,25 +139617,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [902] = 5, + [17449] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1026), 2, + STATE(1434), 2, sym_line_comment, sym_block_comment, - ACTIONS(1415), 9, + ACTIONS(2353), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_PIPE, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1417), 40, + ACTIONS(2355), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111557,7 +139657,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_fn, anon_sym_gen, - anon_sym_if, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -111574,25 +139673,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [966] = 5, + [17510] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1027), 2, + STATE(1435), 2, sym_line_comment, sym_block_comment, - ACTIONS(1269), 9, + ACTIONS(2241), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_PIPE, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1271), 40, + ACTIONS(2243), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111616,7 +139713,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_fn, anon_sym_gen, - anon_sym_if, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -111633,25 +139729,71 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1030] = 10, + [17571] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3297), 1, - anon_sym_LPAREN, - ACTIONS(3305), 1, - anon_sym_LT2, - ACTIONS(3311), 1, + STATE(1436), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2209), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, anon_sym_COLON_COLON, - STATE(1089), 1, - sym_type_arguments, - STATE(1095), 1, - sym_parameters, - STATE(1028), 2, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2211), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [17632] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1437), 2, sym_line_comment, sym_block_comment, - ACTIONS(3315), 17, + ACTIONS(3996), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -111662,15 +139804,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3313), 27, + ACTIONS(3994), 31, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, @@ -111687,35 +139828,260 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [1104] = 5, + [17693] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1029), 2, + STATE(1438), 2, sym_line_comment, sym_block_comment, - ACTIONS(1273), 9, + ACTIONS(2173), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_PIPE, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1275), 40, + ACTIONS(2175), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [17754] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1439), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2357), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2359), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [17815] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1440), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2169), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2171), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [17876] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1441), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2165), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2167), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [17937] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1442), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2161), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2163), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111739,7 +140105,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_fn, anon_sym_gen, - anon_sym_if, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -111756,48 +140121,39 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1168] = 10, + [17998] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3297), 1, - anon_sym_LPAREN, - ACTIONS(3305), 1, - anon_sym_LT2, - ACTIONS(3311), 1, - anon_sym_COLON_COLON, - STATE(1089), 1, - sym_type_arguments, - STATE(1095), 1, - sym_parameters, - STATE(1030), 2, + ACTIONS(3998), 1, + anon_sym_LBRACE, + STATE(1443), 2, sym_line_comment, sym_block_comment, - ACTIONS(3319), 17, + ACTIONS(3791), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3317), 27, + ACTIONS(3793), 29, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -111810,35 +140166,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_SQUOTE, + anon_sym_COLON_COLON, anon_sym_as, anon_sym_else, - [1242] = 5, + [18061] = 21, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1031), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1265), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_LT, + ACTIONS(1659), 1, + anon_sym_DASH, + ACTIONS(1683), 1, + aux_sym_string_literal_token1, + ACTIONS(1691), 1, + sym__raw_string_literal_start, + ACTIONS(3717), 1, + anon_sym_if, + ACTIONS(3982), 1, anon_sym_COLON_COLON, - anon_sym_POUND, + ACTIONS(4000), 1, + sym_identifier, + ACTIONS(4006), 1, sym_metavariable, - ACTIONS(1267), 40, + STATE(2953), 1, + sym_scoped_identifier, + STATE(3173), 1, + sym__literal_pattern, + STATE(3971), 1, + sym_bracketed_type, + STATE(3984), 1, + sym_generic_type_with_turbofish, + ACTIONS(1685), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3715), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + STATE(1444), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1681), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(4004), 3, + sym_self, + sym_super, + sym_crate, + STATE(2620), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(4002), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111856,48 +140247,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, - anon_sym_const, anon_sym_default, - anon_sym_enum, - anon_sym_fn, anon_sym_gen, - anon_sym_if, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [1306] = 5, + [18154] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1032), 2, + STATE(1445), 2, sym_line_comment, sym_block_comment, - ACTIONS(1261), 9, + ACTIONS(2157), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_PIPE, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1263), 40, + ACTIONS(2159), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111921,7 +140290,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_enum, anon_sym_fn, anon_sym_gen, - anon_sym_if, anon_sym_impl, anon_sym_let, anon_sym_mod, @@ -111938,25 +140306,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1370] = 5, + [18215] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1033), 2, + STATE(1446), 2, sym_line_comment, sym_block_comment, - ACTIONS(2187), 9, + ACTIONS(2153), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ, anon_sym_LT, - anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2189), 39, + ACTIONS(2155), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -111996,23 +140362,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1433] = 9, + [18276] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3297), 1, - anon_sym_LPAREN, - ACTIONS(3305), 1, - anon_sym_LT2, - STATE(1090), 1, - sym_type_arguments, - STATE(1096), 1, - sym_parameters, - STATE(1034), 2, + STATE(1447), 2, sym_line_comment, sym_block_comment, - ACTIONS(3323), 17, + ACTIONS(4010), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -112023,15 +140381,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4008), 31, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [18337] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1448), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4014), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3321), 27, + ACTIONS(4012), 31, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, @@ -112048,35 +140461,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [1504] = 5, + [18398] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1035), 2, + STATE(1449), 2, sym_line_comment, sym_block_comment, - ACTIONS(2733), 9, + ACTIONS(2149), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ, anon_sym_LT, - anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2735), 39, + ACTIONS(2151), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112116,87 +140530,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1567] = 9, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3297), 1, - anon_sym_LPAREN, - ACTIONS(3305), 1, - anon_sym_LT2, - STATE(1090), 1, - sym_type_arguments, - STATE(1096), 1, - sym_parameters, - STATE(1036), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3327), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3325), 27, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [1638] = 5, + [18459] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1037), 2, + STATE(1450), 2, sym_line_comment, sym_block_comment, - ACTIONS(1907), 9, + ACTIONS(2137), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ, anon_sym_LT, - anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1909), 39, + ACTIONS(2139), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112236,19 +140586,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1701] = 7, + [18520] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3333), 1, - anon_sym_BANG, - ACTIONS(3335), 1, - anon_sym_COLON_COLON, - STATE(1038), 2, + STATE(1451), 2, sym_line_comment, sym_block_comment, - ACTIONS(3331), 17, + ACTIONS(3697), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -112259,14 +140605,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3329), 29, + ACTIONS(3699), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112274,6 +140618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -112285,36 +140630,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - anon_sym_LT2, - [1768] = 5, + [18581] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1039), 2, + STATE(1452), 2, sym_line_comment, sym_block_comment, - ACTIONS(1755), 9, + ACTIONS(2113), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ, anon_sym_LT, - anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1757), 39, + ACTIONS(2115), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112354,23 +140698,17 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1831] = 9, + [18642] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3297), 1, - anon_sym_LPAREN, - ACTIONS(3305), 1, - anon_sym_LT2, - STATE(1090), 1, - sym_type_arguments, - STATE(1096), 1, - sym_parameters, - STATE(1040), 2, + ACTIONS(4020), 1, + anon_sym_DASH_GT, + STATE(1453), 2, sym_line_comment, sym_block_comment, - ACTIONS(3339), 17, + ACTIONS(4018), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -112381,15 +140719,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3337), 27, + ACTIONS(4016), 30, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, @@ -112406,29 +140743,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [1902] = 7, + [18705] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3345), 1, - anon_sym_BANG, - ACTIONS(3347), 1, + STATE(1454), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2097), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, anon_sym_COLON_COLON, - STATE(1041), 2, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2099), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [18766] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3958), 1, + anon_sym_COLON_COLON, + STATE(1455), 2, sym_line_comment, sym_block_comment, - ACTIONS(3343), 17, + ACTIONS(3765), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -112439,14 +140832,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3341), 29, + ACTIONS(3763), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112465,30 +140856,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - anon_sym_LT2, - [1969] = 7, + [18829] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3353), 1, - anon_sym_BANG, - ACTIONS(3355), 1, + STATE(1456), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1879), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1881), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [18890] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3958), 1, anon_sym_COLON_COLON, - STATE(1042), 2, + STATE(1457), 2, sym_line_comment, sym_block_comment, - ACTIONS(3351), 17, + ACTIONS(3781), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -112499,14 +140945,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3349), 29, + ACTIONS(3779), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112525,34 +140969,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - anon_sym_LT2, - [2036] = 9, + [18953] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3297), 1, - anon_sym_LPAREN, - ACTIONS(3305), 1, - anon_sym_LT2, - STATE(1090), 1, - sym_type_arguments, - STATE(1096), 1, - sym_parameters, - STATE(1043), 2, + ACTIONS(4026), 1, + anon_sym_DASH_GT, + STATE(1458), 2, sym_line_comment, sym_block_comment, - ACTIONS(3359), 17, + ACTIONS(4024), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -112563,15 +141002,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3357), 27, + ACTIONS(4022), 30, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, @@ -112588,35 +141026,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [2107] = 5, + [19016] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1044), 2, + STATE(1459), 2, sym_line_comment, sym_block_comment, - ACTIONS(2199), 9, + ACTIONS(1971), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_EQ, anon_sym_LT, - anon_sym_COMMA, anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2201), 39, + ACTIONS(1973), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112656,36 +141094,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [2170] = 7, + [19077] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3365), 1, - anon_sym_POUND, - STATE(1468), 2, - sym_attribute_item, - sym_inner_attribute_item, - STATE(1045), 3, + STATE(1460), 2, sym_line_comment, sym_block_comment, - aux_sym_match_arm_repeat1, - ACTIONS(3363), 14, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(1915), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, - anon_sym_DOT_DOT, anon_sym_COLON_COLON, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, + anon_sym_POUND, sym_metavariable, - ACTIONS(3361), 30, + ACTIONS(1917), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112703,32 +141128,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym__, + anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, + anon_sym_fn, anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, sym_identifier, sym_self, sym_super, sym_crate, - [2237] = 7, + [19138] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3372), 1, - anon_sym_BANG, - ACTIONS(3374), 1, + STATE(1461), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1959), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, anon_sym_COLON_COLON, - STATE(1046), 2, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1961), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [19199] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4032), 1, + anon_sym_DASH_GT, + STATE(1462), 2, sym_line_comment, sym_block_comment, - ACTIONS(3370), 17, + ACTIONS(4030), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -112739,14 +141227,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3368), 29, + ACTIONS(4028), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112765,79 +141251,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - anon_sym_LT2, - [2304] = 27, - ACTIONS(29), 1, - anon_sym_LT, + [19262] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1331), 1, - anon_sym_extern, - ACTIONS(3107), 1, - anon_sym_QMARK, - ACTIONS(3119), 1, - anon_sym_fn, - ACTIONS(3376), 1, - sym_identifier, - ACTIONS(3378), 1, - anon_sym_LPAREN, - ACTIONS(3382), 1, - anon_sym_COLON_COLON, - ACTIONS(3384), 1, - anon_sym_default, - ACTIONS(3386), 1, - anon_sym_for, - ACTIONS(3392), 1, - sym_metavariable, - STATE(1043), 1, - sym_scoped_type_identifier, - STATE(1093), 1, - sym_generic_type, - STATE(1584), 1, - sym_for_lifetimes, - STATE(2239), 1, - aux_sym_function_modifiers_repeat1, - STATE(2387), 1, - sym_extern_modifier, - STATE(3367), 1, - sym_function_modifiers, - STATE(3513), 1, - sym_scoped_identifier, - STATE(3546), 1, - sym_generic_type_with_turbofish, - STATE(3556), 1, - sym_bracketed_type, - ACTIONS(3388), 2, - anon_sym_gen, - anon_sym_union, - STATE(1047), 2, + STATE(1463), 2, sym_line_comment, sym_block_comment, - ACTIONS(1317), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3390), 3, - sym_self, - sym_super, - sym_crate, - STATE(1439), 3, - sym_removed_trait_bound, - sym_function_type, - sym_tuple_type, - ACTIONS(3380), 17, + ACTIONS(1963), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1965), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112855,68 +141297,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2410] = 27, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1291), 1, - anon_sym_QMARK, - ACTIONS(1323), 1, - anon_sym_fn, - ACTIONS(1331), 1, - anon_sym_extern, - ACTIONS(3394), 1, - sym_identifier, - ACTIONS(3396), 1, - anon_sym_LPAREN, - ACTIONS(3400), 1, - anon_sym_COLON_COLON, - ACTIONS(3402), 1, + anon_sym_async, + anon_sym_const, anon_sym_default, - ACTIONS(3404), 1, - anon_sym_for, - ACTIONS(3410), 1, - sym_metavariable, - STATE(1565), 1, - sym_for_lifetimes, - STATE(1935), 1, - sym_scoped_type_identifier, - STATE(1966), 1, - sym_generic_type, - STATE(2239), 1, - aux_sym_function_modifiers_repeat1, - STATE(2387), 1, - sym_extern_modifier, - STATE(3369), 1, - sym_generic_type_with_turbofish, - STATE(3386), 1, - sym_function_modifiers, - STATE(3462), 1, - sym_scoped_identifier, - STATE(3499), 1, - sym_bracketed_type, - ACTIONS(3406), 2, + anon_sym_enum, + anon_sym_fn, anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - STATE(1048), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1317), 3, - anon_sym_async, - anon_sym_const, anon_sym_unsafe, - ACTIONS(3408), 3, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1994), 3, - sym_removed_trait_bound, - sym_function_type, - sym_tuple_type, - ACTIONS(3398), 17, + [19323] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1464), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1975), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1977), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112934,182 +141353,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2516] = 5, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_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] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1049), 2, + STATE(1465), 2, sym_line_comment, sym_block_comment, - ACTIONS(3372), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3374), 31, + ACTIONS(1987), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, + anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [2578] = 5, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1989), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [19445] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1050), 2, + STATE(1466), 2, sym_line_comment, sym_block_comment, - ACTIONS(3333), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3335), 31, + ACTIONS(1991), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [2640] = 27, - ACTIONS(29), 1, anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1325), 1, - anon_sym_for, - ACTIONS(1331), 1, - anon_sym_extern, - ACTIONS(3149), 1, - anon_sym_QMARK, - ACTIONS(3161), 1, - anon_sym_fn, - ACTIONS(3412), 1, - sym_identifier, - ACTIONS(3414), 1, - anon_sym_LPAREN, - ACTIONS(3418), 1, anon_sym_COLON_COLON, - ACTIONS(3420), 1, - anon_sym_default, - ACTIONS(3426), 1, + anon_sym_POUND, sym_metavariable, - STATE(1540), 1, - sym_scoped_type_identifier, - STATE(1591), 1, - sym_for_lifetimes, - STATE(1619), 1, - sym_generic_type, - STATE(2239), 1, - aux_sym_function_modifiers_repeat1, - STATE(2387), 1, - sym_extern_modifier, - STATE(3341), 1, - sym_function_modifiers, - STATE(3538), 1, - sym_scoped_identifier, - STATE(3554), 1, - sym_generic_type_with_turbofish, - STATE(3560), 1, - sym_bracketed_type, - ACTIONS(3422), 2, + ACTIONS(1993), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - STATE(1051), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1317), 3, - anon_sym_async, - anon_sym_const, anon_sym_unsafe, - ACTIONS(3424), 3, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1729), 3, - sym_removed_trait_bound, - sym_function_type, - sym_tuple_type, - ACTIONS(3416), 17, + [19506] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1467), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1999), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2001), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113127,65 +141521,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2746] = 24, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1599), 1, - anon_sym_LBRACK, - ACTIONS(3396), 1, - anon_sym_LPAREN, - ACTIONS(3400), 1, - anon_sym_COLON_COLON, - ACTIONS(3410), 1, - sym_metavariable, - ACTIONS(3428), 1, - sym_identifier, - ACTIONS(3432), 1, - anon_sym_STAR, - ACTIONS(3436), 1, - anon_sym_AMP, - ACTIONS(3438), 1, - anon_sym_SQUOTE, - ACTIONS(3440), 1, - anon_sym_for, - STATE(2664), 1, - sym_where_predicate, - STATE(2698), 1, - sym_scoped_type_identifier, - STATE(3038), 1, - sym_generic_type, - STATE(3369), 1, - sym_generic_type_with_turbofish, - STATE(3462), 1, - sym_scoped_identifier, - STATE(3499), 1, - sym_bracketed_type, - ACTIONS(3430), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(1052), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3406), 3, + anon_sym_async, + anon_sym_const, anon_sym_default, + anon_sym_enum, + anon_sym_fn, anon_sym_gen, + anon_sym_impl, + 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(3408), 3, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(3293), 6, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_array_type, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(3434), 17, + [19567] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1468), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2085), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2087), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113203,68 +141577,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2846] = 27, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1291), 1, - anon_sym_QMARK, - ACTIONS(1323), 1, - anon_sym_fn, - ACTIONS(1325), 1, - anon_sym_for, - ACTIONS(1331), 1, - anon_sym_extern, - ACTIONS(3396), 1, - anon_sym_LPAREN, - ACTIONS(3400), 1, - anon_sym_COLON_COLON, - ACTIONS(3402), 1, + anon_sym_async, + anon_sym_const, anon_sym_default, - ACTIONS(3410), 1, - sym_metavariable, - ACTIONS(3442), 1, - sym_identifier, - STATE(1565), 1, - sym_for_lifetimes, - STATE(1933), 1, - sym_scoped_type_identifier, - STATE(1980), 1, - sym_generic_type, - STATE(2239), 1, - aux_sym_function_modifiers_repeat1, - STATE(2387), 1, - sym_extern_modifier, - STATE(3369), 1, - sym_generic_type_with_turbofish, - STATE(3386), 1, - sym_function_modifiers, - STATE(3462), 1, - sym_scoped_identifier, - STATE(3499), 1, - sym_bracketed_type, - ACTIONS(3406), 2, + anon_sym_enum, + anon_sym_fn, anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - STATE(1053), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1317), 3, - anon_sym_async, - anon_sym_const, anon_sym_unsafe, - ACTIONS(3408), 3, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(2005), 3, - sym_removed_trait_bound, - sym_function_type, - sym_tuple_type, - ACTIONS(3398), 17, + [19628] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1469), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1867), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1869), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113282,125 +141633,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [2952] = 5, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [19689] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1054), 2, + STATE(1470), 2, sym_line_comment, sym_block_comment, - ACTIONS(3345), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3347), 31, + ACTIONS(1883), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [3014] = 27, - ACTIONS(29), 1, anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1325), 1, - anon_sym_for, - ACTIONS(1331), 1, - anon_sym_extern, - ACTIONS(3107), 1, - anon_sym_QMARK, - ACTIONS(3119), 1, - anon_sym_fn, - ACTIONS(3378), 1, - anon_sym_LPAREN, - ACTIONS(3382), 1, anon_sym_COLON_COLON, - ACTIONS(3384), 1, - anon_sym_default, - ACTIONS(3392), 1, + anon_sym_POUND, sym_metavariable, - ACTIONS(3444), 1, - sym_identifier, - STATE(1040), 1, - sym_scoped_type_identifier, - STATE(1158), 1, - sym_generic_type, - STATE(1584), 1, - sym_for_lifetimes, - STATE(2239), 1, - aux_sym_function_modifiers_repeat1, - STATE(2387), 1, - sym_extern_modifier, - STATE(3367), 1, - sym_function_modifiers, - STATE(3513), 1, - sym_scoped_identifier, - STATE(3546), 1, - sym_generic_type_with_turbofish, - STATE(3556), 1, - sym_bracketed_type, - ACTIONS(3388), 2, - anon_sym_gen, - anon_sym_union, - STATE(1055), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1317), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3390), 3, - sym_self, - sym_super, - sym_crate, - STATE(1410), 3, - sym_removed_trait_bound, - sym_function_type, - sym_tuple_type, - ACTIONS(3380), 17, + ACTIONS(1885), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113418,65 +141689,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3120] = 24, - ACTIONS(29), 1, - anon_sym_LT, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [19750] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1599), 1, - anon_sym_LBRACK, - ACTIONS(3396), 1, - anon_sym_LPAREN, - ACTIONS(3400), 1, - anon_sym_COLON_COLON, - ACTIONS(3410), 1, - sym_metavariable, - ACTIONS(3428), 1, - sym_identifier, - ACTIONS(3432), 1, - anon_sym_STAR, - ACTIONS(3436), 1, - anon_sym_AMP, - ACTIONS(3438), 1, - anon_sym_SQUOTE, - ACTIONS(3440), 1, - anon_sym_for, - STATE(2664), 1, - sym_where_predicate, - STATE(2698), 1, - sym_scoped_type_identifier, - STATE(3038), 1, - sym_generic_type, - STATE(3369), 1, - sym_generic_type_with_turbofish, - STATE(3462), 1, - sym_scoped_identifier, - STATE(3499), 1, - sym_bracketed_type, - ACTIONS(3446), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - STATE(1056), 2, + STATE(1471), 2, sym_line_comment, sym_block_comment, - ACTIONS(3406), 3, + ACTIONS(1907), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1909), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, anon_sym_default, + anon_sym_enum, + anon_sym_fn, anon_sym_gen, + anon_sym_impl, + 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(3408), 3, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(3293), 6, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_array_type, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(3434), 17, + [19811] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1472), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2069), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2071), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113494,129 +141801,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3220] = 9, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [19872] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3301), 1, - anon_sym_BANG, - ACTIONS(3448), 1, - anon_sym_LBRACE, - ACTIONS(3450), 1, - anon_sym_COLON_COLON, - STATE(1473), 1, - sym_field_initializer_list, - STATE(1057), 2, + STATE(1473), 2, sym_line_comment, sym_block_comment, - ACTIONS(1357), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1359), 28, + ACTIONS(3293), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_as, - anon_sym_else, - [3290] = 27, - ACTIONS(29), 1, anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1331), 1, - anon_sym_extern, - ACTIONS(3149), 1, - anon_sym_QMARK, - ACTIONS(3161), 1, - anon_sym_fn, - ACTIONS(3414), 1, - anon_sym_LPAREN, - ACTIONS(3418), 1, anon_sym_COLON_COLON, - ACTIONS(3420), 1, - anon_sym_default, - ACTIONS(3426), 1, + anon_sym_POUND, sym_metavariable, - ACTIONS(3452), 1, - sym_identifier, - ACTIONS(3454), 1, - anon_sym_for, - STATE(1557), 1, - sym_scoped_type_identifier, - STATE(1591), 1, - sym_for_lifetimes, - STATE(1628), 1, - sym_generic_type, - STATE(2239), 1, - aux_sym_function_modifiers_repeat1, - STATE(2387), 1, - sym_extern_modifier, - STATE(3341), 1, - sym_function_modifiers, - STATE(3538), 1, - sym_scoped_identifier, - STATE(3554), 1, - sym_generic_type_with_turbofish, - STATE(3560), 1, - sym_bracketed_type, - ACTIONS(3422), 2, - anon_sym_gen, - anon_sym_union, - STATE(1058), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1317), 3, + ACTIONS(3295), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, anon_sym_async, anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, anon_sym_unsafe, - ACTIONS(3424), 3, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, - sym_crate, - STATE(1697), 3, - sym_removed_trait_bound, - sym_function_type, - sym_tuple_type, - ACTIONS(3416), 17, + sym_crate, + [19933] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1474), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1855), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1857), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113634,149 +141913,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [3396] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3289), 1, - anon_sym_COLON_COLON, - ACTIONS(3456), 1, - anon_sym_BANG, - STATE(1059), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3458), 6, anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, anon_sym_unsafe, + anon_sym_use, anon_sym_extern, - ACTIONS(3285), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - anon_sym_as, - ACTIONS(3283), 23, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [3464] = 5, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [19994] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1060), 2, + STATE(1475), 2, sym_line_comment, sym_block_comment, - ACTIONS(3353), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3355), 31, + ACTIONS(1859), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [3526] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3460), 1, - anon_sym_POUND, - STATE(1405), 1, - sym_attribute_item, - STATE(1061), 3, - sym_line_comment, - sym_block_comment, - aux_sym_enum_variant_list_repeat1, - ACTIONS(789), 11, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, - sym_integer_literal, + anon_sym_POUND, sym_metavariable, - ACTIONS(3243), 33, + ACTIONS(1861), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113797,105 +141972,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, anon_sym_fn, - anon_sym_for, anon_sym_gen, anon_sym_impl, + anon_sym_let, + anon_sym_mod, anon_sym_pub, + 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, - [3592] = 12, - ACTIONS(19), 1, - anon_sym_LBRACE, + [20055] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3289), 1, - anon_sym_COLON_COLON, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(3456), 1, - anon_sym_BANG, - ACTIONS(3463), 1, - anon_sym_move, - STATE(395), 1, - sym_block, - STATE(3355), 1, - sym_label, - STATE(1062), 2, + STATE(1476), 2, sym_line_comment, sym_block_comment, - ACTIONS(3285), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3283), 24, + ACTIONS(1863), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [3667] = 5, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1865), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [20116] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1063), 2, + STATE(1477), 2, sym_line_comment, sym_block_comment, - ACTIONS(3467), 13, + ACTIONS(1871), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + anon_sym_POUND, sym_metavariable, - ACTIONS(3465), 33, + ACTIONS(1873), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113916,99 +142084,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, anon_sym_fn, - anon_sym_for, anon_sym_gen, anon_sym_impl, + anon_sym_let, + anon_sym_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, - [3728] = 6, + [20177] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3469), 1, - anon_sym_LBRACE, - STATE(1064), 2, + STATE(1478), 2, sym_line_comment, sym_block_comment, - ACTIONS(3333), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3335), 29, + ACTIONS(1875), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, + anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_as, - anon_sym_else, - [3791] = 5, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1877), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [20238] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1065), 2, + STATE(1479), 2, sym_line_comment, sym_block_comment, - ACTIONS(3473), 13, + ACTIONS(2365), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + anon_sym_POUND, sym_metavariable, - ACTIONS(3471), 33, + ACTIONS(2367), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114029,42 +142196,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, anon_sym_fn, - anon_sym_for, anon_sym_gen, anon_sym_impl, + anon_sym_let, + anon_sym_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, - [3852] = 5, + [20299] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1066), 2, + STATE(1480), 2, sym_line_comment, sym_block_comment, - ACTIONS(3477), 13, + ACTIONS(1887), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + anon_sym_POUND, sym_metavariable, - ACTIONS(3475), 33, + ACTIONS(1889), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114085,42 +142252,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, anon_sym_fn, - anon_sym_for, anon_sym_gen, anon_sym_impl, + anon_sym_let, + anon_sym_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, - [3913] = 5, + [20360] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1067), 2, + STATE(1481), 2, sym_line_comment, sym_block_comment, - ACTIONS(3481), 13, + ACTIONS(1895), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + anon_sym_POUND, sym_metavariable, - ACTIONS(3479), 33, + ACTIONS(1897), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114141,42 +142308,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, anon_sym_fn, - anon_sym_for, anon_sym_gen, anon_sym_impl, + anon_sym_let, + anon_sym_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, - [3974] = 5, + [20421] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1068), 2, + STATE(1482), 2, sym_line_comment, sym_block_comment, - ACTIONS(3485), 13, + ACTIONS(1899), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + anon_sym_POUND, sym_metavariable, - ACTIONS(3483), 33, + ACTIONS(1901), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114197,42 +142364,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, anon_sym_fn, - anon_sym_for, anon_sym_gen, anon_sym_impl, + anon_sym_let, + anon_sym_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, - [4035] = 5, + [20482] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1069), 2, + STATE(1483), 2, sym_line_comment, sym_block_comment, - ACTIONS(3489), 13, + ACTIONS(2425), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + anon_sym_POUND, sym_metavariable, - ACTIONS(3487), 33, + ACTIONS(2427), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114253,46 +142420,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, anon_sym_fn, - anon_sym_for, anon_sym_gen, anon_sym_impl, + anon_sym_let, + anon_sym_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, - [4096] = 6, + [20543] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3495), 1, - anon_sym_RBRACE, - STATE(1070), 2, + STATE(1484), 2, sym_line_comment, sym_block_comment, - ACTIONS(3493), 15, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(1903), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, - anon_sym_DOT_DOT, anon_sym_COLON_COLON, anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, sym_metavariable, - ACTIONS(3491), 30, + ACTIONS(1905), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114310,85 +142473,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym__, + anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, + anon_sym_fn, anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, sym_identifier, sym_self, sym_super, sym_crate, - [4159] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3497), 1, - anon_sym_LBRACE, - STATE(1071), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3345), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3347), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_as, - anon_sym_else, - [4222] = 5, + [20604] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1072), 2, + STATE(1485), 2, sym_line_comment, sym_block_comment, - ACTIONS(3501), 7, + ACTIONS(1911), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114396,7 +142511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3499), 39, + ACTIONS(1913), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114436,90 +142551,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [4283] = 6, + [20665] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3503), 1, - anon_sym_LBRACE, - STATE(1073), 2, + STATE(1486), 2, sym_line_comment, sym_block_comment, - ACTIONS(3353), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3355), 29, + ACTIONS(2369), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_as, - anon_sym_else, - [4346] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3509), 1, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - STATE(1074), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3507), 15, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_LT, - anon_sym_DOT_DOT, anon_sym_COLON_COLON, anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, sym_metavariable, - ACTIONS(3505), 30, + ACTIONS(2371), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114537,154 +142585,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym__, + anon_sym_async, anon_sym_const, anon_sym_default, + anon_sym_enum, + anon_sym_fn, anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, sym_identifier, sym_self, sym_super, sym_crate, - [4409] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1075), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3513), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3511), 31, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [4470] = 5, + [20726] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1076), 2, + STATE(1487), 2, sym_line_comment, sym_block_comment, - ACTIONS(3517), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3515), 31, + ACTIONS(1923), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [4531] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1077), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3521), 13, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + anon_sym_POUND, sym_metavariable, - ACTIONS(3519), 33, + ACTIONS(1925), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114705,30 +142644,36 @@ 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_gen, anon_sym_impl, + anon_sym_let, + anon_sym_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, - [4592] = 6, + [20787] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3523), 1, + ACTIONS(4034), 1, anon_sym_LBRACE, - STATE(1078), 2, + STATE(1488), 2, sym_line_comment, sym_block_comment, - ACTIONS(3372), 16, + ACTIONS(3814), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -114745,7 +142690,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3374), 29, + ACTIONS(3816), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -114775,71 +142720,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_as, anon_sym_else, - [4655] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1079), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1583), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1585), 31, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [4716] = 5, + [20850] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1080), 2, + STATE(1489), 2, sym_line_comment, sym_block_comment, - ACTIONS(2857), 7, + ACTIONS(4038), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114847,7 +142736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2859), 39, + ACTIONS(4036), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114881,192 +142770,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [4777] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3525), 1, - anon_sym_COLON_COLON, - STATE(1081), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3323), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3321), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [4840] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3527), 1, - anon_sym_COLON_COLON, - STATE(1082), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3323), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3321), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [4903] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3529), 1, - anon_sym_COLON_COLON, - STATE(1083), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3323), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3321), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [4966] = 5, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [20911] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1084), 2, + STATE(1490), 2, sym_line_comment, sym_block_comment, - ACTIONS(2539), 7, + ACTIONS(1931), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115074,7 +142792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2541), 39, + ACTIONS(1933), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115114,15 +142832,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5027] = 5, + [20972] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1085), 2, + STATE(1491), 2, sym_line_comment, sym_block_comment, - ACTIONS(2573), 7, + ACTIONS(1935), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115130,7 +142848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2575), 39, + ACTIONS(1937), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115170,58 +142888,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5088] = 21, - ACTIONS(29), 1, - anon_sym_LT, + [21033] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1655), 1, - anon_sym_DASH, - ACTIONS(1679), 1, - aux_sym_string_literal_token1, - ACTIONS(1687), 1, - sym__raw_string_literal_start, - ACTIONS(3275), 1, - anon_sym_if, - ACTIONS(3531), 1, - sym_identifier, - ACTIONS(3535), 1, - anon_sym_COLON_COLON, - ACTIONS(3539), 1, - sym_metavariable, - STATE(2632), 1, - sym_scoped_identifier, - STATE(2864), 1, - sym__literal_pattern, - STATE(3495), 1, - sym_bracketed_type, - STATE(3508), 1, - sym_generic_type_with_turbofish, - ACTIONS(1681), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3273), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - STATE(1086), 2, + STATE(1492), 2, sym_line_comment, sym_block_comment, - ACTIONS(1677), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3537), 3, - sym_self, - sym_super, - sym_crate, - STATE(2364), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3533), 20, + ACTIONS(1939), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1941), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115239,117 +142922,45 @@ 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_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - [5181] = 5, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [21094] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1087), 2, + STATE(1493), 2, sym_line_comment, sym_block_comment, - ACTIONS(3543), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3541), 31, + ACTIONS(1943), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [5242] = 21, - ACTIONS(29), 1, anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1655), 1, - anon_sym_DASH, - ACTIONS(1679), 1, - aux_sym_string_literal_token1, - ACTIONS(1687), 1, - sym__raw_string_literal_start, - ACTIONS(3263), 1, - anon_sym_if, - ACTIONS(3535), 1, anon_sym_COLON_COLON, - ACTIONS(3545), 1, - sym_identifier, - ACTIONS(3551), 1, + anon_sym_POUND, sym_metavariable, - STATE(2718), 1, - sym_scoped_identifier, - STATE(2882), 1, - sym__literal_pattern, - STATE(3495), 1, - sym_bracketed_type, - STATE(3508), 1, - sym_generic_type_with_turbofish, - ACTIONS(1681), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3261), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - STATE(1088), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1677), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3549), 3, - sym_self, - sym_super, - sym_crate, - STATE(2364), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3547), 20, + ACTIONS(1945), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115367,302 +142978,153 @@ 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_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, anon_sym_union, - [5335] = 5, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [21155] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1089), 2, + STATE(1494), 2, sym_line_comment, sym_block_comment, - ACTIONS(3555), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3553), 31, + ACTIONS(1947), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [5396] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1090), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3559), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3557), 31, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [5457] = 5, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1949), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [21216] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1091), 2, + STATE(1495), 2, sym_line_comment, sym_block_comment, - ACTIONS(3255), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3257), 31, + ACTIONS(1995), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [5518] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3565), 1, - anon_sym_DASH_GT, - STATE(1092), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3563), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3561), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [5581] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3529), 1, anon_sym_COLON_COLON, - STATE(1093), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3359), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3357), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [5644] = 6, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1997), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [21277] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3529), 1, - anon_sym_COLON_COLON, - STATE(1094), 2, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + STATE(1704), 1, + sym_label, + STATE(1496), 2, sym_line_comment, sym_block_comment, - ACTIONS(3327), 15, + ACTIONS(4042), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -115678,7 +143140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3325), 30, + ACTIONS(4040), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -115706,20 +143168,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [5707] = 6, + [21342] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3571), 1, - anon_sym_DASH_GT, - STATE(1095), 2, + ACTIONS(4044), 1, + anon_sym_else, + STATE(1639), 1, + sym_else_clause, + STATE(1497), 2, sym_line_comment, sym_block_comment, - ACTIONS(3569), 15, + ACTIONS(1253), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -115735,7 +143198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3567), 30, + ACTIONS(1251), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -115765,73 +143228,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [5770] = 6, + [21407] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3577), 1, - anon_sym_DASH_GT, - STATE(1096), 2, + STATE(1498), 2, sym_line_comment, sym_block_comment, - ACTIONS(3575), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3573), 30, + ACTIONS(2249), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [5833] = 5, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2251), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [21468] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1097), 2, + STATE(1499), 2, sym_line_comment, sym_block_comment, - ACTIONS(2535), 7, + ACTIONS(2245), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115839,7 +143300,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2537), 39, + ACTIONS(2247), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115879,73 +143340,127 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [5894] = 7, + [21529] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3579), 1, - anon_sym_else, - STATE(1387), 1, - sym_else_clause, - STATE(1098), 2, + STATE(1500), 2, sym_line_comment, sym_block_comment, - ACTIONS(1253), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, + ACTIONS(2081), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1251), 29, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2083), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [21590] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1501), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2217), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - [5959] = 5, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2219), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [21651] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1099), 2, + STATE(1502), 2, sym_line_comment, sym_block_comment, - ACTIONS(2641), 7, + ACTIONS(2089), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115953,7 +143468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2643), 39, + ACTIONS(2091), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115993,15 +143508,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6020] = 5, + [21712] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1100), 2, + STATE(1503), 2, sym_line_comment, sym_block_comment, - ACTIONS(2645), 7, + ACTIONS(2093), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116009,7 +143524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2647), 39, + ACTIONS(2095), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116049,15 +143564,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6081] = 5, + [21773] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1101), 2, + STATE(1504), 2, sym_line_comment, sym_block_comment, - ACTIONS(2821), 7, + ACTIONS(2117), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116065,7 +143580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2823), 39, + ACTIONS(2119), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116105,15 +143620,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6142] = 5, + [21834] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1102), 2, + STATE(1505), 2, sym_line_comment, sym_block_comment, - ACTIONS(2885), 7, + ACTIONS(2121), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116121,7 +143636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2887), 39, + ACTIONS(2123), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116161,15 +143676,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6203] = 5, + [21895] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1103), 2, + STATE(1506), 2, sym_line_comment, sym_block_comment, - ACTIONS(2889), 7, + ACTIONS(2125), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116177,7 +143692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2891), 39, + ACTIONS(2127), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116217,15 +143732,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6264] = 5, + [21956] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1104), 2, + STATE(1507), 2, sym_line_comment, sym_block_comment, - ACTIONS(2909), 7, + ACTIONS(2133), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116233,7 +143748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2911), 39, + ACTIONS(2135), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116273,15 +143788,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6325] = 5, + [22017] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1105), 2, + STATE(1508), 2, sym_line_comment, sym_block_comment, - ACTIONS(2945), 7, + ACTIONS(2141), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116289,7 +143804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2947), 39, + ACTIONS(2143), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116329,15 +143844,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6386] = 5, + [22078] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1106), 2, + STATE(1509), 2, sym_line_comment, sym_block_comment, - ACTIONS(2131), 7, + ACTIONS(2145), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116345,7 +143860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2133), 39, + ACTIONS(2147), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116385,15 +143900,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6447] = 5, + [22139] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1107), 2, + STATE(1510), 2, sym_line_comment, sym_block_comment, - ACTIONS(2159), 7, + ACTIONS(2537), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116401,7 +143916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2161), 39, + ACTIONS(2539), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116441,15 +143956,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6508] = 5, + [22200] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1108), 2, + STATE(1511), 2, sym_line_comment, sym_block_comment, - ACTIONS(2183), 7, + ACTIONS(2129), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116457,7 +143972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2185), 39, + ACTIONS(2131), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116497,15 +144012,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6569] = 5, + [22261] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1109), 2, + STATE(1512), 2, sym_line_comment, sym_block_comment, - ACTIONS(2605), 7, + ACTIONS(2533), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116513,7 +144028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2607), 39, + ACTIONS(2535), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116553,15 +144068,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6630] = 5, + [22322] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1110), 2, + STATE(1513), 2, sym_line_comment, sym_block_comment, - ACTIONS(2625), 7, + ACTIONS(2529), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116569,7 +144084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2627), 39, + ACTIONS(2531), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116609,15 +144124,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6691] = 5, + [22383] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1111), 2, + STATE(1514), 2, sym_line_comment, sym_block_comment, - ACTIONS(2717), 7, + ACTIONS(2101), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116625,7 +144140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2719), 39, + ACTIONS(2103), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116665,23 +144180,29 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6752] = 5, + [22444] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1112), 2, + STATE(1515), 2, sym_line_comment, sym_block_comment, - ACTIONS(2725), 7, + ACTIONS(4048), 13, anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_EQ, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_POUND, + anon_sym_SQUOTE, sym_metavariable, - ACTIONS(2727), 39, + ACTIONS(4046), 33, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116702,34 +144223,28 @@ 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_gen, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_use, + anon_sym_where, anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [6813] = 5, + [22505] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1113), 2, + STATE(1516), 2, sym_line_comment, sym_block_comment, - ACTIONS(1899), 7, + ACTIONS(2177), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116737,7 +144252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1901), 39, + ACTIONS(2179), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116777,15 +144292,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6874] = 5, + [22566] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1114), 2, + STATE(1517), 2, sym_line_comment, sym_block_comment, - ACTIONS(1983), 7, + ACTIONS(1979), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116793,7 +144308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1985), 39, + ACTIONS(1981), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116833,298 +144348,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6935] = 5, + [22627] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1115), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3343), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3341), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - anon_sym_LT2, - [6996] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1116), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3583), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3581), 31, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [7057] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3589), 1, - anon_sym_DASH_GT, - STATE(1117), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3587), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3585), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [7120] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3595), 1, - anon_sym_DASH_GT, - STATE(1118), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3593), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3591), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [7183] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3601), 1, - anon_sym_DASH_GT, - STATE(1119), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3599), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3597), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [7246] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1120), 2, + STATE(1518), 2, sym_line_comment, sym_block_comment, - ACTIONS(2111), 7, + ACTIONS(1951), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117132,7 +144364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2113), 39, + ACTIONS(1953), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117172,15 +144404,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7307] = 5, + [22688] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1121), 2, + STATE(1519), 2, sym_line_comment, sym_block_comment, - ACTIONS(2123), 7, + ACTIONS(2181), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117188,7 +144420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2125), 39, + ACTIONS(2183), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117228,15 +144460,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7368] = 5, + [22749] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1122), 2, + STATE(1520), 2, sym_line_comment, sym_block_comment, - ACTIONS(2127), 7, + ACTIONS(2213), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117244,7 +144476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2129), 39, + ACTIONS(2215), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117284,15 +144516,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7429] = 5, + [22810] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1123), 2, + STATE(1521), 2, sym_line_comment, sym_block_comment, - ACTIONS(2135), 7, + ACTIONS(2221), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117300,7 +144532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2137), 39, + ACTIONS(2223), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117340,15 +144572,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7490] = 5, + [22871] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1124), 2, + STATE(1522), 2, sym_line_comment, sym_block_comment, - ACTIONS(2139), 7, + ACTIONS(1927), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117356,7 +144588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2141), 39, + ACTIONS(1929), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117396,15 +144628,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7551] = 5, + [22932] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1125), 2, + STATE(1523), 2, sym_line_comment, sym_block_comment, - ACTIONS(2151), 7, + ACTIONS(1919), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117412,7 +144644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2153), 39, + ACTIONS(1921), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117452,15 +144684,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7612] = 5, + [22993] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1126), 2, + STATE(1524), 2, sym_line_comment, sym_block_comment, - ACTIONS(2163), 7, + ACTIONS(2229), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117468,7 +144700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2165), 39, + ACTIONS(2231), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117508,15 +144740,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7673] = 5, + [23054] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1127), 2, + STATE(1525), 2, sym_line_comment, sym_block_comment, - ACTIONS(2171), 7, + ACTIONS(2185), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117524,7 +144756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2173), 39, + ACTIONS(2187), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117564,15 +144796,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7734] = 5, + [23115] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1128), 2, + STATE(1526), 2, sym_line_comment, sym_block_comment, - ACTIONS(2175), 7, + ACTIONS(1851), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117580,7 +144812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2177), 39, + ACTIONS(1853), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117620,79 +144852,31 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7795] = 5, + [23176] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1129), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2179), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, + ACTIONS(4050), 1, anon_sym_POUND, - sym_metavariable, - ACTIONS(2181), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [7856] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1130), 2, + STATE(1747), 1, + sym_attribute_item, + STATE(1527), 3, sym_line_comment, sym_block_comment, - ACTIONS(2191), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + aux_sym_mod_item_repeat1, + ACTIONS(771), 10, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_POUND, + anon_sym_SQUOTE, sym_metavariable, - ACTIONS(2193), 39, + ACTIONS(3685), 33, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117713,34 +144897,28 @@ 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_gen, anon_sym_impl, - anon_sym_let, - anon_sym_mod, anon_sym_pub, - 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, - [7917] = 5, + [23241] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1131), 2, + STATE(1528), 2, sym_line_comment, sym_block_comment, - ACTIONS(2195), 7, + ACTIONS(2325), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117748,7 +144926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2197), 39, + ACTIONS(2327), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117788,15 +144966,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7978] = 5, + [23302] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1132), 2, + STATE(1529), 2, sym_line_comment, sym_block_comment, - ACTIONS(2203), 7, + ACTIONS(2381), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117804,7 +144982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2205), 39, + ACTIONS(2383), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117844,23 +145022,29 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8039] = 5, + [23363] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1133), 2, + STATE(1530), 2, sym_line_comment, sym_block_comment, - ACTIONS(2211), 7, + ACTIONS(4055), 13, anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_EQ, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_POUND, + anon_sym_SQUOTE, sym_metavariable, - ACTIONS(2213), 39, + ACTIONS(4053), 33, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117881,34 +145065,28 @@ 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_gen, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_use, + anon_sym_where, anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [8100] = 5, + [23424] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1134), 2, + STATE(1531), 2, sym_line_comment, sym_block_comment, - ACTIONS(2251), 7, + ACTIONS(1891), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117916,7 +145094,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2253), 39, + ACTIONS(1893), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117956,15 +145134,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8161] = 5, + [23485] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1135), 2, + STATE(1532), 2, sym_line_comment, sym_block_comment, - ACTIONS(2255), 7, + ACTIONS(1955), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117972,7 +145150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2257), 39, + ACTIONS(1957), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118012,127 +145190,72 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8222] = 5, + [23546] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1136), 2, + ACTIONS(4061), 1, + anon_sym_DASH_GT, + STATE(1533), 2, sym_line_comment, sym_block_comment, - ACTIONS(2259), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(4059), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2261), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [8283] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1137), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2263), 7, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4057), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2265), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [8344] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [23609] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1138), 2, + STATE(1534), 2, sym_line_comment, sym_block_comment, - ACTIONS(2957), 7, + ACTIONS(2105), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118140,7 +145263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2959), 39, + ACTIONS(2107), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118180,15 +145303,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8405] = 5, + [23670] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1139), 2, + STATE(1535), 2, sym_line_comment, sym_block_comment, - ACTIONS(1699), 7, + ACTIONS(2109), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118196,7 +145319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1701), 39, + ACTIONS(2111), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118236,15 +145359,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8466] = 5, + [23731] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1140), 2, + STATE(1536), 2, sym_line_comment, sym_block_comment, - ACTIONS(2271), 7, + ACTIONS(2329), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118252,7 +145375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2273), 39, + ACTIONS(2331), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118292,15 +145415,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8527] = 5, + [23792] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1141), 2, + STATE(1537), 2, sym_line_comment, sym_block_comment, - ACTIONS(2275), 7, + ACTIONS(2525), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118308,7 +145431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2277), 39, + ACTIONS(2527), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118348,15 +145471,72 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8588] = 5, + [23853] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1142), 2, + ACTIONS(3958), 1, + anon_sym_COLON_COLON, + STATE(1538), 2, sym_line_comment, sym_block_comment, - ACTIONS(2283), 7, + ACTIONS(3785), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3783), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [23916] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1539), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2361), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118364,7 +145544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2285), 39, + ACTIONS(2363), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118404,15 +145584,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8649] = 5, + [23977] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1143), 2, + STATE(1540), 2, sym_line_comment, sym_block_comment, - ACTIONS(2287), 7, + ACTIONS(2373), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118420,7 +145600,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2289), 39, + ACTIONS(2375), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118460,15 +145640,71 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8710] = 5, + [24038] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1144), 2, + STATE(1541), 2, sym_line_comment, sym_block_comment, - ACTIONS(2291), 7, + ACTIONS(4065), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4063), 31, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [24099] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1542), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2377), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118476,7 +145712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2293), 39, + ACTIONS(2379), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118516,15 +145752,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8771] = 5, + [24160] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1145), 2, + STATE(1543), 2, sym_line_comment, sym_block_comment, - ACTIONS(2295), 7, + ACTIONS(2521), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118532,7 +145768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2297), 39, + ACTIONS(2523), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118572,15 +145808,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8832] = 5, + [24221] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1146), 2, + STATE(1544), 2, sym_line_comment, sym_block_comment, - ACTIONS(2299), 7, + ACTIONS(2385), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118588,7 +145824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2301), 39, + ACTIONS(2387), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118628,12 +145864,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8893] = 5, + [24282] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1147), 2, + STATE(1545), 2, sym_line_comment, sym_block_comment, ACTIONS(2389), 7, @@ -118684,15 +145920,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8954] = 5, + [24343] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1148), 2, + STATE(1546), 2, sym_line_comment, sym_block_comment, - ACTIONS(2393), 7, + ACTIONS(2517), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118700,7 +145936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2395), 39, + ACTIONS(2519), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118740,15 +145976,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9015] = 5, + [24404] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1149), 2, + STATE(1547), 2, sym_line_comment, sym_block_comment, - ACTIONS(2397), 7, + ACTIONS(2513), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118756,7 +145992,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2399), 39, + ACTIONS(2515), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118796,15 +146032,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9076] = 5, + [24465] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1150), 2, + STATE(1548), 2, sym_line_comment, sym_block_comment, - ACTIONS(2401), 7, + ACTIONS(2509), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118812,7 +146048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2403), 39, + ACTIONS(2511), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118852,15 +146088,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9137] = 5, + [24526] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1151), 2, + STATE(1549), 2, sym_line_comment, sym_block_comment, - ACTIONS(2405), 7, + ACTIONS(2501), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118868,7 +146104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2407), 39, + ACTIONS(2503), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118908,15 +146144,71 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9198] = 5, + [24587] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1152), 2, + STATE(1550), 2, sym_line_comment, sym_block_comment, - ACTIONS(2409), 7, + ACTIONS(4069), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4067), 31, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [24648] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1551), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2497), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118924,7 +146216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2411), 39, + ACTIONS(2499), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118964,15 +146256,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9259] = 5, + [24709] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1153), 2, + STATE(1552), 2, sym_line_comment, sym_block_comment, - ACTIONS(2413), 7, + ACTIONS(2393), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118980,7 +146272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2415), 39, + ACTIONS(2395), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119020,15 +146312,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9320] = 5, + [24770] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1154), 2, + STATE(1553), 2, sym_line_comment, sym_block_comment, - ACTIONS(2425), 7, + ACTIONS(2493), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119036,7 +146328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2427), 39, + ACTIONS(2495), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119076,15 +146368,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9381] = 5, + [24831] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1155), 2, + STATE(1554), 2, sym_line_comment, sym_block_comment, - ACTIONS(2445), 7, + ACTIONS(2805), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119092,7 +146384,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2447), 39, + ACTIONS(2807), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [24892] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1555), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2873), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2875), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119132,77 +146480,24 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9442] = 5, + [24953] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1156), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3605), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3603), 31, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(4071), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [9503] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1157), 2, + STATE(1556), 2, sym_line_comment, sym_block_comment, - ACTIONS(3609), 15, + ACTIONS(3771), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -119212,13 +146507,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3607), 31, + ACTIONS(3773), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -119240,133 +146534,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [9564] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3529), 1, anon_sym_COLON_COLON, - STATE(1158), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3339), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3337), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [9627] = 6, + [25016] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3615), 1, - anon_sym_DASH_GT, - STATE(1159), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3613), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3611), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [9690] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1160), 2, + STATE(1557), 2, sym_line_comment, sym_block_comment, - ACTIONS(2527), 7, + ACTIONS(2397), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119374,7 +146553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2529), 39, + ACTIONS(2399), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119414,15 +146593,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9751] = 5, + [25077] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1161), 2, + STATE(1558), 2, sym_line_comment, sym_block_comment, - ACTIONS(2531), 7, + ACTIONS(2401), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119430,7 +146609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2533), 39, + ACTIONS(2403), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119470,15 +146649,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9812] = 5, + [25138] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1162), 2, + STATE(1559), 2, sym_line_comment, sym_block_comment, - ACTIONS(2543), 7, + ACTIONS(2945), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119486,7 +146665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2545), 39, + ACTIONS(2947), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119526,15 +146705,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9873] = 5, + [25199] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1163), 2, + STATE(1560), 2, sym_line_comment, sym_block_comment, - ACTIONS(2553), 7, + ACTIONS(2405), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119542,7 +146721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2555), 39, + ACTIONS(2407), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119582,15 +146761,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9934] = 5, + [25260] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1164), 2, + STATE(1561), 2, sym_line_comment, sym_block_comment, - ACTIONS(2557), 7, + ACTIONS(2409), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119598,7 +146777,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2559), 39, + ACTIONS(2411), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119638,15 +146817,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9995] = 5, + [25321] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1165), 2, + STATE(1562), 2, sym_line_comment, sym_block_comment, - ACTIONS(2561), 7, + ACTIONS(2957), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119654,7 +146833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2563), 39, + ACTIONS(2959), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119694,15 +146873,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10056] = 5, + [25382] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1166), 2, + STATE(1563), 2, sym_line_comment, sym_block_comment, - ACTIONS(2565), 7, + ACTIONS(3017), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119710,7 +146889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2567), 39, + ACTIONS(3019), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119750,15 +146929,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10117] = 5, + [25443] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1167), 2, + STATE(1564), 2, sym_line_comment, sym_block_comment, - ACTIONS(2569), 7, + ACTIONS(2413), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119766,7 +146945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2571), 39, + ACTIONS(2415), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119806,23 +146985,33 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10178] = 5, + [25504] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1168), 2, + ACTIONS(4077), 1, + anon_sym_RBRACE, + STATE(1565), 2, sym_line_comment, sym_block_comment, - ACTIONS(2589), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(4075), 15, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, + anon_sym_DOT_DOT, anon_sym_COLON_COLON, anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(2591), 39, + ACTIONS(4073), 30, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119840,37 +147029,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, + anon_sym__, anon_sym_const, anon_sym_default, - anon_sym_enum, - anon_sym_fn, anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [10239] = 5, + [25567] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1169), 2, + STATE(1566), 2, sym_line_comment, sym_block_comment, - ACTIONS(2593), 7, + ACTIONS(2417), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119878,7 +147058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2595), 39, + ACTIONS(2419), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119918,15 +147098,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10300] = 5, + [25628] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1170), 2, + STATE(1567), 2, sym_line_comment, sym_block_comment, - ACTIONS(2597), 7, + ACTIONS(3085), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119934,7 +147114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2599), 39, + ACTIONS(3087), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119974,15 +147154,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10361] = 5, + [25689] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1171), 2, + STATE(1568), 2, sym_line_comment, sym_block_comment, - ACTIONS(2609), 7, + ACTIONS(3117), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119990,7 +147170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2611), 39, + ACTIONS(3119), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120030,15 +147210,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10422] = 5, + [25750] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1172), 2, + STATE(1569), 2, sym_line_comment, sym_block_comment, - ACTIONS(2613), 7, + ACTIONS(3165), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120046,7 +147226,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2615), 39, + ACTIONS(3167), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120086,15 +147266,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10483] = 5, + [25811] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1173), 2, + STATE(1570), 2, sym_line_comment, sym_block_comment, - ACTIONS(2617), 7, + ACTIONS(3177), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120102,7 +147282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2619), 39, + ACTIONS(3179), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120142,15 +147322,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10544] = 5, + [25872] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1174), 2, + STATE(1571), 2, sym_line_comment, sym_block_comment, - ACTIONS(2621), 7, + ACTIONS(3181), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120158,7 +147338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2623), 39, + ACTIONS(3183), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120198,15 +147378,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10605] = 5, + [25933] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1175), 2, + STATE(1572), 2, sym_line_comment, sym_block_comment, - ACTIONS(2633), 7, + ACTIONS(2421), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120214,7 +147394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2635), 39, + ACTIONS(2423), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120254,15 +147434,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10666] = 5, + [25994] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1176), 2, + STATE(1573), 2, sym_line_comment, sym_block_comment, - ACTIONS(2637), 7, + ACTIONS(3185), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120270,7 +147450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2639), 39, + ACTIONS(3187), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120310,15 +147490,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10727] = 5, + [26055] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1177), 2, + STATE(1574), 2, sym_line_comment, sym_block_comment, - ACTIONS(2721), 7, + ACTIONS(3189), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120326,7 +147506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2723), 39, + ACTIONS(3191), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120366,15 +147546,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10788] = 5, + [26116] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1178), 2, + STATE(1575), 2, sym_line_comment, sym_block_comment, - ACTIONS(2749), 7, + ACTIONS(2429), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120382,7 +147562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2751), 39, + ACTIONS(2431), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120422,15 +147602,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10849] = 5, + [26177] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1179), 2, + STATE(1576), 2, sym_line_comment, sym_block_comment, - ACTIONS(2753), 7, + ACTIONS(3193), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120438,7 +147618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2755), 39, + ACTIONS(3195), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120478,15 +147658,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10910] = 5, + [26238] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1180), 2, + STATE(1577), 2, sym_line_comment, sym_block_comment, - ACTIONS(2757), 7, + ACTIONS(3261), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120494,7 +147674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2759), 39, + ACTIONS(3263), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120534,15 +147714,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10971] = 5, + [26299] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1181), 2, + STATE(1578), 2, sym_line_comment, sym_block_comment, - ACTIONS(2761), 7, + ACTIONS(3329), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120550,7 +147730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2763), 39, + ACTIONS(3331), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120590,15 +147770,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11032] = 5, + [26360] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1182), 2, + STATE(1579), 2, sym_line_comment, sym_block_comment, - ACTIONS(2765), 7, + ACTIONS(3337), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120606,7 +147786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2767), 39, + ACTIONS(3339), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120646,15 +147826,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11093] = 5, + [26421] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1183), 2, + STATE(1580), 2, sym_line_comment, sym_block_comment, - ACTIONS(2769), 7, + ACTIONS(3341), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120662,7 +147842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2771), 39, + ACTIONS(3343), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120702,15 +147882,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11154] = 5, + [26482] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1184), 2, + STATE(1581), 2, sym_line_comment, sym_block_comment, - ACTIONS(2773), 7, + ACTIONS(3365), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120718,7 +147898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2775), 39, + ACTIONS(3367), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120758,15 +147938,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11215] = 5, + [26543] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1185), 2, + STATE(1582), 2, sym_line_comment, sym_block_comment, - ACTIONS(2777), 7, + ACTIONS(3373), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120774,7 +147954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2779), 39, + ACTIONS(3375), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120814,15 +147994,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11276] = 5, + [26604] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1186), 2, + STATE(1583), 2, sym_line_comment, sym_block_comment, - ACTIONS(2781), 7, + ACTIONS(3361), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120830,7 +148010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2783), 39, + ACTIONS(3363), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120870,15 +148050,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11337] = 5, + [26665] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1187), 2, + STATE(1584), 2, sym_line_comment, sym_block_comment, - ACTIONS(2785), 7, + ACTIONS(3353), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120886,7 +148066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2787), 39, + ACTIONS(3355), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120926,15 +148106,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11398] = 5, + [26726] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1188), 2, + STATE(1585), 2, sym_line_comment, sym_block_comment, - ACTIONS(2789), 7, + ACTIONS(3349), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120942,7 +148122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2791), 39, + ACTIONS(3351), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120982,15 +148162,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11459] = 5, + [26787] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1189), 2, + STATE(1586), 2, sym_line_comment, sym_block_comment, - ACTIONS(2793), 7, + ACTIONS(3333), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -120998,7 +148178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2795), 39, + ACTIONS(3335), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121038,15 +148218,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11520] = 5, + [26848] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1190), 2, + STATE(1587), 2, sym_line_comment, sym_block_comment, - ACTIONS(2797), 7, + ACTIONS(3325), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121054,7 +148234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2799), 39, + ACTIONS(3327), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121094,15 +148274,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11581] = 5, + [26909] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1191), 2, + STATE(1588), 2, sym_line_comment, sym_block_comment, - ACTIONS(2801), 7, + ACTIONS(3321), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121110,7 +148290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2803), 39, + ACTIONS(3323), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121150,15 +148330,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11642] = 5, + [26970] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1192), 2, + STATE(1589), 2, sym_line_comment, sym_block_comment, - ACTIONS(2805), 7, + ACTIONS(2433), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121166,7 +148346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2807), 39, + ACTIONS(2435), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121206,15 +148386,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11703] = 5, + [27031] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1193), 2, + STATE(1590), 2, sym_line_comment, sym_block_comment, - ACTIONS(2809), 7, + ACTIONS(3297), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121222,7 +148402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2811), 39, + ACTIONS(3299), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121262,15 +148442,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11764] = 5, + [27092] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1194), 2, + STATE(1591), 2, sym_line_comment, sym_block_comment, - ACTIONS(2813), 7, + ACTIONS(1847), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121278,7 +148458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2815), 39, + ACTIONS(1849), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121318,15 +148498,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11825] = 5, + [27153] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1195), 2, + STATE(1592), 2, sym_line_comment, sym_block_comment, - ACTIONS(2817), 7, + ACTIONS(2437), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121334,7 +148514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2819), 39, + ACTIONS(2439), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121374,15 +148554,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11886] = 5, + [27214] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1196), 2, + STATE(1593), 2, sym_line_comment, sym_block_comment, - ACTIONS(2825), 7, + ACTIONS(2441), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121390,7 +148570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2827), 39, + ACTIONS(2443), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121430,15 +148610,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11947] = 5, + [27275] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1197), 2, + STATE(1594), 2, sym_line_comment, sym_block_comment, - ACTIONS(2829), 7, + ACTIONS(3289), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121446,7 +148626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2831), 39, + ACTIONS(3291), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121486,15 +148666,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12008] = 5, + [27336] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1198), 2, + STATE(1595), 2, sym_line_comment, sym_block_comment, - ACTIONS(2833), 7, + ACTIONS(3281), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121502,7 +148682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2835), 39, + ACTIONS(3283), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121542,127 +148722,71 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12069] = 5, + [27397] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1199), 2, + STATE(1596), 2, sym_line_comment, sym_block_comment, - ACTIONS(2837), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(3769), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2839), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [12130] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1200), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2841), 7, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3767), 29, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2843), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [12191] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + anon_sym_LT2, + [27458] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1201), 2, + STATE(1597), 2, sym_line_comment, sym_block_comment, - ACTIONS(2845), 7, + ACTIONS(2445), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121670,7 +148794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2847), 39, + ACTIONS(2447), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121710,15 +148834,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12252] = 5, + [27519] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1202), 2, + STATE(1598), 2, sym_line_comment, sym_block_comment, - ACTIONS(2849), 7, + ACTIONS(2453), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121726,7 +148850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2851), 39, + ACTIONS(2455), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121766,15 +148890,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12313] = 5, + [27580] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1203), 2, + STATE(1599), 2, sym_line_comment, sym_block_comment, - ACTIONS(2853), 7, + ACTIONS(3121), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121782,7 +148906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2855), 39, + ACTIONS(3123), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121822,15 +148946,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12374] = 5, + [27641] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1204), 2, + STATE(1600), 2, sym_line_comment, sym_block_comment, - ACTIONS(2861), 7, + ACTIONS(3113), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121838,7 +148962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2863), 39, + ACTIONS(3115), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121878,15 +149002,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12435] = 5, + [27702] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1205), 2, + STATE(1601), 2, sym_line_comment, sym_block_comment, - ACTIONS(2865), 7, + ACTIONS(3109), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121894,7 +149018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2867), 39, + ACTIONS(3111), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121934,15 +149058,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12496] = 5, + [27763] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1206), 2, + STATE(1602), 2, sym_line_comment, sym_block_comment, - ACTIONS(2869), 7, + ACTIONS(3097), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121950,7 +149074,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2871), 39, + ACTIONS(3099), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121990,15 +149114,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12557] = 5, + [27824] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1207), 2, + STATE(1603), 2, sym_line_comment, sym_block_comment, - ACTIONS(2877), 7, + ACTIONS(3093), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122006,7 +149130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2879), 39, + ACTIONS(3095), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122046,15 +149170,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12618] = 5, + [27885] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1208), 2, + STATE(1604), 2, sym_line_comment, sym_block_comment, - ACTIONS(2905), 7, + ACTIONS(2489), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122062,7 +149186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2907), 39, + ACTIONS(2491), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122102,15 +149226,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12679] = 5, + [27946] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1209), 2, + STATE(1605), 2, sym_line_comment, sym_block_comment, - ACTIONS(2913), 7, + ACTIONS(2485), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122118,7 +149242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2915), 39, + ACTIONS(2487), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122158,135 +149282,85 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12740] = 5, + [28007] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1210), 2, + STATE(1606), 2, sym_line_comment, sym_block_comment, - ACTIONS(3619), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3617), 31, + ACTIONS(2457), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + anon_sym_macro_rules_BANG, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, + anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [12801] = 5, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2459), 39, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_i128, + anon_sym_isize, + anon_sym_usize, + anon_sym_f32, + anon_sym_f64, + anon_sym_bool, + anon_sym_str, + anon_sym_char, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_gen, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [28068] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1211), 2, + STATE(1607), 2, sym_line_comment, sym_block_comment, - ACTIONS(3623), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3621), 31, + ACTIONS(4081), 13, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_STAR, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [12862] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1212), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2953), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_EQ, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_POUND, + anon_sym_SQUOTE, sym_metavariable, - ACTIONS(2955), 39, + ACTIONS(4079), 33, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122307,34 +149381,28 @@ 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_gen, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_use, + anon_sym_where, anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [12923] = 5, + [28129] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1213), 2, + STATE(1608), 2, sym_line_comment, sym_block_comment, - ACTIONS(2267), 7, + ACTIONS(2977), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122342,7 +149410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2269), 39, + ACTIONS(2979), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122382,23 +149450,29 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12984] = 5, + [28190] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1214), 2, + STATE(1609), 2, sym_line_comment, sym_block_comment, - ACTIONS(2155), 7, + ACTIONS(4085), 13, anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_EQ, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_POUND, + anon_sym_SQUOTE, sym_metavariable, - ACTIONS(2157), 39, + ACTIONS(4083), 33, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122419,34 +149493,28 @@ 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_gen, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, anon_sym_unsafe, - anon_sym_use, + anon_sym_where, anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [13045] = 5, + [28251] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1215), 2, + STATE(1610), 2, sym_line_comment, sym_block_comment, - ACTIONS(2741), 7, + ACTIONS(2965), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122454,7 +149522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2743), 39, + ACTIONS(2967), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122494,15 +149562,71 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13106] = 5, + [28312] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1611), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4089), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4087), 31, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [28373] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1216), 2, + STATE(1612), 2, sym_line_comment, sym_block_comment, - ACTIONS(2745), 7, + ACTIONS(2461), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122510,7 +149634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2747), 39, + ACTIONS(2463), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122550,15 +149674,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13167] = 5, + [28434] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1217), 2, + STATE(1613), 2, sym_line_comment, sym_block_comment, - ACTIONS(2873), 7, + ACTIONS(2953), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122566,7 +149690,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2875), 39, + ACTIONS(2955), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122606,15 +149730,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13228] = 5, + [28495] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1218), 2, + STATE(1614), 2, sym_line_comment, sym_block_comment, - ACTIONS(2881), 7, + ACTIONS(2949), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122622,7 +149746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2883), 39, + ACTIONS(2951), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122662,15 +149786,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13289] = 5, + [28556] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1219), 2, + STATE(1615), 2, sym_line_comment, sym_block_comment, - ACTIONS(1743), 7, + ACTIONS(2885), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122678,7 +149802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1745), 39, + ACTIONS(2887), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122718,15 +149842,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13350] = 5, + [28617] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1220), 2, + STATE(1616), 2, sym_line_comment, sym_block_comment, - ACTIONS(2075), 7, + ACTIONS(2465), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122734,7 +149858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2077), 39, + ACTIONS(2467), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122774,15 +149898,129 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13411] = 5, + [28678] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1221), 2, + ACTIONS(4095), 1, + anon_sym_DASH_GT, + STATE(1617), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4093), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4091), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [28741] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4101), 1, + anon_sym_DASH_GT, + STATE(1618), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4099), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4097), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [28804] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1619), 2, sym_line_comment, sym_block_comment, - ACTIONS(2079), 7, + ACTIONS(2481), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122790,7 +150028,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2081), 39, + ACTIONS(2483), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122830,15 +150068,72 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13472] = 5, + [28865] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1222), 2, + ACTIONS(4107), 1, + anon_sym_DASH_GT, + STATE(1620), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4105), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4103), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [28928] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1621), 2, sym_line_comment, sym_block_comment, - ACTIONS(2083), 7, + ACTIONS(2477), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122846,7 +150141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2085), 39, + ACTIONS(2479), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122886,15 +150181,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13533] = 5, + [28989] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1223), 2, + STATE(1622), 2, sym_line_comment, sym_block_comment, - ACTIONS(2087), 7, + ACTIONS(2469), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122902,7 +150197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2089), 39, + ACTIONS(2471), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122942,79 +150237,338 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [13594] = 5, + [29050] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1224), 2, + ACTIONS(4111), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + STATE(1623), 2, sym_line_comment, sym_block_comment, - ACTIONS(2091), 7, + ACTIONS(4113), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4109), 28, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + anon_sym_else, + [29112] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1624), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4117), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4115), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [29172] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1625), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4121), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4119), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [29232] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1626), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4125), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4123), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [29292] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1627), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1451), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1449), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [29352] = 23, + ACTIONS(29), 1, anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1599), 1, + anon_sym_LBRACK, + ACTIONS(3844), 1, + anon_sym_LPAREN, + ACTIONS(3848), 1, anon_sym_COLON_COLON, - anon_sym_POUND, + ACTIONS(3856), 1, sym_metavariable, - ACTIONS(2093), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, + ACTIONS(3858), 1, + sym_identifier, + ACTIONS(3862), 1, + anon_sym_STAR, + ACTIONS(3866), 1, + anon_sym_AMP, + ACTIONS(3868), 1, + anon_sym_SQUOTE, + ACTIONS(3870), 1, + anon_sym_for, + STATE(2940), 1, + sym_where_predicate, + STATE(3045), 1, + sym_scoped_type_identifier, + STATE(3290), 1, + sym_generic_type, + STATE(3799), 1, + sym_scoped_identifier, + STATE(3803), 1, + sym_generic_type_with_turbofish, + STATE(3975), 1, + sym_bracketed_type, + STATE(1628), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3852), 3, anon_sym_default, - anon_sym_enum, - anon_sym_fn, anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_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(3854), 3, sym_self, sym_super, sym_crate, - [13655] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1225), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2095), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2097), 39, + STATE(3765), 6, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_array_type, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3864), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123032,325 +150586,526 @@ 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_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [13716] = 5, + [29448] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1226), 2, + STATE(1629), 2, sym_line_comment, sym_block_comment, - ACTIONS(2103), 7, + ACTIONS(1045), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1047), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [29508] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1630), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4129), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2105), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [13777] = 5, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4127), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [29568] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1227), 2, + STATE(1631), 2, sym_line_comment, sym_block_comment, - ACTIONS(2107), 7, + ACTIONS(1451), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1449), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [29628] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1632), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3777), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2109), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [13838] = 5, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3775), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [29688] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1228), 2, + STATE(1633), 2, sym_line_comment, sym_block_comment, - ACTIONS(2115), 7, + ACTIONS(4133), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4131), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [29748] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1634), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4137), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4135), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [29808] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1635), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4141), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2117), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [13899] = 5, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4139), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [29868] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1229), 2, + STATE(1636), 2, sym_line_comment, sym_block_comment, - ACTIONS(2119), 7, + ACTIONS(987), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(989), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2121), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [13960] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [29928] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1230), 2, + STATE(1637), 2, sym_line_comment, sym_block_comment, - ACTIONS(3627), 13, + ACTIONS(1451), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1449), 30, anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_STAR, + anon_sym_RBRACE, anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, - anon_sym_LT, - anon_sym_COLON_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(3625), 33, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_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_gen, - 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, - [14021] = 5, + anon_sym_as, + anon_sym_else, + [29988] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1231), 2, + STATE(1638), 2, sym_line_comment, sym_block_comment, - ACTIONS(2147), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(4075), 15, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, + anon_sym_DOT_DOT, anon_sym_COLON_COLON, anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(2149), 39, + ACTIONS(4073), 30, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123368,269 +151123,350 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, + anon_sym__, anon_sym_const, anon_sym_default, - anon_sym_enum, - anon_sym_fn, anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [14082] = 5, + [30048] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1232), 2, + STATE(1639), 2, sym_line_comment, sym_block_comment, - ACTIONS(2167), 7, + ACTIONS(1367), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1365), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2169), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [14143] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [30108] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1233), 2, + STATE(1640), 2, sym_line_comment, sym_block_comment, - ACTIONS(2207), 7, + ACTIONS(4145), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4143), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2209), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [14204] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [30168] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1234), 2, + STATE(1641), 2, sym_line_comment, sym_block_comment, - ACTIONS(2215), 7, + ACTIONS(4149), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4147), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [30228] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1642), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4153), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2217), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [14265] = 5, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4151), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [30288] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1235), 2, + STATE(1643), 2, sym_line_comment, sym_block_comment, - ACTIONS(2219), 7, + ACTIONS(4157), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4155), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [30348] = 23, + ACTIONS(29), 1, anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1599), 1, + anon_sym_LBRACK, + ACTIONS(3844), 1, + anon_sym_LPAREN, + ACTIONS(3848), 1, anon_sym_COLON_COLON, - anon_sym_POUND, + ACTIONS(3856), 1, sym_metavariable, - ACTIONS(2221), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, + ACTIONS(3858), 1, + sym_identifier, + ACTIONS(3862), 1, + anon_sym_STAR, + ACTIONS(3866), 1, + anon_sym_AMP, + ACTIONS(3868), 1, + anon_sym_SQUOTE, + ACTIONS(3870), 1, + anon_sym_for, + STATE(2776), 1, + sym_where_predicate, + STATE(3045), 1, + sym_scoped_type_identifier, + STATE(3290), 1, + sym_generic_type, + STATE(3799), 1, + sym_scoped_identifier, + STATE(3803), 1, + sym_generic_type_with_turbofish, + STATE(3975), 1, + sym_bracketed_type, + STATE(1644), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3852), 3, anon_sym_default, - anon_sym_enum, - anon_sym_fn, anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_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(3854), 3, sym_self, sym_super, sym_crate, - [14326] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1236), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2223), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2225), 39, + STATE(3765), 6, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_array_type, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3864), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123648,269 +151484,254 @@ 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_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [14387] = 5, + [30444] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1237), 2, + STATE(1645), 2, sym_line_comment, sym_block_comment, - ACTIONS(2227), 7, + ACTIONS(1435), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1433), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2229), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [14448] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [30504] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1238), 2, + STATE(1646), 2, sym_line_comment, sym_block_comment, - ACTIONS(2231), 7, + ACTIONS(1417), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1415), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2233), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [14509] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [30564] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1239), 2, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + STATE(1647), 2, sym_line_comment, sym_block_comment, - ACTIONS(2235), 7, + ACTIONS(4163), 14, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(4159), 28, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2237), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [14570] = 5, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [30630] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1240), 2, + STATE(1648), 2, sym_line_comment, sym_block_comment, - ACTIONS(2239), 7, + ACTIONS(4171), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4169), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2241), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [14631] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [30690] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1241), 2, + STATE(1649), 2, sym_line_comment, sym_block_comment, - ACTIONS(2243), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(4175), 15, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, + anon_sym_DOT_DOT, anon_sym_COLON_COLON, anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(2245), 39, + ACTIONS(4173), 30, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123928,101 +151749,265 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, + anon_sym__, anon_sym_const, anon_sym_default, - anon_sym_enum, - anon_sym_fn, anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [14692] = 5, + [30750] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1242), 2, + ACTIONS(4177), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + STATE(1650), 2, sym_line_comment, sym_block_comment, - ACTIONS(2247), 7, + ACTIONS(4113), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4109), 28, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + anon_sym_else, + [30812] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1651), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4181), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2249), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [14753] = 5, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4179), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [30872] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1243), 2, + STATE(1652), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4185), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4183), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [30932] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1653), 2, sym_line_comment, sym_block_comment, - ACTIONS(2279), 7, + ACTIONS(1479), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1477), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [30992] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1654), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4189), 15, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, + anon_sym_DOT_DOT, anon_sym_COLON_COLON, anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(2281), 39, + ACTIONS(4187), 30, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124040,885 +152025,1034 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, + anon_sym__, anon_sym_const, anon_sym_default, - anon_sym_enum, - anon_sym_fn, anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [14814] = 5, + [31052] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1244), 2, + STATE(1655), 2, sym_line_comment, sym_block_comment, - ACTIONS(2417), 7, + ACTIONS(1439), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1437), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [31112] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1656), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1283), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1281), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [31172] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1657), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4193), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2419), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [14875] = 5, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4191), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [31232] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1245), 2, + STATE(1658), 2, sym_line_comment, sym_block_comment, - ACTIONS(2421), 7, + ACTIONS(1489), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1487), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2423), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [14936] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [31292] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1246), 2, + STATE(1659), 2, sym_line_comment, sym_block_comment, - ACTIONS(2429), 7, + ACTIONS(4197), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4195), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2431), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [14997] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [31352] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1247), 2, + STATE(1660), 2, sym_line_comment, sym_block_comment, - ACTIONS(2433), 7, + ACTIONS(4201), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4199), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2435), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [15058] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [31412] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1248), 2, + STATE(1661), 2, sym_line_comment, sym_block_comment, - ACTIONS(2437), 7, + ACTIONS(4205), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4203), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2439), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [15119] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [31472] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1249), 2, + STATE(1662), 2, sym_line_comment, sym_block_comment, - ACTIONS(2441), 7, + ACTIONS(4209), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4207), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [31532] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1663), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4213), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2443), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [15180] = 5, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4211), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [31592] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1250), 2, + STATE(1664), 2, sym_line_comment, sym_block_comment, - ACTIONS(2453), 7, + ACTIONS(4217), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4215), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2455), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [15241] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [31652] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1251), 2, + STATE(1665), 2, sym_line_comment, sym_block_comment, - ACTIONS(2457), 7, + ACTIONS(4221), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4219), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2459), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [15302] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [31712] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1252), 2, + STATE(1666), 2, sym_line_comment, sym_block_comment, - ACTIONS(2513), 7, + ACTIONS(1471), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1469), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2515), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [15363] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [31772] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1253), 2, + STATE(1667), 2, sym_line_comment, sym_block_comment, - ACTIONS(2517), 7, + ACTIONS(4225), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4223), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2519), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [15424] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [31832] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1254), 2, + STATE(1668), 2, sym_line_comment, sym_block_comment, - ACTIONS(2521), 7, + ACTIONS(1263), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1261), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2523), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [15485] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [31892] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1255), 2, + STATE(1669), 2, sym_line_comment, sym_block_comment, - ACTIONS(2547), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2549), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [15546] = 5, + ACTIONS(3785), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3783), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [31952] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1256), 2, + STATE(1670), 2, sym_line_comment, sym_block_comment, - ACTIONS(2577), 7, + ACTIONS(4229), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4227), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2579), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [15607] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [32012] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1257), 2, + STATE(1671), 2, sym_line_comment, sym_block_comment, - ACTIONS(2581), 7, + ACTIONS(4233), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4231), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2583), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [15668] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [32072] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1258), 2, + STATE(1672), 2, sym_line_comment, sym_block_comment, - ACTIONS(2585), 7, + ACTIONS(4237), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4235), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2587), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [15729] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [32132] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1259), 2, + STATE(1673), 2, sym_line_comment, sym_block_comment, - ACTIONS(2601), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(3948), 15, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, + anon_sym_DOT_DOT, anon_sym_COLON_COLON, anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(2603), 39, + ACTIONS(3946), 30, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124936,149 +153070,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, + anon_sym__, anon_sym_const, anon_sym_default, - anon_sym_enum, - anon_sym_fn, anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [15790] = 5, + [32192] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1260), 2, + STATE(1674), 2, sym_line_comment, sym_block_comment, - ACTIONS(2729), 7, + ACTIONS(4241), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4239), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2731), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [15851] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [32252] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1261), 2, + STATE(1675), 2, sym_line_comment, sym_block_comment, - ACTIONS(2737), 7, + ACTIONS(4245), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4243), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2739), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [15912] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [32312] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1262), 2, + STATE(1676), 2, sym_line_comment, sym_block_comment, - ACTIONS(3631), 15, + ACTIONS(3914), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -125094,7 +153217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3629), 31, + ACTIONS(3910), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -125122,19 +153245,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [15973] = 5, + [32372] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1263), 2, + STATE(1677), 2, sym_line_comment, sym_block_comment, - ACTIONS(3635), 15, + ACTIONS(977), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -125150,7 +153272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3633), 31, + ACTIONS(979), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -125178,2707 +153300,2285 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [16034] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1264), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2893), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2895), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [16095] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1265), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2897), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2899), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [16156] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1266), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2901), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2903), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [16217] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1267), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2917), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2919), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [16278] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1268), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2921), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2923), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [16339] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1269), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2925), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2927), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [16400] = 5, + [32432] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1270), 2, + STATE(1678), 2, sym_line_comment, sym_block_comment, - ACTIONS(2929), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(4249), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2931), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [16461] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1271), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2933), 7, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4247), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2935), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [16522] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [32492] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1272), 2, + STATE(1679), 2, sym_line_comment, sym_block_comment, - ACTIONS(2937), 7, + ACTIONS(4113), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4109), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2939), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [16583] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [32552] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1273), 2, + STATE(1680), 2, sym_line_comment, sym_block_comment, - ACTIONS(2941), 7, + ACTIONS(1413), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1411), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2943), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [16644] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [32612] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1274), 2, + STATE(1681), 2, sym_line_comment, sym_block_comment, - ACTIONS(2949), 7, + ACTIONS(1291), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1289), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2951), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [16705] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [32672] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1275), 2, + STATE(1682), 2, sym_line_comment, sym_block_comment, - ACTIONS(1703), 7, + ACTIONS(4253), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4251), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1705), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [16766] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [32732] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1276), 2, + STATE(1683), 2, sym_line_comment, sym_block_comment, - ACTIONS(1707), 7, + ACTIONS(4257), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4255), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1709), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [16827] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [32792] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1277), 2, + STATE(1684), 2, sym_line_comment, sym_block_comment, - ACTIONS(1711), 7, + ACTIONS(4261), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4259), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1713), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [16888] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [32852] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1278), 2, + STATE(1685), 2, sym_line_comment, sym_block_comment, - ACTIONS(1715), 7, + ACTIONS(1049), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1051), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1717), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [16949] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [32912] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1279), 2, + STATE(1686), 2, sym_line_comment, sym_block_comment, - ACTIONS(1719), 7, + ACTIONS(4265), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4263), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1721), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [17010] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [32972] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1280), 2, + STATE(1687), 2, sym_line_comment, sym_block_comment, - ACTIONS(1723), 7, + ACTIONS(4125), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4123), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1725), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [17071] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [33032] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1281), 2, + STATE(1688), 2, sym_line_comment, sym_block_comment, - ACTIONS(1727), 7, + ACTIONS(4269), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4267), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1729), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [17132] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [33092] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1282), 2, + STATE(1689), 2, sym_line_comment, sym_block_comment, - ACTIONS(1731), 7, + ACTIONS(4273), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4271), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1733), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [17193] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [33152] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1283), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1735), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1737), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [17254] = 5, + STATE(1690), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4277), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4275), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [33212] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1284), 2, + STATE(1691), 2, sym_line_comment, sym_block_comment, - ACTIONS(1739), 7, + ACTIONS(1287), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1285), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1741), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [17315] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [33272] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1285), 2, + STATE(1692), 2, sym_line_comment, sym_block_comment, - ACTIONS(1747), 7, + ACTIONS(1475), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1473), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1749), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [17376] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [33332] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1286), 2, + STATE(1693), 2, sym_line_comment, sym_block_comment, - ACTIONS(1751), 7, + ACTIONS(1459), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1457), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1753), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [17437] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [33392] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1287), 2, + STATE(1694), 2, sym_line_comment, sym_block_comment, - ACTIONS(1759), 7, + ACTIONS(1455), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1453), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1761), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [17498] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [33452] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1288), 2, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + ACTIONS(4279), 1, + anon_sym_BANG, + ACTIONS(4281), 1, + anon_sym_COLON_COLON, + ACTIONS(4283), 1, + anon_sym_move, + STATE(1974), 1, + sym_block, + STATE(4117), 1, + sym_label, + STATE(1695), 2, sym_line_comment, sym_block_comment, - ACTIONS(1763), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(3727), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1765), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [17559] = 5, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3725), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [33526] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1289), 2, + STATE(1696), 2, sym_line_comment, sym_block_comment, - ACTIONS(1767), 7, + ACTIONS(1275), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1273), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1769), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [17620] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [33586] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1290), 2, + STATE(1697), 2, sym_line_comment, sym_block_comment, - ACTIONS(1771), 7, + ACTIONS(1443), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1441), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1773), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [17681] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [33646] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1291), 2, + STATE(1698), 2, sym_line_comment, sym_block_comment, - ACTIONS(1775), 7, + ACTIONS(1371), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1369), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1777), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [17742] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [33706] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1292), 2, + STATE(1699), 2, sym_line_comment, sym_block_comment, - ACTIONS(1779), 7, + ACTIONS(4287), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4285), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1781), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [17803] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [33766] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1293), 2, + STATE(1700), 2, sym_line_comment, sym_block_comment, - ACTIONS(1783), 7, + ACTIONS(1009), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1011), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1785), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [17864] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [33826] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1294), 2, + STATE(1701), 2, sym_line_comment, sym_block_comment, - ACTIONS(1787), 7, + ACTIONS(4291), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4289), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1789), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [17925] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [33886] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1295), 2, + STATE(1702), 2, sym_line_comment, sym_block_comment, - ACTIONS(1791), 7, + ACTIONS(1405), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1403), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1793), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [17986] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [33946] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1296), 2, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + STATE(1703), 2, sym_line_comment, sym_block_comment, - ACTIONS(1795), 7, + ACTIONS(4295), 14, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(4293), 28, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1797), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [18047] = 5, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [34012] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1297), 2, + STATE(1704), 2, sym_line_comment, sym_block_comment, - ACTIONS(1799), 7, + ACTIONS(4299), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4297), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1801), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [18108] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [34072] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1298), 2, + STATE(1705), 2, sym_line_comment, sym_block_comment, - ACTIONS(1803), 7, + ACTIONS(4303), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4301), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1805), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [18169] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [34132] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1299), 2, + STATE(1706), 2, sym_line_comment, sym_block_comment, - ACTIONS(1807), 7, + ACTIONS(1431), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1429), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1809), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [18230] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [34192] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1300), 2, + STATE(1707), 2, sym_line_comment, sym_block_comment, - ACTIONS(1811), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1813), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [18291] = 5, + ACTIONS(1279), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1277), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [34252] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1301), 2, + STATE(1708), 2, sym_line_comment, sym_block_comment, - ACTIONS(1815), 7, + ACTIONS(4307), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4305), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1817), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [18352] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [34312] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1302), 2, + STATE(1709), 2, sym_line_comment, sym_block_comment, - ACTIONS(1819), 7, + ACTIONS(4311), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4309), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1821), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [18413] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [34372] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1303), 2, + STATE(1710), 2, sym_line_comment, sym_block_comment, - ACTIONS(1823), 7, + ACTIONS(1259), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1257), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1825), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [18474] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [34432] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1304), 2, + STATE(1711), 2, sym_line_comment, sym_block_comment, - ACTIONS(1827), 7, + ACTIONS(1267), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1265), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1829), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [18535] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [34492] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1305), 2, + STATE(1712), 2, sym_line_comment, sym_block_comment, - ACTIONS(1831), 7, + ACTIONS(1401), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1399), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1833), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [18596] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [34552] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1306), 2, + STATE(1713), 2, sym_line_comment, sym_block_comment, - ACTIONS(1835), 7, + ACTIONS(3781), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3779), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1837), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [18657] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [34612] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1307), 2, + STATE(1714), 2, sym_line_comment, sym_block_comment, - ACTIONS(1839), 7, + ACTIONS(4315), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4313), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1841), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [18718] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [34672] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1308), 2, + ACTIONS(3743), 1, + anon_sym_BANG, + ACTIONS(4317), 1, + anon_sym_COLON_COLON, + STATE(1715), 2, sym_line_comment, sym_block_comment, - ACTIONS(1843), 7, + ACTIONS(1451), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1449), 28, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1845), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [18779] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + anon_sym_else, + [34736] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1309), 2, + STATE(1716), 2, sym_line_comment, sym_block_comment, - ACTIONS(1847), 7, + ACTIONS(4321), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4319), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1849), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [18840] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [34796] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1310), 2, + STATE(1717), 2, sym_line_comment, sym_block_comment, - ACTIONS(1851), 7, + ACTIONS(3765), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3763), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1853), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [18901] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [34856] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1311), 2, + STATE(1718), 2, sym_line_comment, sym_block_comment, - ACTIONS(1855), 7, + ACTIONS(4325), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4323), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1857), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [18962] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [34916] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1312), 2, + STATE(1719), 2, sym_line_comment, sym_block_comment, - ACTIONS(3639), 15, + ACTIONS(941), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -127894,7 +155594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3637), 31, + ACTIONS(943), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -127922,19 +155622,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [19023] = 5, + [34976] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1313), 2, + STATE(1720), 2, sym_line_comment, sym_block_comment, - ACTIONS(3643), 15, + ACTIONS(1451), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -127950,7 +155649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3641), 31, + ACTIONS(1449), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -127978,699 +155677,535 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [19084] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1314), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1859), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1861), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [19145] = 5, + [35036] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1315), 2, + STATE(1721), 2, sym_line_comment, sym_block_comment, - ACTIONS(1863), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(4329), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1865), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [19206] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1316), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1867), 7, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4327), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1869), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [19267] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [35096] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1317), 2, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + STATE(1722), 2, sym_line_comment, sym_block_comment, - ACTIONS(1871), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(4333), 14, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1873), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [19328] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1318), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1875), 7, + anon_sym_DOT_DOT, + ACTIONS(4331), 28, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1877), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [19389] = 5, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [35162] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1319), 2, + STATE(1723), 2, sym_line_comment, sym_block_comment, - ACTIONS(1879), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(4337), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1881), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [19450] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1320), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1883), 7, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4335), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1885), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [19511] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [35222] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1321), 2, + STATE(1724), 2, sym_line_comment, sym_block_comment, - ACTIONS(1887), 7, + ACTIONS(4341), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4339), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1889), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [19572] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [35282] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1322), 2, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + STATE(1725), 2, sym_line_comment, sym_block_comment, - ACTIONS(1891), 7, + ACTIONS(4345), 14, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(4343), 28, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1893), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [19633] = 5, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [35348] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1323), 2, + STATE(1726), 2, sym_line_comment, sym_block_comment, - ACTIONS(1895), 7, + ACTIONS(4349), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4347), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1897), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [19694] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [35408] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1324), 2, + STATE(1727), 2, sym_line_comment, sym_block_comment, - ACTIONS(1903), 7, + ACTIONS(4353), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4351), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1905), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [19755] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [35468] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1325), 2, + STATE(1728), 2, sym_line_comment, sym_block_comment, - ACTIONS(1911), 7, + ACTIONS(4357), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4355), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [35528] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1729), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1467), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1913), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_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] = 5, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1465), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [35588] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1326), 2, + STATE(1730), 2, sym_line_comment, sym_block_comment, - ACTIONS(1915), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(2381), 15, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, + anon_sym_DOT_DOT, anon_sym_COLON_COLON, anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, sym_metavariable, - ACTIONS(1917), 39, + ACTIONS(2383), 30, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128688,661 +156223,856 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym_async, + anon_sym__, anon_sym_const, anon_sym_default, - anon_sym_enum, - anon_sym_fn, anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, + anon_sym_ref, + sym_mutable_specifier, + anon_sym_true, + anon_sym_false, sym_identifier, sym_self, sym_super, sym_crate, - [19877] = 5, + [35648] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1327), 2, + STATE(1731), 2, sym_line_comment, sym_block_comment, - ACTIONS(1919), 7, + ACTIONS(4361), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4359), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1921), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [19938] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [35708] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1328), 2, + STATE(1732), 2, sym_line_comment, sym_block_comment, - ACTIONS(1923), 7, + ACTIONS(4365), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4363), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1925), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [19999] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [35768] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1329), 2, + STATE(1733), 2, sym_line_comment, sym_block_comment, - ACTIONS(1927), 7, + ACTIONS(1451), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1449), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [35828] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3729), 1, + anon_sym_BANG, + ACTIONS(3731), 1, anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1929), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [20060] = 5, + STATE(1734), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3727), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3725), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + anon_sym_else, + [35892] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1330), 2, + STATE(1735), 2, sym_line_comment, sym_block_comment, - ACTIONS(1931), 7, + ACTIONS(4369), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4367), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [35952] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1736), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4373), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1933), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [20121] = 5, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4371), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [36012] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1737), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4377), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4375), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [36072] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1331), 2, + STATE(1738), 2, sym_line_comment, sym_block_comment, - ACTIONS(1935), 7, + ACTIONS(4381), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4379), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1937), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [20182] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [36132] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1332), 2, + STATE(1739), 2, sym_line_comment, sym_block_comment, - ACTIONS(1939), 7, + ACTIONS(1271), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1269), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1941), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [20243] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [36192] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1333), 2, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + STATE(1740), 2, sym_line_comment, sym_block_comment, - ACTIONS(1943), 7, + ACTIONS(4385), 14, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(4383), 27, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1945), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [20304] = 5, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_else, + [36260] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1334), 2, + STATE(1741), 2, sym_line_comment, sym_block_comment, - ACTIONS(1947), 7, + ACTIONS(999), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1001), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1949), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [20365] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [36320] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1335), 2, + STATE(1742), 2, sym_line_comment, sym_block_comment, - ACTIONS(1951), 7, + ACTIONS(4391), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4389), 30, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_LT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [36380] = 10, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3729), 1, + anon_sym_BANG, + ACTIONS(3735), 1, + anon_sym_move, + ACTIONS(4393), 1, anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1953), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [20426] = 5, + STATE(1658), 1, + sym_block, + STATE(4045), 1, + sym_label, + STATE(1743), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3727), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3725), 24, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + [36449] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1336), 2, + ACTIONS(4395), 1, + anon_sym_COLON_COLON, + STATE(1744), 2, sym_line_comment, sym_block_comment, - ACTIONS(1955), 7, + ACTIONS(1451), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1449), 28, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + anon_sym_else, + [36510] = 25, + ACTIONS(29), 1, anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1957), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [20487] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1337), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1959), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, + ACTIONS(1343), 1, + anon_sym_extern, + ACTIONS(3537), 1, + anon_sym_fn, + ACTIONS(3880), 1, anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1961), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, + ACTIONS(3882), 1, anon_sym_default, - anon_sym_enum, - anon_sym_fn, + ACTIONS(3888), 1, + sym_metavariable, + ACTIONS(4397), 1, + sym_identifier, + ACTIONS(4399), 1, + anon_sym_for, + STATE(1186), 1, + sym_scoped_type_identifier, + STATE(1457), 1, + sym_generic_type, + STATE(1834), 1, + sym_for_lifetimes, + STATE(2519), 1, + aux_sym_function_modifiers_repeat1, + STATE(2621), 1, + sym_extern_modifier, + STATE(3801), 1, + sym_function_modifiers, + STATE(3989), 1, + sym_scoped_identifier, + STATE(4023), 1, + sym_generic_type_with_turbofish, + STATE(4032), 1, + sym_bracketed_type, + ACTIONS(3884), 2, anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, + STATE(1713), 2, + sym_higher_ranked_trait_bound, + sym_function_type, + STATE(1745), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1329), 3, + anon_sym_async, + anon_sym_const, anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, + ACTIONS(3886), 3, sym_self, sym_super, sym_crate, - [20548] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1338), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1963), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1965), 39, + ACTIONS(3878), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129360,101 +157090,82 @@ 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_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [20609] = 5, + [36609] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1339), 2, + ACTIONS(3731), 1, + anon_sym_COLON_COLON, + STATE(1746), 2, sym_line_comment, sym_block_comment, - ACTIONS(1967), 7, + ACTIONS(3727), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3725), 28, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1969), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [20670] = 5, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + anon_sym_else, + [36670] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1340), 2, + STATE(1747), 2, sym_line_comment, sym_block_comment, - ACTIONS(1971), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(3689), 11, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_POUND, + anon_sym_SQUOTE, sym_metavariable, - ACTIONS(1973), 39, + ACTIONS(3687), 33, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129475,98 +157186,76 @@ 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_gen, anon_sym_impl, - anon_sym_let, - anon_sym_mod, anon_sym_pub, - 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, - [20731] = 5, + [36729] = 25, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1341), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1975), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, + ACTIONS(1335), 1, + anon_sym_fn, + ACTIONS(1343), 1, + anon_sym_extern, + ACTIONS(3629), 1, + anon_sym_for, + ACTIONS(3848), 1, anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1977), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, + ACTIONS(3850), 1, anon_sym_default, - anon_sym_enum, - anon_sym_fn, + ACTIONS(3856), 1, + sym_metavariable, + ACTIONS(4401), 1, + sym_identifier, + STATE(1820), 1, + sym_for_lifetimes, + STATE(2203), 1, + sym_scoped_type_identifier, + STATE(2252), 1, + sym_generic_type, + STATE(2519), 1, + aux_sym_function_modifiers_repeat1, + STATE(2621), 1, + sym_extern_modifier, + STATE(3799), 1, + sym_scoped_identifier, + STATE(3803), 1, + sym_generic_type_with_turbofish, + STATE(3957), 1, + sym_function_modifiers, + STATE(3975), 1, + sym_bracketed_type, + ACTIONS(3852), 2, anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, + STATE(1748), 2, + sym_line_comment, + sym_block_comment, + STATE(2259), 2, + sym_higher_ranked_trait_bound, + sym_function_type, + ACTIONS(1329), 3, + anon_sym_async, + anon_sym_const, anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, + ACTIONS(3854), 3, sym_self, sym_super, sym_crate, - [20792] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1342), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1979), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1981), 39, + ACTIONS(3846), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129584,101 +157273,63 @@ 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_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [20853] = 5, + [36828] = 25, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1343), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1987), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, + ACTIONS(1343), 1, + anon_sym_extern, + ACTIONS(3573), 1, + anon_sym_fn, + ACTIONS(3828), 1, anon_sym_COLON_COLON, - anon_sym_POUND, + ACTIONS(3830), 1, + anon_sym_default, + ACTIONS(3836), 1, sym_metavariable, - ACTIONS(1989), 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, + ACTIONS(4403), 1, + sym_identifier, + ACTIONS(4405), 1, + anon_sym_for, + STATE(1797), 1, + sym_scoped_type_identifier, + STATE(1826), 1, + sym_for_lifetimes, + STATE(1862), 1, + sym_generic_type, + STATE(2519), 1, + aux_sym_function_modifiers_repeat1, + STATE(2621), 1, + sym_extern_modifier, + STATE(3979), 1, + sym_function_modifiers, + STATE(4014), 1, + sym_scoped_identifier, + STATE(4030), 1, + sym_generic_type_with_turbofish, + STATE(4036), 1, + sym_bracketed_type, + ACTIONS(3832), 2, + anon_sym_gen, + anon_sym_union, + STATE(1749), 2, + sym_line_comment, + sym_block_comment, + STATE(2046), 2, + sym_higher_ranked_trait_bound, + sym_function_type, + ACTIONS(1329), 3, anon_sym_async, anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_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(3834), 3, sym_self, sym_super, sym_crate, - [20914] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1344), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1991), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1993), 39, + ACTIONS(3826), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129696,45 +157347,87 @@ 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_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [20975] = 5, + [36927] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1345), 2, + ACTIONS(3729), 1, + anon_sym_BANG, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + ACTIONS(3735), 1, + anon_sym_move, + ACTIONS(4393), 1, + anon_sym_COLON_COLON, + STATE(1658), 1, + sym_block, + STATE(4045), 1, + sym_label, + STATE(1750), 2, sym_line_comment, sym_block_comment, - ACTIONS(1995), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(3727), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3725), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [36998] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1751), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3671), 11, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_POUND, + anon_sym_SQUOTE, sym_metavariable, - ACTIONS(1997), 39, + ACTIONS(3669), 33, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129755,98 +157448,434 @@ 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_gen, anon_sym_impl, - anon_sym_let, - anon_sym_mod, anon_sym_pub, - 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, - [21036] = 5, + [37057] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1346), 2, + ACTIONS(4407), 1, + anon_sym_LPAREN, + ACTIONS(4409), 1, + anon_sym_BANG, + ACTIONS(4411), 1, + anon_sym_COLON_COLON, + ACTIONS(4413), 1, + anon_sym_LT2, + STATE(1860), 1, + sym_parameters, + STATE(1872), 1, + sym_type_arguments, + STATE(1752), 2, sym_line_comment, sym_block_comment, - ACTIONS(1999), 7, + ACTIONS(3741), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3737), 20, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [37127] = 15, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4419), 1, + anon_sym_CARET, + ACTIONS(4421), 1, + anon_sym_AMP, + ACTIONS(4423), 1, + anon_sym_PIPE, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4425), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1753), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4417), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4385), 4, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(4383), 25, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_else, + [37205] = 12, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4425), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1754), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4417), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4385), 7, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(4383), 25, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_else, + [37277] = 14, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4419), 1, + anon_sym_CARET, + ACTIONS(4421), 1, + anon_sym_AMP, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4425), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1755), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4417), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4385), 5, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(4383), 25, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_else, + [37353] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3894), 1, + anon_sym_LBRACE, + ACTIONS(3896), 1, anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2001), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, + ACTIONS(4427), 1, + anon_sym_BANG, + STATE(1630), 1, + sym_field_initializer_list, + STATE(1756), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1451), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1449), 24, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [37419] = 19, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4419), 1, + anon_sym_CARET, + ACTIONS(4421), 1, + anon_sym_AMP, + ACTIONS(4423), 1, + anon_sym_PIPE, + ACTIONS(4429), 1, + anon_sym_AMP_AMP, + ACTIONS(4431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(389), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4425), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4435), 2, + anon_sym_GT, + anon_sym_LT, + STATE(1757), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4417), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4433), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(387), 19, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_else, + [37505] = 19, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1659), 1, + anon_sym_DASH, + ACTIONS(1683), 1, + aux_sym_string_literal_token1, + ACTIONS(1691), 1, + sym__raw_string_literal_start, + ACTIONS(3978), 1, sym_identifier, + ACTIONS(3982), 1, + anon_sym_COLON_COLON, + ACTIONS(3986), 1, + sym_metavariable, + STATE(3039), 1, + sym_scoped_identifier, + STATE(3180), 1, + sym__literal_pattern, + STATE(3971), 1, + sym_bracketed_type, + STATE(3984), 1, + sym_generic_type_with_turbofish, + ACTIONS(1685), 2, + anon_sym_true, + anon_sym_false, + STATE(1758), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1681), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3984), 3, sym_self, sym_super, sym_crate, - [21097] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1347), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2003), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2005), 39, + STATE(2620), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3980), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129864,157 +157893,528 @@ 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_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [21158] = 5, + [37591] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1348), 2, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4419), 1, + anon_sym_CARET, + ACTIONS(4421), 1, + anon_sym_AMP, + ACTIONS(4423), 1, + anon_sym_PIPE, + ACTIONS(4429), 1, + anon_sym_AMP_AMP, + ACTIONS(4431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(4441), 1, + anon_sym_DOT_DOT, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4425), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4435), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4443), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1759), 2, sym_line_comment, sym_block_comment, - ACTIONS(2007), 7, + ACTIONS(4417), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4433), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4263), 7, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_else, + ACTIONS(4437), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [37683] = 21, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(347), 1, + anon_sym_EQ, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4419), 1, + anon_sym_CARET, + ACTIONS(4421), 1, + anon_sym_AMP, + ACTIONS(4423), 1, + anon_sym_PIPE, + ACTIONS(4429), 1, + anon_sym_AMP_AMP, + ACTIONS(4431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4441), 1, + anon_sym_DOT_DOT, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4425), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4435), 2, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2009), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [21219] = 5, + ACTIONS(4443), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1760), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4417), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4433), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(341), 17, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_COMMA, + anon_sym_else, + [37773] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1349), 2, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4419), 1, + anon_sym_CARET, + ACTIONS(4421), 1, + anon_sym_AMP, + ACTIONS(4423), 1, + anon_sym_PIPE, + ACTIONS(4429), 1, + anon_sym_AMP_AMP, + ACTIONS(4431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(4441), 1, + anon_sym_DOT_DOT, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4425), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4435), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4443), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1761), 2, sym_line_comment, sym_block_comment, - ACTIONS(2011), 7, + ACTIONS(4417), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4433), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4313), 7, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_else, + ACTIONS(4437), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [37865] = 13, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4421), 1, + anon_sym_AMP, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4425), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1762), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4417), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4385), 6, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(4383), 25, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_else, + [37939] = 22, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4419), 1, + anon_sym_CARET, + ACTIONS(4421), 1, + anon_sym_AMP, + ACTIONS(4423), 1, + anon_sym_PIPE, + ACTIONS(4429), 1, + anon_sym_AMP_AMP, + ACTIONS(4431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(4441), 1, + anon_sym_DOT_DOT, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4425), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4435), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4443), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1763), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4417), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4433), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4147), 7, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_else, + ACTIONS(4437), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [38031] = 19, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4419), 1, + anon_sym_CARET, + ACTIONS(4421), 1, + anon_sym_AMP, + ACTIONS(4423), 1, + anon_sym_PIPE, + ACTIONS(4429), 1, + anon_sym_AMP_AMP, + ACTIONS(4431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4425), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4435), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4447), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + STATE(1764), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4417), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4433), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4445), 19, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_else, + [38117] = 17, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4419), 1, + anon_sym_CARET, + ACTIONS(4421), 1, + anon_sym_AMP, + ACTIONS(4423), 1, + anon_sym_PIPE, + ACTIONS(4385), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4425), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4435), 2, + anon_sym_GT, + anon_sym_LT, + STATE(1765), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4417), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4433), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4383), 21, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_else, + [38199] = 19, + ACTIONS(29), 1, anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2013), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [21280] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1350), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2015), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, + ACTIONS(1307), 1, + anon_sym_DASH, + ACTIONS(1353), 1, + aux_sym_string_literal_token1, + ACTIONS(1363), 1, + sym__raw_string_literal_start, + ACTIONS(1709), 1, anon_sym_COLON_COLON, - anon_sym_POUND, + ACTIONS(3713), 1, + sym_identifier, + ACTIONS(3723), 1, sym_metavariable, - ACTIONS(2017), 39, + STATE(2343), 1, + sym_scoped_identifier, + STATE(2398), 1, + sym__literal_pattern, + STATE(3786), 1, + sym_bracketed_type, + STATE(3813), 1, + sym_generic_type_with_turbofish, + ACTIONS(1355), 2, + anon_sym_true, + anon_sym_false, + STATE(1766), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1351), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3721), 3, + sym_self, + sym_super, + sym_crate, + STATE(2301), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3719), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130032,45 +158432,122 @@ 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_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [21341] = 5, + [38285] = 18, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1351), 2, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4419), 1, + anon_sym_CARET, + ACTIONS(4421), 1, + anon_sym_AMP, + ACTIONS(4423), 1, + anon_sym_PIPE, + ACTIONS(4429), 1, + anon_sym_AMP_AMP, + ACTIONS(4385), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4425), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4435), 2, + anon_sym_GT, + anon_sym_LT, + STATE(1767), 2, sym_line_comment, sym_block_comment, - ACTIONS(2019), 7, + ACTIONS(4417), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4433), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4383), 20, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_else, + [38369] = 19, + ACTIONS(29), 1, anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1659), 1, + anon_sym_DASH, + ACTIONS(1683), 1, + aux_sym_string_literal_token1, + ACTIONS(1691), 1, + sym__raw_string_literal_start, + ACTIONS(3982), 1, anon_sym_COLON_COLON, - anon_sym_POUND, + ACTIONS(4000), 1, + sym_identifier, + ACTIONS(4006), 1, sym_metavariable, - ACTIONS(2021), 39, + STATE(2953), 1, + sym_scoped_identifier, + STATE(3173), 1, + sym__literal_pattern, + STATE(3971), 1, + sym_bracketed_type, + STATE(3984), 1, + sym_generic_type_with_turbofish, + ACTIONS(1685), 2, + anon_sym_true, + anon_sym_false, + STATE(1768), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1681), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(4004), 3, + sym_self, + sym_super, + sym_crate, + STATE(2620), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(4002), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130088,269 +158565,380 @@ 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_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [21402] = 5, + [38455] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1352), 2, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4419), 1, + anon_sym_CARET, + ACTIONS(4421), 1, + anon_sym_AMP, + ACTIONS(4423), 1, + anon_sym_PIPE, + ACTIONS(4429), 1, + anon_sym_AMP_AMP, + ACTIONS(4431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4441), 1, + anon_sym_DOT_DOT, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4425), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4435), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4443), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1769), 2, sym_line_comment, sym_block_comment, - ACTIONS(2023), 7, + ACTIONS(4417), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4433), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4449), 17, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2025), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [21463] = 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_COMMA, + anon_sym_else, + [38545] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1353), 2, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4419), 1, + anon_sym_CARET, + ACTIONS(4421), 1, + anon_sym_AMP, + ACTIONS(4423), 1, + anon_sym_PIPE, + ACTIONS(4429), 1, + anon_sym_AMP_AMP, + ACTIONS(4431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4441), 1, + anon_sym_DOT_DOT, + ACTIONS(4455), 1, + anon_sym_EQ, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4425), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4435), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4443), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1770), 2, sym_line_comment, sym_block_comment, - ACTIONS(2027), 7, + ACTIONS(4417), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4433), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4453), 17, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2029), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [21524] = 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_COMMA, + anon_sym_else, + [38635] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1354), 2, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1771), 2, sym_line_comment, sym_block_comment, - ACTIONS(2031), 7, + ACTIONS(4417), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4385), 9, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(4383), 25, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2033), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [21585] = 5, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_else, + [38705] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1355), 2, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + STATE(1772), 2, sym_line_comment, sym_block_comment, - ACTIONS(2035), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2037), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [21646] = 5, + ACTIONS(4417), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4385), 11, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(4383), 25, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_else, + [38773] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1356), 2, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4419), 1, + anon_sym_CARET, + ACTIONS(4421), 1, + anon_sym_AMP, + ACTIONS(4423), 1, + anon_sym_PIPE, + ACTIONS(4429), 1, + anon_sym_AMP_AMP, + ACTIONS(4431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4441), 1, + anon_sym_DOT_DOT, + ACTIONS(4459), 1, + anon_sym_EQ, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4425), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4435), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4443), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1773), 2, sym_line_comment, sym_block_comment, - ACTIONS(2039), 7, + ACTIONS(4417), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4433), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4457), 17, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_COMMA, + anon_sym_else, + [38863] = 19, + ACTIONS(29), 1, anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1307), 1, + anon_sym_DASH, + ACTIONS(1353), 1, + aux_sym_string_literal_token1, + ACTIONS(1363), 1, + sym__raw_string_literal_start, + ACTIONS(1709), 1, anon_sym_COLON_COLON, - anon_sym_POUND, + ACTIONS(3701), 1, + sym_identifier, + ACTIONS(3711), 1, sym_metavariable, - ACTIONS(2041), 39, + STATE(2329), 1, + sym_scoped_identifier, + STATE(2419), 1, + sym__literal_pattern, + STATE(3786), 1, + sym_bracketed_type, + STATE(3813), 1, + sym_generic_type_with_turbofish, + ACTIONS(1355), 2, + anon_sym_true, + anon_sym_false, + STATE(1774), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1351), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3709), 3, + sym_self, + sym_super, + sym_crate, + STATE(2301), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3707), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130368,269 +158956,280 @@ 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_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [21707] = 5, + [38949] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1357), 2, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4419), 1, + anon_sym_CARET, + ACTIONS(4421), 1, + anon_sym_AMP, + ACTIONS(4423), 1, + anon_sym_PIPE, + ACTIONS(4429), 1, + anon_sym_AMP_AMP, + ACTIONS(4431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4441), 1, + anon_sym_DOT_DOT, + ACTIONS(4463), 1, + anon_sym_EQ, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4425), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4435), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4443), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1775), 2, sym_line_comment, sym_block_comment, - ACTIONS(2043), 7, + ACTIONS(4417), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4433), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4461), 17, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2045), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [21768] = 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_COMMA, + anon_sym_else, + [39039] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1358), 2, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4419), 1, + anon_sym_CARET, + ACTIONS(4421), 1, + anon_sym_AMP, + ACTIONS(4423), 1, + anon_sym_PIPE, + ACTIONS(4429), 1, + anon_sym_AMP_AMP, + ACTIONS(4431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4441), 1, + anon_sym_DOT_DOT, + ACTIONS(4467), 1, + anon_sym_EQ, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4425), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4435), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4443), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1776), 2, sym_line_comment, sym_block_comment, - ACTIONS(2047), 7, + ACTIONS(4417), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4433), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4465), 17, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2049), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [21829] = 5, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_COMMA, + anon_sym_else, + [39129] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1359), 2, + ACTIONS(4407), 1, + anon_sym_LPAREN, + ACTIONS(4413), 1, + anon_sym_LT2, + ACTIONS(4469), 1, + anon_sym_COLON_COLON, + STATE(1860), 1, + sym_parameters, + STATE(1872), 1, + sym_type_arguments, + STATE(1777), 2, sym_line_comment, sym_block_comment, - ACTIONS(2051), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(3757), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2053), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [21890] = 5, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3755), 20, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [39196] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1360), 2, + ACTIONS(4409), 1, + anon_sym_BANG, + ACTIONS(4471), 1, + anon_sym_LBRACE, + ACTIONS(4473), 1, + anon_sym_COLON_COLON, + STATE(2007), 1, + sym_field_initializer_list, + STATE(1778), 2, sym_line_comment, sym_block_comment, - ACTIONS(2055), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(1451), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2057), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [21951] = 5, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1449), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [39261] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1361), 2, + STATE(1779), 2, sym_line_comment, sym_block_comment, - ACTIONS(2059), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(4477), 10, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_POUND, + anon_sym_SQUOTE, sym_metavariable, - ACTIONS(2061), 39, + ACTIONS(4475), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130651,42 +159250,39 @@ 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_gen, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - 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, - [22012] = 5, + [39318] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1362), 2, + ACTIONS(4481), 1, + anon_sym_LPAREN, + STATE(1780), 2, sym_line_comment, sym_block_comment, - ACTIONS(2063), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(4484), 9, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_POUND, + anon_sym_SQUOTE, sym_metavariable, - ACTIONS(2065), 39, + ACTIONS(4479), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130707,42 +159303,38 @@ 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_gen, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - 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, - [22073] = 5, + [39377] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1363), 2, + STATE(1781), 2, sym_line_comment, sym_block_comment, - ACTIONS(2067), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(4055), 10, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_POUND, + anon_sym_SQUOTE, sym_metavariable, - ACTIONS(2069), 39, + ACTIONS(4053), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130763,42 +159355,38 @@ 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_gen, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - 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, - [22134] = 5, + [39434] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1364), 2, + STATE(1782), 2, sym_line_comment, sym_block_comment, - ACTIONS(2071), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(4488), 10, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_POUND, + anon_sym_SQUOTE, sym_metavariable, - ACTIONS(2073), 39, + ACTIONS(4486), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130819,38 +159407,37 @@ 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_gen, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - 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, - [22195] = 7, + [39491] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - STATE(1384), 1, - sym_label, - STATE(1365), 2, + ACTIONS(4407), 1, + anon_sym_LPAREN, + ACTIONS(4413), 1, + anon_sym_LT2, + ACTIONS(4469), 1, + anon_sym_COLON_COLON, + STATE(1860), 1, + sym_parameters, + STATE(1872), 1, + sym_type_arguments, + STATE(1783), 2, sym_line_comment, sym_block_comment, - ACTIONS(3647), 15, + ACTIONS(3751), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -130861,19 +159448,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3645), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(3749), 20, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -130885,40 +159469,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_as, - anon_sym_else, - [22260] = 5, + [39558] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1366), 2, + STATE(1784), 2, sym_line_comment, sym_block_comment, - ACTIONS(3651), 13, - anon_sym_SEMI, + ACTIONS(4492), 10, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_STAR, anon_sym_QMARK, anon_sym_BANG, anon_sym_AMP, - anon_sym_EQ, anon_sym_LT, anon_sym_COLON_COLON, anon_sym_SQUOTE, sym_metavariable, - ACTIONS(3649), 33, + ACTIONS(4490), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130945,36 +159522,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_impl, anon_sym_union, anon_sym_unsafe, - anon_sym_where, anon_sym_extern, anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [22321] = 5, + [39615] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1367), 2, + ACTIONS(4494), 1, + anon_sym_COLON_COLON, + STATE(1785), 2, sym_line_comment, sym_block_comment, - ACTIONS(3655), 13, - anon_sym_SEMI, + ACTIONS(4484), 9, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_STAR, anon_sym_QMARK, anon_sym_BANG, anon_sym_AMP, - anon_sym_EQ, anon_sym_LT, - anon_sym_COLON_COLON, anon_sym_SQUOTE, sym_metavariable, - ACTIONS(3653), 33, + ACTIONS(4479), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131001,30 +159575,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_impl, anon_sym_union, anon_sym_unsafe, - anon_sym_where, anon_sym_extern, anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [22382] = 5, + [39674] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1368), 2, + ACTIONS(3731), 1, + anon_sym_COLON_COLON, + ACTIONS(3818), 1, + anon_sym_BANG, + ACTIONS(4497), 1, + sym_identifier, + STATE(1786), 2, sym_line_comment, sym_block_comment, - ACTIONS(2099), 7, + ACTIONS(3727), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + anon_sym_as, + ACTIONS(3725), 23, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [39737] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1787), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3922), 10, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_POUND, + anon_sym_SQUOTE, sym_metavariable, - ACTIONS(2101), 39, + ACTIONS(3920), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131045,38 +159676,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_const, anon_sym_default, - anon_sym_enum, anon_sym_fn, + anon_sym_for, anon_sym_gen, anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - 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, - [22443] = 7, + [39794] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3659), 1, - anon_sym_LPAREN, - STATE(1481), 1, - sym_arguments, - STATE(1369), 2, + ACTIONS(3743), 1, + anon_sym_BANG, + ACTIONS(4499), 1, + anon_sym_COLON_COLON, + STATE(1630), 1, + sym_field_initializer_list, + STATE(1788), 2, sym_line_comment, sym_block_comment, - ACTIONS(3661), 15, + ACTIONS(1451), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -131092,13 +159718,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3657), 29, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(1449), 24, + anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -131118,33 +159741,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [22508] = 12, + [39857] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1229), 1, - anon_sym_LBRACE, - ACTIONS(3287), 1, + ACTIONS(4407), 1, + anon_sym_LPAREN, + ACTIONS(4413), 1, + anon_sym_LT2, + ACTIONS(4469), 1, + anon_sym_COLON_COLON, + STATE(1860), 1, + sym_parameters, + STATE(1872), 1, + sym_type_arguments, + STATE(1789), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3761), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3759), 20, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [39924] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3729), 1, anon_sym_BANG, - ACTIONS(3289), 1, + ACTIONS(4393), 1, anon_sym_COLON_COLON, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(3663), 1, - anon_sym_move, - STATE(461), 1, - sym_block, - STATE(3619), 1, - sym_label, - STATE(1370), 2, + STATE(1790), 2, sym_line_comment, sym_block_comment, - ACTIONS(3285), 15, + ACTIONS(3727), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -131160,10 +159828,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3283), 24, + ACTIONS(3725), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -131183,25 +159851,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, + anon_sym_SQUOTE, anon_sym_as, - [22583] = 6, + [39984] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3665), 1, - anon_sym_COLON_COLON, - STATE(1371), 2, + STATE(1791), 2, sym_line_comment, sym_block_comment, - ACTIONS(1357), 15, + ACTIONS(3771), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -131211,14 +159878,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1359), 30, - anon_sym_SEMI, + ACTIONS(3773), 25, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -131238,78 +159901,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [22646] = 5, + [40040] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1372), 2, + ACTIONS(4407), 1, + anon_sym_LPAREN, + ACTIONS(4413), 1, + anon_sym_LT2, + STATE(1857), 1, + sym_parameters, + STATE(1871), 1, + sym_type_arguments, + STATE(1792), 2, sym_line_comment, sym_block_comment, - ACTIONS(2143), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(3785), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2145), 39, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_enum, - anon_sym_fn, - anon_sym_gen, - anon_sym_impl, - anon_sym_let, - anon_sym_mod, - anon_sym_pub, - anon_sym_static, - anon_sym_struct, - anon_sym_trait, - anon_sym_type, - anon_sym_union, - anon_sym_unsafe, - anon_sym_use, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [22707] = 6, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3783), 20, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [40104] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3669), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - STATE(1373), 2, + ACTIONS(4407), 1, + anon_sym_LPAREN, + ACTIONS(4413), 1, + anon_sym_LT2, + STATE(1857), 1, + sym_parameters, + STATE(1871), 1, + sym_type_arguments, + STATE(1793), 2, sym_line_comment, sym_block_comment, - ACTIONS(3671), 15, + ACTIONS(3765), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -131320,18 +159986,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3667), 28, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(3763), 20, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -131343,26 +160007,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_as, - anon_sym_else, - [22769] = 5, + [40168] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1374), 2, + ACTIONS(3743), 1, + anon_sym_BANG, + ACTIONS(4501), 1, + anon_sym_COLON_COLON, + STATE(1794), 2, sym_line_comment, sym_block_comment, - ACTIONS(3675), 15, + ACTIONS(1451), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -131378,14 +160042,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3673), 30, - anon_sym_SEMI, + ACTIONS(1449), 24, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -131405,19 +160065,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [22829] = 5, + [40228] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1375), 2, + ACTIONS(3814), 1, + anon_sym_BANG, + ACTIONS(3816), 1, + anon_sym_COLON_COLON, + STATE(1795), 2, sym_line_comment, sym_block_comment, - ACTIONS(1489), 15, + ACTIONS(3812), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -131428,19 +160090,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1487), 30, - anon_sym_SEMI, + ACTIONS(3810), 22, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -131452,33 +160112,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [22889] = 5, + anon_sym_LT2, + [40288] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1376), 2, + ACTIONS(3992), 1, + anon_sym_LBRACE, + STATE(1796), 2, sym_line_comment, sym_block_comment, - ACTIONS(1271), 15, + ACTIONS(3799), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -131488,14 +160147,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1269), 30, - anon_sym_SEMI, + ACTIONS(3801), 24, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -131515,27 +160170,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, + anon_sym_COLON_COLON, anon_sym_as, - anon_sym_else, - [22949] = 9, + [40346] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(4407), 1, + anon_sym_LPAREN, + ACTIONS(4413), 1, + anon_sym_LT2, + STATE(1857), 1, + sym_parameters, + STATE(1871), 1, + sym_type_arguments, + STATE(1797), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3781), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3779), 20, anon_sym_LBRACK, - ACTIONS(3683), 1, + anon_sym_EQ_GT, anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_as, - STATE(1377), 2, + [40410] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4407), 1, + anon_sym_LPAREN, + ACTIONS(4413), 1, + anon_sym_LT2, + STATE(1857), 1, + sym_parameters, + STATE(1871), 1, + sym_type_arguments, + STATE(1798), 2, sym_line_comment, sym_block_comment, - ACTIONS(3681), 14, + ACTIONS(3777), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -131546,17 +160254,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3677), 27, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(3775), 20, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -131567,32 +160275,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_else, - [23017] = 5, + anon_sym_as, + [40474] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1378), 2, + STATE(1799), 2, sym_line_comment, sym_block_comment, - ACTIONS(3691), 15, + ACTIONS(3814), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -131602,14 +160307,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3689), 30, - anon_sym_SEMI, + ACTIONS(3816), 25, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -131629,25 +160330,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [23077] = 5, + [40530] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1379), 2, + ACTIONS(4071), 1, + anon_sym_LBRACE, + STATE(1800), 2, sym_line_comment, sym_block_comment, - ACTIONS(3695), 15, + ACTIONS(3771), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -131657,14 +160360,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3693), 30, - anon_sym_SEMI, + ACTIONS(3773), 24, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -131684,19 +160383,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, + anon_sym_COLON_COLON, anon_sym_as, - anon_sym_else, - [23137] = 5, + [40588] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1380), 2, + ACTIONS(4317), 1, + anon_sym_COLON_COLON, + ACTIONS(4427), 1, + anon_sym_BANG, + STATE(1801), 2, sym_line_comment, sym_block_comment, - ACTIONS(3699), 15, + ACTIONS(1451), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -131712,13 +160413,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3697), 30, + ACTIONS(1449), 24, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -131739,19 +160437,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [23197] = 5, + [40648] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1381), 2, + ACTIONS(3791), 1, + anon_sym_BANG, + ACTIONS(3793), 1, + anon_sym_COLON_COLON, + STATE(1802), 2, sym_line_comment, sym_block_comment, - ACTIONS(3703), 15, + ACTIONS(3789), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -131762,19 +160461,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3701), 30, - anon_sym_SEMI, + ACTIONS(3787), 22, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -131786,33 +160483,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [23257] = 5, + anon_sym_LT2, + [40708] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1382), 2, + STATE(1803), 2, sym_line_comment, sym_block_comment, - ACTIONS(3707), 15, + ACTIONS(3799), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -131822,14 +160516,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3705), 30, - anon_sym_SEMI, + ACTIONS(3801), 25, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -131849,25 +160539,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [23317] = 5, + [40764] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1383), 2, + ACTIONS(3998), 1, + anon_sym_LBRACE, + STATE(1804), 2, sym_line_comment, sym_block_comment, - ACTIONS(3707), 15, + ACTIONS(3791), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -131877,14 +160569,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3705), 30, - anon_sym_SEMI, + ACTIONS(3793), 24, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -131904,19 +160592,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, + anon_sym_COLON_COLON, anon_sym_as, - anon_sym_else, - [23377] = 5, + [40822] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1384), 2, + ACTIONS(3799), 1, + anon_sym_BANG, + ACTIONS(3801), 1, + anon_sym_COLON_COLON, + STATE(1805), 2, sym_line_comment, sym_block_comment, - ACTIONS(3711), 15, + ACTIONS(3797), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -131927,19 +160617,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3709), 30, - anon_sym_SEMI, + ACTIONS(3795), 22, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -131951,33 +160639,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [23437] = 5, + anon_sym_LT2, + [40882] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1385), 2, + ACTIONS(4034), 1, + anon_sym_LBRACE, + STATE(1806), 2, sym_line_comment, sym_block_comment, - ACTIONS(1045), 15, + ACTIONS(3814), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -131987,14 +160674,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1047), 30, - anon_sym_SEMI, + ACTIONS(3816), 24, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -132014,25 +160697,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, + anon_sym_COLON_COLON, anon_sym_as, - anon_sym_else, - [23497] = 5, + [40940] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1386), 2, + STATE(1807), 2, sym_line_comment, sym_block_comment, - ACTIONS(3715), 15, + ACTIONS(3791), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -132042,14 +160724,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3713), 30, - anon_sym_SEMI, + ACTIONS(3793), 25, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -132069,19 +160747,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [23557] = 5, + [40996] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1387), 2, + ACTIONS(3771), 1, + anon_sym_BANG, + ACTIONS(3773), 1, + anon_sym_COLON_COLON, + STATE(1808), 2, sym_line_comment, sym_block_comment, - ACTIONS(1279), 15, + ACTIONS(3769), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -132092,19 +160773,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1277), 30, - anon_sym_SEMI, + ACTIONS(3767), 22, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -132116,27 +160795,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [23617] = 5, + anon_sym_LT2, + [41056] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1388), 2, + ACTIONS(4393), 1, + anon_sym_COLON_COLON, + STATE(1809), 2, sym_line_comment, sym_block_comment, - ACTIONS(3719), 15, + ACTIONS(3727), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -132152,14 +160829,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3717), 30, - anon_sym_SEMI, + ACTIONS(3725), 24, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -132179,45 +160852,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [23677] = 5, + [41113] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1389), 2, + ACTIONS(744), 1, + anon_sym_RBRACK, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4419), 1, + anon_sym_CARET, + ACTIONS(4421), 1, + anon_sym_AMP, + ACTIONS(4423), 1, + anon_sym_PIPE, + ACTIONS(4429), 1, + anon_sym_AMP_AMP, + ACTIONS(4431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(4503), 1, + anon_sym_SEMI, + ACTIONS(4505), 1, + anon_sym_DOT_DOT, + ACTIONS(4509), 1, + anon_sym_COMMA, + STATE(3277), 1, + aux_sym_arguments_repeat1, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4425), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4435), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4507), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1810), 2, sym_line_comment, sym_block_comment, - ACTIONS(3723), 15, - anon_sym_PLUS, + ACTIONS(4417), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4433), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4437), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [41208] = 25, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(750), 1, + anon_sym_RBRACK, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4419), 1, anon_sym_CARET, + ACTIONS(4421), 1, anon_sym_AMP, + ACTIONS(4423), 1, anon_sym_PIPE, + ACTIONS(4429), 1, + anon_sym_AMP_AMP, + ACTIONS(4431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(4505), 1, + anon_sym_DOT_DOT, + ACTIONS(4511), 1, + anon_sym_SEMI, + ACTIONS(4513), 1, + anon_sym_COMMA, + STATE(3269), 1, + aux_sym_arguments_repeat1, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4435), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3721), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4507), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1811), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4417), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4433), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -132228,25 +160994,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [23737] = 5, + [41303] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1390), 2, + ACTIONS(4111), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + STATE(1812), 2, sym_line_comment, sym_block_comment, - ACTIONS(1263), 15, + ACTIONS(4113), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -132262,14 +161021,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1261), 30, - anon_sym_SEMI, + ACTIONS(4109), 23, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -132289,19 +161044,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [23797] = 5, + [41360] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1391), 2, + ACTIONS(4177), 1, + anon_sym_COLON_COLON, + STATE(1813), 2, sym_line_comment, sym_block_comment, - ACTIONS(1431), 15, + ACTIONS(4113), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -132317,14 +161071,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1429), 30, - anon_sym_SEMI, + ACTIONS(4109), 24, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -132344,45 +161094,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [23857] = 5, + [41417] = 25, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1392), 2, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4519), 1, + anon_sym_CARET, + ACTIONS(4521), 1, + anon_sym_AMP, + ACTIONS(4523), 1, + anon_sym_PIPE, + ACTIONS(4525), 1, + anon_sym_AMP_AMP, + ACTIONS(4527), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4533), 1, + anon_sym_EQ, + ACTIONS(4539), 1, + anon_sym_DOT_DOT, + STATE(401), 1, + sym_block, + STATE(3944), 1, + sym_label, + ACTIONS(4515), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4529), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4537), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4541), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1814), 2, sym_line_comment, sym_block_comment, - ACTIONS(3727), 15, - anon_sym_PLUS, + ACTIONS(4517), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4535), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4531), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [41512] = 25, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4519), 1, anon_sym_CARET, + ACTIONS(4521), 1, anon_sym_AMP, + ACTIONS(4523), 1, anon_sym_PIPE, + ACTIONS(4525), 1, + anon_sym_AMP_AMP, + ACTIONS(4527), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4533), 1, + anon_sym_EQ, + ACTIONS(4539), 1, + anon_sym_DOT_DOT, + STATE(1645), 1, + sym_block, + STATE(4045), 1, + sym_label, + ACTIONS(4515), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4529), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4537), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3725), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4541), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1815), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4517), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4535), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4531), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -132393,31 +161236,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [23917] = 5, + [41607] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1393), 2, + STATE(1816), 2, sym_line_comment, sym_block_comment, - ACTIONS(3731), 15, + ACTIONS(3814), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -132427,14 +161261,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3729), 30, - anon_sym_SEMI, + ACTIONS(3816), 24, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -132454,25 +161284,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, + anon_sym_COLON_COLON, anon_sym_as, - anon_sym_else, - [23977] = 8, + [41662] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - STATE(1394), 2, + ACTIONS(4111), 1, + anon_sym_COLON_COLON, + STATE(1817), 2, sym_line_comment, sym_block_comment, - ACTIONS(3735), 14, + ACTIONS(4113), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -132486,14 +161310,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3733), 28, - anon_sym_SEMI, + ACTIONS(4109), 24, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -132512,25 +161335,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [24043] = 5, + [41719] = 25, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(901), 1, + anon_sym_RBRACK, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4419), 1, + anon_sym_CARET, + ACTIONS(4421), 1, + anon_sym_AMP, + ACTIONS(4423), 1, + anon_sym_PIPE, + ACTIONS(4429), 1, + anon_sym_AMP_AMP, + ACTIONS(4431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(4505), 1, + anon_sym_DOT_DOT, + ACTIONS(4543), 1, + anon_sym_SEMI, + ACTIONS(4545), 1, + anon_sym_COMMA, + STATE(3154), 1, + aux_sym_arguments_repeat1, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4425), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4435), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4507), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1818), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4417), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4433), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4437), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [41814] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1395), 2, + STATE(1819), 2, sym_line_comment, sym_block_comment, - ACTIONS(3671), 15, + ACTIONS(3791), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -132540,14 +161432,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3667), 30, - anon_sym_SEMI, + ACTIONS(3793), 24, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -132567,35 +161455,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, + anon_sym_COLON_COLON, anon_sym_as, - anon_sym_else, - [24103] = 5, + [41869] = 22, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1396), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3493), 15, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_DOT_DOT, + ACTIONS(1343), 1, + anon_sym_extern, + ACTIONS(3848), 1, anon_sym_COLON_COLON, - anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, + ACTIONS(3850), 1, + anon_sym_default, + ACTIONS(3856), 1, sym_metavariable, - ACTIONS(3491), 30, + ACTIONS(4547), 1, + sym_identifier, + ACTIONS(4549), 1, + anon_sym_fn, + STATE(2519), 1, + aux_sym_function_modifiers_repeat1, + STATE(2621), 1, + sym_extern_modifier, + STATE(3000), 1, + sym_scoped_type_identifier, + STATE(3787), 1, + sym_function_modifiers, + STATE(3799), 1, + sym_scoped_identifier, + STATE(3803), 1, + sym_generic_type_with_turbofish, + STATE(3972), 1, + sym_generic_type, + STATE(3975), 1, + sym_bracketed_type, + ACTIONS(3852), 2, + anon_sym_gen, + anon_sym_union, + STATE(1820), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1329), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3854), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3846), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132613,54 +161524,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym__, - anon_sym_const, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [24163] = 5, + [41958] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1397), 2, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4519), 1, + anon_sym_CARET, + ACTIONS(4521), 1, + anon_sym_AMP, + ACTIONS(4523), 1, + anon_sym_PIPE, + ACTIONS(4525), 1, + anon_sym_AMP_AMP, + ACTIONS(4527), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4533), 1, + anon_sym_EQ, + ACTIONS(4539), 1, + anon_sym_DOT_DOT, + STATE(1924), 1, + sym_block, + STATE(4117), 1, + sym_label, + ACTIONS(4515), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4529), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4537), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4541), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1821), 2, sym_line_comment, sym_block_comment, - ACTIONS(3739), 15, - anon_sym_PLUS, + ACTIONS(4517), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4535), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4531), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [42053] = 25, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4519), 1, anon_sym_CARET, + ACTIONS(4521), 1, anon_sym_AMP, + ACTIONS(4523), 1, anon_sym_PIPE, + ACTIONS(4525), 1, + anon_sym_AMP_AMP, + ACTIONS(4527), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4533), 1, + anon_sym_EQ, + ACTIONS(4539), 1, + anon_sym_DOT_DOT, + STATE(385), 1, + sym_block, + STATE(3944), 1, + sym_label, + ACTIONS(4515), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4529), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4537), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3737), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4541), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1822), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4517), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4535), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4531), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -132671,25 +161664,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [24223] = 5, + [42148] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1398), 2, + ACTIONS(4177), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + STATE(1823), 2, sym_line_comment, sym_block_comment, - ACTIONS(3743), 15, + ACTIONS(4113), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -132705,14 +161691,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3741), 30, - anon_sym_SEMI, + ACTIONS(4109), 23, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -132732,25 +161714,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [24283] = 5, + [42205] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1399), 2, + STATE(1824), 2, sym_line_comment, sym_block_comment, - ACTIONS(3747), 15, + ACTIONS(3771), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -132760,14 +161740,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3745), 30, - anon_sym_SEMI, + ACTIONS(3773), 24, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -132787,19 +161763,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, + anon_sym_COLON_COLON, anon_sym_as, - anon_sym_else, - [24343] = 5, + [42260] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1400), 2, + STATE(1825), 2, sym_line_comment, sym_block_comment, - ACTIONS(3751), 15, + ACTIONS(3990), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -132815,14 +161789,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3749), 30, - anon_sym_SEMI, + ACTIONS(3988), 25, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -132842,35 +161813,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, + anon_sym_COLON_COLON, anon_sym_as, - anon_sym_else, - [24403] = 5, + [42315] = 22, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1401), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3507), 15, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_DOT_DOT, + ACTIONS(1343), 1, + anon_sym_extern, + ACTIONS(3848), 1, anon_sym_COLON_COLON, - anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, + ACTIONS(3850), 1, + anon_sym_default, + ACTIONS(3856), 1, sym_metavariable, - ACTIONS(3505), 30, + ACTIONS(4551), 1, + sym_identifier, + ACTIONS(4553), 1, + anon_sym_fn, + STATE(2519), 1, + aux_sym_function_modifiers_repeat1, + STATE(2621), 1, + sym_extern_modifier, + STATE(2978), 1, + sym_scoped_type_identifier, + STATE(3799), 1, + sym_scoped_identifier, + STATE(3803), 1, + sym_generic_type_with_turbofish, + STATE(3972), 1, + sym_generic_type, + STATE(3975), 1, + sym_bracketed_type, + STATE(3990), 1, + sym_function_modifiers, + ACTIONS(3852), 2, + anon_sym_gen, + anon_sym_union, + STATE(1826), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1329), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3854), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3846), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132888,34 +161882,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym__, - anon_sym_const, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [24463] = 8, + [42404] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - STATE(1402), 2, + STATE(1827), 2, sym_line_comment, sym_block_comment, - ACTIONS(3755), 14, + ACTIONS(4069), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -132929,14 +161904,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3753), 28, - anon_sym_SEMI, + ACTIONS(4067), 25, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -132955,19 +161930,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, + anon_sym_COLON_COLON, anon_sym_as, - anon_sym_else, - [24529] = 5, + [42459] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1403), 2, + STATE(1828), 2, sym_line_comment, sym_block_comment, - ACTIONS(3759), 15, + ACTIONS(3908), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -132983,14 +161956,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3757), 30, - anon_sym_SEMI, + ACTIONS(3906), 25, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -133010,19 +161980,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, + anon_sym_COLON_COLON, anon_sym_as, - anon_sym_else, - [24589] = 5, + [42514] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1404), 2, + STATE(1704), 1, + sym_label, + STATE(1829), 2, sym_line_comment, sym_block_comment, - ACTIONS(1461), 15, + ACTIONS(4042), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133038,14 +162008,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1459), 30, - anon_sym_SEMI, + ACTIONS(4040), 24, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -133065,100 +162031,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [24649] = 5, + [42571] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1405), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3247), 12, - anon_sym_LPAREN, + ACTIONS(967), 1, + anon_sym_RBRACK, + ACTIONS(4161), 1, anon_sym_LBRACK, - anon_sym_STAR, + ACTIONS(4165), 1, anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - anon_sym_SQUOTE, - sym_integer_literal, - sym_metavariable, - ACTIONS(3245), 33, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_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_gen, - 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, - [24709] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1406), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3763), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4419), 1, anon_sym_CARET, + ACTIONS(4421), 1, anon_sym_AMP, + ACTIONS(4423), 1, anon_sym_PIPE, + ACTIONS(4429), 1, + anon_sym_AMP_AMP, + ACTIONS(4431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(4505), 1, + anon_sym_DOT_DOT, + ACTIONS(4555), 1, + anon_sym_SEMI, + ACTIONS(4557), 1, + anon_sym_COMMA, + STATE(3446), 1, + aux_sym_arguments_repeat1, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4435), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3761), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4507), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1830), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4417), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4433), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -133169,51 +162103,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [24769] = 5, + [42666] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1407), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3767), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4519), 1, anon_sym_CARET, + ACTIONS(4521), 1, anon_sym_AMP, + ACTIONS(4523), 1, anon_sym_PIPE, + ACTIONS(4525), 1, + anon_sym_AMP_AMP, + ACTIONS(4527), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4533), 1, + anon_sym_EQ, + ACTIONS(4539), 1, + anon_sym_DOT_DOT, + STATE(1691), 1, + sym_block, + STATE(4045), 1, + sym_label, + ACTIONS(4515), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4529), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4537), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3765), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4541), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1831), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4517), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4535), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4531), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -133222,27 +162171,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [24829] = 5, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [42761] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1408), 2, + ACTIONS(4409), 1, + anon_sym_BANG, + ACTIONS(4559), 1, + anon_sym_COLON_COLON, + STATE(1832), 2, sym_line_comment, sym_block_comment, - ACTIONS(1275), 15, + ACTIONS(1451), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133258,14 +162201,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1273), 30, - anon_sym_SEMI, + ACTIONS(1449), 23, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -133285,19 +162224,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [24889] = 5, + [42820] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1409), 2, + ACTIONS(4561), 1, + anon_sym_else, + STATE(2030), 1, + sym_else_clause, + STATE(1833), 2, sym_line_comment, sym_block_comment, - ACTIONS(3771), 15, + ACTIONS(1253), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133313,14 +162253,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3769), 30, - anon_sym_SEMI, + ACTIONS(1251), 23, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -133340,19 +162276,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [24949] = 5, + [42879] = 22, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1410), 2, + ACTIONS(1343), 1, + anon_sym_extern, + ACTIONS(3848), 1, + anon_sym_COLON_COLON, + ACTIONS(3850), 1, + anon_sym_default, + ACTIONS(3856), 1, + sym_metavariable, + ACTIONS(4563), 1, + sym_identifier, + ACTIONS(4565), 1, + anon_sym_fn, + STATE(2519), 1, + aux_sym_function_modifiers_repeat1, + STATE(2621), 1, + sym_extern_modifier, + STATE(3087), 1, + sym_scoped_type_identifier, + STATE(3799), 1, + sym_scoped_identifier, + STATE(3803), 1, + sym_generic_type_with_turbofish, + STATE(3837), 1, + sym_function_modifiers, + STATE(3972), 1, + sym_generic_type, + STATE(3975), 1, + sym_bracketed_type, + ACTIONS(3852), 2, + anon_sym_gen, + anon_sym_union, + STATE(1834), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1329), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3854), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3846), 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, + [42968] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4567), 1, + anon_sym_SQUOTE, + STATE(1995), 1, + sym_label, + STATE(1835), 2, sym_line_comment, sym_block_comment, - ACTIONS(3339), 15, + ACTIONS(4042), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133368,14 +162372,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3337), 30, - anon_sym_SEMI, + ACTIONS(4040), 23, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -133395,19 +162395,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [25009] = 5, + [43027] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1411), 2, + ACTIONS(4279), 1, + anon_sym_BANG, + ACTIONS(4281), 1, + anon_sym_COLON_COLON, + STATE(1836), 2, sym_line_comment, sym_block_comment, - ACTIONS(3775), 15, + ACTIONS(3727), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133423,14 +162424,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3773), 30, - anon_sym_SEMI, + ACTIONS(3725), 23, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -133450,45 +162447,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [25069] = 5, + [43086] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1412), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3779), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(1227), 1, + anon_sym_LBRACE, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4519), 1, anon_sym_CARET, + ACTIONS(4521), 1, anon_sym_AMP, + ACTIONS(4523), 1, anon_sym_PIPE, + ACTIONS(4525), 1, + anon_sym_AMP_AMP, + ACTIONS(4527), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4533), 1, + anon_sym_EQ, + ACTIONS(4539), 1, + anon_sym_DOT_DOT, + STATE(478), 1, + sym_block, + STATE(4116), 1, + sym_label, + ACTIONS(4515), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4529), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4537), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3777), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4541), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1837), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4517), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4535), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4531), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -133499,31 +162518,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [25129] = 5, + [43181] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1413), 2, + STATE(1838), 2, sym_line_comment, sym_block_comment, - ACTIONS(1007), 15, + ACTIONS(3799), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -133533,14 +162543,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1009), 30, - anon_sym_SEMI, + ACTIONS(3801), 24, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -133560,45 +162566,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, + anon_sym_COLON_COLON, anon_sym_as, - anon_sym_else, - [25189] = 5, + [43236] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1414), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3783), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4519), 1, anon_sym_CARET, + ACTIONS(4521), 1, anon_sym_AMP, + ACTIONS(4523), 1, anon_sym_PIPE, + ACTIONS(4525), 1, + anon_sym_AMP_AMP, + ACTIONS(4527), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4533), 1, + anon_sym_EQ, + ACTIONS(4539), 1, + anon_sym_DOT_DOT, + STATE(2022), 1, + sym_block, + STATE(4117), 1, + sym_label, + ACTIONS(4515), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4529), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4537), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3781), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4541), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1839), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4517), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4535), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4531), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -133609,51 +162638,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [25249] = 5, + [43331] = 25, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1415), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3787), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(1227), 1, + anon_sym_LBRACE, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4519), 1, anon_sym_CARET, + ACTIONS(4521), 1, anon_sym_AMP, + ACTIONS(4523), 1, anon_sym_PIPE, + ACTIONS(4525), 1, + anon_sym_AMP_AMP, + ACTIONS(4527), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4533), 1, + anon_sym_EQ, + ACTIONS(4539), 1, + anon_sym_DOT_DOT, + STATE(468), 1, + sym_block, + STATE(4116), 1, + sym_label, + ACTIONS(4515), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4529), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4537), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3785), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4541), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1840), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4517), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4535), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4531), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -133664,25 +162708,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [25309] = 5, + [43426] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1416), 2, + STATE(1841), 2, sym_line_comment, sym_block_comment, - ACTIONS(3323), 15, + ACTIONS(3936), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133698,14 +162732,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3321), 30, - anon_sym_SEMI, + ACTIONS(3934), 25, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -133725,19 +162756,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, + anon_sym_COLON_COLON, anon_sym_as, - anon_sym_else, - [25369] = 5, + [43481] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1417), 2, + ACTIONS(4569), 1, + anon_sym_COLON_COLON, + STATE(1842), 2, sym_line_comment, sym_block_comment, - ACTIONS(1049), 15, + ACTIONS(1451), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133753,14 +162784,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1051), 30, - anon_sym_SEMI, + ACTIONS(1449), 24, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -133780,48 +162807,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [25429] = 8, + [43538] = 24, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(951), 1, + anon_sym_RBRACK, + ACTIONS(4161), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(4165), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(4167), 1, anon_sym_DOT, - STATE(1418), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3791), 14, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4419), 1, anon_sym_CARET, + ACTIONS(4421), 1, anon_sym_AMP, + ACTIONS(4423), 1, anon_sym_PIPE, + ACTIONS(4429), 1, + anon_sym_AMP_AMP, + ACTIONS(4431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(4505), 1, + anon_sym_DOT_DOT, + ACTIONS(4571), 1, + anon_sym_COMMA, + STATE(3449), 1, + aux_sym_arguments_repeat1, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4435), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3789), 28, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4507), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1843), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4417), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4433), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -133832,51 +162877,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [25495] = 5, + [43630] = 24, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1419), 2, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4419), 1, + anon_sym_CARET, + ACTIONS(4421), 1, + anon_sym_AMP, + ACTIONS(4423), 1, + anon_sym_PIPE, + ACTIONS(4429), 1, + anon_sym_AMP_AMP, + ACTIONS(4431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(4505), 1, + anon_sym_DOT_DOT, + ACTIONS(4573), 1, + anon_sym_RPAREN, + ACTIONS(4575), 1, + anon_sym_COMMA, + STATE(3311), 1, + aux_sym_arguments_repeat1, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4425), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4435), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4507), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1844), 2, sym_line_comment, sym_block_comment, - ACTIONS(1397), 15, - anon_sym_PLUS, + ACTIONS(4417), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4433), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4437), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [43722] = 19, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4519), 1, anon_sym_CARET, + ACTIONS(4521), 1, anon_sym_AMP, + ACTIONS(4523), 1, anon_sym_PIPE, + ACTIONS(4525), 1, + anon_sym_AMP_AMP, + ACTIONS(4527), 1, + anon_sym_PIPE_PIPE, + ACTIONS(389), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4515), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4529), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4537), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1395), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, + STATE(1845), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4517), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4535), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(387), 15, + anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -133887,25 +163005,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [25555] = 5, + [43804] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1420), 2, + STATE(1846), 2, sym_line_comment, sym_block_comment, - ACTIONS(1457), 15, + ACTIONS(3769), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133916,19 +163027,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1455), 30, - anon_sym_SEMI, + ACTIONS(3767), 22, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -133940,53 +163049,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [25615] = 5, + anon_sym_LT2, + [43858] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1421), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1449), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(347), 1, + anon_sym_EQ, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4519), 1, anon_sym_CARET, + ACTIONS(4521), 1, anon_sym_AMP, + ACTIONS(4523), 1, anon_sym_PIPE, + ACTIONS(4525), 1, + anon_sym_AMP_AMP, + ACTIONS(4527), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4577), 1, + anon_sym_DOT_DOT, + ACTIONS(4515), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4529), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4537), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1447), 30, - anon_sym_SEMI, + ACTIONS(4579), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1847), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4517), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4535), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(341), 13, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -133997,51 +163121,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [25675] = 5, + [43944] = 24, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1422), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1453), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(991), 1, + anon_sym_RPAREN, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4419), 1, anon_sym_CARET, + ACTIONS(4421), 1, anon_sym_AMP, + ACTIONS(4423), 1, anon_sym_PIPE, + ACTIONS(4429), 1, + anon_sym_AMP_AMP, + ACTIONS(4431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(4505), 1, + anon_sym_DOT_DOT, + ACTIONS(4581), 1, + anon_sym_COMMA, + STATE(3375), 1, + aux_sym_arguments_repeat1, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4435), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1451), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4507), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1848), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4417), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4433), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -134052,25 +163190,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [25735] = 5, + [44036] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1423), 2, + STATE(1849), 2, sym_line_comment, sym_block_comment, - ACTIONS(1481), 15, + ACTIONS(4089), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134086,14 +163214,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1479), 30, - anon_sym_SEMI, + ACTIONS(4087), 24, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -134113,45 +163237,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, + anon_sym_DASH_GT, anon_sym_as, - anon_sym_else, - [25795] = 5, + [44090] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1424), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1435), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4519), 1, anon_sym_CARET, + ACTIONS(4521), 1, anon_sym_AMP, + ACTIONS(4523), 1, anon_sym_PIPE, + ACTIONS(4525), 1, + anon_sym_AMP_AMP, + ACTIONS(4527), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4577), 1, + anon_sym_DOT_DOT, + ACTIONS(4515), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4529), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4537), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1433), 30, - anon_sym_SEMI, + ACTIONS(4579), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1850), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4517), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4535), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4449), 13, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -134162,25 +163303,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [25855] = 5, + [44176] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1425), 2, + ACTIONS(4583), 1, + anon_sym_DASH_GT, + STATE(1851), 2, sym_line_comment, sym_block_comment, - ACTIONS(1485), 15, + ACTIONS(4093), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134196,14 +163330,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1483), 30, - anon_sym_SEMI, + ACTIONS(4091), 23, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -134223,19 +163353,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [25915] = 5, + [44232] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1426), 2, + ACTIONS(4585), 1, + anon_sym_DASH_GT, + STATE(1852), 2, sym_line_comment, sym_block_comment, - ACTIONS(1367), 15, + ACTIONS(4099), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134251,14 +163380,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1365), 30, - anon_sym_SEMI, + ACTIONS(4097), 23, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -134278,19 +163403,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [25975] = 5, + [44288] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1427), 2, + ACTIONS(4587), 1, + anon_sym_DASH_GT, + STATE(1853), 2, sym_line_comment, sym_block_comment, - ACTIONS(1405), 15, + ACTIONS(4105), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134306,14 +163430,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1403), 30, - anon_sym_SEMI, + ACTIONS(4103), 23, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -134333,118 +163453,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [26035] = 23, - ACTIONS(29), 1, - anon_sym_LT, + [44344] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1599), 1, + ACTIONS(4161), 1, anon_sym_LBRACK, - ACTIONS(3396), 1, - anon_sym_LPAREN, - ACTIONS(3400), 1, - anon_sym_COLON_COLON, - ACTIONS(3410), 1, - sym_metavariable, - ACTIONS(3428), 1, - sym_identifier, - ACTIONS(3432), 1, - anon_sym_STAR, - ACTIONS(3436), 1, - anon_sym_AMP, - ACTIONS(3438), 1, - anon_sym_SQUOTE, - ACTIONS(3440), 1, - anon_sym_for, - STATE(2492), 1, - sym_where_predicate, - STATE(2698), 1, - sym_scoped_type_identifier, - STATE(3038), 1, - sym_generic_type, - STATE(3369), 1, - sym_generic_type_with_turbofish, - STATE(3462), 1, - sym_scoped_identifier, - STATE(3499), 1, - sym_bracketed_type, - STATE(1428), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3406), 3, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - ACTIONS(3408), 3, - sym_self, - sym_super, - sym_crate, - STATE(3293), 6, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_array_type, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(3434), 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, - [26131] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1429), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1259), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4419), 1, anon_sym_CARET, + ACTIONS(4421), 1, anon_sym_AMP, + ACTIONS(4423), 1, anon_sym_PIPE, + ACTIONS(4429), 1, + anon_sym_AMP_AMP, + ACTIONS(4431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(4505), 1, + anon_sym_DOT_DOT, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4435), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1257), 30, - anon_sym_SEMI, - anon_sym_LPAREN, + ACTIONS(4507), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1854), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4417), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4589), 3, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_COMMA, + ACTIONS(4433), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -134455,25 +163520,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [26191] = 5, + [44432] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1430), 2, + STATE(1855), 2, sym_line_comment, sym_block_comment, - ACTIONS(1413), 15, + ACTIONS(4065), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134489,14 +163544,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1411), 30, - anon_sym_SEMI, + ACTIONS(4063), 24, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -134516,132 +163567,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, + anon_sym_DASH_GT, anon_sym_as, - anon_sym_else, - [26251] = 8, + [44486] = 24, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(4161), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(4165), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(4167), 1, anon_sym_DOT, - STATE(1431), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3795), 14, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4419), 1, anon_sym_CARET, + ACTIONS(4421), 1, anon_sym_AMP, + ACTIONS(4423), 1, anon_sym_PIPE, + ACTIONS(4429), 1, + anon_sym_AMP_AMP, + ACTIONS(4431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(4505), 1, + anon_sym_DOT_DOT, + ACTIONS(4591), 1, + anon_sym_RPAREN, + ACTIONS(4593), 1, + anon_sym_COMMA, + STATE(3249), 1, + aux_sym_arguments_repeat1, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4435), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3793), 28, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(4507), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [26317] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1432), 2, + STATE(1856), 2, sym_line_comment, sym_block_comment, - ACTIONS(3799), 15, - anon_sym_PLUS, + ACTIONS(4417), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3797), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4433), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [26377] = 5, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [44578] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1433), 2, + ACTIONS(4595), 1, + anon_sym_DASH_GT, + STATE(1857), 2, sym_line_comment, sym_block_comment, - ACTIONS(3803), 15, + ACTIONS(4030), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134657,14 +163663,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3801), 30, - anon_sym_SEMI, + ACTIONS(4028), 23, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -134684,45 +163686,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [26437] = 5, + [44634] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1434), 2, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4519), 1, + anon_sym_CARET, + ACTIONS(4521), 1, + anon_sym_AMP, + ACTIONS(4523), 1, + anon_sym_PIPE, + ACTIONS(4525), 1, + anon_sym_AMP_AMP, + ACTIONS(4527), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4533), 1, + anon_sym_EQ, + ACTIONS(4577), 1, + anon_sym_DOT_DOT, + ACTIONS(4515), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4529), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4537), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4579), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1858), 2, sym_line_comment, sym_block_comment, - ACTIONS(3807), 15, - anon_sym_PLUS, + ACTIONS(4147), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_SQUOTE, + ACTIONS(4517), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4535), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4531), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [44722] = 21, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4455), 1, + anon_sym_EQ, + ACTIONS(4519), 1, anon_sym_CARET, + ACTIONS(4521), 1, anon_sym_AMP, + ACTIONS(4523), 1, anon_sym_PIPE, + ACTIONS(4525), 1, + anon_sym_AMP_AMP, + ACTIONS(4527), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4577), 1, + anon_sym_DOT_DOT, + ACTIONS(4515), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4529), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4537), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3805), 30, - anon_sym_SEMI, + ACTIONS(4579), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1859), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4517), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4535), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4453), 13, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -134733,25 +163817,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [26497] = 5, + [44808] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1435), 2, + ACTIONS(4597), 1, + anon_sym_DASH_GT, + STATE(1860), 2, sym_line_comment, sym_block_comment, - ACTIONS(3811), 15, + ACTIONS(4024), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134767,14 +163844,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3809), 30, - anon_sym_SEMI, + ACTIONS(4022), 23, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -134794,19 +163867,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [26557] = 5, + [44864] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1436), 2, + STATE(1861), 2, sym_line_comment, sym_block_comment, - ACTIONS(3815), 15, + ACTIONS(1275), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134822,14 +163892,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3813), 30, - anon_sym_SEMI, + ACTIONS(1273), 24, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -134849,19 +163915,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26617] = 5, + [44918] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1437), 2, + ACTIONS(4599), 1, + anon_sym_COLON_COLON, + STATE(1862), 2, sym_line_comment, sym_block_comment, - ACTIONS(3819), 15, + ACTIONS(3781), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134877,14 +163943,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3817), 30, - anon_sym_SEMI, + ACTIONS(3779), 23, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -134904,19 +163966,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [26677] = 5, + [44974] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1438), 2, + ACTIONS(4599), 1, + anon_sym_COLON_COLON, + STATE(1863), 2, sym_line_comment, sym_block_comment, - ACTIONS(3823), 15, + ACTIONS(3765), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134932,14 +163993,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3821), 30, - anon_sym_SEMI, + ACTIONS(3763), 23, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -134959,19 +164016,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [26737] = 5, + [45030] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1439), 2, + STATE(1864), 2, sym_line_comment, sym_block_comment, - ACTIONS(3359), 15, + ACTIONS(1259), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134987,14 +164041,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3357), 30, - anon_sym_SEMI, + ACTIONS(1257), 24, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -135014,19 +164064,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [26797] = 5, + [45084] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1440), 2, + ACTIONS(4601), 1, + anon_sym_DASH_GT, + STATE(1865), 2, sym_line_comment, sym_block_comment, - ACTIONS(3327), 15, + ACTIONS(4018), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135042,14 +164092,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3325), 30, - anon_sym_SEMI, + ACTIONS(4016), 23, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -135069,19 +164115,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [26857] = 5, + [45140] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1441), 2, + ACTIONS(4599), 1, + anon_sym_COLON_COLON, + STATE(1866), 2, sym_line_comment, sym_block_comment, - ACTIONS(1357), 15, + ACTIONS(3785), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135097,14 +164142,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1359), 30, - anon_sym_SEMI, + ACTIONS(3783), 23, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -135124,19 +164165,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [26917] = 5, + [45196] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1442), 2, + ACTIONS(4603), 1, + anon_sym_DASH_GT, + STATE(1867), 2, sym_line_comment, sym_block_comment, - ACTIONS(3827), 15, + ACTIONS(4059), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135152,14 +164192,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3825), 30, - anon_sym_SEMI, + ACTIONS(4057), 23, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -135179,19 +164215,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [26977] = 5, + [45252] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1443), 2, + STATE(1868), 2, sym_line_comment, sym_block_comment, - ACTIONS(1401), 15, + ACTIONS(1263), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135207,14 +164240,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1399), 30, - anon_sym_SEMI, + ACTIONS(1261), 24, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -135234,45 +164263,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27037] = 5, + [45306] = 24, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1444), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3831), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(963), 1, + anon_sym_RBRACK, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4419), 1, anon_sym_CARET, + ACTIONS(4421), 1, anon_sym_AMP, + ACTIONS(4423), 1, anon_sym_PIPE, + ACTIONS(4429), 1, + anon_sym_AMP_AMP, + ACTIONS(4431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(4505), 1, + anon_sym_DOT_DOT, + ACTIONS(4605), 1, + anon_sym_COMMA, + STATE(3275), 1, + aux_sym_arguments_repeat1, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4435), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3829), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4507), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1869), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4417), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4433), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -135283,25 +164333,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [27097] = 5, + [45398] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1445), 2, + STATE(1870), 2, sym_line_comment, sym_block_comment, - ACTIONS(3835), 15, + ACTIONS(1271), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135317,14 +164357,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3833), 30, - anon_sym_SEMI, + ACTIONS(1269), 24, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -135344,19 +164380,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27157] = 5, + [45452] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1446), 2, + STATE(1871), 2, sym_line_comment, sym_block_comment, - ACTIONS(1363), 15, + ACTIONS(4014), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135372,14 +164406,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1361), 30, - anon_sym_SEMI, + ACTIONS(4012), 24, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -135399,19 +164429,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, + anon_sym_COLON_COLON, anon_sym_as, - anon_sym_else, - [27217] = 5, + [45506] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1447), 2, + STATE(1872), 2, sym_line_comment, sym_block_comment, - ACTIONS(3839), 15, + ACTIONS(4010), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135427,14 +164455,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3837), 30, - anon_sym_SEMI, + ACTIONS(4008), 24, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -135454,92 +164478,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [27277] = 23, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1599), 1, - anon_sym_LBRACK, - ACTIONS(3396), 1, - anon_sym_LPAREN, - ACTIONS(3400), 1, anon_sym_COLON_COLON, - ACTIONS(3410), 1, - sym_metavariable, - ACTIONS(3428), 1, - sym_identifier, - ACTIONS(3432), 1, - anon_sym_STAR, - ACTIONS(3436), 1, - anon_sym_AMP, - ACTIONS(3438), 1, - anon_sym_SQUOTE, - ACTIONS(3440), 1, - anon_sym_for, - STATE(2664), 1, - sym_where_predicate, - STATE(2698), 1, - sym_scoped_type_identifier, - STATE(3038), 1, - sym_generic_type, - STATE(3369), 1, - sym_generic_type_with_turbofish, - STATE(3462), 1, - sym_scoped_identifier, - STATE(3499), 1, - sym_bracketed_type, - STATE(1448), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3406), 3, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - ACTIONS(3408), 3, - sym_self, - sym_super, - sym_crate, - STATE(3293), 6, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_array_type, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(3434), 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, - [27373] = 5, + anon_sym_as, + [45560] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1449), 2, + STATE(1873), 2, sym_line_comment, sym_block_comment, - ACTIONS(1439), 15, + ACTIONS(3996), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135555,14 +164504,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1437), 30, - anon_sym_SEMI, + ACTIONS(3994), 24, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -135582,45 +164527,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, + anon_sym_COLON_COLON, anon_sym_as, - anon_sym_else, - [27433] = 5, + [45614] = 24, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1450), 2, + ACTIONS(955), 1, + anon_sym_RPAREN, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4419), 1, + anon_sym_CARET, + ACTIONS(4421), 1, + anon_sym_AMP, + ACTIONS(4423), 1, + anon_sym_PIPE, + ACTIONS(4429), 1, + anon_sym_AMP_AMP, + ACTIONS(4431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(4505), 1, + anon_sym_DOT_DOT, + ACTIONS(4607), 1, + anon_sym_COMMA, + STATE(3130), 1, + aux_sym_arguments_repeat1, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4425), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4435), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4507), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1874), 2, sym_line_comment, sym_block_comment, - ACTIONS(3843), 15, - anon_sym_PLUS, + ACTIONS(4417), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4433), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4437), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [45706] = 19, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4519), 1, anon_sym_CARET, + ACTIONS(4521), 1, anon_sym_AMP, + ACTIONS(4523), 1, anon_sym_PIPE, + ACTIONS(4525), 1, + anon_sym_AMP_AMP, + ACTIONS(4527), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4447), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4515), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4529), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4537), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3841), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + STATE(1875), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4517), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4535), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4445), 15, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -135631,25 +164657,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [27493] = 5, + [45788] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1451), 2, + STATE(1876), 2, sym_line_comment, sym_block_comment, - ACTIONS(1027), 15, + ACTIONS(3940), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135665,14 +164684,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1029), 30, - anon_sym_SEMI, + ACTIONS(3938), 24, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -135692,19 +164707,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, + anon_sym_COLON_COLON, anon_sym_as, - anon_sym_else, - [27553] = 5, + [45842] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1452), 2, + STATE(1877), 2, sym_line_comment, sym_block_comment, - ACTIONS(3847), 15, + ACTIONS(3944), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -135720,14 +164733,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3845), 30, - anon_sym_SEMI, + ACTIONS(3942), 24, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -135747,46 +164756,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, + anon_sym_COLON_COLON, anon_sym_as, - anon_sym_else, - [27613] = 7, + [45896] = 15, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3287), 1, - anon_sym_BANG, - ACTIONS(3289), 1, - anon_sym_COLON_COLON, - STATE(1453), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3285), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4519), 1, anon_sym_CARET, + ACTIONS(4521), 1, anon_sym_AMP, + ACTIONS(4523), 1, anon_sym_PIPE, + ACTIONS(4515), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4529), 2, anon_sym_LT_LT, anon_sym_GT_GT, + STATE(1878), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4517), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4385), 4, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3283), 28, - anon_sym_SEMI, + ACTIONS(4383), 21, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK, + anon_sym_LBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -135805,44 +164816,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_as, - anon_sym_else, - [27677] = 5, + anon_sym_SQUOTE, + [45970] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1454), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1267), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4467), 1, + anon_sym_EQ, + ACTIONS(4519), 1, anon_sym_CARET, + ACTIONS(4521), 1, anon_sym_AMP, + ACTIONS(4523), 1, anon_sym_PIPE, + ACTIONS(4525), 1, + anon_sym_AMP_AMP, + ACTIONS(4527), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4577), 1, + anon_sym_DOT_DOT, + ACTIONS(4515), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4529), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4537), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1265), 30, - anon_sym_SEMI, + ACTIONS(4579), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1879), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4517), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4535), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4465), 13, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -135853,51 +164881,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [27737] = 5, + [46056] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1455), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1469), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4463), 1, + anon_sym_EQ, + ACTIONS(4519), 1, anon_sym_CARET, + ACTIONS(4521), 1, anon_sym_AMP, + ACTIONS(4523), 1, anon_sym_PIPE, + ACTIONS(4525), 1, + anon_sym_AMP_AMP, + ACTIONS(4527), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4577), 1, + anon_sym_DOT_DOT, + ACTIONS(4515), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4529), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4537), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1467), 30, - anon_sym_SEMI, + ACTIONS(4579), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1880), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4517), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4535), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4461), 13, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -135908,33 +164946,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [27797] = 6, + [46142] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3849), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - STATE(1456), 2, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4515), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1881), 2, sym_line_comment, sym_block_comment, - ACTIONS(3671), 15, - anon_sym_PLUS, + ACTIONS(4517), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4385), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -135943,16 +164979,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3667), 28, - anon_sym_SEMI, + ACTIONS(4383), 21, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK, + anon_sym_LBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -135971,43 +165001,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_as, - anon_sym_else, - [27859] = 5, + anon_sym_SQUOTE, + [46208] = 18, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1457), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3853), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4519), 1, anon_sym_CARET, + ACTIONS(4521), 1, anon_sym_AMP, + ACTIONS(4523), 1, anon_sym_PIPE, + ACTIONS(4525), 1, + anon_sym_AMP_AMP, + ACTIONS(4385), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4515), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4529), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4537), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3851), 30, - anon_sym_SEMI, + STATE(1882), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4517), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4535), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4383), 16, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -136019,49 +165061,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [27919] = 5, + [46288] = 17, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1458), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3857), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4519), 1, anon_sym_CARET, + ACTIONS(4521), 1, anon_sym_AMP, + ACTIONS(4523), 1, anon_sym_PIPE, + ACTIONS(4385), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4515), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4529), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4537), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3855), 30, - anon_sym_SEMI, + STATE(1883), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4517), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4535), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4383), 17, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -136074,49 +165122,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [27979] = 5, + [46366] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1459), 2, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4519), 1, + anon_sym_CARET, + ACTIONS(4521), 1, + anon_sym_AMP, + ACTIONS(4515), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4529), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1884), 2, sym_line_comment, sym_block_comment, - ACTIONS(1357), 15, - anon_sym_PLUS, + ACTIONS(4517), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(4385), 5, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1359), 30, - anon_sym_SEMI, + ACTIONS(4383), 21, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -136135,45 +165182,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [28039] = 5, + [46438] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1460), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3861), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4419), 1, anon_sym_CARET, + ACTIONS(4421), 1, anon_sym_AMP, + ACTIONS(4423), 1, anon_sym_PIPE, + ACTIONS(4429), 1, + anon_sym_AMP_AMP, + ACTIONS(4431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(4505), 1, + anon_sym_DOT_DOT, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4435), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3859), 30, - anon_sym_SEMI, - anon_sym_LPAREN, + ACTIONS(4507), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1885), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4417), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4609), 3, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_COMMA, + ACTIONS(4433), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -136184,49 +165249,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [28099] = 5, + [46526] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1461), 2, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4515), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4529), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1886), 2, sym_line_comment, sym_block_comment, - ACTIONS(3865), 15, - anon_sym_PLUS, + ACTIONS(4517), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4385), 7, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3863), 30, - anon_sym_SEMI, + ACTIONS(4383), 21, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -136245,79 +165304,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [28159] = 5, + [46594] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1462), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2099), 12, - anon_sym_LPAREN, + ACTIONS(4161), 1, anon_sym_LBRACK, - anon_sym_STAR, + ACTIONS(4165), 1, anon_sym_QMARK, - anon_sym_BANG, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4521), 1, anon_sym_AMP, + ACTIONS(4515), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4529), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1887), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4517), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4385), 6, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - anon_sym_SQUOTE, - sym_integer_literal, - sym_metavariable, - ACTIONS(2101), 33, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_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_gen, - 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, - [28219] = 5, + anon_sym_DOT_DOT, + ACTIONS(4383), 21, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + [46664] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1463), 2, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + STATE(1888), 2, sym_line_comment, sym_block_comment, - ACTIONS(3869), 15, - anon_sym_PLUS, + ACTIONS(4517), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4385), 11, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -136326,17 +165393,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3867), 30, - anon_sym_SEMI, + ACTIONS(4383), 21, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -136355,88 +165415,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [28279] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1464), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2527), 15, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_DOT_DOT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(2529), 30, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym__, - anon_sym_const, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [28339] = 12, + [46728] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(3871), 1, - anon_sym_BANG, - ACTIONS(3873), 1, - anon_sym_COLON_COLON, - ACTIONS(3875), 1, - anon_sym_move, - STATE(1747), 1, - sym_block, - STATE(3620), 1, - sym_label, - STATE(1465), 2, + STATE(1889), 2, sym_line_comment, sym_block_comment, - ACTIONS(3285), 15, + ACTIONS(1267), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136452,7 +165440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3283), 23, + ACTIONS(1265), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -136476,15 +165464,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [28413] = 5, + anon_sym_else, + [46782] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1466), 2, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4519), 1, + anon_sym_CARET, + ACTIONS(4521), 1, + anon_sym_AMP, + ACTIONS(4523), 1, + anon_sym_PIPE, + ACTIONS(4525), 1, + anon_sym_AMP_AMP, + ACTIONS(4527), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4533), 1, + anon_sym_EQ, + ACTIONS(4577), 1, + anon_sym_DOT_DOT, + ACTIONS(4515), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4529), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4537), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4579), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1890), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4313), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_SQUOTE, + ACTIONS(4517), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4535), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4531), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [46870] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1891), 2, sym_line_comment, sym_block_comment, - ACTIONS(3879), 15, + ACTIONS(3974), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136500,14 +165555,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3877), 30, - anon_sym_SEMI, + ACTIONS(3972), 24, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -136527,19 +165578,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, + anon_sym_DASH_GT, anon_sym_as, - anon_sym_else, - [28473] = 5, + [46924] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1467), 2, + STATE(1892), 2, sym_line_comment, sym_block_comment, - ACTIONS(1409), 15, + ACTIONS(3932), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136555,14 +165604,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1407), 30, - anon_sym_SEMI, + ACTIONS(3930), 24, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -136582,129 +165627,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, + anon_sym_DASH_GT, anon_sym_as, - anon_sym_else, - [28533] = 5, + [46978] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1468), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3883), 15, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, + ACTIONS(4161), 1, anon_sym_LBRACK, - anon_sym_DASH, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4459), 1, + anon_sym_EQ, + ACTIONS(4519), 1, + anon_sym_CARET, + ACTIONS(4521), 1, anon_sym_AMP, + ACTIONS(4523), 1, anon_sym_PIPE, - anon_sym_LT, + ACTIONS(4525), 1, + anon_sym_AMP_AMP, + ACTIONS(4527), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4577), 1, anon_sym_DOT_DOT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(3881), 30, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym__, - anon_sym_const, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [28593] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1469), 2, + ACTIONS(4515), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4529), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4537), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4579), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1893), 2, sym_line_comment, sym_block_comment, - ACTIONS(3887), 15, - sym__raw_string_literal_start, - sym_float_literal, + ACTIONS(4517), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4535), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4457), 13, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_DOT_DOT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(3885), 30, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_i128, - anon_sym_isize, - anon_sym_usize, - anon_sym_f32, - anon_sym_f64, - anon_sym_bool, - anon_sym_str, - anon_sym_char, - anon_sym__, - anon_sym_const, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - anon_sym_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [28653] = 5, + anon_sym_LBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_SQUOTE, + [47064] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1470), 2, + STATE(1894), 2, sym_line_comment, sym_block_comment, - ACTIONS(3891), 15, + ACTIONS(3904), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136720,14 +165718,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3889), 30, - anon_sym_SEMI, + ACTIONS(3902), 24, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -136747,19 +165741,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, + anon_sym_DASH_GT, anon_sym_as, - anon_sym_else, - [28713] = 5, + [47118] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1471), 2, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4519), 1, + anon_sym_CARET, + ACTIONS(4521), 1, + anon_sym_AMP, + ACTIONS(4523), 1, + anon_sym_PIPE, + ACTIONS(4525), 1, + anon_sym_AMP_AMP, + ACTIONS(4527), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4533), 1, + anon_sym_EQ, + ACTIONS(4577), 1, + anon_sym_DOT_DOT, + ACTIONS(4515), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4529), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4537), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4579), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1895), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4263), 3, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_SQUOTE, + ACTIONS(4517), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4535), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4531), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [47206] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4599), 1, + anon_sym_COLON_COLON, + STATE(1896), 2, sym_line_comment, sym_block_comment, - ACTIONS(1357), 15, + ACTIONS(3777), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136775,14 +165835,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1359), 30, - anon_sym_SEMI, + ACTIONS(3775), 23, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -136802,19 +165858,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [28773] = 5, + [47262] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1472), 2, + ACTIONS(4611), 1, + anon_sym_COLON_COLON, + STATE(1897), 2, sym_line_comment, sym_block_comment, - ACTIONS(1011), 15, + ACTIONS(3777), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136830,14 +165885,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1013), 30, - anon_sym_SEMI, + ACTIONS(3775), 23, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -136857,19 +165908,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [28833] = 5, + [47318] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1473), 2, + ACTIONS(4613), 1, + anon_sym_COLON_COLON, + STATE(1898), 2, sym_line_comment, sym_block_comment, - ACTIONS(3895), 15, + ACTIONS(1451), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136885,14 +165935,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3893), 30, - anon_sym_SEMI, + ACTIONS(1449), 23, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -136912,19 +165958,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [28893] = 5, + [47374] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1474), 2, + ACTIONS(4281), 1, + anon_sym_COLON_COLON, + STATE(1899), 2, sym_line_comment, sym_block_comment, - ACTIONS(1357), 15, + ACTIONS(3727), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136940,14 +165985,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1359), 30, - anon_sym_SEMI, + ACTIONS(3725), 23, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -136967,19 +166008,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [28953] = 5, + [47430] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1475), 2, + ACTIONS(4615), 1, + anon_sym_COLON_COLON, + STATE(1900), 2, sym_line_comment, sym_block_comment, - ACTIONS(1417), 15, + ACTIONS(3777), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136995,14 +166035,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1415), 30, - anon_sym_SEMI, + ACTIONS(3775), 23, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -137022,19 +166058,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [29013] = 5, + [47486] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1476), 2, + ACTIONS(4617), 1, + anon_sym_LPAREN, + STATE(2011), 1, + sym_arguments, + STATE(1901), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 15, + ACTIONS(3914), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137050,14 +166087,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3897), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(3910), 22, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -137077,19 +166109,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [29073] = 5, + [47544] = 18, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4619), 1, + sym_identifier, + ACTIONS(4621), 1, + anon_sym_LBRACE, + ACTIONS(4623), 1, + anon_sym_RBRACE, + ACTIONS(4625), 1, + anon_sym_STAR, + ACTIONS(4629), 1, + anon_sym_COMMA, + ACTIONS(4631), 1, + anon_sym_COLON_COLON, + ACTIONS(4635), 1, + sym_metavariable, + STATE(2800), 1, + sym_scoped_identifier, + STATE(3351), 1, + sym__use_clause, + STATE(3900), 1, + sym_generic_type_with_turbofish, + STATE(4063), 1, + sym_bracketed_type, + STATE(1902), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4633), 3, + sym_self, + sym_super, + sym_crate, + STATE(3244), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4627), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_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_gen, + anon_sym_union, + [47624] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1477), 2, + ACTIONS(4637), 1, + anon_sym_COLON_COLON, + STATE(1903), 2, sym_line_comment, sym_block_comment, - ACTIONS(3903), 15, + ACTIONS(1451), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137105,14 +166198,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3901), 30, - anon_sym_SEMI, + ACTIONS(1449), 23, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -137132,19 +166221,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [29133] = 5, + [47680] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1478), 2, + STATE(1904), 2, sym_line_comment, sym_block_comment, - ACTIONS(3907), 15, + ACTIONS(1045), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137160,14 +166246,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3905), 30, - anon_sym_SEMI, + ACTIONS(1047), 23, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -137187,45 +166269,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [29193] = 5, + [47733] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1479), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3911), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4639), 1, + anon_sym_LBRACK, + ACTIONS(4645), 1, + anon_sym_QMARK, + ACTIONS(4647), 1, anon_sym_CARET, + ACTIONS(4649), 1, anon_sym_AMP, + ACTIONS(4651), 1, anon_sym_PIPE, + ACTIONS(4653), 1, + anon_sym_AMP_AMP, + ACTIONS(4655), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4663), 1, + anon_sym_DOT, + ACTIONS(4665), 1, + anon_sym_as, + ACTIONS(4447), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4641), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4657), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4661), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3909), 30, - anon_sym_SEMI, + STATE(1905), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4643), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4659), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4445), 14, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137236,51 +166330,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [29253] = 5, + [47814] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1480), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3915), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4459), 1, + anon_sym_EQ, + ACTIONS(4639), 1, + anon_sym_LBRACK, + ACTIONS(4645), 1, + anon_sym_QMARK, + ACTIONS(4647), 1, anon_sym_CARET, + ACTIONS(4649), 1, anon_sym_AMP, + ACTIONS(4651), 1, anon_sym_PIPE, + ACTIONS(4653), 1, + anon_sym_AMP_AMP, + ACTIONS(4655), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4663), 1, + anon_sym_DOT, + ACTIONS(4665), 1, + anon_sym_as, + ACTIONS(4667), 1, + anon_sym_DOT_DOT, + ACTIONS(4641), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4657), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4661), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3913), 30, - anon_sym_SEMI, + ACTIONS(4669), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1906), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4643), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4659), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4457), 12, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137291,51 +166396,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [29313] = 5, + [47899] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1481), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3919), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(309), 1, + anon_sym_RBRACE, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4419), 1, anon_sym_CARET, + ACTIONS(4421), 1, anon_sym_AMP, + ACTIONS(4423), 1, anon_sym_PIPE, + ACTIONS(4429), 1, + anon_sym_AMP_AMP, + ACTIONS(4431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(4505), 1, + anon_sym_DOT_DOT, + ACTIONS(4671), 1, + anon_sym_SEMI, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4435), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3917), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4507), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1907), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4417), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4433), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137346,51 +166462,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [29373] = 5, + [47988] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1482), 2, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4419), 1, + anon_sym_CARET, + ACTIONS(4421), 1, + anon_sym_AMP, + ACTIONS(4423), 1, + anon_sym_PIPE, + ACTIONS(4429), 1, + anon_sym_AMP_AMP, + ACTIONS(4431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(4505), 1, + anon_sym_DOT_DOT, + ACTIONS(4673), 1, + anon_sym_RPAREN, + ACTIONS(4675), 1, + anon_sym_COMMA, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4425), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4435), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4507), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1908), 2, sym_line_comment, sym_block_comment, - ACTIONS(3661), 15, - anon_sym_PLUS, + ACTIONS(4417), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4433), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4437), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [48077] = 22, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4419), 1, anon_sym_CARET, + ACTIONS(4421), 1, anon_sym_AMP, + ACTIONS(4423), 1, anon_sym_PIPE, + ACTIONS(4429), 1, + anon_sym_AMP_AMP, + ACTIONS(4431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(4505), 1, + anon_sym_DOT_DOT, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4435), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3657), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, + ACTIONS(4507), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4677), 2, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_COMMA, + STATE(1909), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4417), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4433), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137401,25 +166593,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [29433] = 5, + [48164] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1483), 2, + STATE(1910), 2, sym_line_comment, sym_block_comment, - ACTIONS(3923), 15, + ACTIONS(4329), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137435,14 +166617,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3921), 30, - anon_sym_SEMI, + ACTIONS(4327), 23, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -137462,19 +166640,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [29493] = 5, + [48217] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1484), 2, + STATE(1911), 2, sym_line_comment, sym_block_comment, - ACTIONS(3927), 15, + ACTIONS(1279), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137490,14 +166665,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3925), 30, - anon_sym_SEMI, + ACTIONS(1277), 23, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -137517,45 +166688,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [29553] = 5, + [48270] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1485), 2, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4419), 1, + anon_sym_CARET, + ACTIONS(4421), 1, + anon_sym_AMP, + ACTIONS(4423), 1, + anon_sym_PIPE, + ACTIONS(4429), 1, + anon_sym_AMP_AMP, + ACTIONS(4431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(4505), 1, + anon_sym_DOT_DOT, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4425), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4435), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4507), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4679), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1912), 2, sym_line_comment, sym_block_comment, - ACTIONS(3931), 15, - anon_sym_PLUS, + ACTIONS(4417), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4433), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4437), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [48357] = 19, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4685), 1, anon_sym_CARET, + ACTIONS(4687), 1, anon_sym_AMP, + ACTIONS(4689), 1, anon_sym_PIPE, + ACTIONS(4691), 1, + anon_sym_AMP_AMP, + ACTIONS(4693), 1, + anon_sym_PIPE_PIPE, + ACTIONS(389), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4681), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4695), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4699), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3929), 30, - anon_sym_SEMI, + STATE(1913), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4683), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(387), 14, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137566,25 +166814,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [29613] = 5, + [48438] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1486), 2, + STATE(1914), 2, sym_line_comment, sym_block_comment, - ACTIONS(3935), 15, + ACTIONS(4337), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137600,14 +166840,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3933), 30, - anon_sym_SEMI, + ACTIONS(4335), 23, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -137627,48 +166863,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [29673] = 7, + [48491] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3301), 1, - anon_sym_BANG, - ACTIONS(3937), 1, - anon_sym_COLON_COLON, - STATE(1487), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1357), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4419), 1, anon_sym_CARET, + ACTIONS(4421), 1, anon_sym_AMP, + ACTIONS(4423), 1, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(4429), 1, + anon_sym_AMP_AMP, + ACTIONS(4431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4439), 1, anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, + ACTIONS(4505), 1, anon_sym_DOT_DOT, - ACTIONS(1359), 28, + ACTIONS(4671), 1, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(4701), 1, anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4425), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4435), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4507), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1915), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4417), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4433), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137679,24 +166930,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_as, - anon_sym_else, - [29737] = 5, + [48580] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1488), 2, + STATE(1916), 2, sym_line_comment, sym_block_comment, - ACTIONS(3941), 15, + ACTIONS(1443), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137712,14 +166954,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3939), 30, - anon_sym_SEMI, + ACTIONS(1441), 23, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -137739,19 +166977,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [29797] = 5, + [48633] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1489), 2, + STATE(1917), 2, sym_line_comment, sym_block_comment, - ACTIONS(995), 15, + ACTIONS(4117), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137767,14 +167002,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(997), 30, - anon_sym_SEMI, + ACTIONS(4115), 23, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -137794,19 +167025,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [29857] = 5, + [48686] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1490), 2, + STATE(1918), 2, sym_line_comment, sym_block_comment, - ACTIONS(1357), 15, + ACTIONS(4145), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137822,14 +167050,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1359), 30, - anon_sym_SEMI, + ACTIONS(4143), 23, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -137849,45 +167073,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [29917] = 5, + [48739] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1491), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1023), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(347), 1, + anon_sym_EQ, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4685), 1, anon_sym_CARET, + ACTIONS(4687), 1, anon_sym_AMP, + ACTIONS(4689), 1, anon_sym_PIPE, + ACTIONS(4691), 1, + anon_sym_AMP_AMP, + ACTIONS(4693), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4703), 1, + anon_sym_DOT_DOT, + ACTIONS(4681), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4695), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4699), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1025), 30, - anon_sym_SEMI, + ACTIONS(4705), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1919), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4683), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(341), 12, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137898,51 +167138,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [29977] = 5, + [48824] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1492), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3945), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4419), 1, anon_sym_CARET, + ACTIONS(4421), 1, anon_sym_AMP, + ACTIONS(4423), 1, anon_sym_PIPE, + ACTIONS(4429), 1, + anon_sym_AMP_AMP, + ACTIONS(4431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(4505), 1, + anon_sym_DOT_DOT, + ACTIONS(4707), 1, + anon_sym_SEMI, + ACTIONS(4709), 1, + anon_sym_else, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4435), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3943), 30, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4507), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1920), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4417), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4433), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137953,25 +167204,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [30037] = 5, + [48913] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1493), 2, + STATE(1921), 2, sym_line_comment, sym_block_comment, - ACTIONS(3949), 15, + ACTIONS(1401), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137987,14 +167228,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3947), 30, - anon_sym_SEMI, + ACTIONS(1399), 23, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -138014,19 +167251,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [30097] = 5, + [48966] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1494), 2, + STATE(1922), 2, sym_line_comment, sym_block_comment, - ACTIONS(1477), 15, + ACTIONS(1467), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138042,14 +167276,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1475), 30, - anon_sym_SEMI, + ACTIONS(1465), 23, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -138069,120 +167299,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [30157] = 25, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1323), 1, - anon_sym_fn, - ACTIONS(1331), 1, - anon_sym_extern, - ACTIONS(3181), 1, - anon_sym_for, - ACTIONS(3400), 1, - anon_sym_COLON_COLON, - ACTIONS(3402), 1, - anon_sym_default, - ACTIONS(3410), 1, - sym_metavariable, - ACTIONS(3951), 1, - sym_identifier, - STATE(1565), 1, - sym_for_lifetimes, - STATE(1938), 1, - sym_scoped_type_identifier, - STATE(1978), 1, - sym_generic_type, - STATE(2239), 1, - aux_sym_function_modifiers_repeat1, - STATE(2387), 1, - sym_extern_modifier, - STATE(3369), 1, - sym_generic_type_with_turbofish, - STATE(3386), 1, - sym_function_modifiers, - STATE(3462), 1, - sym_scoped_identifier, - STATE(3499), 1, - sym_bracketed_type, - ACTIONS(3406), 2, - anon_sym_gen, - anon_sym_union, - STATE(1495), 2, - sym_line_comment, - sym_block_comment, - STATE(1995), 2, - sym_higher_ranked_trait_bound, - sym_function_type, - ACTIONS(1317), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3408), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3398), 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, - [30256] = 6, + [49019] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3289), 1, - anon_sym_COLON_COLON, - STATE(1496), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3285), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4685), 1, anon_sym_CARET, + ACTIONS(4687), 1, anon_sym_AMP, + ACTIONS(4689), 1, anon_sym_PIPE, + ACTIONS(4691), 1, + anon_sym_AMP_AMP, + ACTIONS(4693), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4711), 1, + anon_sym_LBRACE, + ACTIONS(4715), 1, + anon_sym_EQ, + ACTIONS(4717), 1, + anon_sym_DOT_DOT, + STATE(473), 1, + sym_match_block, + ACTIONS(4681), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4695), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4699), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3283), 28, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4719), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1923), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4683), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4713), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138193,34 +167366,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_as, - anon_sym_else, - [30317] = 10, + [49108] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3287), 1, - anon_sym_BANG, - ACTIONS(3293), 1, - anon_sym_move, - ACTIONS(3953), 1, - anon_sym_COLON_COLON, - STATE(1421), 1, - sym_block, - STATE(3569), 1, - sym_label, - STATE(1497), 2, + STATE(1924), 2, sym_line_comment, sym_block_comment, - ACTIONS(3285), 15, + ACTIONS(1435), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138236,10 +167390,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3283), 24, + ACTIONS(1433), 23, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -138259,125 +167413,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, anon_sym_as, - [30386] = 25, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1331), 1, - anon_sym_extern, - ACTIONS(3161), 1, - anon_sym_fn, - ACTIONS(3418), 1, - anon_sym_COLON_COLON, - ACTIONS(3420), 1, - anon_sym_default, - ACTIONS(3426), 1, - sym_metavariable, - ACTIONS(3955), 1, - sym_identifier, - ACTIONS(3957), 1, - anon_sym_for, - STATE(1556), 1, - sym_scoped_type_identifier, - STATE(1591), 1, - sym_for_lifetimes, - STATE(1635), 1, - sym_generic_type, - STATE(2239), 1, - aux_sym_function_modifiers_repeat1, - STATE(2387), 1, - sym_extern_modifier, - STATE(3341), 1, - sym_function_modifiers, - STATE(3538), 1, - sym_scoped_identifier, - STATE(3554), 1, - sym_generic_type_with_turbofish, - STATE(3560), 1, - sym_bracketed_type, - ACTIONS(3422), 2, - anon_sym_gen, - anon_sym_union, - STATE(1498), 2, - sym_line_comment, - sym_block_comment, - STATE(1700), 2, - sym_higher_ranked_trait_bound, - sym_function_type, - ACTIONS(1317), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3424), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3416), 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, - [30485] = 11, + [49161] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3287), 1, - anon_sym_BANG, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(3293), 1, - anon_sym_move, - ACTIONS(3953), 1, - anon_sym_COLON_COLON, - STATE(1421), 1, - sym_block, - STATE(3569), 1, - sym_label, - STATE(1499), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3285), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4685), 1, anon_sym_CARET, + ACTIONS(4687), 1, anon_sym_AMP, + ACTIONS(4689), 1, anon_sym_PIPE, + ACTIONS(4691), 1, + anon_sym_AMP_AMP, + ACTIONS(4693), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4715), 1, + anon_sym_EQ, + ACTIONS(4717), 1, + anon_sym_DOT_DOT, + ACTIONS(4721), 1, + anon_sym_LBRACE, + STATE(1694), 1, + sym_match_block, + ACTIONS(4681), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4695), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4699), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3283), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4719), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1925), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4683), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4713), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138388,123 +167480,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [30556] = 25, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1331), 1, - anon_sym_extern, - ACTIONS(3119), 1, - anon_sym_fn, - ACTIONS(3382), 1, - anon_sym_COLON_COLON, - ACTIONS(3384), 1, - anon_sym_default, - ACTIONS(3392), 1, - sym_metavariable, - ACTIONS(3959), 1, - sym_identifier, - ACTIONS(3961), 1, - anon_sym_for, - STATE(1036), 1, - sym_scoped_type_identifier, - STATE(1094), 1, - sym_generic_type, - STATE(1584), 1, - sym_for_lifetimes, - STATE(2239), 1, - aux_sym_function_modifiers_repeat1, - STATE(2387), 1, - sym_extern_modifier, - STATE(3367), 1, - sym_function_modifiers, - STATE(3513), 1, - sym_scoped_identifier, - STATE(3546), 1, - sym_generic_type_with_turbofish, - STATE(3556), 1, - sym_bracketed_type, - ACTIONS(3388), 2, - anon_sym_gen, - anon_sym_union, - STATE(1440), 2, - sym_higher_ranked_trait_bound, - sym_function_type, - STATE(1500), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1317), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3390), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3380), 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, - [30655] = 6, + [49250] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3963), 1, - anon_sym_COLON_COLON, - STATE(1501), 2, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4419), 1, + anon_sym_CARET, + ACTIONS(4421), 1, + anon_sym_AMP, + ACTIONS(4423), 1, + anon_sym_PIPE, + ACTIONS(4429), 1, + anon_sym_AMP_AMP, + ACTIONS(4431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(4505), 1, + anon_sym_DOT_DOT, + ACTIONS(4723), 1, + anon_sym_SEMI, + ACTIONS(4725), 1, + anon_sym_else, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4425), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4435), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4507), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1926), 2, sym_line_comment, sym_block_comment, - ACTIONS(1357), 15, - anon_sym_PLUS, + ACTIONS(4417), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4433), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4437), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [49339] = 21, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4455), 1, + anon_sym_EQ, + ACTIONS(4685), 1, anon_sym_CARET, + ACTIONS(4687), 1, anon_sym_AMP, + ACTIONS(4689), 1, anon_sym_PIPE, + ACTIONS(4691), 1, + anon_sym_AMP_AMP, + ACTIONS(4693), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4703), 1, + anon_sym_DOT_DOT, + ACTIONS(4681), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4695), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4699), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1359), 28, - anon_sym_SEMI, + ACTIONS(4705), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1927), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4683), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4453), 12, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138515,75 +167610,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_as, - anon_sym_else, - [30716] = 22, + [49424] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(4161), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(4165), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(4167), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(4387), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(4451), 1, + anon_sym_EQ, + ACTIONS(4685), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(4687), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(4689), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(4691), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, + ACTIONS(4693), 1, anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(3989), 1, + ACTIONS(4703), 1, anon_sym_DOT_DOT, - ACTIONS(3965), 2, + ACTIONS(4681), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(4695), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(4699), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3991), 2, + ACTIONS(4705), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1502), 2, + STATE(1928), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(4683), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(4697), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3939), 7, - anon_sym_SEMI, + ACTIONS(4449), 12, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_else, - ACTIONS(3981), 10, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138594,63 +167674,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [30808] = 21, + [49509] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(347), 1, - anon_sym_EQ, - ACTIONS(3679), 1, + ACTIONS(315), 1, + anon_sym_RBRACE, + ACTIONS(4161), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(4165), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(4167), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(4387), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(4419), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(4421), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(4423), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(4429), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, + ACTIONS(4431), 1, anon_sym_PIPE_PIPE, - ACTIONS(3989), 1, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(4505), 1, anon_sym_DOT_DOT, - ACTIONS(3965), 2, + ACTIONS(4671), 1, + anon_sym_SEMI, + ACTIONS(4415), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(4435), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3991), 2, + ACTIONS(4507), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1503), 2, + STATE(1929), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(4417), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(4433), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(341), 17, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138661,126 +167740,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_COMMA, - anon_sym_else, - [30898] = 19, - ACTIONS(29), 1, - anon_sym_LT, + [49598] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1295), 1, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4419), 1, + anon_sym_CARET, + ACTIONS(4421), 1, + anon_sym_AMP, + ACTIONS(4423), 1, + anon_sym_PIPE, + ACTIONS(4429), 1, + anon_sym_AMP_AMP, + ACTIONS(4431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(4505), 1, + anon_sym_DOT_DOT, + ACTIONS(4263), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(4415), 2, + anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1341), 1, - aux_sym_string_literal_token1, - ACTIONS(1351), 1, - sym__raw_string_literal_start, - ACTIONS(2471), 1, - anon_sym_COLON_COLON, - ACTIONS(3271), 1, - sym_identifier, - ACTIONS(3281), 1, - sym_metavariable, - STATE(2079), 1, - sym_scoped_identifier, - STATE(2121), 1, - sym__literal_pattern, - STATE(3353), 1, - sym_bracketed_type, - STATE(3379), 1, - sym_generic_type_with_turbofish, - ACTIONS(1343), 2, - anon_sym_true, - anon_sym_false, - STATE(1504), 2, + ACTIONS(4425), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4435), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4507), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1930), 2, sym_line_comment, sym_block_comment, - ACTIONS(1339), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3279), 3, - sym_self, - sym_super, - sym_crate, - STATE(2037), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3277), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_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_gen, - anon_sym_union, - [30984] = 18, + ACTIONS(4417), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4433), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4437), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [49685] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(331), 1, + anon_sym_RBRACE, + ACTIONS(4161), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(4165), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(4167), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(4387), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(4419), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(4421), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(4423), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(4429), 1, anon_sym_AMP_AMP, - ACTIONS(3681), 2, + ACTIONS(4431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4439), 1, anon_sym_EQ, + ACTIONS(4505), 1, anon_sym_DOT_DOT, - ACTIONS(3965), 2, + ACTIONS(4671), 1, + anon_sym_SEMI, + ACTIONS(4415), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(4435), 2, anon_sym_GT, anon_sym_LT, - STATE(1505), 2, + ACTIONS(4507), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1931), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(4417), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(4433), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3677), 20, - anon_sym_SEMI, + ACTIONS(4437), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [49774] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1932), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(999), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1001), 23, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -138792,34 +167912,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_else, - [31068] = 11, + anon_sym_as, + [49827] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + STATE(1933), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4221), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4219), 23, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(3683), 1, + anon_sym_EQ_GT, anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_as, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1506), 2, + [49880] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1934), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(1009), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3681), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -138828,13 +167989,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3677), 25, - anon_sym_SEMI, + ACTIONS(1011), 23, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -138853,65 +168014,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_else, - [31138] = 21, + anon_sym_as, + [49933] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(311), 1, + anon_sym_RBRACE, + ACTIONS(4161), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(4165), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(4167), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(4387), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(4419), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(4421), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(4423), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(4429), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, + ACTIONS(4431), 1, anon_sym_PIPE_PIPE, - ACTIONS(3989), 1, - anon_sym_DOT_DOT, - ACTIONS(3995), 1, + ACTIONS(4439), 1, anon_sym_EQ, - ACTIONS(3965), 2, + ACTIONS(4505), 1, + anon_sym_DOT_DOT, + ACTIONS(4671), 1, + anon_sym_SEMI, + ACTIONS(4415), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(4435), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3991), 2, + ACTIONS(4507), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1507), 2, + STATE(1935), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(4417), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(4433), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3993), 17, - anon_sym_SEMI, + ACTIONS(4437), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [50022] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1936), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4157), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4155), 23, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138922,65 +168122,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_COMMA, - anon_sym_else, - [31228] = 21, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [50075] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(327), 1, + anon_sym_RBRACE, + ACTIONS(4161), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(4165), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(4167), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(4387), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(4419), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(4421), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(4423), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(4429), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, + ACTIONS(4431), 1, anon_sym_PIPE_PIPE, - ACTIONS(3989), 1, - anon_sym_DOT_DOT, - ACTIONS(3999), 1, + ACTIONS(4439), 1, anon_sym_EQ, - ACTIONS(3965), 2, + ACTIONS(4505), 1, + anon_sym_DOT_DOT, + ACTIONS(4671), 1, + anon_sym_SEMI, + ACTIONS(4415), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(4435), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3991), 2, + ACTIONS(4507), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1508), 2, + STATE(1937), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(4417), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(4433), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3997), 17, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138991,120 +168195,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_COMMA, - anon_sym_else, - [31318] = 19, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1295), 1, - anon_sym_DASH, - ACTIONS(1341), 1, - aux_sym_string_literal_token1, - ACTIONS(1351), 1, - sym__raw_string_literal_start, - ACTIONS(2471), 1, - anon_sym_COLON_COLON, - ACTIONS(3259), 1, - sym_identifier, - ACTIONS(3269), 1, - sym_metavariable, - STATE(2074), 1, - sym_scoped_identifier, - STATE(2129), 1, - sym__literal_pattern, - STATE(3353), 1, - sym_bracketed_type, - STATE(3379), 1, - sym_generic_type_with_turbofish, - ACTIONS(1343), 2, - anon_sym_true, - anon_sym_false, - STATE(1509), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1339), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3267), 3, - sym_self, - sym_super, - sym_crate, - STATE(2037), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3265), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_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_gen, - anon_sym_union, - [31404] = 15, + [50164] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(4161), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(4165), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(4167), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(4387), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(4685), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(4687), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(4689), 1, anon_sym_PIPE, - ACTIONS(3965), 2, + ACTIONS(4691), 1, + anon_sym_AMP_AMP, + ACTIONS(4693), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4447), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4681), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(4695), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1510), 2, + ACTIONS(4699), 2, + anon_sym_GT, + anon_sym_LT, + STATE(1938), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(4683), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3681), 4, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3677), 25, - anon_sym_SEMI, + ACTIONS(4697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4445), 14, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139115,67 +168255,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_else, - [31482] = 19, + [50245] = 15, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(4161), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(4165), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(4167), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(4387), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(4685), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(4687), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(4689), 1, anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3965), 2, + ACTIONS(4681), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(4695), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4003), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - STATE(1511), 2, + STATE(1939), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(4683), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4001), 19, - anon_sym_SEMI, + ACTIONS(4385), 4, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(4383), 20, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139186,31 +168309,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_else, - [31568] = 11, + [50318] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4005), 1, - anon_sym_LPAREN, - ACTIONS(4007), 1, - anon_sym_BANG, - ACTIONS(4009), 1, - anon_sym_COLON_COLON, - ACTIONS(4011), 1, - anon_sym_LT2, - STATE(1618), 1, - sym_type_arguments, - STATE(1642), 1, - sym_parameters, - STATE(1512), 2, + STATE(1940), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 17, + ACTIONS(1439), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139221,14 +168334,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3295), 20, + ACTIONS(1437), 23, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -139242,36 +168354,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [31638] = 10, + [50371] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - STATE(1513), 2, + STATE(1941), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(4153), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3681), 11, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -139280,13 +168385,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3677), 25, - anon_sym_SEMI, + ACTIONS(4151), 23, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -139305,94 +168410,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_else, - [31706] = 21, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, - anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3989), 1, - anon_sym_DOT_DOT, - ACTIONS(4015), 1, - anon_sym_EQ, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(3991), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1514), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4013), 17, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_COMMA, - anon_sym_else, - [31796] = 9, + [50424] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, - anon_sym_LBRACE, - ACTIONS(3450), 1, - anon_sym_COLON_COLON, - ACTIONS(4017), 1, - anon_sym_BANG, - STATE(1473), 1, - sym_field_initializer_list, - STATE(1515), 2, + STATE(1942), 2, sym_line_comment, sym_block_comment, - ACTIONS(1357), 15, + ACTIONS(987), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139408,11 +168435,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1359), 24, - anon_sym_SEMI, + ACTIONS(989), 23, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -139433,59 +168459,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [31862] = 19, + [50477] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(325), 1, + anon_sym_RBRACE, + ACTIONS(4161), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(4165), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(4167), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(4387), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(4419), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(4421), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(4423), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(4429), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, + ACTIONS(4431), 1, anon_sym_PIPE_PIPE, - ACTIONS(389), 2, + ACTIONS(4439), 1, anon_sym_EQ, + ACTIONS(4505), 1, anon_sym_DOT_DOT, - ACTIONS(3965), 2, + ACTIONS(4671), 1, + anon_sym_SEMI, + ACTIONS(4415), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(4435), 2, anon_sym_GT, anon_sym_LT, - STATE(1516), 2, + ACTIONS(4507), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1943), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(4417), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(4433), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(387), 19, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139496,67 +168525,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_else, - [31948] = 21, + [50566] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(4639), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(4645), 1, anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(4647), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(4649), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(4651), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(4653), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, + ACTIONS(4655), 1, anon_sym_PIPE_PIPE, - ACTIONS(3989), 1, + ACTIONS(4663), 1, + anon_sym_DOT, + ACTIONS(4665), 1, + anon_sym_as, + ACTIONS(4667), 1, anon_sym_DOT_DOT, - ACTIONS(4021), 1, + ACTIONS(4729), 1, anon_sym_EQ, - ACTIONS(3965), 2, + ACTIONS(4263), 2, + anon_sym_LPAREN, + anon_sym_EQ_GT, + ACTIONS(4641), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(4657), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(4661), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3991), 2, + ACTIONS(4669), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1517), 2, + STATE(1944), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(4643), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(4659), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4019), 17, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(4727), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139567,68 +168590,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_COMMA, - anon_sym_else, - [32038] = 22, + [50653] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(4161), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(4165), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(4167), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(4387), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(4467), 1, + anon_sym_EQ, + ACTIONS(4685), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(4687), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(4689), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(4691), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, + ACTIONS(4693), 1, anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(3989), 1, + ACTIONS(4703), 1, anon_sym_DOT_DOT, - ACTIONS(3965), 2, + ACTIONS(4681), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(4695), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(4699), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3991), 2, + ACTIONS(4705), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1518), 2, + STATE(1945), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(4683), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(4697), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3889), 7, - anon_sym_SEMI, + ACTIONS(4465), 12, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_else, - ACTIONS(3981), 10, + anon_sym_LBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [50738] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1946), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(941), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(943), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139639,63 +168695,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32130] = 21, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [50791] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(4161), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(4165), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(4167), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(4387), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(4519), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(4521), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(4523), 1, anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, + ACTIONS(4527), 1, anon_sym_PIPE_PIPE, - ACTIONS(3989), 1, - anon_sym_DOT_DOT, - ACTIONS(4025), 1, + ACTIONS(4533), 1, anon_sym_EQ, - ACTIONS(3965), 2, + ACTIONS(4539), 1, + anon_sym_DOT_DOT, + ACTIONS(4515), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(4529), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(4537), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3991), 2, + ACTIONS(4541), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1519), 2, + STATE(1947), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(4517), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(4731), 3, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_SQUOTE, + ACTIONS(4535), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4023), 17, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(4531), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139706,116 +168766,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_COMMA, - anon_sym_else, - [32220] = 19, - ACTIONS(29), 1, - anon_sym_LT, + [50876] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1655), 1, - anon_sym_DASH, - ACTIONS(1679), 1, - aux_sym_string_literal_token1, - ACTIONS(1687), 1, - sym__raw_string_literal_start, - ACTIONS(3531), 1, - sym_identifier, - ACTIONS(3535), 1, - anon_sym_COLON_COLON, - ACTIONS(3539), 1, - sym_metavariable, - STATE(2632), 1, - sym_scoped_identifier, - STATE(2864), 1, - sym__literal_pattern, - STATE(3495), 1, - sym_bracketed_type, - STATE(3508), 1, - sym_generic_type_with_turbofish, - ACTIONS(1681), 2, - anon_sym_true, - anon_sym_false, - STATE(1520), 2, + STATE(1948), 2, sym_line_comment, sym_block_comment, - ACTIONS(1677), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3537), 3, - sym_self, - sym_super, - sym_crate, - STATE(2364), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3533), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_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_gen, - anon_sym_union, - [32306] = 13, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3965), 2, + ACTIONS(1283), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1521), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3967), 3, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3681), 6, anon_sym_CARET, + anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3677), 25, - anon_sym_SEMI, + ACTIONS(1281), 23, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -139834,50 +168813,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_else, - [32380] = 12, + anon_sym_as, + [50929] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(4161), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(4165), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(4167), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(4387), 1, anon_sym_as, - ACTIONS(3965), 2, + ACTIONS(4463), 1, + anon_sym_EQ, + ACTIONS(4685), 1, + anon_sym_CARET, + ACTIONS(4687), 1, + anon_sym_AMP, + ACTIONS(4689), 1, + anon_sym_PIPE, + ACTIONS(4691), 1, + anon_sym_AMP_AMP, + ACTIONS(4693), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4703), 1, + anon_sym_DOT_DOT, + ACTIONS(4681), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(4695), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1522), 2, + ACTIONS(4699), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4705), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1949), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(4683), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3681), 7, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3677), 25, - anon_sym_SEMI, + ACTIONS(4697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4461), 12, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139888,125 +168878,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_else, - [32452] = 19, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1655), 1, - anon_sym_DASH, - ACTIONS(1679), 1, - aux_sym_string_literal_token1, - ACTIONS(1687), 1, - sym__raw_string_literal_start, - ACTIONS(3535), 1, - anon_sym_COLON_COLON, - ACTIONS(3545), 1, - sym_identifier, - ACTIONS(3551), 1, - sym_metavariable, - STATE(2718), 1, - sym_scoped_identifier, - STATE(2882), 1, - sym__literal_pattern, - STATE(3495), 1, - sym_bracketed_type, - STATE(3508), 1, - sym_generic_type_with_turbofish, - ACTIONS(1681), 2, - anon_sym_true, - anon_sym_false, - STATE(1523), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1677), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3549), 3, - sym_self, - sym_super, - sym_crate, - STATE(2364), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3547), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_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_gen, - anon_sym_union, - [32538] = 14, + [51014] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(125), 1, + anon_sym_RBRACE, + ACTIONS(4161), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(4165), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(4167), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(4387), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(4419), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(4421), 1, anon_sym_AMP, - ACTIONS(3965), 2, + ACTIONS(4423), 1, + anon_sym_PIPE, + ACTIONS(4429), 1, + anon_sym_AMP_AMP, + ACTIONS(4431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(4505), 1, + anon_sym_DOT_DOT, + ACTIONS(4671), 1, + anon_sym_SEMI, + ACTIONS(4415), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1524), 2, + ACTIONS(4435), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4507), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1950), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(4417), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3681), 5, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3677), 25, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4433), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140017,65 +168944,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_else, - [32614] = 17, + [51103] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(4161), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(4165), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(4167), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(4387), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(4419), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(4421), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(4423), 1, anon_sym_PIPE, - ACTIONS(3681), 2, + ACTIONS(4429), 1, + anon_sym_AMP_AMP, + ACTIONS(4431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4439), 1, anon_sym_EQ, + ACTIONS(4505), 1, anon_sym_DOT_DOT, - ACTIONS(3965), 2, + ACTIONS(4733), 1, + anon_sym_SEMI, + ACTIONS(4735), 1, + anon_sym_else, + ACTIONS(4415), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(4435), 2, anon_sym_GT, anon_sym_LT, - STATE(1525), 2, + ACTIONS(4507), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1951), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(4417), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(4433), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3677), 21, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140086,70 +169010,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_else, - [32696] = 22, + [51192] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(127), 1, + anon_sym_RBRACE, + ACTIONS(4161), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(4165), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(4167), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(4387), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(4419), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(4421), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(4423), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(4429), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, + ACTIONS(4431), 1, anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, + ACTIONS(4439), 1, anon_sym_EQ, - ACTIONS(3989), 1, + ACTIONS(4505), 1, anon_sym_DOT_DOT, - ACTIONS(3965), 2, + ACTIONS(4671), 1, + anon_sym_SEMI, + ACTIONS(4415), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(4435), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3991), 2, + ACTIONS(4507), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1526), 2, + STATE(1952), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(4417), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(4433), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3821), 7, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_else, - ACTIONS(3981), 10, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140160,21 +169076,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [32788] = 8, + [51281] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3289), 1, - anon_sym_COLON_COLON, - ACTIONS(3456), 1, - anon_sym_BANG, - ACTIONS(4027), 1, - sym_identifier, - STATE(1527), 2, + STATE(1953), 2, sym_line_comment, sym_block_comment, - ACTIONS(3285), 16, + ACTIONS(1371), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140190,12 +169100,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - anon_sym_as, - ACTIONS(3283), 23, - anon_sym_SEMI, + ACTIONS(1369), 23, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -140215,48 +169123,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [32851] = 10, + anon_sym_as, + [51334] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4005), 1, - anon_sym_LPAREN, - ACTIONS(4011), 1, - anon_sym_LT2, - ACTIONS(4029), 1, - anon_sym_COLON_COLON, - STATE(1618), 1, - sym_type_arguments, - STATE(1642), 1, - sym_parameters, - STATE(1528), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3319), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4419), 1, anon_sym_CARET, + ACTIONS(4421), 1, anon_sym_AMP, + ACTIONS(4423), 1, anon_sym_PIPE, + ACTIONS(4429), 1, + anon_sym_AMP_AMP, + ACTIONS(4431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(4505), 1, + anon_sym_DOT_DOT, + ACTIONS(4737), 1, + anon_sym_SEMI, + ACTIONS(4739), 1, + anon_sym_else, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, + ACTIONS(4435), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(4507), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1954), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4417), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4433), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3317), 20, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140265,105 +169188,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [32918] = 5, + [51423] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1529), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4033), 10, - anon_sym_LPAREN, + ACTIONS(4161), 1, anon_sym_LBRACK, - anon_sym_STAR, + ACTIONS(4165), 1, anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(4031), 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_gen, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [32975] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4005), 1, - anon_sym_LPAREN, - ACTIONS(4011), 1, - anon_sym_LT2, - ACTIONS(4029), 1, - anon_sym_COLON_COLON, - STATE(1618), 1, - sym_type_arguments, - STATE(1642), 1, - sym_parameters, - STATE(1530), 2, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4681), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1955), 2, sym_line_comment, sym_block_comment, - ACTIONS(3315), 17, - anon_sym_PLUS, + ACTIONS(4683), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4385), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3313), 20, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + ACTIONS(4383), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -140374,399 +169236,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [33042] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1531), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3655), 10, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(3653), 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_gen, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [33099] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4039), 1, - anon_sym_COLON_COLON, - STATE(1532), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4037), 9, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_LT, - anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(4035), 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_gen, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [33158] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1533), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3627), 10, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(3625), 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_gen, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [33215] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1534), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4044), 10, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(4042), 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_gen, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [33272] = 5, + [51488] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1535), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4048), 10, - anon_sym_LPAREN, + ACTIONS(4161), 1, anon_sym_LBRACK, - anon_sym_STAR, + ACTIONS(4165), 1, anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(4046), 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_gen, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [33329] = 10, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4005), 1, - anon_sym_LPAREN, - ACTIONS(4011), 1, - anon_sym_LT2, - ACTIONS(4029), 1, - anon_sym_COLON_COLON, - STATE(1618), 1, - sym_type_arguments, - STATE(1642), 1, - sym_parameters, - STATE(1536), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3309), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4685), 1, anon_sym_CARET, + ACTIONS(4687), 1, anon_sym_AMP, + ACTIONS(4689), 1, anon_sym_PIPE, + ACTIONS(4691), 1, + anon_sym_AMP_AMP, + ACTIONS(4693), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4715), 1, + anon_sym_EQ, + ACTIONS(4717), 1, + anon_sym_DOT_DOT, + ACTIONS(4741), 1, + anon_sym_LBRACE, + STATE(2079), 1, + sym_match_block, + ACTIONS(4681), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4695), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, + ACTIONS(4699), 2, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3307), 20, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + ACTIONS(4719), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [33396] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4050), 1, - anon_sym_LPAREN, - STATE(1537), 2, + STATE(1956), 2, sym_line_comment, sym_block_comment, - ACTIONS(4037), 9, - anon_sym_LBRACK, + ACTIONS(4683), 3, anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(4035), 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_gen, - anon_sym_impl, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [33455] = 8, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4713), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [51577] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3301), 1, - anon_sym_BANG, - ACTIONS(4053), 1, - anon_sym_COLON_COLON, - STATE(1473), 1, - sym_field_initializer_list, - STATE(1538), 2, + STATE(1957), 2, sym_line_comment, sym_block_comment, - ACTIONS(1357), 15, + ACTIONS(1451), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140782,10 +169334,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1359), 24, + ACTIONS(1449), 23, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -140805,25 +169357,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, anon_sym_as, - [33518] = 9, + [51630] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4007), 1, - anon_sym_BANG, - ACTIONS(4055), 1, - anon_sym_LBRACE, - ACTIONS(4057), 1, - anon_sym_COLON_COLON, - STATE(1689), 1, - sym_field_initializer_list, - STATE(1539), 2, + STATE(1958), 2, sym_line_comment, sym_block_comment, - ACTIONS(1357), 15, + ACTIONS(1459), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140839,7 +169382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1359), 23, + ACTIONS(1457), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -140863,46 +169406,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [33583] = 9, + [51683] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4005), 1, - anon_sym_LPAREN, - ACTIONS(4011), 1, - anon_sym_LT2, - STATE(1620), 1, - sym_type_arguments, - STATE(1646), 1, - sym_parameters, - STATE(1540), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3339), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(337), 1, + anon_sym_RBRACE, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4419), 1, anon_sym_CARET, + ACTIONS(4421), 1, anon_sym_AMP, + ACTIONS(4423), 1, anon_sym_PIPE, + ACTIONS(4429), 1, + anon_sym_AMP_AMP, + ACTIONS(4431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(4505), 1, + anon_sym_DOT_DOT, + ACTIONS(4671), 1, + anon_sym_SEMI, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, + ACTIONS(4435), 2, anon_sym_GT, anon_sym_LT, + ACTIONS(4507), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1959), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4417), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4433), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3337), 20, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140911,29 +169470,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [33647] = 5, + [51772] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1541), 2, + STATE(1960), 2, sym_line_comment, sym_block_comment, - ACTIONS(3353), 16, + ACTIONS(3914), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -140943,10 +169496,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3355), 25, + ACTIONS(3910), 23, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -140966,27 +169519,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, anon_sym_as, - [33703] = 6, + [51825] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3497), 1, - anon_sym_LBRACE, - STATE(1542), 2, + STATE(1961), 2, sym_line_comment, sym_block_comment, - ACTIONS(3345), 16, + ACTIONS(1471), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -140996,7 +169544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3347), 24, + ACTIONS(1469), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -141019,21 +169567,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, anon_sym_as, - [33761] = 7, + [51878] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3372), 1, - anon_sym_BANG, - ACTIONS(3374), 1, - anon_sym_COLON_COLON, - STATE(1543), 2, + STATE(1962), 2, sym_line_comment, sym_block_comment, - ACTIONS(3370), 17, + ACTIONS(4381), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141044,14 +169587,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3368), 22, + ACTIONS(4379), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -141066,27 +169607,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - anon_sym_LT2, - [33821] = 7, + [51931] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3333), 1, - anon_sym_BANG, - ACTIONS(3335), 1, - anon_sym_COLON_COLON, - STATE(1544), 2, + STATE(1963), 2, sym_line_comment, sym_block_comment, - ACTIONS(3331), 17, + ACTIONS(1451), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141097,14 +169635,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3329), 22, + ACTIONS(1449), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -141119,27 +169655,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - anon_sym_LT2, - [33881] = 7, + [51984] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3345), 1, - anon_sym_BANG, - ACTIONS(3347), 1, - anon_sym_COLON_COLON, - STATE(1545), 2, + STATE(1964), 2, sym_line_comment, sym_block_comment, - ACTIONS(3343), 17, + ACTIONS(4361), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141150,14 +169683,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3341), 22, + ACTIONS(4359), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -141172,27 +169703,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - anon_sym_LT2, - [33941] = 7, + [52037] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3353), 1, - anon_sym_BANG, - ACTIONS(3355), 1, - anon_sym_COLON_COLON, - STATE(1546), 2, + STATE(1965), 2, sym_line_comment, sym_block_comment, - ACTIONS(3351), 17, + ACTIONS(4365), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141203,14 +169731,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3349), 22, + ACTIONS(4363), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -141225,30 +169751,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - anon_sym_LT2, - [34001] = 5, + [52090] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1547), 2, + ACTIONS(4639), 1, + anon_sym_LBRACK, + ACTIONS(4645), 1, + anon_sym_QMARK, + ACTIONS(4663), 1, + anon_sym_DOT, + STATE(1966), 2, sym_line_comment, sym_block_comment, - ACTIONS(3333), 16, + ACTIONS(4345), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -141256,13 +169788,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3335), 25, + ACTIONS(4343), 21, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_QMARK, + anon_sym_EQ_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -141281,48 +169810,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, anon_sym_as, - [34057] = 9, + [52149] = 18, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4005), 1, - anon_sym_LPAREN, - ACTIONS(4011), 1, - anon_sym_LT2, - STATE(1620), 1, - sym_type_arguments, - STATE(1646), 1, - sym_parameters, - STATE(1548), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3323), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4685), 1, anon_sym_CARET, + ACTIONS(4687), 1, anon_sym_AMP, + ACTIONS(4689), 1, anon_sym_PIPE, + ACTIONS(4691), 1, + anon_sym_AMP_AMP, + ACTIONS(4385), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4681), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4695), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, + ACTIONS(4699), 2, anon_sym_GT, anon_sym_LT, + STATE(1967), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4683), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3321), 20, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, + ACTIONS(4383), 15, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -141332,29 +169868,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [34121] = 5, + [52228] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1549), 2, + ACTIONS(4639), 1, + anon_sym_LBRACK, + ACTIONS(4645), 1, + anon_sym_QMARK, + ACTIONS(4663), 1, + anon_sym_DOT, + STATE(1968), 2, sym_line_comment, sym_block_comment, - ACTIONS(3345), 16, + ACTIONS(4333), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -141362,13 +169900,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3347), 25, + ACTIONS(4331), 21, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_QMARK, + anon_sym_EQ_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -141387,27 +169922,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, anon_sym_as, - [34177] = 6, + [52287] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3503), 1, - anon_sym_LBRACE, - STATE(1550), 2, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4419), 1, + anon_sym_CARET, + ACTIONS(4421), 1, + anon_sym_AMP, + ACTIONS(4423), 1, + anon_sym_PIPE, + ACTIONS(4429), 1, + anon_sym_AMP_AMP, + ACTIONS(4431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(4505), 1, + anon_sym_DOT_DOT, + ACTIONS(4671), 1, + anon_sym_SEMI, + ACTIONS(4743), 1, + anon_sym_RBRACE, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4425), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4435), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4507), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1969), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4417), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4433), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4437), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [52376] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1970), 2, sym_line_comment, sym_block_comment, - ACTIONS(3353), 16, + ACTIONS(4273), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -141417,7 +170013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3355), 24, + ACTIONS(4271), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -141440,42 +170036,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, anon_sym_as, - [34235] = 6, + [52429] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3523), 1, - anon_sym_LBRACE, - STATE(1551), 2, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4419), 1, + anon_sym_CARET, + ACTIONS(4421), 1, + anon_sym_AMP, + ACTIONS(4423), 1, + anon_sym_PIPE, + ACTIONS(4429), 1, + anon_sym_AMP_AMP, + ACTIONS(4431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(4505), 1, + anon_sym_DOT_DOT, + ACTIONS(4147), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4425), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4435), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4507), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1971), 2, sym_line_comment, sym_block_comment, - ACTIONS(3372), 16, - anon_sym_PLUS, + ACTIONS(4417), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4433), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4437), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [52516] = 23, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(317), 1, + anon_sym_RBRACE, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4419), 1, anon_sym_CARET, - anon_sym_BANG, + ACTIONS(4421), 1, anon_sym_AMP, + ACTIONS(4423), 1, anon_sym_PIPE, + ACTIONS(4429), 1, + anon_sym_AMP_AMP, + ACTIONS(4431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(4505), 1, + anon_sym_DOT_DOT, + ACTIONS(4671), 1, + anon_sym_SEMI, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4435), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3374), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4507), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1972), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4417), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4433), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141486,27 +170168,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_as, - [34293] = 7, + [52605] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3937), 1, - anon_sym_COLON_COLON, - ACTIONS(4017), 1, - anon_sym_BANG, - STATE(1552), 2, + STATE(1973), 2, sym_line_comment, sym_block_comment, - ACTIONS(1357), 15, + ACTIONS(1405), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141522,11 +170192,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1359), 24, - anon_sym_SEMI, + ACTIONS(1403), 23, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -141547,24 +170216,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [34353] = 6, + [52658] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3469), 1, - anon_sym_LBRACE, - STATE(1553), 2, + STATE(1974), 2, sym_line_comment, sym_block_comment, - ACTIONS(3333), 16, + ACTIONS(1489), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -141574,7 +170240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3335), 24, + ACTIONS(1487), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -141597,24 +170263,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, anon_sym_as, - [34411] = 5, + [52711] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1554), 2, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4685), 1, + anon_sym_CARET, + ACTIONS(4687), 1, + anon_sym_AMP, + ACTIONS(4689), 1, + anon_sym_PIPE, + ACTIONS(4691), 1, + anon_sym_AMP_AMP, + ACTIONS(4693), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4715), 1, + anon_sym_EQ, + ACTIONS(4717), 1, + anon_sym_DOT_DOT, + ACTIONS(4745), 1, + anon_sym_LBRACE, + STATE(405), 1, + sym_match_block, + ACTIONS(4681), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4695), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4699), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4719), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1975), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4683), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4697), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4713), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [52800] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1976), 2, sym_line_comment, sym_block_comment, - ACTIONS(3372), 16, + ACTIONS(1431), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -141624,10 +170354,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3374), 25, + ACTIONS(1429), 23, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -141647,22 +170377,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, anon_sym_as, - [34467] = 7, + [52853] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3287), 1, - anon_sym_BANG, - ACTIONS(3953), 1, - anon_sym_COLON_COLON, - STATE(1555), 2, + ACTIONS(4639), 1, + anon_sym_LBRACK, + ACTIONS(4645), 1, + anon_sym_QMARK, + ACTIONS(4647), 1, + anon_sym_CARET, + ACTIONS(4649), 1, + anon_sym_AMP, + ACTIONS(4651), 1, + anon_sym_PIPE, + ACTIONS(4653), 1, + anon_sym_AMP_AMP, + ACTIONS(4655), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4663), 1, + anon_sym_DOT, + ACTIONS(4665), 1, + anon_sym_as, + ACTIONS(4667), 1, + anon_sym_DOT_DOT, + ACTIONS(4729), 1, + anon_sym_EQ, + ACTIONS(4313), 2, + anon_sym_LPAREN, + anon_sym_EQ_GT, + ACTIONS(4641), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4657), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4661), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4669), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1977), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4643), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4659), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4727), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [52940] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1978), 2, sym_line_comment, sym_block_comment, - ACTIONS(3285), 15, + ACTIONS(3777), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141678,10 +170467,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3283), 24, + ACTIONS(3775), 23, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -141701,25 +170490,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, anon_sym_as, - [34527] = 9, + [52993] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4005), 1, - anon_sym_LPAREN, - ACTIONS(4011), 1, - anon_sym_LT2, - STATE(1620), 1, - sym_type_arguments, - STATE(1646), 1, - sym_parameters, - STATE(1556), 2, + STATE(1979), 2, sym_line_comment, sym_block_comment, - ACTIONS(3327), 17, + ACTIONS(977), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141730,14 +170510,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3325), 20, + ACTIONS(979), 23, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -141751,30 +170530,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [34591] = 9, + [53046] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4005), 1, - anon_sym_LPAREN, - ACTIONS(4011), 1, - anon_sym_LT2, - STATE(1620), 1, - sym_type_arguments, - STATE(1646), 1, - sym_parameters, - STATE(1557), 2, + STATE(1980), 2, sym_line_comment, sym_block_comment, - ACTIONS(3359), 17, + ACTIONS(1413), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141785,14 +170558,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3357), 20, + ACTIONS(1411), 23, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -141806,26 +170578,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [34655] = 7, + [53099] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3301), 1, - anon_sym_BANG, - ACTIONS(4059), 1, - anon_sym_COLON_COLON, - STATE(1558), 2, + STATE(1981), 2, sym_line_comment, sym_block_comment, - ACTIONS(1357), 15, + ACTIONS(1479), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141841,10 +170611,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1359), 24, + ACTIONS(1477), 23, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -141864,19 +170634,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, anon_sym_as, - [34715] = 6, + [53152] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4061), 1, - anon_sym_COLON_COLON, - STATE(1559), 2, + STATE(1982), 2, sym_line_comment, sym_block_comment, - ACTIONS(1357), 15, + ACTIONS(1583), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141892,10 +170659,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1359), 24, + ACTIONS(1585), 23, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -141915,68 +170682,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, anon_sym_as, - [34772] = 25, + [53205] = 17, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(921), 1, - anon_sym_RBRACK, - ACTIONS(3679), 1, + ACTIONS(4161), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(4165), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(4167), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(4387), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(4685), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(4687), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(4689), 1, anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, + ACTIONS(4385), 2, anon_sym_EQ, - ACTIONS(4063), 1, - anon_sym_SEMI, - ACTIONS(4065), 1, anon_sym_DOT_DOT, - ACTIONS(4069), 1, - anon_sym_COMMA, - STATE(2771), 1, - aux_sym_arguments_repeat1, - ACTIONS(3965), 2, + ACTIONS(4681), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(4695), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(4699), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1560), 2, + STATE(1983), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(4683), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(4697), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(4383), 16, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141987,66 +170741,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34867] = 25, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [53282] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(772), 1, - anon_sym_RBRACK, - ACTIONS(3679), 1, + ACTIONS(4161), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(4165), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(4167), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(4387), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(4685), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(4687), 1, anon_sym_AMP, - ACTIONS(3973), 1, - anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4071), 1, - anon_sym_SEMI, - ACTIONS(4073), 1, - anon_sym_COMMA, - STATE(3055), 1, - aux_sym_arguments_repeat1, - ACTIONS(3965), 2, + ACTIONS(4681), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(4695), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1561), 2, + STATE(1984), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(4683), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(4385), 5, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(4383), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142057,66 +170794,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34962] = 25, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [53353] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(903), 1, - anon_sym_RBRACK, - ACTIONS(3679), 1, + ACTIONS(4161), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(4165), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(4167), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(4387), 1, anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, - anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4075), 1, - anon_sym_SEMI, - ACTIONS(4077), 1, - anon_sym_COMMA, - STATE(2797), 1, - aux_sym_arguments_repeat1, - ACTIONS(3965), 2, + ACTIONS(4681), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(4695), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1562), 2, + STATE(1985), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(4683), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(4385), 7, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(4383), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142127,18 +170849,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35057] = 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [53420] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3849), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - STATE(1563), 2, + STATE(1986), 2, sym_line_comment, sym_block_comment, - ACTIONS(3671), 15, + ACTIONS(4125), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142154,7 +170879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3667), 23, + ACTIONS(4123), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -142178,66 +170903,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [35114] = 25, + [53473] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(3679), 1, + ACTIONS(4639), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(4645), 1, anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(4083), 1, + ACTIONS(4647), 1, anon_sym_CARET, - ACTIONS(4085), 1, + ACTIONS(4649), 1, anon_sym_AMP, - ACTIONS(4087), 1, + ACTIONS(4651), 1, anon_sym_PIPE, - ACTIONS(4089), 1, + ACTIONS(4653), 1, anon_sym_AMP_AMP, - ACTIONS(4091), 1, + ACTIONS(4655), 1, anon_sym_PIPE_PIPE, - ACTIONS(4097), 1, + ACTIONS(4663), 1, + anon_sym_DOT, + ACTIONS(4665), 1, + anon_sym_as, + ACTIONS(389), 2, anon_sym_EQ, - ACTIONS(4103), 1, anon_sym_DOT_DOT, - STATE(1423), 1, - sym_block, - STATE(3569), 1, - sym_label, - ACTIONS(4079), 2, + ACTIONS(4641), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4093), 2, + ACTIONS(4657), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4101), 2, + ACTIONS(4661), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4105), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1564), 2, + STATE(1987), 2, sym_line_comment, sym_block_comment, - ACTIONS(4081), 3, + ACTIONS(4643), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4099), 4, + ACTIONS(4659), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4095), 10, + ACTIONS(387), 14, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142248,133 +170963,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35209] = 22, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1331), 1, - anon_sym_extern, - ACTIONS(3400), 1, - anon_sym_COLON_COLON, - ACTIONS(3402), 1, - anon_sym_default, - ACTIONS(3410), 1, - sym_metavariable, - ACTIONS(4107), 1, - sym_identifier, - ACTIONS(4109), 1, - anon_sym_fn, - STATE(2239), 1, - aux_sym_function_modifiers_repeat1, - STATE(2387), 1, - sym_extern_modifier, - STATE(2741), 1, - sym_scoped_type_identifier, - STATE(3369), 1, - sym_generic_type_with_turbofish, - STATE(3427), 1, - sym_generic_type, - STATE(3462), 1, - sym_scoped_identifier, - STATE(3499), 1, - sym_bracketed_type, - STATE(3520), 1, - sym_function_modifiers, - ACTIONS(3406), 2, - anon_sym_gen, - anon_sym_union, - STATE(1565), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1317), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3408), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3398), 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, - [35298] = 25, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [53554] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(3679), 1, + ACTIONS(4161), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(4165), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(4167), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(4387), 1, anon_sym_as, - ACTIONS(4083), 1, + ACTIONS(4419), 1, anon_sym_CARET, - ACTIONS(4085), 1, + ACTIONS(4421), 1, anon_sym_AMP, - ACTIONS(4087), 1, + ACTIONS(4423), 1, anon_sym_PIPE, - ACTIONS(4089), 1, + ACTIONS(4429), 1, anon_sym_AMP_AMP, - ACTIONS(4091), 1, + ACTIONS(4431), 1, anon_sym_PIPE_PIPE, - ACTIONS(4097), 1, + ACTIONS(4439), 1, anon_sym_EQ, - ACTIONS(4103), 1, + ACTIONS(4505), 1, anon_sym_DOT_DOT, - STATE(1424), 1, - sym_block, - STATE(3569), 1, - sym_label, - ACTIONS(4079), 2, + ACTIONS(4415), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4093), 2, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4101), 2, + ACTIONS(4435), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4105), 2, + ACTIONS(4507), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1566), 2, + ACTIONS(4747), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1988), 2, sym_line_comment, sym_block_comment, - ACTIONS(4081), 3, + ACTIONS(4417), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4099), 4, + ACTIONS(4433), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4095), 10, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142385,19 +171030,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35393] = 7, + [53641] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4111), 1, - anon_sym_else, - STATE(1773), 1, - sym_else_clause, - STATE(1567), 2, + STATE(1989), 2, sym_line_comment, sym_block_comment, - ACTIONS(1253), 15, + ACTIONS(4125), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142413,7 +171054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1251), 23, + ACTIONS(4123), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -142437,17 +171078,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [35452] = 6, + [53694] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3669), 1, - anon_sym_COLON_COLON, - STATE(1568), 2, + STATE(1990), 2, sym_line_comment, sym_block_comment, - ACTIONS(3671), 15, + ACTIONS(4171), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142463,10 +171102,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3667), 24, + ACTIONS(4169), 23, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -142486,38 +171125,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, anon_sym_as, - [35509] = 5, + [53747] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1569), 2, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4687), 1, + anon_sym_AMP, + ACTIONS(4681), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4695), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1991), 2, sym_line_comment, sym_block_comment, - ACTIONS(3353), 16, - anon_sym_PLUS, + ACTIONS(4683), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4385), 6, anon_sym_CARET, - anon_sym_BANG, - anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3355), 24, + ACTIONS(4383), 20, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + anon_sym_LBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -142536,43 +171182,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_as, - [35564] = 7, + [53816] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4113), 1, - anon_sym_SQUOTE, - STATE(1683), 1, - sym_label, - STATE(1570), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3647), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(347), 1, + anon_sym_EQ, + ACTIONS(4639), 1, + anon_sym_LBRACK, + ACTIONS(4645), 1, + anon_sym_QMARK, + ACTIONS(4647), 1, anon_sym_CARET, + ACTIONS(4649), 1, anon_sym_AMP, + ACTIONS(4651), 1, anon_sym_PIPE, + ACTIONS(4653), 1, + anon_sym_AMP_AMP, + ACTIONS(4655), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4663), 1, + anon_sym_DOT, + ACTIONS(4665), 1, + anon_sym_as, + ACTIONS(4667), 1, + anon_sym_DOT_DOT, + ACTIONS(4641), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4657), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4661), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3645), 23, + ACTIONS(4669), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1992), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4643), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4659), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(341), 12, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [53901] = 23, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4419), 1, + anon_sym_CARET, + ACTIONS(4421), 1, + anon_sym_AMP, + ACTIONS(4423), 1, + anon_sym_PIPE, + ACTIONS(4429), 1, anon_sym_AMP_AMP, + ACTIONS(4431), 1, anon_sym_PIPE_PIPE, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(4505), 1, + anon_sym_DOT_DOT, + ACTIONS(4749), 1, + anon_sym_RPAREN, + ACTIONS(4751), 1, + anon_sym_COMMA, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4425), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4435), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4507), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1993), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4417), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4433), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142583,29 +171312,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + [53990] = 23, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(307), 1, + anon_sym_RBRACE, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4419), 1, + anon_sym_CARET, + ACTIONS(4421), 1, + anon_sym_AMP, + ACTIONS(4423), 1, + anon_sym_PIPE, + ACTIONS(4429), 1, + anon_sym_AMP_AMP, + ACTIONS(4431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(4505), 1, + anon_sym_DOT_DOT, + ACTIONS(4671), 1, + anon_sym_SEMI, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4425), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4435), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4507), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1994), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4417), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4433), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [35623] = 5, + ACTIONS(4437), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [54079] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1571), 2, + STATE(1995), 2, sym_line_comment, sym_block_comment, - ACTIONS(3372), 16, + ACTIONS(4299), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -142615,7 +171402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3374), 24, + ACTIONS(4297), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -142638,68 +171425,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, anon_sym_as, - [35678] = 25, + [54132] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1229), 1, - anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(3679), 1, + ACTIONS(119), 1, + anon_sym_RBRACE, + ACTIONS(4161), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(4165), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(4167), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(4387), 1, anon_sym_as, - ACTIONS(4083), 1, + ACTIONS(4419), 1, anon_sym_CARET, - ACTIONS(4085), 1, + ACTIONS(4421), 1, anon_sym_AMP, - ACTIONS(4087), 1, + ACTIONS(4423), 1, anon_sym_PIPE, - ACTIONS(4089), 1, + ACTIONS(4429), 1, anon_sym_AMP_AMP, - ACTIONS(4091), 1, + ACTIONS(4431), 1, anon_sym_PIPE_PIPE, - ACTIONS(4097), 1, + ACTIONS(4439), 1, anon_sym_EQ, - ACTIONS(4103), 1, + ACTIONS(4505), 1, anon_sym_DOT_DOT, - STATE(476), 1, - sym_block, - STATE(3619), 1, - sym_label, - ACTIONS(4079), 2, + ACTIONS(4671), 1, + anon_sym_SEMI, + ACTIONS(4415), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4093), 2, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4101), 2, + ACTIONS(4435), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4105), 2, + ACTIONS(4507), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1572), 2, + STATE(1996), 2, sym_line_comment, sym_block_comment, - ACTIONS(4081), 3, + ACTIONS(4417), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4099), 4, + ACTIONS(4433), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4095), 10, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142710,19 +171492,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35773] = 7, + [54221] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3871), 1, - anon_sym_BANG, - ACTIONS(3873), 1, - anon_sym_COLON_COLON, - STATE(1573), 2, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + STATE(1997), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4683), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4385), 11, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(4383), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [54284] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(1998), 2, sym_line_comment, sym_block_comment, - ACTIONS(3285), 15, + ACTIONS(4181), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142738,7 +171569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3283), 23, + ACTIONS(4179), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -142762,66 +171593,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [35832] = 25, + [54337] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1229), 1, - anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(4083), 1, + STATE(1999), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4325), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4085), 1, anon_sym_AMP, - ACTIONS(4087), 1, anon_sym_PIPE, - ACTIONS(4089), 1, - anon_sym_AMP_AMP, - ACTIONS(4091), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4097), 1, - anon_sym_EQ, - ACTIONS(4103), 1, - anon_sym_DOT_DOT, - STATE(477), 1, - sym_block, - STATE(3619), 1, - sym_label, - ACTIONS(4079), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4093), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4101), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4105), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1574), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4081), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4099), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4095), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4323), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142832,19 +171634,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35927] = 7, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [54390] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4007), 1, - anon_sym_BANG, - ACTIONS(4115), 1, - anon_sym_COLON_COLON, - STATE(1575), 2, + STATE(2000), 2, sym_line_comment, sym_block_comment, - ACTIONS(1357), 15, + ACTIONS(4185), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142860,7 +171665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1359), 23, + ACTIONS(4183), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -142884,136 +171689,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [35986] = 25, + [54443] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(3679), 1, + ACTIONS(4455), 1, + anon_sym_EQ, + ACTIONS(4639), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(4645), 1, anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(4083), 1, + ACTIONS(4647), 1, anon_sym_CARET, - ACTIONS(4085), 1, + ACTIONS(4649), 1, anon_sym_AMP, - ACTIONS(4087), 1, + ACTIONS(4651), 1, anon_sym_PIPE, - ACTIONS(4089), 1, + ACTIONS(4653), 1, anon_sym_AMP_AMP, - ACTIONS(4091), 1, + ACTIONS(4655), 1, anon_sym_PIPE_PIPE, - ACTIONS(4097), 1, - anon_sym_EQ, - ACTIONS(4103), 1, - anon_sym_DOT_DOT, - STATE(1779), 1, - sym_block, - STATE(3620), 1, - sym_label, - ACTIONS(4079), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4093), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4101), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4105), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1576), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4081), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4099), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4095), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [36081] = 25, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(4663), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(4665), 1, anon_sym_as, - ACTIONS(4083), 1, - anon_sym_CARET, - ACTIONS(4085), 1, - anon_sym_AMP, - ACTIONS(4087), 1, - anon_sym_PIPE, - ACTIONS(4089), 1, - anon_sym_AMP_AMP, - ACTIONS(4091), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4097), 1, - anon_sym_EQ, - ACTIONS(4103), 1, + ACTIONS(4667), 1, anon_sym_DOT_DOT, - STATE(1785), 1, - sym_block, - STATE(3620), 1, - sym_label, - ACTIONS(4079), 2, + ACTIONS(4641), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4093), 2, + ACTIONS(4657), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4101), 2, + ACTIONS(4661), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4105), 2, + ACTIONS(4669), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1577), 2, + STATE(2001), 2, sym_line_comment, sym_block_comment, - ACTIONS(4081), 3, + ACTIONS(4643), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4099), 4, + ACTIONS(4659), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4095), 10, + ACTIONS(4453), 12, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143024,15 +171753,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36176] = 5, + [54528] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1578), 2, + STATE(2002), 2, sym_line_comment, sym_block_comment, - ACTIONS(3619), 15, + ACTIONS(4321), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143048,10 +171777,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3617), 25, + ACTIONS(4319), 23, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -143072,68 +171800,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, anon_sym_as, - [36231] = 25, - ACTIONS(19), 1, - anon_sym_LBRACE, + [54581] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(3679), 1, + ACTIONS(319), 1, + anon_sym_RBRACE, + ACTIONS(4161), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(4165), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(4167), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(4387), 1, anon_sym_as, - ACTIONS(4083), 1, + ACTIONS(4419), 1, anon_sym_CARET, - ACTIONS(4085), 1, + ACTIONS(4421), 1, anon_sym_AMP, - ACTIONS(4087), 1, + ACTIONS(4423), 1, anon_sym_PIPE, - ACTIONS(4089), 1, + ACTIONS(4429), 1, anon_sym_AMP_AMP, - ACTIONS(4091), 1, + ACTIONS(4431), 1, anon_sym_PIPE_PIPE, - ACTIONS(4097), 1, + ACTIONS(4439), 1, anon_sym_EQ, - ACTIONS(4103), 1, + ACTIONS(4505), 1, anon_sym_DOT_DOT, - STATE(392), 1, - sym_block, - STATE(3355), 1, - sym_label, - ACTIONS(4079), 2, + ACTIONS(4671), 1, + anon_sym_SEMI, + ACTIONS(4415), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4093), 2, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4101), 2, + ACTIONS(4435), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4105), 2, + ACTIONS(4507), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1579), 2, + STATE(2003), 2, sym_line_comment, sym_block_comment, - ACTIONS(4081), 3, + ACTIONS(4417), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4099), 4, + ACTIONS(4433), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4095), 10, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143144,117 +171867,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36326] = 6, + [54670] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3953), 1, - anon_sym_COLON_COLON, - STATE(1580), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3285), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(4451), 1, anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3283), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - anon_sym_as, - [36383] = 25, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(3679), 1, + ACTIONS(4639), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(4645), 1, anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(4083), 1, + ACTIONS(4647), 1, anon_sym_CARET, - ACTIONS(4085), 1, + ACTIONS(4649), 1, anon_sym_AMP, - ACTIONS(4087), 1, + ACTIONS(4651), 1, anon_sym_PIPE, - ACTIONS(4089), 1, + ACTIONS(4653), 1, anon_sym_AMP_AMP, - ACTIONS(4091), 1, + ACTIONS(4655), 1, anon_sym_PIPE_PIPE, - ACTIONS(4097), 1, - anon_sym_EQ, - ACTIONS(4103), 1, + ACTIONS(4663), 1, + anon_sym_DOT, + ACTIONS(4665), 1, + anon_sym_as, + ACTIONS(4667), 1, anon_sym_DOT_DOT, - STATE(403), 1, - sym_block, - STATE(3355), 1, - sym_label, - ACTIONS(4079), 2, + ACTIONS(4641), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4093), 2, + ACTIONS(4657), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4101), 2, + ACTIONS(4661), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4105), 2, + ACTIONS(4669), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1581), 2, + STATE(2004), 2, sym_line_comment, sym_block_comment, - ACTIONS(4081), 3, + ACTIONS(4643), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4099), 4, + ACTIONS(4659), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4095), 10, + ACTIONS(4449), 12, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143265,17 +171931,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36478] = 6, + [54755] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1384), 1, - sym_label, - STATE(1582), 2, + STATE(2005), 2, sym_line_comment, sym_block_comment, - ACTIONS(3647), 15, + ACTIONS(4311), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143291,10 +171955,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3645), 24, + ACTIONS(4309), 23, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -143314,17 +171978,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, anon_sym_as, - [36535] = 5, + [54808] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1583), 2, + STATE(2006), 2, sym_line_comment, sym_block_comment, - ACTIONS(3631), 15, + ACTIONS(1417), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143340,10 +172003,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3629), 25, + ACTIONS(1415), 23, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -143364,91 +172026,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, anon_sym_as, - [36590] = 22, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1331), 1, - anon_sym_extern, - ACTIONS(3400), 1, - anon_sym_COLON_COLON, - ACTIONS(3402), 1, - anon_sym_default, - ACTIONS(3410), 1, - sym_metavariable, - ACTIONS(4117), 1, - sym_identifier, - ACTIONS(4119), 1, - anon_sym_fn, - STATE(2239), 1, - aux_sym_function_modifiers_repeat1, - STATE(2387), 1, - sym_extern_modifier, - STATE(2616), 1, - sym_scoped_type_identifier, - STATE(3369), 1, - sym_generic_type_with_turbofish, - STATE(3400), 1, - sym_function_modifiers, - STATE(3427), 1, - sym_generic_type, - STATE(3462), 1, - sym_scoped_identifier, - STATE(3499), 1, - sym_bracketed_type, - ACTIONS(3406), 2, - anon_sym_gen, - anon_sym_union, - STATE(1584), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1317), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3408), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3398), 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, - [36679] = 5, + [54861] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1585), 2, + STATE(2007), 2, sym_line_comment, sym_block_comment, - ACTIONS(3333), 16, + ACTIONS(4129), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -143458,7 +172051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3335), 24, + ACTIONS(4127), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -143481,42 +172074,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, anon_sym_as, - [36734] = 6, + [54914] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3669), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - STATE(1586), 2, + ACTIONS(1177), 1, + anon_sym_RPAREN, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4419), 1, + anon_sym_CARET, + ACTIONS(4421), 1, + anon_sym_AMP, + ACTIONS(4423), 1, + anon_sym_PIPE, + ACTIONS(4429), 1, + anon_sym_AMP_AMP, + ACTIONS(4431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(4505), 1, + anon_sym_DOT_DOT, + ACTIONS(4751), 1, + anon_sym_COMMA, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4425), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4435), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4507), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2008), 2, sym_line_comment, sym_block_comment, - ACTIONS(3671), 15, - anon_sym_PLUS, + ACTIONS(4417), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4433), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4437), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [55003] = 22, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4419), 1, anon_sym_CARET, + ACTIONS(4421), 1, anon_sym_AMP, + ACTIONS(4423), 1, anon_sym_PIPE, + ACTIONS(4429), 1, + anon_sym_AMP_AMP, + ACTIONS(4431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(4505), 1, + anon_sym_DOT_DOT, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4435), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3667), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4507), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4753), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(2009), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4417), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4433), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143527,22 +172206,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [36791] = 5, + [55090] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1587), 2, + STATE(2010), 2, sym_line_comment, sym_block_comment, - ACTIONS(3639), 15, + ACTIONS(4205), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143558,10 +172230,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3637), 25, + ACTIONS(4203), 23, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -143582,24 +172253,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, anon_sym_as, - [36846] = 5, + [55143] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1588), 2, + STATE(2011), 2, sym_line_comment, sym_block_comment, - ACTIONS(3345), 16, + ACTIONS(4245), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -143609,7 +172278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3347), 24, + ACTIONS(4243), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -143632,87 +172301,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_as, - [36901] = 25, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(750), 1, - anon_sym_RBRACK, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, - anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4121), 1, - anon_sym_SEMI, - ACTIONS(4123), 1, - anon_sym_COMMA, - STATE(3016), 1, - aux_sym_arguments_repeat1, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1589), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [36996] = 5, + [55196] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1590), 2, + STATE(2012), 2, sym_line_comment, sym_block_comment, - ACTIONS(3605), 15, + ACTIONS(4277), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143728,10 +172326,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3603), 25, + ACTIONS(4275), 23, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -143740,98 +172337,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_as, - [37051] = 22, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1331), 1, - anon_sym_extern, - ACTIONS(3400), 1, - anon_sym_COLON_COLON, - ACTIONS(3402), 1, - anon_sym_default, - ACTIONS(3410), 1, - sym_metavariable, - ACTIONS(4125), 1, - sym_identifier, - ACTIONS(4127), 1, - anon_sym_fn, - STATE(2239), 1, - aux_sym_function_modifiers_repeat1, - STATE(2387), 1, - sym_extern_modifier, - STATE(2574), 1, - sym_scoped_type_identifier, - STATE(3369), 1, - sym_generic_type_with_turbofish, - STATE(3427), 1, - sym_generic_type, - STATE(3462), 1, - sym_scoped_identifier, - STATE(3499), 1, - sym_bracketed_type, - STATE(3514), 1, - sym_function_modifiers, - ACTIONS(3406), 2, - anon_sym_gen, - anon_sym_union, - STATE(1591), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1317), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3408), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3398), 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, - [37140] = 6, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [55249] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3849), 1, - anon_sym_COLON_COLON, - STATE(1592), 2, + STATE(2013), 2, sym_line_comment, sym_block_comment, - ACTIONS(3671), 15, + ACTIONS(4133), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143847,10 +172374,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3667), 24, + ACTIONS(4131), 23, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -143870,47 +172397,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, anon_sym_as, - [37197] = 14, + [55302] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(4083), 1, - anon_sym_CARET, - ACTIONS(4085), 1, - anon_sym_AMP, - ACTIONS(4079), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4093), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1593), 2, + STATE(2014), 2, sym_line_comment, sym_block_comment, - ACTIONS(4081), 3, + ACTIONS(4249), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3681), 5, + anon_sym_CARET, + anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3677), 21, + ACTIONS(4247), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -143929,16 +172445,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [37269] = 5, + anon_sym_as, + [55355] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1594), 2, + STATE(2015), 2, sym_line_comment, sym_block_comment, - ACTIONS(1263), 15, + ACTIONS(4261), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143954,7 +172470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1261), 24, + ACTIONS(4259), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -143978,57 +172494,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - anon_sym_else, - [37323] = 19, + [55408] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(4161), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(4165), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(4167), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(4387), 1, anon_sym_as, - ACTIONS(4083), 1, + ACTIONS(4519), 1, anon_sym_CARET, - ACTIONS(4085), 1, + ACTIONS(4521), 1, anon_sym_AMP, - ACTIONS(4087), 1, + ACTIONS(4523), 1, anon_sym_PIPE, - ACTIONS(4089), 1, - anon_sym_AMP_AMP, - ACTIONS(4091), 1, + ACTIONS(4527), 1, anon_sym_PIPE_PIPE, - ACTIONS(4003), 2, + ACTIONS(4533), 1, anon_sym_EQ, + ACTIONS(4539), 1, anon_sym_DOT_DOT, - ACTIONS(4079), 2, + ACTIONS(4757), 1, + anon_sym_AMP_AMP, + ACTIONS(4515), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4093), 2, + ACTIONS(4529), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4101), 2, + ACTIONS(4537), 2, anon_sym_GT, anon_sym_LT, - STATE(1595), 2, + ACTIONS(4541), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4755), 2, + anon_sym_LBRACE, + anon_sym_SQUOTE, + STATE(2016), 2, sym_line_comment, sym_block_comment, - ACTIONS(4081), 3, + ACTIONS(4517), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4099), 4, + ACTIONS(4535), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4001), 15, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4531), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144039,103 +172559,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [37405] = 17, + [55495] = 17, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4619), 1, + sym_identifier, + ACTIONS(4621), 1, + anon_sym_LBRACE, + ACTIONS(4625), 1, + anon_sym_STAR, + ACTIONS(4631), 1, + anon_sym_COLON_COLON, + ACTIONS(4635), 1, + sym_metavariable, + ACTIONS(4759), 1, + anon_sym_RBRACE, + STATE(2800), 1, + sym_scoped_identifier, + STATE(3574), 1, + sym__use_clause, + STATE(3900), 1, + sym_generic_type_with_turbofish, + STATE(4063), 1, + sym_bracketed_type, + STATE(2017), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4633), 3, + sym_self, + sym_super, + sym_crate, + STATE(3244), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4627), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_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_gen, + anon_sym_union, + [55572] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(4161), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(4165), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(4167), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(4387), 1, anon_sym_as, - ACTIONS(4083), 1, + ACTIONS(4685), 1, anon_sym_CARET, - ACTIONS(4085), 1, + ACTIONS(4687), 1, anon_sym_AMP, - ACTIONS(4087), 1, + ACTIONS(4689), 1, anon_sym_PIPE, - ACTIONS(3681), 2, - anon_sym_EQ, + ACTIONS(4691), 1, + anon_sym_AMP_AMP, + ACTIONS(4693), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4703), 1, anon_sym_DOT_DOT, - ACTIONS(4079), 2, + ACTIONS(4715), 1, + anon_sym_EQ, + ACTIONS(4313), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4681), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4093), 2, + ACTIONS(4695), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4101), 2, + ACTIONS(4699), 2, anon_sym_GT, anon_sym_LT, - STATE(1596), 2, + ACTIONS(4705), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2018), 2, sym_line_comment, sym_block_comment, - ACTIONS(4081), 3, + ACTIONS(4683), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4099), 4, + ACTIONS(4697), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3677), 17, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [37483] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4129), 1, - anon_sym_COLON_COLON, - STATE(1597), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1357), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1359), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4713), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144146,22 +172684,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [37539] = 5, + [55659] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1598), 2, + STATE(2019), 2, sym_line_comment, sym_block_comment, - ACTIONS(3513), 15, + ACTIONS(4197), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144177,7 +172708,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3511), 24, + ACTIONS(4195), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -144200,66 +172731,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, anon_sym_as, - [37593] = 24, + [55712] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(4161), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(4165), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(4167), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(4387), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(4685), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(4687), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(4689), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(4691), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, + ACTIONS(4693), 1, anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(4703), 1, anon_sym_DOT_DOT, - ACTIONS(4131), 1, - anon_sym_RPAREN, - ACTIONS(4133), 1, - anon_sym_COMMA, - STATE(2917), 1, - aux_sym_arguments_repeat1, - ACTIONS(3965), 2, + ACTIONS(4715), 1, + anon_sym_EQ, + ACTIONS(4147), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4681), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(4695), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(4699), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(4705), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1599), 2, + STATE(2020), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(4683), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(4697), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(4713), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144270,98 +172797,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [37685] = 15, + [55799] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(4161), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(4165), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(4167), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(4387), 1, anon_sym_as, - ACTIONS(4083), 1, + ACTIONS(4419), 1, anon_sym_CARET, - ACTIONS(4085), 1, + ACTIONS(4421), 1, anon_sym_AMP, - ACTIONS(4087), 1, + ACTIONS(4423), 1, anon_sym_PIPE, - ACTIONS(4079), 2, + ACTIONS(4429), 1, + anon_sym_AMP_AMP, + ACTIONS(4431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(4505), 1, + anon_sym_DOT_DOT, + ACTIONS(4761), 1, + anon_sym_RBRACE, + ACTIONS(4763), 1, + anon_sym_COMMA, + ACTIONS(4415), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4093), 2, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1600), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4081), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3681), 4, - anon_sym_EQ, + ACTIONS(4435), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3677), 21, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(4507), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [37759] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1601), 2, + STATE(2021), 2, sym_line_comment, sym_block_comment, - ACTIONS(3343), 17, - anon_sym_PLUS, + ACTIONS(4417), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, + ACTIONS(4433), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3341), 22, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144370,23 +172861,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - anon_sym_LT2, - [37813] = 5, + [55888] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1602), 2, + STATE(2022), 2, sym_line_comment, sym_block_comment, - ACTIONS(3583), 15, + ACTIONS(1287), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144402,7 +172887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3581), 24, + ACTIONS(1285), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -144425,19 +172910,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_DASH_GT, anon_sym_as, - [37867] = 6, + [55941] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4135), 1, - anon_sym_DASH_GT, - STATE(1603), 2, + STATE(2023), 2, sym_line_comment, sym_block_comment, - ACTIONS(3587), 15, + ACTIONS(4217), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144453,7 +172935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3585), 23, + ACTIONS(4215), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -144477,62 +172959,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [37923] = 22, + [55994] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(4161), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(4165), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(4167), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(4387), 1, anon_sym_as, - ACTIONS(4083), 1, + ACTIONS(4459), 1, + anon_sym_EQ, + ACTIONS(4685), 1, anon_sym_CARET, - ACTIONS(4085), 1, + ACTIONS(4687), 1, anon_sym_AMP, - ACTIONS(4087), 1, + ACTIONS(4689), 1, anon_sym_PIPE, - ACTIONS(4089), 1, + ACTIONS(4691), 1, anon_sym_AMP_AMP, - ACTIONS(4091), 1, + ACTIONS(4693), 1, anon_sym_PIPE_PIPE, - ACTIONS(4097), 1, - anon_sym_EQ, - ACTIONS(4137), 1, + ACTIONS(4703), 1, anon_sym_DOT_DOT, - ACTIONS(4079), 2, + ACTIONS(4681), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4093), 2, + ACTIONS(4695), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4101), 2, + ACTIONS(4699), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4139), 2, + ACTIONS(4705), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1604), 2, + STATE(2024), 2, sym_line_comment, sym_block_comment, - ACTIONS(3939), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SQUOTE, - ACTIONS(4081), 3, + ACTIONS(4683), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4099), 4, + ACTIONS(4697), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4095), 10, + ACTIONS(4457), 12, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144543,55 +173023,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38011] = 18, + [56079] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(323), 1, + anon_sym_RBRACE, + ACTIONS(4161), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(4165), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(4167), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(4387), 1, anon_sym_as, - ACTIONS(4083), 1, + ACTIONS(4419), 1, anon_sym_CARET, - ACTIONS(4085), 1, + ACTIONS(4421), 1, anon_sym_AMP, - ACTIONS(4087), 1, + ACTIONS(4423), 1, anon_sym_PIPE, - ACTIONS(4089), 1, + ACTIONS(4429), 1, anon_sym_AMP_AMP, - ACTIONS(3681), 2, + ACTIONS(4431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4439), 1, anon_sym_EQ, + ACTIONS(4505), 1, anon_sym_DOT_DOT, - ACTIONS(4079), 2, + ACTIONS(4671), 1, + anon_sym_SEMI, + ACTIONS(4415), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4093), 2, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4101), 2, + ACTIONS(4435), 2, anon_sym_GT, anon_sym_LT, - STATE(1605), 2, + ACTIONS(4507), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2025), 2, sym_line_comment, sym_block_comment, - ACTIONS(4081), 3, + ACTIONS(4417), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4099), 4, + ACTIONS(4433), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3677), 16, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_PIPE, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144602,59 +173089,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [38091] = 19, + [56168] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(4083), 1, + STATE(2026), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4265), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4085), 1, anon_sym_AMP, - ACTIONS(4087), 1, anon_sym_PIPE, - ACTIONS(4089), 1, - anon_sym_AMP_AMP, - ACTIONS(4091), 1, - anon_sym_PIPE_PIPE, - ACTIONS(389), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4079), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4093), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4101), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - STATE(1606), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4081), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4099), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(387), 15, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4263), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144665,63 +173130,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [38173] = 21, + anon_sym_as, + [56221] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(347), 1, - anon_sym_EQ, - ACTIONS(3679), 1, + ACTIONS(4161), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(4165), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(4167), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(4387), 1, anon_sym_as, - ACTIONS(4083), 1, + ACTIONS(4419), 1, anon_sym_CARET, - ACTIONS(4085), 1, + ACTIONS(4421), 1, anon_sym_AMP, - ACTIONS(4087), 1, + ACTIONS(4423), 1, anon_sym_PIPE, - ACTIONS(4089), 1, + ACTIONS(4429), 1, anon_sym_AMP_AMP, - ACTIONS(4091), 1, + ACTIONS(4431), 1, anon_sym_PIPE_PIPE, - ACTIONS(4137), 1, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(4505), 1, anon_sym_DOT_DOT, - ACTIONS(4079), 2, + ACTIONS(4671), 1, + anon_sym_SEMI, + ACTIONS(4765), 1, + anon_sym_RBRACE, + ACTIONS(4415), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4093), 2, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4101), 2, + ACTIONS(4435), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4139), 2, + ACTIONS(4507), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1607), 2, + STATE(2027), 2, sym_line_comment, sym_block_comment, - ACTIONS(4081), 3, + ACTIONS(4417), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4099), 4, + ACTIONS(4433), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(341), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144732,61 +173203,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_SQUOTE, - [38259] = 21, + [56310] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(4015), 1, - anon_sym_EQ, - ACTIONS(4083), 1, + STATE(2028), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1451), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4085), 1, anon_sym_AMP, - ACTIONS(4087), 1, anon_sym_PIPE, - ACTIONS(4089), 1, - anon_sym_AMP_AMP, - ACTIONS(4091), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4137), 1, - anon_sym_DOT_DOT, - ACTIONS(4079), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4093), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4101), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4139), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1608), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4081), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4099), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4013), 13, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1449), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144797,105 +173244,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_SQUOTE, - [38345] = 21, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [56363] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(4161), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(4165), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(4167), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(4387), 1, anon_sym_as, - ACTIONS(4025), 1, - anon_sym_EQ, - ACTIONS(4083), 1, + ACTIONS(4419), 1, anon_sym_CARET, - ACTIONS(4085), 1, + ACTIONS(4421), 1, anon_sym_AMP, - ACTIONS(4087), 1, + ACTIONS(4423), 1, anon_sym_PIPE, - ACTIONS(4089), 1, + ACTIONS(4429), 1, anon_sym_AMP_AMP, - ACTIONS(4091), 1, + ACTIONS(4431), 1, anon_sym_PIPE_PIPE, - ACTIONS(4137), 1, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(4505), 1, anon_sym_DOT_DOT, - ACTIONS(4079), 2, + ACTIONS(4767), 1, + anon_sym_SEMI, + ACTIONS(4769), 1, + anon_sym_else, + ACTIONS(4415), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4093), 2, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4101), 2, + ACTIONS(4435), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4139), 2, + ACTIONS(4507), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1609), 2, + STATE(2029), 2, sym_line_comment, sym_block_comment, - ACTIONS(4081), 3, + ACTIONS(4417), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4099), 4, + ACTIONS(4433), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4023), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_SQUOTE, - [38431] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4141), 1, - anon_sym_DASH_GT, - STATE(1610), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3593), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3591), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144906,24 +173317,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [38487] = 6, + [56452] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4143), 1, - anon_sym_DASH_GT, - STATE(1611), 2, + STATE(2030), 2, sym_line_comment, sym_block_comment, - ACTIONS(3599), 15, + ACTIONS(1367), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144939,7 +173341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3597), 23, + ACTIONS(1365), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -144963,15 +173365,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [38543] = 5, + [56505] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1612), 2, + STATE(2031), 2, sym_line_comment, sym_block_comment, - ACTIONS(3517), 15, + ACTIONS(4307), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144987,7 +173389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3515), 24, + ACTIONS(4305), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145010,134 +173412,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, anon_sym_as, - [38597] = 24, + [56558] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, - anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4145), 1, - anon_sym_RPAREN, - ACTIONS(4147), 1, - anon_sym_COMMA, - STATE(2813), 1, - aux_sym_arguments_repeat1, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1613), 2, + STATE(2032), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(4303), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [38689] = 24, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(935), 1, - anon_sym_RBRACK, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, anon_sym_CARET, - ACTIONS(3971), 1, anon_sym_AMP, - ACTIONS(3973), 1, anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4149), 1, - anon_sym_COMMA, - STATE(2821), 1, - aux_sym_arguments_repeat1, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1614), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4301), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145148,15 +173454,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38781] = 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [56611] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1615), 2, + STATE(2033), 2, sym_line_comment, sym_block_comment, - ACTIONS(3543), 15, + ACTIONS(4213), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145172,7 +173485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3541), 24, + ACTIONS(4211), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145195,17 +173508,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, anon_sym_as, - [38835] = 5, + [56664] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1616), 2, + STATE(2034), 2, sym_line_comment, sym_block_comment, - ACTIONS(3609), 15, + ACTIONS(4137), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145221,7 +173533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3607), 24, + ACTIONS(4135), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145244,85 +173556,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_DASH_GT, anon_sym_as, - [38889] = 24, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(949), 1, - anon_sym_RPAREN, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, - anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4151), 1, - anon_sym_COMMA, - STATE(2860), 1, - aux_sym_arguments_repeat1, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1617), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [38981] = 5, + [56717] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1618), 2, + STATE(2035), 2, sym_line_comment, sym_block_comment, - ACTIONS(3555), 15, + ACTIONS(4233), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145338,7 +173581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3553), 24, + ACTIONS(4231), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145361,19 +173604,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, anon_sym_as, - [39035] = 6, + [56770] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4153), 1, - anon_sym_COLON_COLON, - STATE(1619), 2, + ACTIONS(4639), 1, + anon_sym_LBRACK, + ACTIONS(4645), 1, + anon_sym_QMARK, + ACTIONS(4663), 1, + anon_sym_DOT, + STATE(2036), 2, sym_line_comment, sym_block_comment, - ACTIONS(3339), 15, + ACTIONS(4295), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145387,13 +173633,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3337), 23, + ACTIONS(4293), 21, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -145413,15 +173656,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [39091] = 5, + [56829] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1620), 2, + STATE(2037), 2, sym_line_comment, sym_block_comment, - ACTIONS(3559), 15, + ACTIONS(1451), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145437,7 +173680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3557), 24, + ACTIONS(1449), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145460,62 +173703,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, anon_sym_as, - [39145] = 21, + [56882] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(335), 1, + anon_sym_RBRACE, + ACTIONS(4161), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(4165), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(4167), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(4387), 1, anon_sym_as, - ACTIONS(4021), 1, - anon_sym_EQ, - ACTIONS(4083), 1, + ACTIONS(4419), 1, anon_sym_CARET, - ACTIONS(4085), 1, + ACTIONS(4421), 1, anon_sym_AMP, - ACTIONS(4087), 1, + ACTIONS(4423), 1, anon_sym_PIPE, - ACTIONS(4089), 1, + ACTIONS(4429), 1, anon_sym_AMP_AMP, - ACTIONS(4091), 1, + ACTIONS(4431), 1, anon_sym_PIPE_PIPE, - ACTIONS(4137), 1, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(4505), 1, anon_sym_DOT_DOT, - ACTIONS(4079), 2, + ACTIONS(4671), 1, + anon_sym_SEMI, + ACTIONS(4415), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4093), 2, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4101), 2, + ACTIONS(4435), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4139), 2, + ACTIONS(4507), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1621), 2, + STATE(2038), 2, sym_line_comment, sym_block_comment, - ACTIONS(4081), 3, + ACTIONS(4417), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4099), 4, + ACTIONS(4433), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4019), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145526,18 +173770,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_SQUOTE, - [39231] = 6, + [56971] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4155), 1, - anon_sym_DASH_GT, - STATE(1622), 2, + STATE(2039), 2, sym_line_comment, sym_block_comment, - ACTIONS(3613), 15, + ACTIONS(4141), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145553,7 +173794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3611), 23, + ACTIONS(4139), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145577,62 +173818,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [39287] = 22, + [57024] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(4161), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(4165), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(4167), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(4387), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(4419), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(4421), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(4423), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(4429), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, + ACTIONS(4431), 1, anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, + ACTIONS(4439), 1, anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(4505), 1, anon_sym_DOT_DOT, - ACTIONS(3965), 2, + ACTIONS(4751), 1, + anon_sym_COMMA, + ACTIONS(4771), 1, + anon_sym_RPAREN, + ACTIONS(4415), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(4435), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(4507), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1623), 2, + STATE(2040), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(4417), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4157), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(3985), 4, + ACTIONS(4433), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145643,64 +173884,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39375] = 24, + [57113] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(967), 1, - anon_sym_RPAREN, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, + STATE(2041), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4149), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3971), 1, anon_sym_AMP, - ACTIONS(3973), 1, anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4159), 1, - anon_sym_COMMA, - STATE(2870), 1, - aux_sym_arguments_repeat1, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4147), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1624), 2, + anon_sym_as, + [57166] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2042), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(4237), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4235), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145711,17 +173973,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39467] = 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [57219] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4161), 1, - anon_sym_DASH_GT, - STATE(1625), 2, + STATE(2043), 2, sym_line_comment, sym_block_comment, - ACTIONS(3563), 15, + ACTIONS(4225), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145737,7 +174004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3561), 23, + ACTIONS(4223), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145761,19 +174028,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [39523] = 7, + [57272] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4163), 1, - anon_sym_LPAREN, - STATE(1698), 1, - sym_arguments, - STATE(1626), 2, + STATE(2044), 2, sym_line_comment, sym_block_comment, - ACTIONS(3661), 15, + ACTIONS(3785), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145789,7 +174052,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3657), 22, + ACTIONS(3783), 23, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -145812,42 +174076,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [39581] = 11, + [57325] = 15, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(4639), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(4645), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(4647), 1, + anon_sym_CARET, + ACTIONS(4649), 1, + anon_sym_AMP, + ACTIONS(4651), 1, + anon_sym_PIPE, + ACTIONS(4663), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(4665), 1, anon_sym_as, - ACTIONS(4079), 2, + ACTIONS(4641), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1627), 2, + ACTIONS(4657), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(2045), 2, sym_line_comment, sym_block_comment, - ACTIONS(4081), 3, + ACTIONS(4643), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3681), 9, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(4385), 4, anon_sym_EQ, anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3677), 21, + ACTIONS(4383), 20, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -145866,18 +174134,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [39647] = 6, + [57398] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4153), 1, - anon_sym_COLON_COLON, - STATE(1628), 2, + STATE(2046), 2, sym_line_comment, sym_block_comment, - ACTIONS(3359), 15, + ACTIONS(3781), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145893,7 +174158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3357), 23, + ACTIONS(3779), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145917,37 +174182,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [39703] = 5, + [57451] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1629), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3623), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4467), 1, + anon_sym_EQ, + ACTIONS(4639), 1, + anon_sym_LBRACK, + ACTIONS(4645), 1, + anon_sym_QMARK, + ACTIONS(4647), 1, anon_sym_CARET, + ACTIONS(4649), 1, anon_sym_AMP, + ACTIONS(4651), 1, anon_sym_PIPE, + ACTIONS(4653), 1, + anon_sym_AMP_AMP, + ACTIONS(4655), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4663), 1, + anon_sym_DOT, + ACTIONS(4665), 1, + anon_sym_as, + ACTIONS(4667), 1, + anon_sym_DOT_DOT, + ACTIONS(4641), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4657), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4661), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3621), 24, + ACTIONS(4669), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2047), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4643), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4659), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4465), 12, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145958,72 +174246,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DASH_GT, - anon_sym_as, - [39757] = 24, + [57536] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(919), 1, - anon_sym_RBRACK, - ACTIONS(3679), 1, + ACTIONS(4463), 1, + anon_sym_EQ, + ACTIONS(4639), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(4645), 1, anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(4647), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(4649), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(4651), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(4653), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, + ACTIONS(4655), 1, anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(4663), 1, + anon_sym_DOT, + ACTIONS(4665), 1, + anon_sym_as, + ACTIONS(4667), 1, anon_sym_DOT_DOT, - ACTIONS(4165), 1, - anon_sym_COMMA, - STATE(2961), 1, - aux_sym_arguments_repeat1, - ACTIONS(3965), 2, + ACTIONS(4641), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(4657), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(4661), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(4669), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1630), 2, + STATE(2048), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(4643), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(4659), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(4461), 12, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146034,60 +174310,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39849] = 21, + [57621] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(4161), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(4165), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(4167), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(4387), 1, anon_sym_as, - ACTIONS(3995), 1, - anon_sym_EQ, - ACTIONS(4083), 1, + ACTIONS(4419), 1, anon_sym_CARET, - ACTIONS(4085), 1, + ACTIONS(4421), 1, anon_sym_AMP, - ACTIONS(4087), 1, + ACTIONS(4423), 1, anon_sym_PIPE, - ACTIONS(4089), 1, + ACTIONS(4429), 1, anon_sym_AMP_AMP, - ACTIONS(4091), 1, + ACTIONS(4431), 1, anon_sym_PIPE_PIPE, - ACTIONS(4137), 1, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(4505), 1, anon_sym_DOT_DOT, - ACTIONS(4079), 2, + ACTIONS(4773), 1, + anon_sym_RPAREN, + ACTIONS(4775), 1, + anon_sym_COMMA, + ACTIONS(4415), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4093), 2, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4101), 2, + ACTIONS(4435), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4139), 2, + ACTIONS(4507), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1631), 2, + STATE(2049), 2, sym_line_comment, sym_block_comment, - ACTIONS(4081), 3, + ACTIONS(4417), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4099), 4, + ACTIONS(4433), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3993), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146098,61 +174376,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_SQUOTE, - [39935] = 21, + [57710] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(4161), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(4165), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(4167), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(4387), 1, anon_sym_as, - ACTIONS(3999), 1, - anon_sym_EQ, - ACTIONS(4083), 1, + ACTIONS(4419), 1, anon_sym_CARET, - ACTIONS(4085), 1, + ACTIONS(4421), 1, anon_sym_AMP, - ACTIONS(4087), 1, + ACTIONS(4423), 1, anon_sym_PIPE, - ACTIONS(4089), 1, + ACTIONS(4429), 1, anon_sym_AMP_AMP, - ACTIONS(4091), 1, + ACTIONS(4431), 1, anon_sym_PIPE_PIPE, - ACTIONS(4137), 1, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(4505), 1, anon_sym_DOT_DOT, - ACTIONS(4079), 2, + ACTIONS(4671), 1, + anon_sym_SEMI, + ACTIONS(4777), 1, + anon_sym_RBRACE, + ACTIONS(4415), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4093), 2, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4101), 2, + ACTIONS(4435), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4139), 2, + ACTIONS(4507), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1632), 2, + STATE(2050), 2, sym_line_comment, sym_block_comment, - ACTIONS(4081), 3, + ACTIONS(4417), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4099), 4, + ACTIONS(4433), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3997), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146163,18 +174442,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_SQUOTE, - [40021] = 6, + [57799] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - STATE(1633), 2, + STATE(2051), 2, sym_line_comment, sym_block_comment, - ACTIONS(3323), 15, + ACTIONS(3765), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146190,7 +174466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3321), 23, + ACTIONS(3763), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -146214,37 +174490,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [40077] = 5, + [57852] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1634), 2, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4419), 1, + anon_sym_CARET, + ACTIONS(4421), 1, + anon_sym_AMP, + ACTIONS(4423), 1, + anon_sym_PIPE, + ACTIONS(4429), 1, + anon_sym_AMP_AMP, + ACTIONS(4431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(4505), 1, + anon_sym_DOT_DOT, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4425), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4435), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4507), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4779), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(2052), 2, sym_line_comment, sym_block_comment, - ACTIONS(3635), 15, - anon_sym_PLUS, + ACTIONS(4417), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4433), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4437), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [57939] = 23, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4419), 1, anon_sym_CARET, + ACTIONS(4421), 1, anon_sym_AMP, + ACTIONS(4423), 1, anon_sym_PIPE, + ACTIONS(4429), 1, + anon_sym_AMP_AMP, + ACTIONS(4431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(4505), 1, + anon_sym_DOT_DOT, + ACTIONS(4781), 1, + anon_sym_SEMI, + ACTIONS(4783), 1, + anon_sym_else, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4435), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3633), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4507), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2053), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4417), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4433), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146255,25 +174621,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DASH_GT, - anon_sym_as, - [40131] = 6, + [58028] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4153), 1, - anon_sym_COLON_COLON, - STATE(1635), 2, + STATE(2054), 2, sym_line_comment, sym_block_comment, - ACTIONS(3327), 15, + ACTIONS(1049), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146289,7 +174645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3325), 23, + ACTIONS(1051), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -146313,37 +174669,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [40187] = 5, + [58081] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1636), 2, + ACTIONS(333), 1, + anon_sym_RBRACE, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4419), 1, + anon_sym_CARET, + ACTIONS(4421), 1, + anon_sym_AMP, + ACTIONS(4423), 1, + anon_sym_PIPE, + ACTIONS(4429), 1, + anon_sym_AMP_AMP, + ACTIONS(4431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(4505), 1, + anon_sym_DOT_DOT, + ACTIONS(4671), 1, + anon_sym_SEMI, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4425), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4435), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4507), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2055), 2, sym_line_comment, sym_block_comment, - ACTIONS(3643), 15, - anon_sym_PLUS, + ACTIONS(4417), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4433), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4437), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [58170] = 22, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4419), 1, anon_sym_CARET, + ACTIONS(4421), 1, anon_sym_AMP, + ACTIONS(4423), 1, anon_sym_PIPE, + ACTIONS(4429), 1, + anon_sym_AMP_AMP, + ACTIONS(4431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(4505), 1, + anon_sym_DOT_DOT, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4435), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3641), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4507), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4785), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(2056), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4417), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4433), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146354,47 +174800,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DASH_GT, - anon_sym_as, - [40241] = 6, + [58257] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3873), 1, - anon_sym_COLON_COLON, - STATE(1637), 2, + ACTIONS(141), 1, + anon_sym_RBRACE, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4419), 1, + anon_sym_CARET, + ACTIONS(4421), 1, + anon_sym_AMP, + ACTIONS(4423), 1, + anon_sym_PIPE, + ACTIONS(4429), 1, + anon_sym_AMP_AMP, + ACTIONS(4431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(4505), 1, + anon_sym_DOT_DOT, + ACTIONS(4671), 1, + anon_sym_SEMI, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4425), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4435), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4507), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2057), 2, sym_line_comment, sym_block_comment, - ACTIONS(3285), 15, - anon_sym_PLUS, + ACTIONS(4417), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4433), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4437), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [58346] = 23, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4419), 1, anon_sym_CARET, + ACTIONS(4421), 1, anon_sym_AMP, + ACTIONS(4423), 1, anon_sym_PIPE, + ACTIONS(4429), 1, + anon_sym_AMP_AMP, + ACTIONS(4431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(4505), 1, + anon_sym_DOT_DOT, + ACTIONS(4671), 1, + anon_sym_SEMI, + ACTIONS(4787), 1, + anon_sym_RBRACE, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4435), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3283), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4507), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2058), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4417), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4433), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146405,69 +174932,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + [58435] = 23, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4419), 1, + anon_sym_CARET, + ACTIONS(4421), 1, + anon_sym_AMP, + ACTIONS(4423), 1, + anon_sym_PIPE, + ACTIONS(4429), 1, + anon_sym_AMP_AMP, + ACTIONS(4431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(4505), 1, + anon_sym_DOT_DOT, + ACTIONS(4671), 1, + anon_sym_SEMI, + ACTIONS(4789), 1, + anon_sym_RBRACE, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4425), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4435), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4507), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2059), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4417), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4433), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [40297] = 22, + ACTIONS(4437), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [58524] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(1219), 1, + anon_sym_RPAREN, + ACTIONS(4161), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(4165), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(4167), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(4387), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(4419), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(4421), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(4423), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(4429), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, + ACTIONS(4431), 1, anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, + ACTIONS(4439), 1, anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(4505), 1, anon_sym_DOT_DOT, - ACTIONS(3965), 2, + ACTIONS(4751), 1, + anon_sym_COMMA, + ACTIONS(4415), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(4435), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(4507), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1638), 2, + STATE(2060), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(4417), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4169), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(3985), 4, + ACTIONS(4433), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146478,29 +175064,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40385] = 10, + [58613] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - STATE(1639), 2, + STATE(2061), 2, sym_line_comment, sym_block_comment, - ACTIONS(4081), 3, + ACTIONS(4229), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3681), 11, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -146509,10 +175086,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3677), 21, + ACTIONS(4227), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -146531,45 +175111,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [40449] = 13, + anon_sym_as, + [58666] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(4639), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(4645), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(4663), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(4665), 1, anon_sym_as, - ACTIONS(4085), 1, - anon_sym_AMP, - ACTIONS(4079), 2, + ACTIONS(4641), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4093), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1640), 2, + STATE(2062), 2, sym_line_comment, sym_block_comment, - ACTIONS(4081), 3, + ACTIONS(4643), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3681), 6, + ACTIONS(4385), 9, anon_sym_CARET, + anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3677), 21, + ACTIONS(4383), 20, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -146588,63 +175166,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [40519] = 22, + [58731] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(4161), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(4165), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(4167), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(4387), 1, anon_sym_as, - ACTIONS(4083), 1, + ACTIONS(4419), 1, anon_sym_CARET, - ACTIONS(4085), 1, + ACTIONS(4421), 1, anon_sym_AMP, - ACTIONS(4087), 1, + ACTIONS(4423), 1, anon_sym_PIPE, - ACTIONS(4089), 1, + ACTIONS(4429), 1, anon_sym_AMP_AMP, - ACTIONS(4091), 1, + ACTIONS(4431), 1, anon_sym_PIPE_PIPE, - ACTIONS(4097), 1, + ACTIONS(4439), 1, anon_sym_EQ, - ACTIONS(4137), 1, + ACTIONS(4505), 1, anon_sym_DOT_DOT, - ACTIONS(4079), 2, + ACTIONS(4671), 1, + anon_sym_SEMI, + ACTIONS(4791), 1, + anon_sym_RBRACE, + ACTIONS(4415), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4093), 2, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4101), 2, + ACTIONS(4435), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4139), 2, + ACTIONS(4507), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1641), 2, + STATE(2063), 2, sym_line_comment, sym_block_comment, - ACTIONS(3821), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SQUOTE, - ACTIONS(4081), 3, + ACTIONS(4417), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4099), 4, + ACTIONS(4433), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4095), 10, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146655,17 +175232,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40607] = 6, + [58820] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4171), 1, - anon_sym_DASH_GT, - STATE(1642), 2, + STATE(2064), 2, sym_line_comment, sym_block_comment, - ACTIONS(3569), 15, + ACTIONS(4253), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146681,7 +175256,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3567), 23, + ACTIONS(4251), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -146705,79 +175280,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [40663] = 18, - ACTIONS(29), 1, - anon_sym_LT, + [58873] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4173), 1, - sym_identifier, - ACTIONS(4175), 1, - anon_sym_LBRACE, - ACTIONS(4177), 1, - anon_sym_RBRACE, - ACTIONS(4179), 1, - anon_sym_STAR, - ACTIONS(4183), 1, - anon_sym_COMMA, - ACTIONS(4185), 1, - anon_sym_COLON_COLON, - ACTIONS(4189), 1, - sym_metavariable, - STATE(2477), 1, - sym_scoped_identifier, - STATE(3047), 1, - sym__use_clause, - STATE(3423), 1, - sym_generic_type_with_turbofish, - STATE(3517), 1, - sym_bracketed_type, - STATE(1643), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4187), 3, - sym_self, - sym_super, - sym_crate, - STATE(2910), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4181), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_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_gen, - anon_sym_union, - [40743] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4191), 1, - anon_sym_COLON_COLON, - STATE(1644), 2, + STATE(2065), 2, sym_line_comment, sym_block_comment, - ACTIONS(3323), 15, + ACTIONS(4257), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146793,7 +175304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3321), 23, + ACTIONS(4255), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -146817,45 +175328,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [40799] = 12, + [58926] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(123), 1, + anon_sym_RBRACE, + ACTIONS(4161), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(4165), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(4167), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(4387), 1, anon_sym_as, - ACTIONS(4079), 2, + ACTIONS(4419), 1, + anon_sym_CARET, + ACTIONS(4421), 1, + anon_sym_AMP, + ACTIONS(4423), 1, + anon_sym_PIPE, + ACTIONS(4429), 1, + anon_sym_AMP_AMP, + ACTIONS(4431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(4505), 1, + anon_sym_DOT_DOT, + ACTIONS(4671), 1, + anon_sym_SEMI, + ACTIONS(4415), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4093), 2, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1645), 2, + ACTIONS(4435), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4507), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2066), 2, sym_line_comment, sym_block_comment, - ACTIONS(4081), 3, + ACTIONS(4417), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3681), 7, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3677), 21, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4433), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146866,24 +175394,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [40867] = 6, + [59015] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4193), 1, - anon_sym_DASH_GT, - STATE(1646), 2, + STATE(2067), 2, sym_line_comment, sym_block_comment, - ACTIONS(3575), 15, + ACTIONS(3697), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146899,7 +175418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3573), 23, + ACTIONS(3699), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -146923,38 +175442,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [40923] = 6, + [59068] = 18, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4195), 1, - anon_sym_COLON_COLON, - STATE(1647), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1357), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4639), 1, + anon_sym_LBRACK, + ACTIONS(4645), 1, + anon_sym_QMARK, + ACTIONS(4647), 1, anon_sym_CARET, + ACTIONS(4649), 1, anon_sym_AMP, + ACTIONS(4651), 1, anon_sym_PIPE, + ACTIONS(4653), 1, + anon_sym_AMP_AMP, + ACTIONS(4663), 1, + anon_sym_DOT, + ACTIONS(4665), 1, + anon_sym_as, + ACTIONS(4385), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4641), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4657), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4661), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1359), 23, + STATE(2068), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4643), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4659), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4383), 15, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -146966,95 +175501,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [40979] = 5, + [59147] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1648), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1275), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4419), 1, anon_sym_CARET, + ACTIONS(4421), 1, anon_sym_AMP, + ACTIONS(4423), 1, anon_sym_PIPE, + ACTIONS(4429), 1, + anon_sym_AMP_AMP, + ACTIONS(4431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(4505), 1, + anon_sym_DOT_DOT, + ACTIONS(4793), 1, + anon_sym_SEMI, + ACTIONS(4795), 1, + anon_sym_else, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4435), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1273), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(4507), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - anon_sym_else, - [41033] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4153), 1, - anon_sym_COLON_COLON, - STATE(1649), 2, + STATE(2069), 2, sym_line_comment, sym_block_comment, - ACTIONS(3323), 15, - anon_sym_PLUS, + ACTIONS(4417), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3321), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4433), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147065,22 +175569,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [41089] = 5, + [59236] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1650), 2, + STATE(2070), 2, sym_line_comment, sym_block_comment, - ACTIONS(1259), 15, + ACTIONS(4341), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147096,7 +175593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1257), 24, + ACTIONS(4339), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147120,38 +175617,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - anon_sym_else, - [41143] = 5, + [59289] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1651), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1271), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4419), 1, anon_sym_CARET, + ACTIONS(4421), 1, anon_sym_AMP, + ACTIONS(4423), 1, anon_sym_PIPE, + ACTIONS(4429), 1, + anon_sym_AMP_AMP, + ACTIONS(4431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(4505), 1, + anon_sym_DOT_DOT, + ACTIONS(4797), 1, + anon_sym_SEMI, + ACTIONS(4799), 1, + anon_sym_else, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4435), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1269), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4507), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2071), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4417), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4433), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147162,23 +175683,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - anon_sym_else, - [41197] = 5, + [59378] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1652), 2, + STATE(2072), 2, sym_line_comment, sym_block_comment, - ACTIONS(1267), 15, + ACTIONS(4353), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147194,7 +175707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1265), 24, + ACTIONS(4351), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147218,63 +175731,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - anon_sym_else, - [41251] = 22, + [59431] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(4161), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(4165), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(4167), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(4387), 1, anon_sym_as, - ACTIONS(4083), 1, + ACTIONS(4419), 1, anon_sym_CARET, - ACTIONS(4085), 1, + ACTIONS(4421), 1, anon_sym_AMP, - ACTIONS(4087), 1, + ACTIONS(4423), 1, anon_sym_PIPE, - ACTIONS(4089), 1, + ACTIONS(4429), 1, anon_sym_AMP_AMP, - ACTIONS(4091), 1, + ACTIONS(4431), 1, anon_sym_PIPE_PIPE, - ACTIONS(4097), 1, + ACTIONS(4439), 1, anon_sym_EQ, - ACTIONS(4137), 1, + ACTIONS(4505), 1, anon_sym_DOT_DOT, - ACTIONS(4079), 2, + ACTIONS(4801), 1, + anon_sym_SEMI, + ACTIONS(4803), 1, + anon_sym_else, + ACTIONS(4415), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4093), 2, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4101), 2, + ACTIONS(4435), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4139), 2, + ACTIONS(4507), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1653), 2, + STATE(2073), 2, sym_line_comment, sym_block_comment, - ACTIONS(3889), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SQUOTE, - ACTIONS(4081), 3, + ACTIONS(4417), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4099), 4, + ACTIONS(4433), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4095), 10, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147285,62 +175797,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41339] = 23, + [59520] = 17, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(289), 1, - anon_sym_RBRACE, - ACTIONS(3679), 1, + ACTIONS(4639), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(4645), 1, anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(4647), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(4649), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(4651), 1, anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, + ACTIONS(4663), 1, + anon_sym_DOT, + ACTIONS(4665), 1, + anon_sym_as, + ACTIONS(4385), 2, anon_sym_EQ, - ACTIONS(4065), 1, anon_sym_DOT_DOT, - ACTIONS(4197), 1, - anon_sym_SEMI, - ACTIONS(3965), 2, + ACTIONS(4641), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(4657), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(4661), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1654), 2, + STATE(2074), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(4643), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(4659), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(4383), 16, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147351,35 +175855,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41428] = 5, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [59597] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1655), 2, + ACTIONS(4639), 1, + anon_sym_LBRACK, + ACTIONS(4645), 1, + anon_sym_QMARK, + ACTIONS(4647), 1, + anon_sym_CARET, + ACTIONS(4649), 1, + anon_sym_AMP, + ACTIONS(4663), 1, + anon_sym_DOT, + ACTIONS(4665), 1, + anon_sym_as, + ACTIONS(4641), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4657), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(2075), 2, sym_line_comment, sym_block_comment, - ACTIONS(3747), 15, - anon_sym_PLUS, + ACTIONS(4643), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(4385), 5, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3745), 23, + ACTIONS(4383), 20, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -147398,107 +175914,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [41481] = 23, + [59668] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(4161), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(4165), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(4167), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(4387), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(4419), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(4421), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(4423), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(4429), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, + ACTIONS(4431), 1, anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, + ACTIONS(4439), 1, anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(4505), 1, anon_sym_DOT_DOT, - ACTIONS(4199), 1, - anon_sym_RPAREN, - ACTIONS(4201), 1, + ACTIONS(4805), 1, + anon_sym_RBRACE, + ACTIONS(4807), 1, anon_sym_COMMA, - ACTIONS(3965), 2, + ACTIONS(4415), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(4435), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(4507), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1656), 2, + STATE(2076), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(4417), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(4433), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [41570] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4203), 1, - anon_sym_LBRACK, - ACTIONS(4205), 1, - anon_sym_QMARK, - ACTIONS(4207), 1, - anon_sym_DOT, - STATE(1657), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3755), 14, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3753), 21, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147509,69 +175980,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [41629] = 23, + [59757] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1215), 1, - anon_sym_RPAREN, - ACTIONS(3679), 1, + ACTIONS(4161), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(4165), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(4167), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(4387), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(4419), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(4421), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(4423), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(4429), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, + ACTIONS(4431), 1, anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, + ACTIONS(4439), 1, anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(4505), 1, anon_sym_DOT_DOT, - ACTIONS(4201), 1, - anon_sym_COMMA, - ACTIONS(3965), 2, + ACTIONS(4809), 1, + anon_sym_SEMI, + ACTIONS(4811), 1, + anon_sym_else, + ACTIONS(4415), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(4435), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(4507), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1658), 2, + STATE(2077), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(4417), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(4433), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147582,15 +176046,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41718] = 5, + [59846] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1659), 2, + STATE(2078), 2, sym_line_comment, sym_block_comment, - ACTIONS(3891), 15, + ACTIONS(4209), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147606,7 +176070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3889), 23, + ACTIONS(4207), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147630,15 +176094,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41771] = 5, + [59899] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1660), 2, + STATE(2079), 2, sym_line_comment, sym_block_comment, - ACTIONS(1357), 15, + ACTIONS(1455), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147654,7 +176118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1359), 23, + ACTIONS(1453), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147678,35 +176142,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41824] = 5, + [59952] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1661), 2, + ACTIONS(4639), 1, + anon_sym_LBRACK, + ACTIONS(4645), 1, + anon_sym_QMARK, + ACTIONS(4663), 1, + anon_sym_DOT, + ACTIONS(4665), 1, + anon_sym_as, + ACTIONS(4641), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4657), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(2080), 2, sym_line_comment, sym_block_comment, - ACTIONS(3831), 15, - anon_sym_PLUS, + ACTIONS(4643), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4385), 7, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3829), 23, + ACTIONS(4383), 20, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -147725,62 +176197,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [41877] = 22, + [60019] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(4161), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(4165), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(4167), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(4387), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(4419), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(4421), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(4423), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(4429), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, + ACTIONS(4431), 1, anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, + ACTIONS(4439), 1, anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(4505), 1, anon_sym_DOT_DOT, - ACTIONS(3965), 2, + ACTIONS(4813), 1, + anon_sym_SEMI, + ACTIONS(4815), 1, + anon_sym_else, + ACTIONS(4415), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(4435), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(4507), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4209), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1662), 2, + STATE(2081), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(4417), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(4433), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147791,15 +176263,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41964] = 5, + [60108] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1663), 2, + ACTIONS(4639), 1, + anon_sym_LBRACK, + ACTIONS(4645), 1, + anon_sym_QMARK, + ACTIONS(4647), 1, + anon_sym_CARET, + ACTIONS(4649), 1, + anon_sym_AMP, + ACTIONS(4651), 1, + anon_sym_PIPE, + ACTIONS(4653), 1, + anon_sym_AMP_AMP, + ACTIONS(4655), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4663), 1, + anon_sym_DOT, + ACTIONS(4665), 1, + anon_sym_as, + ACTIONS(4667), 1, + anon_sym_DOT_DOT, + ACTIONS(4729), 1, + anon_sym_EQ, + ACTIONS(4147), 2, + anon_sym_LPAREN, + anon_sym_EQ_GT, + ACTIONS(4641), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4657), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4661), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4669), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2082), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 15, + ACTIONS(4643), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4659), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4727), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [60195] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2083), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4121), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147815,7 +176352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3897), 23, + ACTIONS(4119), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147839,15 +176376,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42017] = 5, + [60248] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1664), 2, + STATE(2084), 2, sym_line_comment, sym_block_comment, - ACTIONS(1357), 15, + ACTIONS(4357), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147863,7 +176400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1359), 23, + ACTIONS(4355), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147887,81 +176424,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42070] = 23, + [60301] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(4639), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(4645), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(4663), 1, anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, - anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4211), 1, - anon_sym_RPAREN, - ACTIONS(4213), 1, - anon_sym_COMMA, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1665), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [42159] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1666), 2, + STATE(2085), 2, sym_line_comment, sym_block_comment, - ACTIONS(3661), 15, + ACTIONS(4163), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147975,13 +176452,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3657), 23, + ACTIONS(4159), 21, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -148001,15 +176475,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42212] = 5, + [60360] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1667), 2, + STATE(2086), 2, sym_line_comment, sym_block_comment, - ACTIONS(3799), 15, + ACTIONS(4287), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148025,7 +176499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3797), 23, + ACTIONS(4285), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148049,15 +176523,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42265] = 5, + [60413] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1668), 2, + STATE(2087), 2, sym_line_comment, sym_block_comment, - ACTIONS(3907), 15, + ACTIONS(4391), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148073,7 +176547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3905), 23, + ACTIONS(4389), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148097,37 +176571,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42318] = 5, + [60466] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1669), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3911), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4419), 1, anon_sym_CARET, + ACTIONS(4421), 1, anon_sym_AMP, + ACTIONS(4423), 1, anon_sym_PIPE, + ACTIONS(4429), 1, + anon_sym_AMP_AMP, + ACTIONS(4431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(4505), 1, + anon_sym_DOT_DOT, + ACTIONS(4313), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4435), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3909), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4507), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2088), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4417), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4433), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148138,22 +176636,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [42371] = 5, + [60553] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1670), 2, + STATE(2089), 2, sym_line_comment, sym_block_comment, - ACTIONS(3915), 15, + ACTIONS(4193), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148169,7 +176660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3913), 23, + ACTIONS(4191), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148193,37 +176684,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42424] = 5, + [60606] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1671), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1357), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4519), 1, anon_sym_CARET, + ACTIONS(4521), 1, anon_sym_AMP, + ACTIONS(4523), 1, anon_sym_PIPE, + ACTIONS(4527), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4533), 1, + anon_sym_EQ, + ACTIONS(4539), 1, + anon_sym_DOT_DOT, + ACTIONS(4515), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4529), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4537), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1359), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + ACTIONS(4541), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2090), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4517), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4817), 3, + anon_sym_LBRACE, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_SQUOTE, + ACTIONS(4535), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4531), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148234,22 +176748,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [42477] = 5, + [60691] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1672), 2, + STATE(2091), 2, sym_line_comment, sym_block_comment, - ACTIONS(3927), 15, + ACTIONS(4291), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148265,7 +176772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3925), 23, + ACTIONS(4289), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148289,15 +176796,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42530] = 5, + [60744] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1673), 2, + STATE(2092), 2, sym_line_comment, sym_block_comment, - ACTIONS(3931), 15, + ACTIONS(4315), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148313,7 +176820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3929), 23, + ACTIONS(4313), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148337,15 +176844,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42583] = 5, + [60797] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1674), 2, + STATE(2093), 2, sym_line_comment, sym_block_comment, - ACTIONS(3935), 15, + ACTIONS(4201), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148361,7 +176868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3933), 23, + ACTIONS(4199), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148385,15 +176892,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42636] = 5, + [60850] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1675), 2, + STATE(2094), 2, sym_line_comment, sym_block_comment, - ACTIONS(3715), 15, + ACTIONS(1451), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148409,7 +176916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3713), 23, + ACTIONS(1449), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148433,21 +176940,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42689] = 8, + [60903] = 17, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4203), 1, - anon_sym_LBRACK, - ACTIONS(4205), 1, - anon_sym_QMARK, - ACTIONS(4207), 1, - anon_sym_DOT, - STATE(1676), 2, + ACTIONS(4619), 1, + sym_identifier, + ACTIONS(4621), 1, + anon_sym_LBRACE, + ACTIONS(4625), 1, + anon_sym_STAR, + ACTIONS(4631), 1, + anon_sym_COLON_COLON, + ACTIONS(4635), 1, + sym_metavariable, + ACTIONS(4819), 1, + anon_sym_RBRACE, + STATE(2800), 1, + sym_scoped_identifier, + STATE(3574), 1, + sym__use_clause, + STATE(3900), 1, + sym_generic_type_with_turbofish, + STATE(4063), 1, + sym_bracketed_type, + STATE(2095), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4633), 3, + sym_self, + sym_super, + sym_crate, + STATE(3244), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4627), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_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_gen, + anon_sym_union, + [60980] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2096), 2, sym_line_comment, sym_block_comment, - ACTIONS(3735), 14, + ACTIONS(4377), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148461,10 +177022,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3733), 21, + ACTIONS(4375), 23, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -148484,21 +177048,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42748] = 8, + [61033] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4203), 1, - anon_sym_LBRACK, - ACTIONS(4205), 1, - anon_sym_QMARK, - ACTIONS(4207), 1, - anon_sym_DOT, - STATE(1677), 2, + STATE(2097), 2, sym_line_comment, sym_block_comment, - ACTIONS(3791), 14, + ACTIONS(4373), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148512,10 +177070,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3789), 21, + ACTIONS(4371), 23, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -148535,62 +177096,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42807] = 23, + [61086] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(4161), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(4165), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(4167), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(4387), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(4685), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(4687), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(4689), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(4691), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, + ACTIONS(4693), 1, anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(4703), 1, anon_sym_DOT_DOT, - ACTIONS(4215), 1, - anon_sym_SEMI, - ACTIONS(4217), 1, - anon_sym_else, - ACTIONS(3965), 2, + ACTIONS(4715), 1, + anon_sym_EQ, + ACTIONS(4263), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4681), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(4695), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(4699), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(4705), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1678), 2, + STATE(2098), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(4683), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(4697), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(4713), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148601,62 +177161,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42896] = 23, + [61173] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(135), 1, + anon_sym_RBRACE, + ACTIONS(4161), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(4165), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(4167), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(4387), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(4419), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(4421), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(4423), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(4429), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, + ACTIONS(4431), 1, anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, + ACTIONS(4439), 1, anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(4505), 1, anon_sym_DOT_DOT, - ACTIONS(4219), 1, - anon_sym_RBRACE, - ACTIONS(4221), 1, - anon_sym_COMMA, - ACTIONS(3965), 2, + ACTIONS(4671), 1, + anon_sym_SEMI, + ACTIONS(4415), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(4435), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(4507), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1679), 2, + STATE(2099), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(4417), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(4433), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148667,56 +177227,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42985] = 19, + [61262] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4203), 1, - anon_sym_LBRACK, - ACTIONS(4205), 1, - anon_sym_QMARK, - ACTIONS(4207), 1, - anon_sym_DOT, - ACTIONS(4227), 1, + STATE(2100), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4113), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4229), 1, anon_sym_AMP, - ACTIONS(4231), 1, anon_sym_PIPE, - ACTIONS(4233), 1, - anon_sym_AMP_AMP, - ACTIONS(4235), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4243), 1, - anon_sym_as, - ACTIONS(389), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4223), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4237), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4241), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - STATE(1680), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4225), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4239), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(387), 14, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4109), 23, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148727,62 +177268,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [43066] = 21, + anon_sym_as, + [61315] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(347), 1, - anon_sym_EQ, - ACTIONS(4203), 1, + ACTIONS(4161), 1, anon_sym_LBRACK, - ACTIONS(4205), 1, + ACTIONS(4165), 1, anon_sym_QMARK, - ACTIONS(4207), 1, + ACTIONS(4167), 1, anon_sym_DOT, - ACTIONS(4227), 1, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4419), 1, anon_sym_CARET, - ACTIONS(4229), 1, + ACTIONS(4421), 1, anon_sym_AMP, - ACTIONS(4231), 1, + ACTIONS(4423), 1, anon_sym_PIPE, - ACTIONS(4233), 1, + ACTIONS(4429), 1, anon_sym_AMP_AMP, - ACTIONS(4235), 1, + ACTIONS(4431), 1, anon_sym_PIPE_PIPE, - ACTIONS(4243), 1, - anon_sym_as, - ACTIONS(4245), 1, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(4505), 1, anon_sym_DOT_DOT, - ACTIONS(4223), 2, + ACTIONS(4415), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4237), 2, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4241), 2, + ACTIONS(4435), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4247), 2, + ACTIONS(4507), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1681), 2, + ACTIONS(4821), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(2101), 2, sym_line_comment, sym_block_comment, - ACTIONS(4225), 3, + ACTIONS(4417), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4239), 4, + ACTIONS(4433), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(341), 12, - anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148793,15 +177340,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43151] = 5, + [61402] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1682), 2, + STATE(2102), 2, sym_line_comment, sym_block_comment, - ACTIONS(3783), 15, + ACTIONS(4269), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148817,7 +177364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3781), 23, + ACTIONS(4267), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148841,15 +177388,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43204] = 5, + [61455] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1683), 2, + STATE(2103), 2, sym_line_comment, sym_block_comment, - ACTIONS(3711), 15, + ACTIONS(4241), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148865,7 +177412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3709), 23, + ACTIONS(4239), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148889,15 +177436,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43257] = 5, + [61508] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1684), 2, + ACTIONS(1225), 1, + anon_sym_RPAREN, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4419), 1, + anon_sym_CARET, + ACTIONS(4421), 1, + anon_sym_AMP, + ACTIONS(4423), 1, + anon_sym_PIPE, + ACTIONS(4429), 1, + anon_sym_AMP_AMP, + ACTIONS(4431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(4505), 1, + anon_sym_DOT_DOT, + ACTIONS(4751), 1, + anon_sym_COMMA, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4425), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4435), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4507), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2104), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4417), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4433), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4437), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [61597] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2105), 2, sym_line_comment, sym_block_comment, - ACTIONS(3323), 15, + ACTIONS(1475), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148913,7 +177526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3321), 23, + ACTIONS(1473), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148937,60 +177550,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43310] = 21, + [61650] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4015), 1, - anon_sym_EQ, - ACTIONS(4203), 1, - anon_sym_LBRACK, - ACTIONS(4205), 1, - anon_sym_QMARK, - ACTIONS(4207), 1, - anon_sym_DOT, - ACTIONS(4227), 1, + STATE(2106), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4349), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4229), 1, anon_sym_AMP, - ACTIONS(4231), 1, anon_sym_PIPE, - ACTIONS(4233), 1, - anon_sym_AMP_AMP, - ACTIONS(4235), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4243), 1, - anon_sym_as, - ACTIONS(4245), 1, - anon_sym_DOT_DOT, - ACTIONS(4223), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4237), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4241), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4247), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1685), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4225), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4239), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4013), 12, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(4347), 23, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149001,60 +177591,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43395] = 21, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [61703] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4025), 1, - anon_sym_EQ, - ACTIONS(4203), 1, + ACTIONS(129), 1, + anon_sym_RBRACE, + ACTIONS(4161), 1, anon_sym_LBRACK, - ACTIONS(4205), 1, + ACTIONS(4165), 1, anon_sym_QMARK, - ACTIONS(4207), 1, + ACTIONS(4167), 1, anon_sym_DOT, - ACTIONS(4227), 1, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4419), 1, anon_sym_CARET, - ACTIONS(4229), 1, + ACTIONS(4421), 1, anon_sym_AMP, - ACTIONS(4231), 1, + ACTIONS(4423), 1, anon_sym_PIPE, - ACTIONS(4233), 1, + ACTIONS(4429), 1, anon_sym_AMP_AMP, - ACTIONS(4235), 1, + ACTIONS(4431), 1, anon_sym_PIPE_PIPE, - ACTIONS(4243), 1, - anon_sym_as, - ACTIONS(4245), 1, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(4505), 1, anon_sym_DOT_DOT, - ACTIONS(4223), 2, + ACTIONS(4671), 1, + anon_sym_SEMI, + ACTIONS(4415), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4237), 2, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4241), 2, + ACTIONS(4435), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4247), 2, + ACTIONS(4507), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1686), 2, + STATE(2107), 2, sym_line_comment, sym_block_comment, - ACTIONS(4225), 3, + ACTIONS(4417), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4239), 4, + ACTIONS(4433), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4023), 12, - anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149065,61 +177664,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43480] = 22, + [61792] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(4083), 1, + STATE(2108), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1291), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4085), 1, anon_sym_AMP, - ACTIONS(4087), 1, anon_sym_PIPE, - ACTIONS(4091), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4097), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(4103), 1, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4251), 1, + ACTIONS(1289), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, - ACTIONS(4079), 2, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [61845] = 13, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4639), 1, + anon_sym_LBRACK, + ACTIONS(4645), 1, + anon_sym_QMARK, + ACTIONS(4649), 1, + anon_sym_AMP, + ACTIONS(4663), 1, + anon_sym_DOT, + ACTIONS(4665), 1, + anon_sym_as, + ACTIONS(4641), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4093), 2, + ACTIONS(4657), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4101), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4105), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4249), 2, - anon_sym_LBRACE, - anon_sym_SQUOTE, - STATE(1687), 2, + STATE(2109), 2, sym_line_comment, sym_block_comment, - ACTIONS(4081), 3, + ACTIONS(4643), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4099), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4095), 10, + ACTIONS(4385), 6, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(4383), 20, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149130,61 +177762,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43567] = 22, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [61914] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(131), 1, + anon_sym_RBRACE, + ACTIONS(4161), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(4165), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(4167), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(4387), 1, anon_sym_as, - ACTIONS(4257), 1, + ACTIONS(4419), 1, anon_sym_CARET, - ACTIONS(4259), 1, + ACTIONS(4421), 1, anon_sym_AMP, - ACTIONS(4261), 1, + ACTIONS(4423), 1, anon_sym_PIPE, - ACTIONS(4263), 1, + ACTIONS(4429), 1, anon_sym_AMP_AMP, - ACTIONS(4265), 1, + ACTIONS(4431), 1, anon_sym_PIPE_PIPE, - ACTIONS(4271), 1, + ACTIONS(4439), 1, anon_sym_EQ, - ACTIONS(4277), 1, + ACTIONS(4505), 1, anon_sym_DOT_DOT, - ACTIONS(3939), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(4253), 2, + ACTIONS(4671), 1, + anon_sym_SEMI, + ACTIONS(4415), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4267), 2, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4275), 2, + ACTIONS(4435), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4279), 2, + ACTIONS(4507), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1688), 2, + STATE(2110), 2, sym_line_comment, sym_block_comment, - ACTIONS(4255), 3, + ACTIONS(4417), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4273), 4, + ACTIONS(4433), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4269), 10, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149195,20 +177834,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43654] = 5, + [62003] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1689), 2, + ACTIONS(4639), 1, + anon_sym_LBRACK, + ACTIONS(4645), 1, + anon_sym_QMARK, + ACTIONS(4663), 1, + anon_sym_DOT, + ACTIONS(4665), 1, + anon_sym_as, + STATE(2111), 2, sym_line_comment, sym_block_comment, - ACTIONS(3895), 15, - anon_sym_PLUS, + ACTIONS(4643), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(4385), 11, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -149217,13 +177865,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3893), 23, + ACTIONS(4383), 20, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -149242,63 +177887,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [43707] = 23, + [62066] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(4161), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(4165), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(4167), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(4387), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(4419), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(4421), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(4423), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(4429), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, + ACTIONS(4431), 1, anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, + ACTIONS(4439), 1, anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(4505), 1, anon_sym_DOT_DOT, - ACTIONS(4281), 1, - anon_sym_SEMI, - ACTIONS(4283), 1, - anon_sym_else, - ACTIONS(3965), 2, + ACTIONS(4415), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(4435), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(4507), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1690), 2, + ACTIONS(4823), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(2112), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(4417), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(4433), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149309,15 +177952,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43796] = 5, + [62153] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1691), 2, + STATE(2113), 2, sym_line_comment, sym_block_comment, - ACTIONS(3843), 15, + ACTIONS(4369), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149333,7 +177976,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3841), 23, + ACTIONS(4367), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149357,85 +178000,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43849] = 5, + [62206] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1692), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3811), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(1053), 1, + anon_sym_RPAREN, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4419), 1, anon_sym_CARET, + ACTIONS(4421), 1, anon_sym_AMP, + ACTIONS(4423), 1, anon_sym_PIPE, + ACTIONS(4429), 1, + anon_sym_AMP_AMP, + ACTIONS(4431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(4505), 1, + anon_sym_DOT_DOT, + ACTIONS(4751), 1, + anon_sym_COMMA, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4435), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3809), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(4507), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [43902] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1693), 2, + STATE(2114), 2, sym_line_comment, sym_block_comment, - ACTIONS(3815), 15, - anon_sym_PLUS, + ACTIONS(4417), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3813), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4433), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149446,22 +178066,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [43955] = 5, + [62295] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1694), 2, + ACTIONS(4639), 1, + anon_sym_LBRACK, + ACTIONS(4645), 1, + anon_sym_QMARK, + ACTIONS(4663), 1, + anon_sym_DOT, + ACTIONS(4665), 1, + anon_sym_as, + STATE(2115), 2, sym_line_comment, sym_block_comment, - ACTIONS(3255), 15, + ACTIONS(4385), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149475,13 +178096,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3257), 23, + ACTIONS(4383), 20, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -149500,62 +178118,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [44008] = 22, + [62356] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(4161), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(4165), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(4167), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(4387), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(4419), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(4421), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(4423), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(4429), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, + ACTIONS(4431), 1, anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, + ACTIONS(4439), 1, anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(4505), 1, anon_sym_DOT_DOT, - ACTIONS(3965), 2, + ACTIONS(4415), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(4435), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(4507), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4285), 2, + ACTIONS(4825), 2, anon_sym_RBRACE, anon_sym_COMMA, - STATE(1695), 2, + STATE(2116), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(4417), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(4433), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149566,37 +178183,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44095] = 5, + [62443] = 23, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1696), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3903), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4419), 1, anon_sym_CARET, + ACTIONS(4421), 1, anon_sym_AMP, + ACTIONS(4423), 1, anon_sym_PIPE, + ACTIONS(4429), 1, + anon_sym_AMP_AMP, + ACTIONS(4431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(4505), 1, + anon_sym_DOT_DOT, + ACTIONS(4827), 1, + anon_sym_SEMI, + ACTIONS(4829), 1, + anon_sym_else, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4435), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3901), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4507), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2117), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4417), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4433), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149607,44 +178249,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [44148] = 5, + [62532] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1697), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3359), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4419), 1, anon_sym_CARET, + ACTIONS(4421), 1, anon_sym_AMP, + ACTIONS(4423), 1, anon_sym_PIPE, + ACTIONS(4429), 1, + anon_sym_AMP_AMP, + ACTIONS(4431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(4505), 1, + anon_sym_DOT_DOT, + ACTIONS(4831), 1, + anon_sym_SEMI, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4435), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3357), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4507), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2118), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4417), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4433), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149655,44 +178313,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [44201] = 5, + [62618] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1698), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3919), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4419), 1, anon_sym_CARET, + ACTIONS(4421), 1, anon_sym_AMP, + ACTIONS(4423), 1, anon_sym_PIPE, + ACTIONS(4429), 1, + anon_sym_AMP_AMP, + ACTIONS(4431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(4505), 1, + anon_sym_DOT_DOT, + ACTIONS(4833), 1, + anon_sym_SEMI, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4435), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3917), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4507), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2119), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4417), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4433), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149703,44 +178377,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [44254] = 5, + [62704] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1699), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3923), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4419), 1, anon_sym_CARET, + ACTIONS(4421), 1, anon_sym_AMP, + ACTIONS(4423), 1, anon_sym_PIPE, + ACTIONS(4429), 1, + anon_sym_AMP_AMP, + ACTIONS(4431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(4505), 1, + anon_sym_DOT_DOT, + ACTIONS(4835), 1, + anon_sym_SEMI, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4435), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3921), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4507), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2120), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4417), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4433), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149751,44 +178441,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [44307] = 5, + [62790] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1700), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3327), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4419), 1, anon_sym_CARET, + ACTIONS(4421), 1, anon_sym_AMP, + ACTIONS(4423), 1, anon_sym_PIPE, + ACTIONS(4429), 1, + anon_sym_AMP_AMP, + ACTIONS(4431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(4505), 1, + anon_sym_DOT_DOT, + ACTIONS(4837), 1, + anon_sym_SEMI, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4435), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3325), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4507), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2121), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4417), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4433), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149799,44 +178505,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [44360] = 5, + [62876] = 16, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1701), 2, + ACTIONS(4619), 1, + sym_identifier, + ACTIONS(4621), 1, + anon_sym_LBRACE, + ACTIONS(4625), 1, + anon_sym_STAR, + ACTIONS(4631), 1, + anon_sym_COLON_COLON, + ACTIONS(4635), 1, + sym_metavariable, + STATE(2800), 1, + sym_scoped_identifier, + STATE(3900), 1, + sym_generic_type_with_turbofish, + STATE(3918), 1, + sym__use_clause, + STATE(4063), 1, + sym_bracketed_type, + STATE(2122), 2, sym_line_comment, sym_block_comment, - ACTIONS(3941), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4633), 3, + sym_self, + sym_super, + sym_crate, + STATE(3244), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4627), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_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_gen, + anon_sym_union, + [62950] = 22, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4419), 1, anon_sym_CARET, + ACTIONS(4421), 1, anon_sym_AMP, + ACTIONS(4423), 1, anon_sym_PIPE, + ACTIONS(4429), 1, + anon_sym_AMP_AMP, + ACTIONS(4431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(4505), 1, + anon_sym_DOT_DOT, + ACTIONS(4839), 1, + anon_sym_RBRACK, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4435), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3939), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4507), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2123), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4417), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4433), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149845,71 +178625,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [44413] = 23, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [63036] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(4161), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(4165), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(4167), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(4387), 1, anon_sym_as, - ACTIONS(4257), 1, + ACTIONS(4419), 1, anon_sym_CARET, - ACTIONS(4259), 1, + ACTIONS(4421), 1, anon_sym_AMP, - ACTIONS(4261), 1, + ACTIONS(4423), 1, anon_sym_PIPE, - ACTIONS(4263), 1, + ACTIONS(4429), 1, anon_sym_AMP_AMP, - ACTIONS(4265), 1, + ACTIONS(4431), 1, anon_sym_PIPE_PIPE, - ACTIONS(4271), 1, + ACTIONS(4439), 1, anon_sym_EQ, - ACTIONS(4287), 1, - anon_sym_LBRACE, - ACTIONS(4289), 1, + ACTIONS(4505), 1, anon_sym_DOT_DOT, - STATE(393), 1, - sym_match_block, - ACTIONS(4253), 2, + ACTIONS(4841), 1, + anon_sym_SEMI, + ACTIONS(4415), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4267), 2, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4275), 2, + ACTIONS(4435), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4291), 2, + ACTIONS(4507), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1702), 2, + STATE(2124), 2, sym_line_comment, sym_block_comment, - ACTIONS(4255), 3, + ACTIONS(4417), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4273), 4, + ACTIONS(4433), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4269), 10, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149920,60 +178691,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44502] = 21, + [63122] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(4639), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(4645), 1, anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(4021), 1, - anon_sym_EQ, - ACTIONS(4257), 1, + ACTIONS(4647), 1, anon_sym_CARET, - ACTIONS(4259), 1, + ACTIONS(4649), 1, anon_sym_AMP, - ACTIONS(4261), 1, + ACTIONS(4651), 1, anon_sym_PIPE, - ACTIONS(4263), 1, - anon_sym_AMP_AMP, - ACTIONS(4265), 1, + ACTIONS(4655), 1, anon_sym_PIPE_PIPE, - ACTIONS(4277), 1, + ACTIONS(4663), 1, + anon_sym_DOT, + ACTIONS(4665), 1, + anon_sym_as, + ACTIONS(4729), 1, + anon_sym_EQ, + ACTIONS(4755), 1, + anon_sym_EQ_GT, + ACTIONS(4843), 1, + anon_sym_AMP_AMP, + ACTIONS(4845), 1, anon_sym_DOT_DOT, - ACTIONS(4253), 2, + ACTIONS(4641), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4267), 2, + ACTIONS(4657), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4275), 2, + ACTIONS(4661), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4279), 2, + ACTIONS(4847), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1703), 2, + STATE(2125), 2, sym_line_comment, sym_block_comment, - ACTIONS(4255), 3, + ACTIONS(4643), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4273), 4, + ACTIONS(4659), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4019), 12, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4727), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149984,61 +178755,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44587] = 22, + [63208] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(4161), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(4165), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(4167), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(4387), 1, anon_sym_as, - ACTIONS(4257), 1, + ACTIONS(4419), 1, anon_sym_CARET, - ACTIONS(4259), 1, + ACTIONS(4421), 1, anon_sym_AMP, - ACTIONS(4261), 1, + ACTIONS(4423), 1, anon_sym_PIPE, - ACTIONS(4263), 1, + ACTIONS(4429), 1, anon_sym_AMP_AMP, - ACTIONS(4265), 1, + ACTIONS(4431), 1, anon_sym_PIPE_PIPE, - ACTIONS(4271), 1, + ACTIONS(4439), 1, anon_sym_EQ, - ACTIONS(4277), 1, + ACTIONS(4505), 1, anon_sym_DOT_DOT, - ACTIONS(3821), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(4253), 2, + ACTIONS(4671), 1, + anon_sym_SEMI, + ACTIONS(4415), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4267), 2, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4275), 2, + ACTIONS(4435), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4279), 2, + ACTIONS(4507), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1704), 2, + STATE(2126), 2, sym_line_comment, sym_block_comment, - ACTIONS(4255), 3, + ACTIONS(4417), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4273), 4, + ACTIONS(4433), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4269), 10, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150049,61 +178819,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44674] = 22, + [63294] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(4161), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(4165), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(4167), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(4387), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(4419), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(4421), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(4423), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(4429), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, + ACTIONS(4431), 1, anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, + ACTIONS(4439), 1, anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(4505), 1, anon_sym_DOT_DOT, - ACTIONS(3965), 2, + ACTIONS(4849), 1, + anon_sym_SEMI, + ACTIONS(4415), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(4435), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(4507), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4293), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1705), 2, + STATE(2127), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(4417), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(4433), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150114,85 +178883,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44761] = 5, + [63380] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1706), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1357), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4419), 1, anon_sym_CARET, + ACTIONS(4421), 1, anon_sym_AMP, + ACTIONS(4423), 1, anon_sym_PIPE, + ACTIONS(4429), 1, + anon_sym_AMP_AMP, + ACTIONS(4431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(4505), 1, + anon_sym_DOT_DOT, + ACTIONS(4851), 1, + anon_sym_SEMI, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4435), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1359), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(4507), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [44814] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1707), 2, + STATE(2128), 2, sym_line_comment, sym_block_comment, - ACTIONS(3945), 15, - anon_sym_PLUS, + ACTIONS(4417), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3943), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4433), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150203,106 +178947,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [44867] = 10, + [63466] = 16, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - STATE(1708), 2, + ACTIONS(4619), 1, + sym_identifier, + ACTIONS(4621), 1, + anon_sym_LBRACE, + ACTIONS(4625), 1, + anon_sym_STAR, + ACTIONS(4631), 1, + anon_sym_COLON_COLON, + ACTIONS(4635), 1, + sym_metavariable, + STATE(2800), 1, + sym_scoped_identifier, + STATE(3900), 1, + sym_generic_type_with_turbofish, + STATE(3909), 1, + sym__use_clause, + STATE(4063), 1, + sym_bracketed_type, + STATE(2129), 2, sym_line_comment, sym_block_comment, - ACTIONS(4255), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3681), 11, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3677), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [44930] = 13, + ACTIONS(4633), 3, + sym_self, + sym_super, + sym_crate, + STATE(3244), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4627), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_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_gen, + anon_sym_union, + [63540] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(4639), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(4645), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(4647), 1, + anon_sym_CARET, + ACTIONS(4649), 1, + anon_sym_AMP, + ACTIONS(4651), 1, + anon_sym_PIPE, + ACTIONS(4655), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4663), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(4665), 1, anon_sym_as, - ACTIONS(4259), 1, - anon_sym_AMP, - ACTIONS(4253), 2, + ACTIONS(4729), 1, + anon_sym_EQ, + ACTIONS(4845), 1, + anon_sym_DOT_DOT, + ACTIONS(4641), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4267), 2, + ACTIONS(4657), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1709), 2, + ACTIONS(4661), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4817), 2, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + ACTIONS(4847), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2130), 2, sym_line_comment, sym_block_comment, - ACTIONS(4255), 3, + ACTIONS(4643), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3681), 6, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3677), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4659), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4727), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150313,51 +179068,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [44999] = 12, + [63624] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(4161), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(4165), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(4167), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(4387), 1, anon_sym_as, - ACTIONS(4253), 2, + ACTIONS(4419), 1, + anon_sym_CARET, + ACTIONS(4421), 1, + anon_sym_AMP, + ACTIONS(4423), 1, + anon_sym_PIPE, + ACTIONS(4429), 1, + anon_sym_AMP_AMP, + ACTIONS(4431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(4505), 1, + anon_sym_DOT_DOT, + ACTIONS(4853), 1, + anon_sym_SEMI, + ACTIONS(4415), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4267), 2, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1710), 2, + ACTIONS(4435), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4507), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2131), 2, sym_line_comment, sym_block_comment, - ACTIONS(4255), 3, + ACTIONS(4417), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3681), 7, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3677), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4433), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150368,53 +179132,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [45066] = 14, + [63710] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(4161), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(4165), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(4167), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(4387), 1, anon_sym_as, - ACTIONS(4257), 1, + ACTIONS(4419), 1, anon_sym_CARET, - ACTIONS(4259), 1, + ACTIONS(4421), 1, anon_sym_AMP, - ACTIONS(4253), 2, + ACTIONS(4423), 1, + anon_sym_PIPE, + ACTIONS(4429), 1, + anon_sym_AMP_AMP, + ACTIONS(4431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(4505), 1, + anon_sym_DOT_DOT, + ACTIONS(4855), 1, + anon_sym_RBRACK, + ACTIONS(4415), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4267), 2, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1711), 2, + ACTIONS(4435), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4507), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2132), 2, sym_line_comment, sym_block_comment, - ACTIONS(4255), 3, + ACTIONS(4417), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3681), 5, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3677), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4433), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150425,60 +179196,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [45137] = 17, + [63796] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(4161), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(4165), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(4167), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(4387), 1, anon_sym_as, - ACTIONS(4257), 1, + ACTIONS(4419), 1, anon_sym_CARET, - ACTIONS(4259), 1, + ACTIONS(4421), 1, anon_sym_AMP, - ACTIONS(4261), 1, + ACTIONS(4423), 1, anon_sym_PIPE, - ACTIONS(3681), 2, + ACTIONS(4429), 1, + anon_sym_AMP_AMP, + ACTIONS(4431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4439), 1, anon_sym_EQ, + ACTIONS(4505), 1, anon_sym_DOT_DOT, - ACTIONS(4253), 2, + ACTIONS(4751), 1, + anon_sym_COMMA, + ACTIONS(4415), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4267), 2, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4275), 2, + ACTIONS(4435), 2, anon_sym_GT, anon_sym_LT, - STATE(1712), 2, + ACTIONS(4507), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2133), 2, sym_line_comment, sym_block_comment, - ACTIONS(4255), 3, + ACTIONS(4417), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4273), 4, + ACTIONS(4433), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3677), 16, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150489,57 +179260,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [45214] = 18, + [63882] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(4161), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(4165), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(4167), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(4387), 1, anon_sym_as, - ACTIONS(4257), 1, + ACTIONS(4419), 1, anon_sym_CARET, - ACTIONS(4259), 1, + ACTIONS(4421), 1, anon_sym_AMP, - ACTIONS(4261), 1, + ACTIONS(4423), 1, anon_sym_PIPE, - ACTIONS(4263), 1, + ACTIONS(4429), 1, anon_sym_AMP_AMP, - ACTIONS(3681), 2, + ACTIONS(4431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4439), 1, anon_sym_EQ, + ACTIONS(4505), 1, anon_sym_DOT_DOT, - ACTIONS(4253), 2, + ACTIONS(4857), 1, + anon_sym_SEMI, + ACTIONS(4415), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4267), 2, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4275), 2, + ACTIONS(4435), 2, anon_sym_GT, anon_sym_LT, - STATE(1713), 2, + ACTIONS(4507), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2134), 2, sym_line_comment, sym_block_comment, - ACTIONS(4255), 3, + ACTIONS(4417), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4273), 4, + ACTIONS(4433), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3677), 15, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_PIPE, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150550,116 +179324,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [45293] = 11, + [63968] = 16, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(4253), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1714), 2, + ACTIONS(4619), 1, + sym_identifier, + ACTIONS(4621), 1, + anon_sym_LBRACE, + ACTIONS(4625), 1, + anon_sym_STAR, + ACTIONS(4631), 1, + anon_sym_COLON_COLON, + ACTIONS(4635), 1, + sym_metavariable, + STATE(2800), 1, + sym_scoped_identifier, + STATE(3900), 1, + sym_generic_type_with_turbofish, + STATE(4063), 1, + sym_bracketed_type, + STATE(4134), 1, + sym__use_clause, + STATE(2135), 2, sym_line_comment, sym_block_comment, - ACTIONS(4255), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3681), 9, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3677), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [45358] = 21, + ACTIONS(4633), 3, + sym_self, + sym_super, + sym_crate, + STATE(3244), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4627), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_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_gen, + anon_sym_union, + [64042] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(4161), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(4165), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(4167), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(4387), 1, anon_sym_as, - ACTIONS(3995), 1, - anon_sym_EQ, - ACTIONS(4257), 1, + ACTIONS(4419), 1, anon_sym_CARET, - ACTIONS(4259), 1, + ACTIONS(4421), 1, anon_sym_AMP, - ACTIONS(4261), 1, + ACTIONS(4423), 1, anon_sym_PIPE, - ACTIONS(4263), 1, + ACTIONS(4429), 1, anon_sym_AMP_AMP, - ACTIONS(4265), 1, + ACTIONS(4431), 1, anon_sym_PIPE_PIPE, - ACTIONS(4277), 1, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(4505), 1, anon_sym_DOT_DOT, - ACTIONS(4253), 2, + ACTIONS(4859), 1, + anon_sym_SEMI, + ACTIONS(4415), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4267), 2, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4275), 2, + ACTIONS(4435), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4279), 2, + ACTIONS(4507), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1715), 2, + STATE(2136), 2, sym_line_comment, sym_block_comment, - ACTIONS(4255), 3, + ACTIONS(4417), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4273), 4, + ACTIONS(4433), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3993), 12, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150670,60 +179446,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45443] = 21, + [64128] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(4161), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(4165), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(4167), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(4387), 1, anon_sym_as, - ACTIONS(3999), 1, - anon_sym_EQ, - ACTIONS(4257), 1, + ACTIONS(4419), 1, anon_sym_CARET, - ACTIONS(4259), 1, + ACTIONS(4421), 1, anon_sym_AMP, - ACTIONS(4261), 1, + ACTIONS(4423), 1, anon_sym_PIPE, - ACTIONS(4263), 1, + ACTIONS(4429), 1, anon_sym_AMP_AMP, - ACTIONS(4265), 1, + ACTIONS(4431), 1, anon_sym_PIPE_PIPE, - ACTIONS(4277), 1, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(4505), 1, anon_sym_DOT_DOT, - ACTIONS(4253), 2, + ACTIONS(4861), 1, + anon_sym_RBRACK, + ACTIONS(4415), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4267), 2, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4275), 2, + ACTIONS(4435), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4279), 2, + ACTIONS(4507), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1716), 2, + STATE(2137), 2, sym_line_comment, sym_block_comment, - ACTIONS(4255), 3, + ACTIONS(4417), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4273), 4, + ACTIONS(4433), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3997), 12, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150734,48 +179510,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45528] = 15, + [64214] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(4161), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(4165), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(4167), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(4387), 1, anon_sym_as, - ACTIONS(4257), 1, + ACTIONS(4419), 1, anon_sym_CARET, - ACTIONS(4259), 1, + ACTIONS(4421), 1, anon_sym_AMP, - ACTIONS(4261), 1, + ACTIONS(4423), 1, anon_sym_PIPE, - ACTIONS(4253), 2, + ACTIONS(4429), 1, + anon_sym_AMP_AMP, + ACTIONS(4431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(4505), 1, + anon_sym_DOT_DOT, + ACTIONS(4863), 1, + anon_sym_COMMA, + ACTIONS(4415), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4267), 2, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1717), 2, + ACTIONS(4435), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4507), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2138), 2, sym_line_comment, sym_block_comment, - ACTIONS(4255), 3, + ACTIONS(4417), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3681), 4, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3677), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4433), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150786,62 +179574,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [45601] = 19, + [64300] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(4161), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(4165), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(4167), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(4387), 1, anon_sym_as, - ACTIONS(4257), 1, + ACTIONS(4419), 1, anon_sym_CARET, - ACTIONS(4259), 1, + ACTIONS(4421), 1, anon_sym_AMP, - ACTIONS(4261), 1, + ACTIONS(4423), 1, anon_sym_PIPE, - ACTIONS(4263), 1, + ACTIONS(4429), 1, anon_sym_AMP_AMP, - ACTIONS(4265), 1, + ACTIONS(4431), 1, anon_sym_PIPE_PIPE, - ACTIONS(4003), 2, + ACTIONS(4439), 1, anon_sym_EQ, + ACTIONS(4505), 1, anon_sym_DOT_DOT, - ACTIONS(4253), 2, + ACTIONS(4865), 1, + anon_sym_RBRACK, + ACTIONS(4415), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4267), 2, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4275), 2, + ACTIONS(4435), 2, anon_sym_GT, anon_sym_LT, - STATE(1718), 2, + ACTIONS(4507), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2139), 2, sym_line_comment, sym_block_comment, - ACTIONS(4255), 3, + ACTIONS(4417), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4273), 4, + ACTIONS(4433), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4001), 14, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150852,231 +179638,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [45682] = 5, + [64386] = 16, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1719), 2, + ACTIONS(4619), 1, + sym_identifier, + ACTIONS(4621), 1, + anon_sym_LBRACE, + ACTIONS(4625), 1, + anon_sym_STAR, + ACTIONS(4631), 1, + anon_sym_COLON_COLON, + ACTIONS(4635), 1, + sym_metavariable, + STATE(2800), 1, + sym_scoped_identifier, + STATE(3877), 1, + sym__use_clause, + STATE(3900), 1, + sym_generic_type_with_turbofish, + STATE(4063), 1, + sym_bracketed_type, + STATE(2140), 2, sym_line_comment, sym_block_comment, - ACTIONS(3949), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3947), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [45735] = 5, + ACTIONS(4633), 3, + sym_self, + sym_super, + sym_crate, + STATE(3244), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4627), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_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_gen, + anon_sym_union, + [64460] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1720), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3691), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4639), 1, + anon_sym_LBRACK, + ACTIONS(4645), 1, + anon_sym_QMARK, + ACTIONS(4647), 1, anon_sym_CARET, + ACTIONS(4649), 1, anon_sym_AMP, + ACTIONS(4651), 1, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3689), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, + ACTIONS(4655), 1, anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(4663), 1, + anon_sym_DOT, + ACTIONS(4665), 1, anon_sym_as, - [45788] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1721), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3695), 15, + ACTIONS(4729), 1, + anon_sym_EQ, + ACTIONS(4845), 1, + anon_sym_DOT_DOT, + ACTIONS(4641), 2, anon_sym_PLUS, - anon_sym_STAR, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4657), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4661), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3693), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(4731), 2, anon_sym_EQ_GT, - anon_sym_QMARK, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(4847), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [45841] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1722), 2, + STATE(2141), 2, sym_line_comment, sym_block_comment, - ACTIONS(3723), 15, - anon_sym_PLUS, + ACTIONS(4643), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3721), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, + ACTIONS(4659), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [45894] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1723), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3707), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3705), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4727), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151087,95 +179759,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [45947] = 5, + [64544] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1724), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3707), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4419), 1, anon_sym_CARET, + ACTIONS(4421), 1, anon_sym_AMP, + ACTIONS(4423), 1, anon_sym_PIPE, + ACTIONS(4429), 1, + anon_sym_AMP_AMP, + ACTIONS(4431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(4505), 1, + anon_sym_DOT_DOT, + ACTIONS(4867), 1, + anon_sym_SEMI, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4435), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3705), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(4507), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [46000] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4203), 1, - anon_sym_LBRACK, - ACTIONS(4205), 1, - anon_sym_QMARK, - ACTIONS(4207), 1, - anon_sym_DOT, - STATE(1725), 2, + STATE(2142), 2, sym_line_comment, sym_block_comment, - ACTIONS(3795), 14, - anon_sym_PLUS, + ACTIONS(4417), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3793), 21, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4433), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151186,68 +179823,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [46059] = 22, + [64630] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(4161), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(4165), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(4167), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(4387), 1, anon_sym_as, - ACTIONS(4257), 1, + ACTIONS(4419), 1, anon_sym_CARET, - ACTIONS(4259), 1, + ACTIONS(4421), 1, anon_sym_AMP, - ACTIONS(4261), 1, + ACTIONS(4423), 1, anon_sym_PIPE, - ACTIONS(4263), 1, + ACTIONS(4429), 1, anon_sym_AMP_AMP, - ACTIONS(4265), 1, + ACTIONS(4431), 1, anon_sym_PIPE_PIPE, - ACTIONS(4271), 1, + ACTIONS(4439), 1, anon_sym_EQ, - ACTIONS(4277), 1, + ACTIONS(4505), 1, anon_sym_DOT_DOT, - ACTIONS(3889), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(4253), 2, + ACTIONS(4869), 1, + anon_sym_SEMI, + ACTIONS(4415), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4267), 2, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4275), 2, + ACTIONS(4435), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4279), 2, + ACTIONS(4507), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1726), 2, + STATE(2143), 2, sym_line_comment, sym_block_comment, - ACTIONS(4255), 3, + ACTIONS(4417), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4273), 4, + ACTIONS(4433), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4269), 10, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151258,85 +179887,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46146] = 5, + [64716] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1727), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3763), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4419), 1, anon_sym_CARET, + ACTIONS(4421), 1, anon_sym_AMP, + ACTIONS(4423), 1, anon_sym_PIPE, + ACTIONS(4429), 1, + anon_sym_AMP_AMP, + ACTIONS(4431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(4505), 1, + anon_sym_DOT_DOT, + ACTIONS(4871), 1, + anon_sym_SEMI, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4435), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3761), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(4507), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [46199] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1728), 2, + STATE(2144), 2, sym_line_comment, sym_block_comment, - ACTIONS(3771), 15, - anon_sym_PLUS, + ACTIONS(4417), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3769), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4433), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151347,44 +179951,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [46252] = 5, + [64802] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1729), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3339), 15, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4419), 1, + anon_sym_CARET, + ACTIONS(4421), 1, + anon_sym_AMP, + ACTIONS(4423), 1, + anon_sym_PIPE, + ACTIONS(4429), 1, + anon_sym_AMP_AMP, + ACTIONS(4431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(4505), 1, + anon_sym_DOT_DOT, + ACTIONS(4873), 1, + anon_sym_RBRACK, + ACTIONS(4415), 2, anon_sym_PLUS, - anon_sym_STAR, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4435), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3337), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4507), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2145), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4417), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4433), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151395,44 +180015,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [46305] = 5, + [64888] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1730), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3779), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4419), 1, anon_sym_CARET, + ACTIONS(4421), 1, anon_sym_AMP, + ACTIONS(4423), 1, anon_sym_PIPE, + ACTIONS(4429), 1, + anon_sym_AMP_AMP, + ACTIONS(4431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(4505), 1, + anon_sym_DOT_DOT, + ACTIONS(4875), 1, + anon_sym_COMMA, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4435), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3777), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4507), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2146), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4417), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4433), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151443,44 +180079,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [46358] = 5, + [64974] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1731), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3787), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4419), 1, anon_sym_CARET, + ACTIONS(4421), 1, anon_sym_AMP, + ACTIONS(4423), 1, anon_sym_PIPE, + ACTIONS(4429), 1, + anon_sym_AMP_AMP, + ACTIONS(4431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(4505), 1, + anon_sym_DOT_DOT, + ACTIONS(4877), 1, + anon_sym_SEMI, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4435), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3785), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4507), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2147), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4417), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4433), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151491,53 +180143,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [46411] = 17, + [65060] = 16, ACTIONS(29), 1, anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4173), 1, + ACTIONS(4619), 1, sym_identifier, - ACTIONS(4175), 1, + ACTIONS(4621), 1, anon_sym_LBRACE, - ACTIONS(4179), 1, + ACTIONS(4625), 1, anon_sym_STAR, - ACTIONS(4185), 1, + ACTIONS(4631), 1, anon_sym_COLON_COLON, - ACTIONS(4189), 1, + ACTIONS(4635), 1, sym_metavariable, - ACTIONS(4295), 1, - anon_sym_RBRACE, - STATE(2477), 1, + STATE(2800), 1, sym_scoped_identifier, - STATE(3166), 1, + STATE(3574), 1, sym__use_clause, - STATE(3423), 1, + STATE(3900), 1, sym_generic_type_with_turbofish, - STATE(3517), 1, + STATE(4063), 1, sym_bracketed_type, - STATE(1732), 2, + STATE(2148), 2, sym_line_comment, sym_block_comment, - ACTIONS(4187), 3, + ACTIONS(4633), 3, sym_self, sym_super, sym_crate, - STATE(2910), 4, + STATE(3244), 4, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(4181), 20, + ACTIONS(4627), 20, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -151558,85 +180201,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_gen, anon_sym_union, - [46488] = 5, + [65134] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1733), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3739), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4419), 1, anon_sym_CARET, + ACTIONS(4421), 1, anon_sym_AMP, + ACTIONS(4423), 1, anon_sym_PIPE, + ACTIONS(4429), 1, + anon_sym_AMP_AMP, + ACTIONS(4431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(4505), 1, + anon_sym_DOT_DOT, + ACTIONS(4879), 1, + anon_sym_COMMA, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4435), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3737), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(4507), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [46541] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1734), 2, + STATE(2149), 2, sym_line_comment, sym_block_comment, - ACTIONS(3853), 15, - anon_sym_PLUS, + ACTIONS(4417), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3851), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4433), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151647,92 +180265,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [46594] = 5, + [65220] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1735), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3857), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4419), 1, anon_sym_CARET, + ACTIONS(4421), 1, anon_sym_AMP, + ACTIONS(4423), 1, anon_sym_PIPE, + ACTIONS(4429), 1, + anon_sym_AMP_AMP, + ACTIONS(4431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(4505), 1, + anon_sym_DOT_DOT, + ACTIONS(4881), 1, + anon_sym_SEMI, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4435), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3855), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(4507), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [46647] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1736), 2, + STATE(2150), 2, sym_line_comment, sym_block_comment, - ACTIONS(3861), 15, - anon_sym_PLUS, + ACTIONS(4417), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3859), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4433), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151743,92 +180329,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [46700] = 5, + [65306] = 16, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1737), 2, + ACTIONS(4619), 1, + sym_identifier, + ACTIONS(4621), 1, + anon_sym_LBRACE, + ACTIONS(4625), 1, + anon_sym_STAR, + ACTIONS(4631), 1, + anon_sym_COLON_COLON, + ACTIONS(4635), 1, + sym_metavariable, + STATE(2800), 1, + sym_scoped_identifier, + STATE(3874), 1, + sym__use_clause, + STATE(3900), 1, + sym_generic_type_with_turbofish, + STATE(4063), 1, + sym_bracketed_type, + STATE(2151), 2, sym_line_comment, sym_block_comment, - ACTIONS(3865), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4633), 3, + sym_self, + sym_super, + sym_crate, + STATE(3244), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4627), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_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_gen, + anon_sym_union, + [65380] = 22, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4419), 1, anon_sym_CARET, + ACTIONS(4421), 1, anon_sym_AMP, + ACTIONS(4423), 1, anon_sym_PIPE, + ACTIONS(4429), 1, + anon_sym_AMP_AMP, + ACTIONS(4431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(4505), 1, + anon_sym_DOT_DOT, + ACTIONS(4883), 1, + anon_sym_RBRACK, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4435), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3863), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(4507), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [46753] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1738), 2, + STATE(2152), 2, sym_line_comment, sym_block_comment, - ACTIONS(3879), 15, - anon_sym_PLUS, + ACTIONS(4417), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3877), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4433), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151839,44 +180451,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [46806] = 5, + [65466] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1739), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3727), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4419), 1, anon_sym_CARET, + ACTIONS(4421), 1, anon_sym_AMP, + ACTIONS(4423), 1, anon_sym_PIPE, + ACTIONS(4429), 1, + anon_sym_AMP_AMP, + ACTIONS(4431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(4505), 1, + anon_sym_DOT_DOT, + ACTIONS(4885), 1, + anon_sym_RBRACK, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4435), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3725), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4507), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2153), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4417), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4433), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151887,68 +180515,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [46859] = 22, + [65552] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(4161), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(4165), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(4167), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(4387), 1, anon_sym_as, - ACTIONS(3969), 1, + ACTIONS(4419), 1, anon_sym_CARET, - ACTIONS(3971), 1, + ACTIONS(4421), 1, anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(4423), 1, anon_sym_PIPE, - ACTIONS(3975), 1, + ACTIONS(4429), 1, anon_sym_AMP_AMP, - ACTIONS(3977), 1, + ACTIONS(4431), 1, anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, + ACTIONS(4439), 1, anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(4505), 1, anon_sym_DOT_DOT, - ACTIONS(3965), 2, + ACTIONS(4887), 1, + anon_sym_RBRACK, + ACTIONS(4415), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3979), 2, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(4435), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(4507), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4297), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1740), 2, + STATE(2154), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, + ACTIONS(4417), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3985), 4, + ACTIONS(4433), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3981), 10, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151959,37 +180579,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46946] = 5, + [65638] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1741), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3751), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4419), 1, anon_sym_CARET, + ACTIONS(4421), 1, anon_sym_AMP, + ACTIONS(4423), 1, anon_sym_PIPE, + ACTIONS(4429), 1, + anon_sym_AMP_AMP, + ACTIONS(4431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(4505), 1, + anon_sym_DOT_DOT, + ACTIONS(4889), 1, + anon_sym_RBRACK, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4435), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3749), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4507), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2155), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4417), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4433), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152000,67 +180643,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [46999] = 21, + [65724] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, + ACTIONS(4161), 1, anon_sym_LBRACK, - ACTIONS(3683), 1, + ACTIONS(4165), 1, anon_sym_QMARK, - ACTIONS(3685), 1, + ACTIONS(4167), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(4387), 1, anon_sym_as, - ACTIONS(4083), 1, + ACTIONS(4419), 1, anon_sym_CARET, - ACTIONS(4085), 1, + ACTIONS(4421), 1, anon_sym_AMP, - ACTIONS(4087), 1, + ACTIONS(4423), 1, anon_sym_PIPE, - ACTIONS(4091), 1, + ACTIONS(4429), 1, + anon_sym_AMP_AMP, + ACTIONS(4431), 1, anon_sym_PIPE_PIPE, - ACTIONS(4097), 1, + ACTIONS(4439), 1, anon_sym_EQ, - ACTIONS(4103), 1, + ACTIONS(4505), 1, anon_sym_DOT_DOT, - ACTIONS(4079), 2, + ACTIONS(4891), 1, + anon_sym_RBRACK, + ACTIONS(4415), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4093), 2, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4101), 2, + ACTIONS(4435), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4105), 2, + ACTIONS(4507), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1742), 2, + STATE(2156), 2, sym_line_comment, sym_block_comment, - ACTIONS(4081), 3, + ACTIONS(4417), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4299), 3, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_SQUOTE, - ACTIONS(4099), 4, + ACTIONS(4433), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4095), 10, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152071,37 +180707,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47084] = 5, + [65810] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1743), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3759), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4419), 1, anon_sym_CARET, + ACTIONS(4421), 1, anon_sym_AMP, + ACTIONS(4423), 1, anon_sym_PIPE, + ACTIONS(4429), 1, + anon_sym_AMP_AMP, + ACTIONS(4431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(4505), 1, + anon_sym_DOT_DOT, + ACTIONS(4893), 1, + anon_sym_RBRACK, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4435), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3757), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4507), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2157), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4417), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4433), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152112,44 +180771,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [47137] = 5, + [65896] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1744), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3775), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4419), 1, anon_sym_CARET, + ACTIONS(4421), 1, anon_sym_AMP, + ACTIONS(4423), 1, anon_sym_PIPE, + ACTIONS(4429), 1, + anon_sym_AMP_AMP, + ACTIONS(4431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(4505), 1, + anon_sym_DOT_DOT, + ACTIONS(4895), 1, + anon_sym_COMMA, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4435), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3773), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4507), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2158), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4417), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4433), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152160,44 +180835,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [47190] = 5, + [65982] = 16, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1745), 2, + ACTIONS(4619), 1, + sym_identifier, + ACTIONS(4621), 1, + anon_sym_LBRACE, + ACTIONS(4625), 1, + anon_sym_STAR, + ACTIONS(4631), 1, + anon_sym_COLON_COLON, + ACTIONS(4635), 1, + sym_metavariable, + STATE(2800), 1, + sym_scoped_identifier, + STATE(3900), 1, + sym_generic_type_with_turbofish, + STATE(3962), 1, + sym__use_clause, + STATE(4063), 1, + sym_bracketed_type, + STATE(2159), 2, sym_line_comment, sym_block_comment, - ACTIONS(1583), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4633), 3, + sym_self, + sym_super, + sym_crate, + STATE(3244), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4627), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_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_gen, + anon_sym_union, + [66056] = 22, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4161), 1, + anon_sym_LBRACK, + ACTIONS(4165), 1, + anon_sym_QMARK, + ACTIONS(4167), 1, + anon_sym_DOT, + ACTIONS(4387), 1, + anon_sym_as, + ACTIONS(4419), 1, anon_sym_CARET, + ACTIONS(4421), 1, anon_sym_AMP, + ACTIONS(4423), 1, anon_sym_PIPE, + ACTIONS(4429), 1, + anon_sym_AMP_AMP, + ACTIONS(4431), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4439), 1, + anon_sym_EQ, + ACTIONS(4505), 1, + anon_sym_DOT_DOT, + ACTIONS(4897), 1, + anon_sym_SEMI, + ACTIONS(4415), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4425), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4435), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1585), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4507), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2160), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4417), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4433), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4437), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152208,32241 +180957,27063 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [47243] = 5, + [66142] = 17, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1746), 2, + ACTIONS(4365), 1, + anon_sym_where, + ACTIONS(4899), 1, + sym_identifier, + ACTIONS(4903), 1, + anon_sym_COLON_COLON, + ACTIONS(4909), 1, + sym_metavariable, + STATE(3160), 1, + sym_scoped_type_identifier, + STATE(3526), 1, + sym_generic_type, + STATE(3836), 1, + sym_scoped_identifier, + STATE(3981), 1, + sym_generic_type_with_turbofish, + STATE(4008), 1, + sym_bracketed_type, + STATE(2161), 2, sym_line_comment, sym_block_comment, - ACTIONS(1397), 15, + ACTIONS(4363), 3, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, + ACTIONS(4905), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + ACTIONS(4907), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(4901), 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, + [66217] = 17, + ACTIONS(29), 1, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1395), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [47296] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1747), 2, + ACTIONS(4365), 1, + anon_sym_where, + ACTIONS(4903), 1, + anon_sym_COLON_COLON, + ACTIONS(4909), 1, + sym_metavariable, + ACTIONS(4911), 1, + sym_identifier, + STATE(3146), 1, + sym_scoped_type_identifier, + STATE(3506), 1, + sym_generic_type, + STATE(3836), 1, + sym_scoped_identifier, + STATE(3981), 1, + sym_generic_type_with_turbofish, + STATE(4008), 1, + sym_bracketed_type, + STATE(2162), 2, sym_line_comment, sym_block_comment, - ACTIONS(1449), 15, + ACTIONS(4363), 3, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, + ACTIONS(4905), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + ACTIONS(4907), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(4901), 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, + [66292] = 17, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4365), 1, + anon_sym_where, + ACTIONS(4903), 1, + anon_sym_COLON_COLON, + ACTIONS(4909), 1, + sym_metavariable, + ACTIONS(4913), 1, + sym_identifier, + STATE(3157), 1, + sym_scoped_type_identifier, + STATE(3524), 1, + sym_generic_type, + STATE(3836), 1, + sym_scoped_identifier, + STATE(3981), 1, + sym_generic_type_with_turbofish, + STATE(4008), 1, + sym_bracketed_type, + STATE(2163), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4363), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + ACTIONS(4905), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + ACTIONS(4907), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(4901), 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, + [66367] = 17, + ACTIONS(29), 1, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1447), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [47349] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1748), 2, + ACTIONS(4365), 1, + anon_sym_where, + ACTIONS(4903), 1, + anon_sym_COLON_COLON, + ACTIONS(4909), 1, + sym_metavariable, + ACTIONS(4915), 1, + sym_identifier, + STATE(3181), 1, + sym_scoped_type_identifier, + STATE(3525), 1, + sym_generic_type, + STATE(3836), 1, + sym_scoped_identifier, + STATE(3981), 1, + sym_generic_type_with_turbofish, + STATE(4008), 1, + sym_bracketed_type, + STATE(2164), 2, sym_line_comment, sym_block_comment, - ACTIONS(1453), 15, + ACTIONS(4363), 3, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, + ACTIONS(4905), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + ACTIONS(4907), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(4901), 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, + [66442] = 17, + ACTIONS(29), 1, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1451), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [47402] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1749), 2, + ACTIONS(4365), 1, + anon_sym_where, + ACTIONS(4903), 1, + anon_sym_COLON_COLON, + ACTIONS(4909), 1, + sym_metavariable, + ACTIONS(4917), 1, + sym_identifier, + STATE(3410), 1, + sym_scoped_type_identifier, + STATE(3553), 1, + sym_generic_type, + STATE(3836), 1, + sym_scoped_identifier, + STATE(3981), 1, + sym_generic_type_with_turbofish, + STATE(4008), 1, + sym_bracketed_type, + STATE(2165), 2, sym_line_comment, sym_block_comment, - ACTIONS(1367), 15, + ACTIONS(4363), 3, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, + ACTIONS(4905), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + ACTIONS(4907), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(4901), 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, + [66517] = 17, + ACTIONS(29), 1, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1365), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [47455] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1750), 2, + ACTIONS(4365), 1, + anon_sym_where, + ACTIONS(4903), 1, + anon_sym_COLON_COLON, + ACTIONS(4909), 1, + sym_metavariable, + ACTIONS(4919), 1, + sym_identifier, + STATE(3169), 1, + sym_scoped_type_identifier, + STATE(3539), 1, + sym_generic_type, + STATE(3836), 1, + sym_scoped_identifier, + STATE(3981), 1, + sym_generic_type_with_turbofish, + STATE(4008), 1, + sym_bracketed_type, + STATE(2166), 2, sym_line_comment, sym_block_comment, - ACTIONS(1405), 15, + ACTIONS(4363), 3, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, + ACTIONS(4905), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + ACTIONS(4907), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(4901), 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, + [66592] = 17, + ACTIONS(29), 1, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1403), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [47508] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, - anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(3939), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1751), 2, + ACTIONS(4365), 1, + anon_sym_where, + ACTIONS(4903), 1, + anon_sym_COLON_COLON, + ACTIONS(4909), 1, + sym_metavariable, + ACTIONS(4921), 1, + sym_identifier, + STATE(3317), 1, + sym_scoped_type_identifier, + STATE(3728), 1, + sym_generic_type, + STATE(3836), 1, + sym_scoped_identifier, + STATE(3981), 1, + sym_generic_type_with_turbofish, + STATE(4008), 1, + sym_bracketed_type, + STATE(2167), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [47595] = 5, + ACTIONS(4363), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + ACTIONS(4905), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + ACTIONS(4907), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(4901), 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, + [66667] = 17, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1752), 2, + ACTIONS(4365), 1, + anon_sym_where, + ACTIONS(4903), 1, + anon_sym_COLON_COLON, + ACTIONS(4909), 1, + sym_metavariable, + ACTIONS(4923), 1, + sym_identifier, + STATE(3147), 1, + sym_scoped_type_identifier, + STATE(3514), 1, + sym_generic_type, + STATE(3836), 1, + sym_scoped_identifier, + STATE(3981), 1, + sym_generic_type_with_turbofish, + STATE(4008), 1, + sym_bracketed_type, + STATE(2168), 2, sym_line_comment, sym_block_comment, - ACTIONS(3819), 15, + ACTIONS(4363), 3, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, + ACTIONS(4905), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + ACTIONS(4907), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(4901), 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, + [66742] = 17, + ACTIONS(29), 1, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3817), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [47648] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1753), 2, + ACTIONS(4365), 1, + anon_sym_where, + ACTIONS(4903), 1, + anon_sym_COLON_COLON, + ACTIONS(4909), 1, + sym_metavariable, + ACTIONS(4925), 1, + sym_identifier, + STATE(3248), 1, + sym_scoped_type_identifier, + STATE(3668), 1, + sym_generic_type, + STATE(3836), 1, + sym_scoped_identifier, + STATE(3981), 1, + sym_generic_type_with_turbofish, + STATE(4008), 1, + sym_bracketed_type, + STATE(2169), 2, sym_line_comment, sym_block_comment, - ACTIONS(1401), 15, + ACTIONS(4363), 3, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, + ACTIONS(4905), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + ACTIONS(4907), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(4901), 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, + [66817] = 17, + ACTIONS(29), 1, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1399), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [47701] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4021), 1, - anon_sym_EQ, - ACTIONS(4203), 1, - anon_sym_LBRACK, - ACTIONS(4205), 1, - anon_sym_QMARK, - ACTIONS(4207), 1, - anon_sym_DOT, - ACTIONS(4227), 1, - anon_sym_CARET, - ACTIONS(4229), 1, - anon_sym_AMP, - ACTIONS(4231), 1, - anon_sym_PIPE, - ACTIONS(4233), 1, - anon_sym_AMP_AMP, - ACTIONS(4235), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4243), 1, - anon_sym_as, - ACTIONS(4245), 1, - anon_sym_DOT_DOT, - ACTIONS(4223), 2, + ACTIONS(4365), 1, + anon_sym_where, + ACTIONS(4903), 1, + anon_sym_COLON_COLON, + ACTIONS(4909), 1, + sym_metavariable, + ACTIONS(4927), 1, + sym_identifier, + STATE(3367), 1, + sym_scoped_type_identifier, + STATE(3629), 1, + sym_generic_type, + STATE(3836), 1, + sym_scoped_identifier, + STATE(3981), 1, + sym_generic_type_with_turbofish, + STATE(4008), 1, + sym_bracketed_type, + STATE(2170), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4363), 3, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4237), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4241), 2, - anon_sym_GT, + ACTIONS(4905), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + ACTIONS(4907), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(4901), 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, + [66892] = 17, + ACTIONS(29), 1, anon_sym_LT, - ACTIONS(4247), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1754), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4225), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4239), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4019), 12, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [47786] = 22, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, - anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4301), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1755), 2, + ACTIONS(4365), 1, + anon_sym_where, + ACTIONS(4903), 1, + anon_sym_COLON_COLON, + ACTIONS(4909), 1, + sym_metavariable, + ACTIONS(4929), 1, + sym_identifier, + STATE(3295), 1, + sym_scoped_type_identifier, + STATE(3781), 1, + sym_generic_type, + STATE(3836), 1, + sym_scoped_identifier, + STATE(3981), 1, + sym_generic_type_with_turbofish, + STATE(4008), 1, + sym_bracketed_type, + STATE(2171), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [47873] = 5, + ACTIONS(4363), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + ACTIONS(4905), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + ACTIONS(4907), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(4901), 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, + [66967] = 17, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1756), 2, + ACTIONS(4365), 1, + anon_sym_where, + ACTIONS(4903), 1, + anon_sym_COLON_COLON, + ACTIONS(4909), 1, + sym_metavariable, + ACTIONS(4931), 1, + sym_identifier, + STATE(3143), 1, + sym_scoped_type_identifier, + STATE(3501), 1, + sym_generic_type, + STATE(3836), 1, + sym_scoped_identifier, + STATE(3981), 1, + sym_generic_type_with_turbofish, + STATE(4008), 1, + sym_bracketed_type, + STATE(2172), 2, sym_line_comment, sym_block_comment, - ACTIONS(1363), 15, + ACTIONS(4363), 3, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1361), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [47926] = 5, + ACTIONS(4905), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + ACTIONS(4907), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(4901), 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, + [67042] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1757), 2, + STATE(2173), 2, sym_line_comment, sym_block_comment, - ACTIONS(1439), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, + ACTIONS(4935), 3, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1437), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [47979] = 22, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(4933), 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_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_gen, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [67089] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, - anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(3821), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1758), 2, + STATE(2174), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [48066] = 5, + ACTIONS(4939), 3, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(4937), 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_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_gen, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [67136] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1759), 2, + STATE(2175), 2, sym_line_comment, sym_block_comment, - ACTIONS(1409), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, + ACTIONS(4943), 3, + anon_sym_LT, + anon_sym_COLON_COLON, + sym_metavariable, + ACTIONS(4941), 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_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_gen, + anon_sym_union, + anon_sym_unsafe, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [67183] = 13, + ACTIONS(29), 1, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1407), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [48119] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4203), 1, - anon_sym_LBRACK, - ACTIONS(4205), 1, - anon_sym_QMARK, - ACTIONS(4207), 1, - anon_sym_DOT, - ACTIONS(4243), 1, - anon_sym_as, - STATE(1760), 2, + ACTIONS(1709), 1, + anon_sym_COLON_COLON, + ACTIONS(4945), 1, + sym_identifier, + ACTIONS(4951), 1, + sym_metavariable, + STATE(2592), 1, + sym_scoped_identifier, + STATE(3786), 1, + sym_bracketed_type, + STATE(3809), 1, + sym_attribute, + STATE(3813), 1, + sym_generic_type_with_turbofish, + STATE(2176), 2, sym_line_comment, sym_block_comment, - ACTIONS(4225), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3681), 11, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, + ACTIONS(4949), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(4947), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_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_gen, + anon_sym_union, + [67245] = 13, + ACTIONS(29), 1, anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3677), 20, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [48182] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4203), 1, - anon_sym_LBRACK, - ACTIONS(4205), 1, - anon_sym_QMARK, - ACTIONS(4207), 1, - anon_sym_DOT, - ACTIONS(4229), 1, - anon_sym_AMP, - ACTIONS(4243), 1, - anon_sym_as, - ACTIONS(4223), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4237), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1761), 2, + ACTIONS(1709), 1, + anon_sym_COLON_COLON, + ACTIONS(4945), 1, + sym_identifier, + ACTIONS(4951), 1, + sym_metavariable, + STATE(2592), 1, + sym_scoped_identifier, + STATE(3786), 1, + sym_bracketed_type, + STATE(3813), 1, + sym_generic_type_with_turbofish, + STATE(3898), 1, + sym_attribute, + STATE(2177), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4949), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(4947), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_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_gen, + anon_sym_union, + [67307] = 13, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1709), 1, + anon_sym_COLON_COLON, + ACTIONS(4945), 1, + sym_identifier, + ACTIONS(4951), 1, + sym_metavariable, + STATE(2592), 1, + sym_scoped_identifier, + STATE(3786), 1, + sym_bracketed_type, + STATE(3813), 1, + sym_generic_type_with_turbofish, + STATE(3996), 1, + sym_attribute, + STATE(2178), 2, sym_line_comment, sym_block_comment, - ACTIONS(4225), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3681), 6, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, + ACTIONS(4949), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(4947), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_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_gen, + anon_sym_union, + [67369] = 13, + ACTIONS(29), 1, anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3677), 20, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [48251] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4203), 1, - anon_sym_LBRACK, - ACTIONS(4205), 1, - anon_sym_QMARK, - ACTIONS(4207), 1, - anon_sym_DOT, - ACTIONS(4243), 1, - anon_sym_as, - ACTIONS(4223), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4237), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1762), 2, + ACTIONS(1709), 1, + anon_sym_COLON_COLON, + ACTIONS(4945), 1, + sym_identifier, + ACTIONS(4951), 1, + sym_metavariable, + STATE(2592), 1, + sym_scoped_identifier, + STATE(3784), 1, + sym_attribute, + STATE(3786), 1, + sym_bracketed_type, + STATE(3813), 1, + sym_generic_type_with_turbofish, + STATE(2179), 2, sym_line_comment, sym_block_comment, - ACTIONS(4225), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3681), 7, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, + ACTIONS(4949), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(4947), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_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_gen, + anon_sym_union, + [67431] = 13, + ACTIONS(29), 1, anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3677), 20, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [48318] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4203), 1, - anon_sym_LBRACK, - ACTIONS(4205), 1, - anon_sym_QMARK, - ACTIONS(4207), 1, - anon_sym_DOT, - ACTIONS(4227), 1, - anon_sym_CARET, - ACTIONS(4229), 1, - anon_sym_AMP, - ACTIONS(4243), 1, - anon_sym_as, - ACTIONS(4223), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4237), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1763), 2, + ACTIONS(1709), 1, + anon_sym_COLON_COLON, + ACTIONS(4945), 1, + sym_identifier, + ACTIONS(4951), 1, + sym_metavariable, + STATE(2592), 1, + sym_scoped_identifier, + STATE(3786), 1, + sym_bracketed_type, + STATE(3813), 1, + sym_generic_type_with_turbofish, + STATE(3967), 1, + sym_attribute, + STATE(2180), 2, sym_line_comment, sym_block_comment, - ACTIONS(4225), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3681), 5, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, + ACTIONS(4949), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(4947), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_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_gen, + anon_sym_union, + [67493] = 13, + ACTIONS(29), 1, anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3677), 20, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [48389] = 17, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4203), 1, - anon_sym_LBRACK, - ACTIONS(4205), 1, - anon_sym_QMARK, - ACTIONS(4207), 1, - anon_sym_DOT, - ACTIONS(4227), 1, - anon_sym_CARET, - ACTIONS(4229), 1, - anon_sym_AMP, - ACTIONS(4231), 1, - anon_sym_PIPE, - ACTIONS(4243), 1, - anon_sym_as, - ACTIONS(3681), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4223), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4237), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4241), 2, - anon_sym_GT, - anon_sym_LT, - STATE(1764), 2, + ACTIONS(1709), 1, + anon_sym_COLON_COLON, + ACTIONS(4945), 1, + sym_identifier, + ACTIONS(4951), 1, + sym_metavariable, + STATE(2592), 1, + sym_scoped_identifier, + STATE(3786), 1, + sym_bracketed_type, + STATE(3813), 1, + sym_generic_type_with_turbofish, + STATE(3871), 1, + sym_attribute, + STATE(2181), 2, sym_line_comment, sym_block_comment, - ACTIONS(4225), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4239), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3677), 16, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [48466] = 18, + ACTIONS(4949), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(4947), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_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_gen, + anon_sym_union, + [67555] = 13, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4203), 1, - anon_sym_LBRACK, - ACTIONS(4205), 1, - anon_sym_QMARK, - ACTIONS(4207), 1, - anon_sym_DOT, - ACTIONS(4227), 1, - anon_sym_CARET, - ACTIONS(4229), 1, - anon_sym_AMP, - ACTIONS(4231), 1, - anon_sym_PIPE, - ACTIONS(4233), 1, - anon_sym_AMP_AMP, - ACTIONS(4243), 1, - anon_sym_as, - ACTIONS(3681), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4223), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4237), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4241), 2, - anon_sym_GT, - anon_sym_LT, - STATE(1765), 2, + ACTIONS(1709), 1, + anon_sym_COLON_COLON, + ACTIONS(4945), 1, + sym_identifier, + ACTIONS(4951), 1, + sym_metavariable, + STATE(2592), 1, + sym_scoped_identifier, + STATE(3786), 1, + sym_bracketed_type, + STATE(3813), 1, + sym_generic_type_with_turbofish, + STATE(4003), 1, + sym_attribute, + STATE(2182), 2, sym_line_comment, sym_block_comment, - ACTIONS(4225), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4239), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3677), 15, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [48545] = 11, + ACTIONS(4949), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(4947), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_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_gen, + anon_sym_union, + [67617] = 12, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4203), 1, - anon_sym_LBRACK, - ACTIONS(4205), 1, - anon_sym_QMARK, - ACTIONS(4207), 1, - anon_sym_DOT, - ACTIONS(4243), 1, - anon_sym_as, - ACTIONS(4223), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1766), 2, + ACTIONS(4953), 1, + sym_identifier, + ACTIONS(4957), 1, + anon_sym_COLON_COLON, + ACTIONS(4961), 1, + sym_metavariable, + STATE(3549), 1, + sym_scoped_identifier, + STATE(3900), 1, + sym_generic_type_with_turbofish, + STATE(4063), 1, + sym_bracketed_type, + STATE(2183), 2, sym_line_comment, sym_block_comment, - ACTIONS(4225), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3681), 9, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, + ACTIONS(4959), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(4955), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_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_gen, + anon_sym_union, + [67676] = 12, + ACTIONS(29), 1, anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3677), 20, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [48610] = 21, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3995), 1, - anon_sym_EQ, - ACTIONS(4203), 1, - anon_sym_LBRACK, - ACTIONS(4205), 1, - anon_sym_QMARK, - ACTIONS(4207), 1, - anon_sym_DOT, - ACTIONS(4227), 1, - anon_sym_CARET, - ACTIONS(4229), 1, - anon_sym_AMP, - ACTIONS(4231), 1, - anon_sym_PIPE, - ACTIONS(4233), 1, - anon_sym_AMP_AMP, - ACTIONS(4235), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4243), 1, - anon_sym_as, - ACTIONS(4245), 1, - anon_sym_DOT_DOT, - ACTIONS(4223), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4237), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4241), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4247), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1767), 2, + ACTIONS(4957), 1, + anon_sym_COLON_COLON, + ACTIONS(4963), 1, + sym_identifier, + ACTIONS(4969), 1, + sym_metavariable, + STATE(3614), 1, + sym_scoped_identifier, + STATE(3900), 1, + sym_generic_type_with_turbofish, + STATE(4063), 1, + sym_bracketed_type, + STATE(2184), 2, sym_line_comment, sym_block_comment, - ACTIONS(4225), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4239), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3993), 12, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [48695] = 21, + ACTIONS(4967), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(4965), 20, + anon_sym_u8, + anon_sym_i8, + anon_sym_u16, + anon_sym_i16, + anon_sym_u32, + anon_sym_i32, + anon_sym_u64, + anon_sym_i64, + anon_sym_u128, + anon_sym_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_gen, + anon_sym_union, + [67735] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3999), 1, - anon_sym_EQ, - ACTIONS(4203), 1, - anon_sym_LBRACK, - ACTIONS(4205), 1, - anon_sym_QMARK, - ACTIONS(4207), 1, - anon_sym_DOT, - ACTIONS(4227), 1, - anon_sym_CARET, - ACTIONS(4229), 1, - anon_sym_AMP, - ACTIONS(4231), 1, - anon_sym_PIPE, - ACTIONS(4233), 1, - anon_sym_AMP_AMP, - ACTIONS(4235), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4243), 1, - anon_sym_as, - ACTIONS(4245), 1, - anon_sym_DOT_DOT, - ACTIONS(4223), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4237), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4241), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4247), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1768), 2, + ACTIONS(4971), 1, + anon_sym_POUND, + STATE(2189), 1, + sym_attribute_item, + ACTIONS(771), 3, + anon_sym_SQUOTE, + sym_integer_literal, + sym_metavariable, + STATE(2185), 3, sym_line_comment, sym_block_comment, - ACTIONS(4225), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4239), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3997), 12, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [48780] = 15, + aux_sym_mod_item_repeat1, + ACTIONS(3685), 19, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_crate, + [67779] = 27, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4203), 1, - anon_sym_LBRACK, - ACTIONS(4205), 1, - anon_sym_QMARK, - ACTIONS(4207), 1, - anon_sym_DOT, - ACTIONS(4227), 1, - anon_sym_CARET, - ACTIONS(4229), 1, - anon_sym_AMP, - ACTIONS(4231), 1, - anon_sym_PIPE, - ACTIONS(4243), 1, - anon_sym_as, - ACTIONS(4223), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4237), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1769), 2, + ACTIONS(3427), 1, + anon_sym_POUND, + ACTIONS(4976), 1, + anon_sym_const, + ACTIONS(4978), 1, + anon_sym_enum, + ACTIONS(4980), 1, + anon_sym_fn, + ACTIONS(4982), 1, + anon_sym_impl, + ACTIONS(4984), 1, + anon_sym_let, + ACTIONS(4986), 1, + anon_sym_mod, + ACTIONS(4988), 1, + anon_sym_pub, + ACTIONS(4990), 1, + anon_sym_static, + ACTIONS(4992), 1, + anon_sym_struct, + ACTIONS(4994), 1, + anon_sym_trait, + ACTIONS(4996), 1, + anon_sym_type, + ACTIONS(4998), 1, + anon_sym_union, + ACTIONS(5000), 1, + anon_sym_unsafe, + ACTIONS(5002), 1, + anon_sym_use, + ACTIONS(5004), 1, + anon_sym_extern, + ACTIONS(5006), 1, + sym_crate, + STATE(2185), 1, + aux_sym_mod_item_repeat1, + STATE(2189), 1, + sym_attribute_item, + STATE(2220), 1, + sym_visibility_modifier, + STATE(2473), 1, + sym_extern_modifier, + STATE(2519), 1, + aux_sym_function_modifiers_repeat1, + STATE(3788), 1, + sym_function_modifiers, + ACTIONS(4974), 2, + anon_sym_async, + anon_sym_default, + STATE(2186), 2, sym_line_comment, sym_block_comment, - ACTIONS(4225), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3681), 4, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3677), 20, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [48853] = 5, + [67863] = 27, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1770), 2, + ACTIONS(3427), 1, + anon_sym_POUND, + ACTIONS(4988), 1, + anon_sym_pub, + ACTIONS(5006), 1, + sym_crate, + ACTIONS(5008), 1, + anon_sym_const, + ACTIONS(5010), 1, + anon_sym_enum, + ACTIONS(5012), 1, + anon_sym_fn, + ACTIONS(5014), 1, + anon_sym_impl, + ACTIONS(5016), 1, + anon_sym_let, + ACTIONS(5018), 1, + anon_sym_mod, + ACTIONS(5020), 1, + anon_sym_static, + ACTIONS(5022), 1, + anon_sym_struct, + ACTIONS(5024), 1, + anon_sym_trait, + ACTIONS(5026), 1, + anon_sym_type, + ACTIONS(5028), 1, + anon_sym_union, + ACTIONS(5030), 1, + anon_sym_unsafe, + ACTIONS(5032), 1, + anon_sym_use, + ACTIONS(5034), 1, + anon_sym_extern, + STATE(2185), 1, + aux_sym_mod_item_repeat1, + STATE(2189), 1, + sym_attribute_item, + STATE(2224), 1, + sym_visibility_modifier, + STATE(2456), 1, + sym_extern_modifier, + STATE(2519), 1, + aux_sym_function_modifiers_repeat1, + STATE(4127), 1, + sym_function_modifiers, + ACTIONS(4974), 2, + anon_sym_async, + anon_sym_default, + STATE(2187), 2, sym_line_comment, sym_block_comment, - ACTIONS(3743), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3741), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [48906] = 5, + [67947] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1771), 2, + STATE(2188), 2, sym_line_comment, sym_block_comment, - ACTIONS(3699), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3697), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [48959] = 5, + ACTIONS(3671), 4, + anon_sym_POUND, + anon_sym_SQUOTE, + sym_integer_literal, + sym_metavariable, + ACTIONS(3669), 19, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_crate, + [67985] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1772), 2, + STATE(2189), 2, sym_line_comment, sym_block_comment, - ACTIONS(3703), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3701), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [49012] = 5, + ACTIONS(3689), 4, + anon_sym_POUND, + anon_sym_SQUOTE, + sym_integer_literal, + sym_metavariable, + ACTIONS(3687), 19, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_enum, + anon_sym_fn, + anon_sym_impl, + anon_sym_let, + anon_sym_mod, + anon_sym_pub, + anon_sym_static, + anon_sym_struct, + anon_sym_trait, + anon_sym_type, + anon_sym_union, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_crate, + [68023] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1773), 2, + ACTIONS(987), 1, + anon_sym_DOT_DOT, + STATE(2190), 2, sym_line_comment, sym_block_comment, - ACTIONS(1279), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(989), 20, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1277), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [49065] = 5, + anon_sym_COMMA, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_else, + anon_sym_in, + [68059] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1774), 2, + ACTIONS(3741), 1, + anon_sym_COLON, + ACTIONS(5036), 1, + anon_sym_LPAREN, + ACTIONS(5038), 1, + anon_sym_BANG, + ACTIONS(5040), 1, + anon_sym_COLON_COLON, + ACTIONS(5042), 1, + anon_sym_LT2, + STATE(2221), 1, + sym_type_arguments, + STATE(2250), 1, + sym_parameters, + STATE(2191), 2, sym_line_comment, sym_block_comment, - ACTIONS(1431), 15, + ACTIONS(3737), 14, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1429), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, anon_sym_as, - [49118] = 22, + anon_sym_where, + anon_sym_else, + [68107] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, - anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(977), 1, anon_sym_DOT_DOT, - ACTIONS(3889), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1775), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [49205] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1776), 2, + STATE(2192), 2, sym_line_comment, sym_block_comment, - ACTIONS(1461), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(979), 20, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1459), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [49258] = 5, + anon_sym_COMMA, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_else, + anon_sym_in, + [68143] = 14, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5038), 1, + anon_sym_BANG, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(5046), 1, + anon_sym_LPAREN, + ACTIONS(5048), 1, + anon_sym_LBRACE, + ACTIONS(5050), 1, + anon_sym_COLON, + ACTIONS(5052), 1, + anon_sym_AT, + ACTIONS(5054), 1, + anon_sym_DOT_DOT, + ACTIONS(5058), 1, + anon_sym_COLON_COLON, + STATE(2221), 1, + sym_type_arguments, + ACTIONS(5056), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2193), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5044), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [68196] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1777), 2, + ACTIONS(3797), 1, + anon_sym_COLON, + ACTIONS(3801), 2, + anon_sym_BANG, + anon_sym_COLON_COLON, + STATE(2194), 2, sym_line_comment, sym_block_comment, - ACTIONS(3767), 15, + ACTIONS(3795), 17, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3765), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, anon_sym_as, - [49311] = 5, + anon_sym_for, + anon_sym_where, + anon_sym_else, + anon_sym_LT2, + [68233] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1778), 2, + ACTIONS(3812), 1, + anon_sym_COLON, + ACTIONS(3816), 2, + anon_sym_BANG, + anon_sym_COLON_COLON, + STATE(2195), 2, sym_line_comment, sym_block_comment, - ACTIONS(3869), 15, + ACTIONS(3810), 17, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3867), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, anon_sym_as, - [49364] = 5, + anon_sym_for, + anon_sym_where, + anon_sym_else, + anon_sym_LT2, + [68270] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1779), 2, + ACTIONS(3769), 1, + anon_sym_COLON, + ACTIONS(3773), 2, + anon_sym_BANG, + anon_sym_COLON_COLON, + STATE(2196), 2, sym_line_comment, sym_block_comment, - ACTIONS(1481), 15, + ACTIONS(3767), 17, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1479), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, anon_sym_as, - [49417] = 5, + anon_sym_for, + anon_sym_where, + anon_sym_else, + anon_sym_LT2, + [68307] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1780), 2, + ACTIONS(3789), 1, + anon_sym_COLON, + ACTIONS(3793), 2, + anon_sym_BANG, + anon_sym_COLON_COLON, + STATE(2197), 2, sym_line_comment, sym_block_comment, - ACTIONS(1485), 15, + ACTIONS(3787), 17, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1483), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, anon_sym_as, - [49470] = 5, + anon_sym_for, + anon_sym_where, + anon_sym_else, + anon_sym_LT2, + [68344] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1781), 2, + ACTIONS(3751), 1, + anon_sym_COLON, + ACTIONS(5036), 1, + anon_sym_LPAREN, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(5060), 1, + anon_sym_COLON_COLON, + STATE(2221), 1, + sym_type_arguments, + STATE(2250), 1, + sym_parameters, + STATE(2198), 2, sym_line_comment, sym_block_comment, - ACTIONS(1413), 15, + ACTIONS(3749), 14, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1411), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, anon_sym_as, - [49523] = 5, + anon_sym_where, + anon_sym_else, + [68389] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1782), 2, + ACTIONS(3761), 1, + anon_sym_COLON, + ACTIONS(5036), 1, + anon_sym_LPAREN, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(5060), 1, + anon_sym_COLON_COLON, + STATE(2221), 1, + sym_type_arguments, + STATE(2250), 1, + sym_parameters, + STATE(2199), 2, sym_line_comment, sym_block_comment, - ACTIONS(1469), 15, + ACTIONS(3759), 14, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1467), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, anon_sym_as, - [49576] = 5, + anon_sym_where, + anon_sym_else, + [68434] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1783), 2, + ACTIONS(3757), 1, + anon_sym_COLON, + ACTIONS(5036), 1, + anon_sym_LPAREN, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(5060), 1, + anon_sym_COLON_COLON, + STATE(2221), 1, + sym_type_arguments, + STATE(2250), 1, + sym_parameters, + STATE(2200), 2, sym_line_comment, sym_block_comment, - ACTIONS(1489), 15, + ACTIONS(3755), 14, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1487), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, anon_sym_as, - [49629] = 23, + anon_sym_where, + anon_sym_else, + [68479] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, - anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4303), 1, + ACTIONS(5036), 1, + anon_sym_LPAREN, + ACTIONS(5042), 1, + anon_sym_LT2, + STATE(2219), 1, + sym_type_arguments, + STATE(2244), 1, + sym_parameters, + STATE(2201), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3783), 15, anon_sym_SEMI, - ACTIONS(4305), 1, - anon_sym_else, - ACTIONS(3965), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1784), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [49718] = 5, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [68519] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1785), 2, + ACTIONS(5036), 1, + anon_sym_LPAREN, + ACTIONS(5042), 1, + anon_sym_LT2, + STATE(2219), 1, + sym_type_arguments, + STATE(2244), 1, + sym_parameters, + STATE(2202), 2, sym_line_comment, sym_block_comment, - ACTIONS(1435), 15, + ACTIONS(3763), 15, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1433), 23, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [68559] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5036), 1, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(5042), 1, + anon_sym_LT2, + STATE(2219), 1, + sym_type_arguments, + STATE(2244), 1, + sym_parameters, + STATE(2203), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3779), 15, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, anon_sym_as, - [49771] = 5, + anon_sym_where, + anon_sym_else, + [68599] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1786), 2, + ACTIONS(5036), 1, + anon_sym_LPAREN, + ACTIONS(5042), 1, + anon_sym_LT2, + STATE(2219), 1, + sym_type_arguments, + STATE(2244), 1, + sym_parameters, + STATE(2204), 2, sym_line_comment, sym_block_comment, - ACTIONS(995), 15, + ACTIONS(3775), 15, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(997), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, anon_sym_as, - [49824] = 5, + anon_sym_where, + anon_sym_else, + [68639] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1787), 2, + ACTIONS(3814), 2, + anon_sym_COLON, + anon_sym_DOT_DOT, + STATE(2205), 2, sym_line_comment, sym_block_comment, - ACTIONS(1007), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(3810), 3, + anon_sym_LBRACE, + anon_sym_for, + anon_sym_LT2, + ACTIONS(3816), 14, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_BANG, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1009), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [49877] = 5, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_else, + anon_sym_in, + [68675] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1788), 2, + ACTIONS(3791), 2, + anon_sym_COLON, + anon_sym_DOT_DOT, + STATE(2206), 2, sym_line_comment, sym_block_comment, - ACTIONS(1457), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(3787), 3, + anon_sym_LBRACE, + anon_sym_for, + anon_sym_LT2, + ACTIONS(3793), 14, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_BANG, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1455), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [49930] = 5, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_else, + anon_sym_in, + [68711] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1789), 2, + ACTIONS(3799), 2, + anon_sym_COLON, + anon_sym_DOT_DOT, + STATE(2207), 2, sym_line_comment, sym_block_comment, - ACTIONS(1011), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(3795), 3, + anon_sym_LBRACE, + anon_sym_for, + anon_sym_LT2, + ACTIONS(3801), 14, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_BANG, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1013), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [49983] = 22, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_else, + anon_sym_in, + [68747] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4203), 1, - anon_sym_LBRACK, - ACTIONS(4205), 1, - anon_sym_QMARK, - ACTIONS(4207), 1, - anon_sym_DOT, - ACTIONS(4227), 1, - anon_sym_CARET, - ACTIONS(4229), 1, - anon_sym_AMP, - ACTIONS(4231), 1, - anon_sym_PIPE, - ACTIONS(4233), 1, - anon_sym_AMP_AMP, - ACTIONS(4235), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4243), 1, - anon_sym_as, - ACTIONS(4245), 1, + ACTIONS(3771), 2, + anon_sym_COLON, anon_sym_DOT_DOT, - ACTIONS(4309), 1, - anon_sym_EQ, - ACTIONS(3939), 2, + STATE(2208), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3767), 3, + anon_sym_LBRACE, + anon_sym_for, + anon_sym_LT2, + ACTIONS(3773), 14, + anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_EQ_GT, - ACTIONS(4223), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4237), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4241), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4247), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1790), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4225), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4239), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4307), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [50070] = 5, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_else, + anon_sym_in, + [68783] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1791), 2, + STATE(2209), 2, sym_line_comment, sym_block_comment, - ACTIONS(1023), 15, + ACTIONS(3767), 18, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1025), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, anon_sym_as, - [50123] = 5, + anon_sym_for, + anon_sym_where, + anon_sym_else, + anon_sym_LT2, + [68814] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1792), 2, + ACTIONS(3908), 1, + anon_sym_COLON, + STATE(2210), 2, sym_line_comment, sym_block_comment, - ACTIONS(1477), 15, + ACTIONS(3906), 17, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_for, + anon_sym_where, + anon_sym_else, + [68847] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3799), 2, + anon_sym_COLON, anon_sym_DOT_DOT, - ACTIONS(1475), 23, + STATE(2211), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3801), 16, + anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [50176] = 22, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_else, + anon_sym_in, + [68880] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4203), 1, + ACTIONS(3814), 2, + anon_sym_COLON, + anon_sym_DOT_DOT, + STATE(2212), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3816), 16, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - ACTIONS(4205), 1, - anon_sym_QMARK, - ACTIONS(4207), 1, - anon_sym_DOT, - ACTIONS(4227), 1, - anon_sym_CARET, - ACTIONS(4229), 1, - anon_sym_AMP, - ACTIONS(4231), 1, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_BANG, anon_sym_PIPE, - ACTIONS(4233), 1, - anon_sym_AMP_AMP, - ACTIONS(4235), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4243), 1, - anon_sym_as, - ACTIONS(4245), 1, - anon_sym_DOT_DOT, - ACTIONS(4309), 1, anon_sym_EQ, - ACTIONS(3821), 2, - anon_sym_LPAREN, - anon_sym_EQ_GT, - ACTIONS(4223), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4237), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4241), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4247), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1793), 2, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_else, + anon_sym_in, + [68913] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3936), 1, + anon_sym_COLON, + STATE(2213), 2, sym_line_comment, sym_block_comment, - ACTIONS(4225), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4239), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4307), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [50263] = 5, + ACTIONS(3934), 17, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_for, + anon_sym_where, + anon_sym_else, + [68946] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1794), 2, + ACTIONS(3990), 1, + anon_sym_COLON, + STATE(2214), 2, sym_line_comment, sym_block_comment, - ACTIONS(1027), 15, + ACTIONS(3988), 17, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_for, + anon_sym_where, + anon_sym_else, + [68979] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3791), 2, + anon_sym_COLON, anon_sym_DOT_DOT, - ACTIONS(1029), 23, + STATE(2215), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3793), 16, + anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [50316] = 5, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_else, + anon_sym_in, + [69012] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1795), 2, + ACTIONS(4069), 1, + anon_sym_COLON, + STATE(2216), 2, sym_line_comment, sym_block_comment, - ACTIONS(1417), 15, + ACTIONS(4067), 17, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_for, + anon_sym_where, + anon_sym_else, + [69045] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3771), 2, + anon_sym_COLON, anon_sym_DOT_DOT, - ACTIONS(1415), 23, + STATE(2217), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3773), 16, + anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [50369] = 22, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_else, + anon_sym_in, + [69078] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4203), 1, - anon_sym_LBRACK, - ACTIONS(4205), 1, - anon_sym_QMARK, - ACTIONS(4207), 1, - anon_sym_DOT, - ACTIONS(4227), 1, - anon_sym_CARET, - ACTIONS(4229), 1, - anon_sym_AMP, - ACTIONS(4231), 1, - anon_sym_PIPE, - ACTIONS(4233), 1, - anon_sym_AMP_AMP, - ACTIONS(4235), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4243), 1, - anon_sym_as, - ACTIONS(4245), 1, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(5064), 1, + anon_sym_COLON, + ACTIONS(5066), 1, + anon_sym_BANG, + ACTIONS(5068), 1, anon_sym_DOT_DOT, - ACTIONS(4309), 1, - anon_sym_EQ, - ACTIONS(3889), 2, - anon_sym_LPAREN, - anon_sym_EQ_GT, - ACTIONS(4223), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4237), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4241), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4247), 2, + ACTIONS(5072), 1, + anon_sym_COLON_COLON, + STATE(2226), 1, + sym_type_arguments, + ACTIONS(5070), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1796), 2, + STATE(2218), 2, sym_line_comment, sym_block_comment, - ACTIONS(4225), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4239), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4307), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [50456] = 5, + ACTIONS(5062), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + ACTIONS(3820), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [69124] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1797), 2, + ACTIONS(4014), 1, + anon_sym_COLON, + STATE(2219), 2, sym_line_comment, sym_block_comment, - ACTIONS(1045), 15, + ACTIONS(4012), 16, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1047), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, anon_sym_as, - [50509] = 5, + anon_sym_for, + anon_sym_where, + anon_sym_else, + [69156] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1798), 2, + ACTIONS(5074), 1, + anon_sym_const, + ACTIONS(5076), 1, + anon_sym_enum, + ACTIONS(5078), 1, + anon_sym_fn, + ACTIONS(5080), 1, + anon_sym_mod, + ACTIONS(5082), 1, + anon_sym_static, + ACTIONS(5084), 1, + anon_sym_struct, + ACTIONS(5086), 1, + anon_sym_trait, + ACTIONS(5088), 1, + anon_sym_type, + ACTIONS(5090), 1, + anon_sym_union, + ACTIONS(5092), 1, + anon_sym_unsafe, + ACTIONS(5094), 1, + anon_sym_use, + ACTIONS(5096), 1, + anon_sym_extern, + STATE(2466), 1, + sym_extern_modifier, + STATE(2519), 1, + aux_sym_function_modifiers_repeat1, + STATE(4038), 1, + sym_function_modifiers, + ACTIONS(4974), 2, + anon_sym_async, + anon_sym_default, + STATE(2220), 2, sym_line_comment, sym_block_comment, - ACTIONS(1049), 15, + [69216] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4010), 1, + anon_sym_COLON, + STATE(2221), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4008), 16, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1051), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, anon_sym_as, - [50562] = 23, + anon_sym_for, + anon_sym_where, + anon_sym_else, + [69248] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, - anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(5064), 1, + anon_sym_COLON, + ACTIONS(5066), 1, + anon_sym_BANG, + ACTIONS(5068), 1, anon_sym_DOT_DOT, - ACTIONS(4311), 1, - anon_sym_RPAREN, - ACTIONS(4313), 1, - anon_sym_COMMA, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(5098), 1, + anon_sym_COLON_COLON, + STATE(2226), 1, + sym_type_arguments, + ACTIONS(5070), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1799), 2, + STATE(2222), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [50651] = 22, + ACTIONS(5062), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [69292] = 19, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, - anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4315), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1800), 2, + ACTIONS(4976), 1, + anon_sym_const, + ACTIONS(4978), 1, + anon_sym_enum, + ACTIONS(4980), 1, + anon_sym_fn, + ACTIONS(4986), 1, + anon_sym_mod, + ACTIONS(4990), 1, + anon_sym_static, + ACTIONS(4992), 1, + anon_sym_struct, + ACTIONS(4994), 1, + anon_sym_trait, + ACTIONS(4998), 1, + anon_sym_union, + ACTIONS(5002), 1, + anon_sym_use, + ACTIONS(5004), 1, + anon_sym_extern, + ACTIONS(5100), 1, + anon_sym_type, + ACTIONS(5102), 1, + anon_sym_unsafe, + STATE(2473), 1, + sym_extern_modifier, + STATE(2519), 1, + aux_sym_function_modifiers_repeat1, + STATE(3788), 1, + sym_function_modifiers, + ACTIONS(4974), 2, + anon_sym_async, + anon_sym_default, + STATE(2223), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [50738] = 23, + [69352] = 19, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5104), 1, + anon_sym_const, + ACTIONS(5106), 1, + anon_sym_enum, + ACTIONS(5108), 1, + anon_sym_fn, + ACTIONS(5110), 1, + anon_sym_mod, + ACTIONS(5112), 1, + anon_sym_static, + ACTIONS(5114), 1, + anon_sym_struct, + ACTIONS(5116), 1, + anon_sym_trait, + ACTIONS(5118), 1, + anon_sym_type, + ACTIONS(5120), 1, + anon_sym_union, + ACTIONS(5122), 1, + anon_sym_unsafe, + ACTIONS(5124), 1, + anon_sym_use, + ACTIONS(5126), 1, + anon_sym_extern, + STATE(2425), 1, + sym_extern_modifier, + STATE(2519), 1, + aux_sym_function_modifiers_repeat1, + STATE(4136), 1, + sym_function_modifiers, + ACTIONS(4974), 2, + anon_sym_async, + anon_sym_default, + STATE(2224), 2, + sym_line_comment, + sym_block_comment, + [69412] = 19, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5008), 1, + anon_sym_const, + ACTIONS(5010), 1, + anon_sym_enum, + ACTIONS(5012), 1, + anon_sym_fn, + ACTIONS(5018), 1, + anon_sym_mod, + ACTIONS(5020), 1, + anon_sym_static, + ACTIONS(5022), 1, + anon_sym_struct, + ACTIONS(5024), 1, + anon_sym_trait, + ACTIONS(5028), 1, + anon_sym_union, + ACTIONS(5032), 1, + anon_sym_use, + ACTIONS(5034), 1, + anon_sym_extern, + ACTIONS(5128), 1, + anon_sym_type, + ACTIONS(5130), 1, + anon_sym_unsafe, + STATE(2456), 1, + sym_extern_modifier, + STATE(2519), 1, + aux_sym_function_modifiers_repeat1, + STATE(4127), 1, + sym_function_modifiers, + ACTIONS(4974), 2, + anon_sym_async, + anon_sym_default, + STATE(2225), 2, + sym_line_comment, + sym_block_comment, + [69472] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(295), 1, + ACTIONS(3996), 1, + anon_sym_COLON, + STATE(2226), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3994), 16, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, + anon_sym_PLUS, anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4197), 1, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_for, + anon_sym_where, + anon_sym_else, + [69504] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2227), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1051), 16, anon_sym_SEMI, - ACTIONS(3965), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1801), 2, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + anon_sym_in, + [69533] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3765), 1, + anon_sym_COLON, + ACTIONS(5132), 1, + anon_sym_COLON_COLON, + STATE(2228), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [50827] = 22, + ACTIONS(3763), 14, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [69566] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, + STATE(2229), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1047), 16, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PLUS, anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4317), 2, - anon_sym_RBRACE, anon_sym_COMMA, - STATE(1802), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [50914] = 5, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + anon_sym_in, + [69595] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1803), 2, + STATE(2230), 2, sym_line_comment, sym_block_comment, - ACTIONS(3823), 15, + ACTIONS(1429), 16, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3821), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, anon_sym_as, - [50967] = 23, + anon_sym_where, + anon_sym_else, + anon_sym_in, + [69624] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(4257), 1, - anon_sym_CARET, - ACTIONS(4259), 1, - anon_sym_AMP, - ACTIONS(4261), 1, - anon_sym_PIPE, - ACTIONS(4263), 1, - anon_sym_AMP_AMP, - ACTIONS(4265), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4271), 1, - anon_sym_EQ, - ACTIONS(4289), 1, - anon_sym_DOT_DOT, - ACTIONS(4319), 1, - anon_sym_LBRACE, - STATE(1449), 1, - sym_match_block, - ACTIONS(4253), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4267), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4275), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4291), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1804), 2, + ACTIONS(5134), 1, + anon_sym_LPAREN, + STATE(2231), 2, sym_line_comment, sym_block_comment, - ACTIONS(4255), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4273), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4269), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [51056] = 5, + ACTIONS(4479), 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, + [69655] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1805), 2, + ACTIONS(5136), 1, + anon_sym_DASH_GT, + STATE(2232), 2, sym_line_comment, sym_block_comment, - ACTIONS(1357), 15, + ACTIONS(4016), 15, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1359), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, anon_sym_as, - [51109] = 23, + anon_sym_where, + anon_sym_else, + [69686] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(127), 1, + STATE(2233), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4063), 16, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, + anon_sym_COLON, + anon_sym_PLUS, anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4197), 1, - anon_sym_SEMI, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1806), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [51198] = 23, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [69715] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(297), 1, + STATE(2234), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3972), 16, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, + anon_sym_COLON, + anon_sym_PLUS, anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4197), 1, - anon_sym_SEMI, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1807), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [51287] = 23, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [69744] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(5138), 1, + anon_sym_DASH_GT, + STATE(2235), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4057), 15, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PLUS, anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4321), 1, - anon_sym_SEMI, - ACTIONS(4323), 1, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, anon_sym_else, - ACTIONS(3965), 2, + [69775] = 17, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3737), 1, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(5038), 1, + anon_sym_BANG, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(5044), 1, + anon_sym_PIPE, + ACTIONS(5048), 1, + anon_sym_LBRACE, + ACTIONS(5050), 1, + anon_sym_COLON, + ACTIONS(5052), 1, + anon_sym_AT, + ACTIONS(5054), 1, + anon_sym_DOT_DOT, + ACTIONS(5140), 1, + anon_sym_LPAREN, + ACTIONS(5145), 1, + anon_sym_COLON_COLON, + STATE(2221), 1, + sym_type_arguments, + STATE(2250), 1, + sym_parameters, + ACTIONS(5056), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1808), 2, + ACTIONS(5142), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2236), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [51376] = 5, + [69830] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1809), 2, + STATE(2237), 2, sym_line_comment, sym_block_comment, - ACTIONS(3803), 15, + ACTIONS(1411), 16, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3801), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, anon_sym_as, - [51429] = 23, + anon_sym_where, + anon_sym_else, + anon_sym_in, + [69859] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1083), 1, + ACTIONS(3777), 1, + anon_sym_COLON, + ACTIONS(5147), 1, + anon_sym_COLON_COLON, + STATE(2238), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3775), 14, + anon_sym_SEMI, anon_sym_RPAREN, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4201), 1, + anon_sym_GT, anon_sym_COMMA, - ACTIONS(3965), 2, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [69892] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5149), 1, + anon_sym_DASH_GT, + STATE(2239), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4091), 15, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1810), 2, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [69923] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3777), 1, + anon_sym_COLON, + ACTIONS(5132), 1, + anon_sym_COLON_COLON, + STATE(2240), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [51518] = 17, - ACTIONS(29), 1, - anon_sym_LT, + ACTIONS(3775), 14, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [69956] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4173), 1, - sym_identifier, - ACTIONS(4175), 1, - anon_sym_LBRACE, - ACTIONS(4179), 1, - anon_sym_STAR, - ACTIONS(4185), 1, + ACTIONS(3777), 1, + anon_sym_COLON, + ACTIONS(5151), 1, anon_sym_COLON_COLON, - ACTIONS(4189), 1, - sym_metavariable, - ACTIONS(4325), 1, - anon_sym_RBRACE, - STATE(2477), 1, - sym_scoped_identifier, - STATE(3166), 1, - sym__use_clause, - STATE(3423), 1, - sym_generic_type_with_turbofish, - STATE(3517), 1, - sym_bracketed_type, - STATE(1811), 2, + STATE(2241), 2, sym_line_comment, sym_block_comment, - ACTIONS(4187), 3, - sym_self, - sym_super, - sym_crate, - STATE(2910), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4181), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_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_gen, - anon_sym_union, - [51595] = 23, + ACTIONS(3775), 14, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [69989] = 16, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, - anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(5038), 1, + anon_sym_BANG, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(5048), 1, + anon_sym_LBRACE, + ACTIONS(5052), 1, + anon_sym_AT, + ACTIONS(5054), 1, anon_sym_DOT_DOT, - ACTIONS(4327), 1, + ACTIONS(5142), 1, + anon_sym_RBRACK, + ACTIONS(5153), 1, + anon_sym_LPAREN, + ACTIONS(5155), 1, + anon_sym_COLON_COLON, + STATE(2221), 1, + sym_type_arguments, + STATE(2250), 1, + sym_parameters, + ACTIONS(3737), 2, anon_sym_SEMI, - ACTIONS(4329), 1, - anon_sym_else, - ACTIONS(3965), 2, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(5044), 2, + anon_sym_PIPE, + anon_sym_COMMA, + ACTIONS(5056), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1812), 2, + STATE(2242), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [51684] = 23, + [70042] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, - anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4331), 1, + ACTIONS(3785), 1, + anon_sym_COLON, + ACTIONS(5132), 1, + anon_sym_COLON_COLON, + STATE(2243), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3783), 14, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(4333), 1, - anon_sym_COMMA, - ACTIONS(3965), 2, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1813), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [51773] = 23, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [70075] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(299), 1, + ACTIONS(5157), 1, + anon_sym_DASH_GT, + STATE(2244), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4028), 15, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, + anon_sym_COLON, + anon_sym_PLUS, anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4197), 1, - anon_sym_SEMI, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1814), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [51862] = 23, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [70106] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1065), 1, + ACTIONS(5159), 1, + anon_sym_DASH_GT, + STATE(2245), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4097), 15, + anon_sym_SEMI, anon_sym_RPAREN, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PLUS, anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4201), 1, - anon_sym_COMMA, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1815), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [51951] = 22, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [70137] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, - anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(5038), 1, + anon_sym_BANG, + ACTIONS(5046), 1, + anon_sym_LPAREN, + ACTIONS(5050), 1, + anon_sym_COLON, + ACTIONS(5054), 1, anon_sym_DOT_DOT, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(5161), 1, + anon_sym_COLON_COLON, + ACTIONS(5056), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4335), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1816), 2, + STATE(2246), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [52038] = 23, + ACTIONS(5044), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [70178] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, - anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(5066), 1, + anon_sym_BANG, + ACTIONS(5068), 1, anon_sym_DOT_DOT, - ACTIONS(4337), 1, - anon_sym_SEMI, - ACTIONS(4339), 1, - anon_sym_else, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(5163), 1, + anon_sym_COLON_COLON, + STATE(2226), 1, + sym_type_arguments, + ACTIONS(5070), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1817), 2, + STATE(2247), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [52127] = 23, + ACTIONS(5062), 3, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_COMMA, + ACTIONS(3820), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [70221] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, - anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4197), 1, + ACTIONS(5165), 1, + anon_sym_DASH_GT, + STATE(2248), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4103), 15, anon_sym_SEMI, - ACTIONS(4341), 1, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(3965), 2, + anon_sym_COLON, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1818), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [52216] = 23, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [70252] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, + STATE(2249), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3902), 16, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PLUS, anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4201), 1, + anon_sym_GT, anon_sym_COMMA, - ACTIONS(4343), 1, + anon_sym_DASH_GT, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [70281] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5167), 1, + anon_sym_DASH_GT, + STATE(2250), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4022), 15, + anon_sym_SEMI, anon_sym_RPAREN, - ACTIONS(3965), 2, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1819), 2, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [70312] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2251), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [52305] = 23, + ACTIONS(4087), 16, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [70341] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, - anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4345), 1, + ACTIONS(3781), 1, + anon_sym_COLON, + ACTIONS(5132), 1, + anon_sym_COLON_COLON, + STATE(2252), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3779), 14, anon_sym_SEMI, - ACTIONS(4347), 1, - anon_sym_else, - ACTIONS(3965), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1820), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [52394] = 5, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [70374] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1821), 2, + STATE(2253), 2, sym_line_comment, sym_block_comment, - ACTIONS(3847), 15, + ACTIONS(3930), 16, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3845), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_SQUOTE, anon_sym_as, - [52447] = 23, + anon_sym_where, + anon_sym_else, + [70403] = 16, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(5038), 1, + anon_sym_BANG, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(5044), 1, anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(5048), 1, + anon_sym_LBRACE, + ACTIONS(5050), 1, + anon_sym_COLON, + ACTIONS(5052), 1, + anon_sym_AT, + ACTIONS(5054), 1, anon_sym_DOT_DOT, - ACTIONS(4349), 1, - anon_sym_SEMI, - ACTIONS(4351), 1, - anon_sym_else, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(5169), 1, + anon_sym_LPAREN, + ACTIONS(5171), 1, + anon_sym_COLON_COLON, + STATE(2221), 1, + sym_type_arguments, + STATE(2250), 1, + sym_parameters, + ACTIONS(5056), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1822), 2, + STATE(2254), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [52536] = 23, + ACTIONS(3737), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [70456] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(303), 1, + STATE(2255), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4135), 15, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, + anon_sym_COLON, + anon_sym_PLUS, anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4197), 1, - anon_sym_SEMI, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1823), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [52625] = 19, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [70484] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(4257), 1, - anon_sym_CARET, - ACTIONS(4259), 1, - anon_sym_AMP, - ACTIONS(4261), 1, - anon_sym_PIPE, - ACTIONS(4263), 1, - anon_sym_AMP_AMP, - ACTIONS(4265), 1, - anon_sym_PIPE_PIPE, - ACTIONS(389), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4253), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4267), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4275), 2, - anon_sym_GT, - anon_sym_LT, - STATE(1824), 2, + STATE(2256), 2, sym_line_comment, sym_block_comment, - ACTIONS(4255), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4273), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(387), 14, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [52706] = 21, + ACTIONS(4475), 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, + [70512] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(347), 1, - anon_sym_EQ, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(4257), 1, - anon_sym_CARET, - ACTIONS(4259), 1, - anon_sym_AMP, - ACTIONS(4261), 1, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(5062), 1, anon_sym_PIPE, - ACTIONS(4263), 1, - anon_sym_AMP_AMP, - ACTIONS(4265), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4277), 1, + ACTIONS(5064), 1, + anon_sym_COLON, + ACTIONS(5066), 1, + anon_sym_BANG, + ACTIONS(5068), 1, anon_sym_DOT_DOT, - ACTIONS(4253), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4267), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4275), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4279), 2, + ACTIONS(5173), 1, + anon_sym_COLON_COLON, + STATE(2226), 1, + sym_type_arguments, + ACTIONS(5070), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1825), 2, + STATE(2257), 2, sym_line_comment, sym_block_comment, - ACTIONS(4255), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4273), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(341), 12, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [52791] = 23, + ACTIONS(3820), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [70556] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(4257), 1, - anon_sym_CARET, - ACTIONS(4259), 1, - anon_sym_AMP, - ACTIONS(4261), 1, - anon_sym_PIPE, - ACTIONS(4263), 1, - anon_sym_AMP_AMP, - ACTIONS(4265), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4271), 1, - anon_sym_EQ, - ACTIONS(4289), 1, - anon_sym_DOT_DOT, - ACTIONS(4353), 1, + STATE(2258), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4207), 15, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_LBRACE, - STATE(480), 1, - sym_match_block, - ACTIONS(4253), 2, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4267), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4275), 2, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_GT, - anon_sym_LT, - ACTIONS(4291), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1826), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4255), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4273), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4269), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [52880] = 21, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [70584] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(4015), 1, - anon_sym_EQ, - ACTIONS(4257), 1, - anon_sym_CARET, - ACTIONS(4259), 1, - anon_sym_AMP, - ACTIONS(4261), 1, - anon_sym_PIPE, - ACTIONS(4263), 1, - anon_sym_AMP_AMP, - ACTIONS(4265), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4277), 1, - anon_sym_DOT_DOT, - ACTIONS(4253), 2, + STATE(2259), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3779), 15, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4267), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4275), 2, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_GT, - anon_sym_LT, - ACTIONS(4279), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1827), 2, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [70612] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2260), 2, sym_line_comment, sym_block_comment, - ACTIONS(4255), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4273), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4013), 12, - anon_sym_LPAREN, + ACTIONS(4123), 15, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [52965] = 21, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [70640] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(4025), 1, - anon_sym_EQ, - ACTIONS(4257), 1, - anon_sym_CARET, - ACTIONS(4259), 1, - anon_sym_AMP, - ACTIONS(4261), 1, - anon_sym_PIPE, - ACTIONS(4263), 1, - anon_sym_AMP_AMP, - ACTIONS(4265), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4277), 1, - anon_sym_DOT_DOT, - ACTIONS(4253), 2, + STATE(2261), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4339), 15, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4267), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4275), 2, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_GT, - anon_sym_LT, - ACTIONS(4279), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1828), 2, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [70668] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2262), 2, sym_line_comment, sym_block_comment, - ACTIONS(4255), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4273), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4023), 12, - anon_sym_LPAREN, + ACTIONS(3783), 15, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [53050] = 23, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [70696] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(305), 1, + STATE(2263), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4139), 15, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, + anon_sym_COLON, + anon_sym_PLUS, anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4197), 1, - anon_sym_SEMI, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1829), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [53139] = 5, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [70724] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1830), 2, + STATE(2264), 2, sym_line_comment, sym_block_comment, - ACTIONS(3807), 15, + ACTIONS(4119), 15, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3805), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, anon_sym_as, - [53192] = 23, + anon_sym_where, + anon_sym_else, + [70752] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(291), 1, + STATE(2265), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4151), 15, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, + anon_sym_COLON, + anon_sym_PLUS, anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4197), 1, - anon_sym_SEMI, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1831), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [53281] = 23, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [70780] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, - anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4197), 1, + STATE(2266), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4285), 15, anon_sym_SEMI, - ACTIONS(4355), 1, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(3965), 2, + anon_sym_COLON, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1832), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [53370] = 23, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [70808] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(307), 1, + STATE(2267), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4155), 15, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, + anon_sym_COLON, + anon_sym_PLUS, anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4197), 1, - anon_sym_SEMI, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1833), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [53459] = 23, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [70836] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, - anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4197), 1, + STATE(2268), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3763), 15, anon_sym_SEMI, - ACTIONS(4357), 1, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(3965), 2, + anon_sym_COLON, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1834), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [53548] = 5, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [70864] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1835), 2, + STATE(2269), 2, sym_line_comment, sym_block_comment, - ACTIONS(3675), 15, + ACTIONS(4363), 15, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3673), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, anon_sym_as, - [53601] = 9, + anon_sym_where, + anon_sym_else, + [70892] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4203), 1, - anon_sym_LBRACK, - ACTIONS(4205), 1, - anon_sym_QMARK, - ACTIONS(4207), 1, - anon_sym_DOT, - ACTIONS(4243), 1, - anon_sym_as, - STATE(1836), 2, + STATE(2270), 2, sym_line_comment, sym_block_comment, - ACTIONS(3681), 14, + ACTIONS(4123), 15, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3677), 20, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [53662] = 23, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [70920] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(311), 1, + STATE(2271), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4215), 15, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, + anon_sym_COLON, + anon_sym_PLUS, anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4197), 1, - anon_sym_SEMI, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1837), 2, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [70948] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(4395), 1, + anon_sym_COLON_COLON, + STATE(2272), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [53751] = 23, + ACTIONS(4484), 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, + [70978] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(4257), 1, - anon_sym_CARET, - ACTIONS(4259), 1, - anon_sym_AMP, - ACTIONS(4261), 1, - anon_sym_PIPE, - ACTIONS(4263), 1, - anon_sym_AMP_AMP, - ACTIONS(4265), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4271), 1, - anon_sym_EQ, - ACTIONS(4289), 1, - anon_sym_DOT_DOT, - ACTIONS(4359), 1, - anon_sym_LBRACE, - STATE(1757), 1, - sym_match_block, - ACTIONS(4253), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4267), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4275), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4291), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1838), 2, + STATE(2273), 2, sym_line_comment, sym_block_comment, - ACTIONS(4255), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4273), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4269), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [53840] = 23, + ACTIONS(4486), 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, + [71006] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(313), 1, + STATE(2274), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4389), 15, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, + anon_sym_COLON, + anon_sym_PLUS, anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4197), 1, - anon_sym_SEMI, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1839), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [53929] = 23, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [71034] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(315), 1, + STATE(2275), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4219), 15, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, + anon_sym_COLON, + anon_sym_PLUS, anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4197), 1, - anon_sym_SEMI, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1840), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [54018] = 23, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [71062] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, - anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4197), 1, + STATE(2276), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4371), 15, anon_sym_SEMI, - ACTIONS(4361), 1, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(3965), 2, + anon_sym_COLON, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1841), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [54107] = 23, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [71090] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(319), 1, + STATE(2277), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4227), 15, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, + anon_sym_COLON, + anon_sym_PLUS, anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4197), 1, - anon_sym_SEMI, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1842), 2, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [71118] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2278), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [54196] = 23, + ACTIONS(4479), 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, + [71146] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(321), 1, + STATE(2279), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4375), 15, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, + anon_sym_COLON, + anon_sym_PLUS, anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4197), 1, - anon_sym_SEMI, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1843), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [54285] = 23, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [71174] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1225), 1, + STATE(2280), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4223), 15, + anon_sym_SEMI, anon_sym_RPAREN, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PLUS, anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4201), 1, - anon_sym_COMMA, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1844), 2, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [71202] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5175), 1, + anon_sym_COLON_COLON, + STATE(2281), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [54374] = 23, + ACTIONS(4484), 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, + [71232] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(323), 1, + STATE(2282), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4351), 15, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, + anon_sym_COLON, + anon_sym_PLUS, anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4197), 1, - anon_sym_SEMI, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1845), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [54463] = 23, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [71260] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, - anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4197), 1, + STATE(2283), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4143), 15, anon_sym_SEMI, - ACTIONS(4363), 1, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(3965), 2, + anon_sym_COLON, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1846), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [54552] = 23, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [71288] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(327), 1, + STATE(2284), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4335), 15, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, + anon_sym_COLON, + anon_sym_PLUS, anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4197), 1, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [71316] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2285), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3775), 15, anon_sym_SEMI, - ACTIONS(3965), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1847), 2, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [71344] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2286), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [54641] = 23, + ACTIONS(4490), 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, + [71372] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(329), 1, + STATE(2287), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4255), 15, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, + anon_sym_COLON, + anon_sym_PLUS, anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4197), 1, - anon_sym_SEMI, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [71400] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5064), 1, + anon_sym_COLON, + ACTIONS(5068), 1, + anon_sym_DOT_DOT, + ACTIONS(5098), 1, + anon_sym_COLON_COLON, + ACTIONS(5070), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1848), 2, + STATE(2288), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [54730] = 23, + ACTIONS(5062), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [71435] = 16, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(331), 1, - anon_sym_RBRACE, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, - anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, + ACTIONS(5036), 1, + anon_sym_LPAREN, + ACTIONS(5038), 1, + anon_sym_BANG, + ACTIONS(5040), 1, + anon_sym_COLON_COLON, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(5177), 1, + anon_sym_COLON, + ACTIONS(5179), 1, anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4197), 1, - anon_sym_SEMI, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(5181), 1, anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1849), 2, + ACTIONS(5183), 1, + anon_sym_COMMA, + STATE(2221), 1, + sym_type_arguments, + STATE(2250), 1, + sym_parameters, + STATE(3273), 1, + aux_sym_type_parameters_repeat1, + STATE(3274), 1, + sym_trait_bounds, + ACTIONS(3737), 2, + anon_sym_PLUS, + anon_sym_as, + STATE(2289), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [54819] = 23, + [71486] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, - anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(1009), 1, anon_sym_DOT_DOT, - ACTIONS(4197), 1, + STATE(2290), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1011), 13, anon_sym_SEMI, - ACTIONS(4365), 1, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1850), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [54908] = 23, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [71515] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(335), 1, + ACTIONS(941), 1, + anon_sym_DOT_DOT, + STATE(2291), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(943), 13, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, + anon_sym_COLON, anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4197), 1, - anon_sym_SEMI, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1851), 2, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [71544] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5187), 1, + anon_sym_pat, + STATE(148), 1, + sym_fragment_specifier, + STATE(2292), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [54997] = 23, + ACTIONS(5185), 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, + [71575] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(337), 1, - anon_sym_RBRACE, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, - anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(3791), 1, anon_sym_DOT_DOT, - ACTIONS(4197), 1, + ACTIONS(5189), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + STATE(2293), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3787), 4, anon_sym_SEMI, - ACTIONS(3965), 2, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, + anon_sym_LT2, + ACTIONS(3793), 6, + anon_sym_BANG, + anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1852), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [55086] = 23, + anon_sym_COMMA, + anon_sym_COLON_COLON, + [71607] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(123), 1, - anon_sym_RBRACE, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, - anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(5192), 1, + anon_sym_LPAREN, + ACTIONS(5194), 1, + anon_sym_LBRACE, + ACTIONS(5196), 1, + anon_sym_BANG, + ACTIONS(5198), 1, + anon_sym_AT, + ACTIONS(5200), 1, anon_sym_DOT_DOT, - ACTIONS(4197), 1, - anon_sym_SEMI, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, + ACTIONS(5204), 1, + anon_sym_COLON_COLON, + STATE(2221), 1, + sym_type_arguments, + ACTIONS(5202), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1853), 2, + STATE(2294), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [55175] = 23, + ACTIONS(5044), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [71651] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, - anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(3791), 2, + anon_sym_COLON, anon_sym_DOT_DOT, - ACTIONS(4197), 1, - anon_sym_SEMI, - ACTIONS(4367), 1, - anon_sym_RBRACE, - ACTIONS(3965), 2, + STATE(2295), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3787), 3, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, + anon_sym_LT2, + ACTIONS(5189), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3793), 5, + anon_sym_BANG, + anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1854), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [55264] = 22, + anon_sym_COLON_COLON, + [71683] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(5208), 1, + anon_sym_DOT_DOT, + STATE(2296), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5206), 12, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4369), 2, - anon_sym_RBRACE, anon_sym_COMMA, - STATE(1855), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [55351] = 5, + anon_sym_else, + anon_sym_in, + [71711] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1856), 2, + ACTIONS(5210), 1, + anon_sym_LPAREN, + ACTIONS(3799), 2, + anon_sym_COLON, + anon_sym_DOT_DOT, + STATE(2297), 2, sym_line_comment, sym_block_comment, - ACTIONS(3719), 15, + ACTIONS(3795), 5, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, + anon_sym_COMMA, + anon_sym_LT2, + ACTIONS(3801), 5, + anon_sym_BANG, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + [71743] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3814), 2, + anon_sym_COLON, anon_sym_DOT_DOT, - ACTIONS(3717), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + STATE(2298), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3810), 3, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(5213), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3816), 5, + anon_sym_BANG, + anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [55404] = 5, + anon_sym_COLON_COLON, + [71775] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1857), 2, + ACTIONS(5054), 1, + anon_sym_DOT_DOT, + ACTIONS(5056), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2299), 2, sym_line_comment, sym_block_comment, - ACTIONS(3827), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(5044), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [71805] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3771), 2, + anon_sym_COLON, anon_sym_DOT_DOT, - ACTIONS(3825), 23, + STATE(2300), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3767), 3, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(5216), 3, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3773), 5, + anon_sym_BANG, + anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [55457] = 5, + anon_sym_COLON_COLON, + [71837] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1858), 2, + ACTIONS(5221), 1, + anon_sym_DOT_DOT, + STATE(2301), 2, sym_line_comment, sym_block_comment, - ACTIONS(3835), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(5219), 12, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3833), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [55510] = 5, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [71865] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1859), 2, + ACTIONS(3771), 1, + anon_sym_DOT_DOT, + ACTIONS(5216), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + STATE(2302), 2, sym_line_comment, sym_block_comment, - ACTIONS(3839), 15, + ACTIONS(3767), 4, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, + anon_sym_LT2, + ACTIONS(3773), 6, + anon_sym_BANG, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3837), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [55563] = 5, + anon_sym_COMMA, + anon_sym_COLON_COLON, + [71897] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1860), 2, + ACTIONS(3814), 1, + anon_sym_DOT_DOT, + ACTIONS(5213), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + STATE(2303), 2, sym_line_comment, sym_block_comment, - ACTIONS(3731), 15, + ACTIONS(3810), 4, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, + anon_sym_LT2, + ACTIONS(3816), 6, + anon_sym_BANG, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3729), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [55616] = 5, + anon_sym_COMMA, + anon_sym_COLON_COLON, + [71929] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1861), 2, + ACTIONS(5189), 1, + anon_sym_LPAREN, + ACTIONS(3791), 2, + anon_sym_COLON, + anon_sym_DOT_DOT, + STATE(2304), 2, sym_line_comment, sym_block_comment, - ACTIONS(3671), 15, + ACTIONS(3787), 5, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, + anon_sym_COMMA, + anon_sym_LT2, + ACTIONS(3793), 5, + anon_sym_BANG, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3667), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [55669] = 21, + anon_sym_COLON_COLON, + [71961] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(4083), 1, - anon_sym_CARET, - ACTIONS(4085), 1, - anon_sym_AMP, - ACTIONS(4087), 1, - anon_sym_PIPE, - ACTIONS(4091), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4097), 1, - anon_sym_EQ, - ACTIONS(4103), 1, + ACTIONS(3799), 1, anon_sym_DOT_DOT, - ACTIONS(4079), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4093), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4101), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4105), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1862), 2, + ACTIONS(5210), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, + STATE(2305), 2, sym_line_comment, sym_block_comment, - ACTIONS(4081), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4371), 3, + ACTIONS(3795), 4, + anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_SQUOTE, - ACTIONS(4099), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4095), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [55754] = 19, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(3801), 6, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + [71993] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4203), 1, - anon_sym_LBRACK, - ACTIONS(4205), 1, - anon_sym_QMARK, - ACTIONS(4207), 1, - anon_sym_DOT, - ACTIONS(4227), 1, - anon_sym_CARET, - ACTIONS(4229), 1, - anon_sym_AMP, - ACTIONS(4231), 1, - anon_sym_PIPE, - ACTIONS(4233), 1, - anon_sym_AMP_AMP, - ACTIONS(4235), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4243), 1, - anon_sym_as, - ACTIONS(4003), 2, - anon_sym_EQ, + ACTIONS(5216), 1, + anon_sym_LPAREN, + ACTIONS(3771), 2, + anon_sym_COLON, anon_sym_DOT_DOT, - ACTIONS(4223), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4237), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4241), 2, - anon_sym_GT, - anon_sym_LT, - STATE(1863), 2, + STATE(2306), 2, sym_line_comment, sym_block_comment, - ACTIONS(4225), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4239), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4001), 14, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, + ACTIONS(3767), 5, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_LT2, + ACTIONS(3773), 5, + anon_sym_BANG, + anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [55835] = 22, + anon_sym_COLON_COLON, + [72025] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, - anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(3799), 2, + anon_sym_COLON, anon_sym_DOT_DOT, - ACTIONS(4201), 1, - anon_sym_COMMA, - ACTIONS(3965), 2, + STATE(2307), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3795), 3, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, + anon_sym_LT2, + ACTIONS(5210), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3801), 5, + anon_sym_BANG, + anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1864), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [55921] = 22, + anon_sym_COLON_COLON, + [72057] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, - anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(5213), 1, + anon_sym_LPAREN, + ACTIONS(3814), 2, + anon_sym_COLON, anon_sym_DOT_DOT, - ACTIONS(4373), 1, - anon_sym_SEMI, - ACTIONS(3965), 2, + STATE(2308), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3810), 5, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, + anon_sym_COMMA, + anon_sym_LT2, + ACTIONS(3816), 5, + anon_sym_BANG, + anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1865), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [56007] = 21, + anon_sym_COLON_COLON, + [72089] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4203), 1, - anon_sym_LBRACK, - ACTIONS(4205), 1, - anon_sym_QMARK, - ACTIONS(4207), 1, - anon_sym_DOT, - ACTIONS(4227), 1, - anon_sym_CARET, - ACTIONS(4229), 1, - anon_sym_AMP, - ACTIONS(4231), 1, - anon_sym_PIPE, - ACTIONS(4235), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4243), 1, - anon_sym_as, - ACTIONS(4309), 1, - anon_sym_EQ, - ACTIONS(4375), 1, - anon_sym_DOT_DOT, - ACTIONS(4223), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4237), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4241), 2, + ACTIONS(3427), 1, + anon_sym_POUND, + ACTIONS(3429), 1, + anon_sym_SQUOTE, + ACTIONS(5223), 1, + sym_identifier, + ACTIONS(5225), 1, anon_sym_GT, - anon_sym_LT, - ACTIONS(4371), 2, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - ACTIONS(4377), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1866), 2, + ACTIONS(5227), 1, + anon_sym_const, + ACTIONS(5229), 1, + sym_metavariable, + STATE(2189), 1, + sym_attribute_item, + STATE(2372), 1, + aux_sym_mod_item_repeat1, + STATE(3044), 1, + sym_lifetime, + STATE(3422), 1, + sym_constrained_type_parameter, + STATE(2309), 2, sym_line_comment, sym_block_comment, - ACTIONS(4225), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4239), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4307), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [56091] = 21, + STATE(3510), 2, + sym_const_parameter, + sym_optional_type_parameter, + [72134] = 14, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3427), 1, + anon_sym_POUND, + ACTIONS(3429), 1, + anon_sym_SQUOTE, + ACTIONS(5223), 1, + sym_identifier, + ACTIONS(5227), 1, + anon_sym_const, + ACTIONS(5229), 1, + sym_metavariable, + ACTIONS(5231), 1, + anon_sym_GT, + STATE(2189), 1, + sym_attribute_item, + STATE(2372), 1, + aux_sym_mod_item_repeat1, + STATE(2909), 1, + sym_lifetime, + STATE(3422), 1, + sym_constrained_type_parameter, + STATE(2310), 2, + sym_line_comment, + sym_block_comment, + STATE(3510), 2, + sym_const_parameter, + sym_optional_type_parameter, + [72179] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4203), 1, - anon_sym_LBRACK, - ACTIONS(4205), 1, - anon_sym_QMARK, - ACTIONS(4207), 1, - anon_sym_DOT, - ACTIONS(4227), 1, - anon_sym_CARET, - ACTIONS(4229), 1, - anon_sym_AMP, - ACTIONS(4231), 1, - anon_sym_PIPE, - ACTIONS(4235), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4243), 1, - anon_sym_as, - ACTIONS(4309), 1, - anon_sym_EQ, - ACTIONS(4375), 1, - anon_sym_DOT_DOT, - ACTIONS(4223), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4237), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4241), 2, + ACTIONS(3427), 1, + anon_sym_POUND, + ACTIONS(3429), 1, + anon_sym_SQUOTE, + ACTIONS(5223), 1, + sym_identifier, + ACTIONS(5227), 1, + anon_sym_const, + ACTIONS(5229), 1, + sym_metavariable, + ACTIONS(5233), 1, anon_sym_GT, - anon_sym_LT, - ACTIONS(4299), 2, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - ACTIONS(4377), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1867), 2, + STATE(2189), 1, + sym_attribute_item, + STATE(2372), 1, + aux_sym_mod_item_repeat1, + STATE(2909), 1, + sym_lifetime, + STATE(3422), 1, + sym_constrained_type_parameter, + STATE(2311), 2, sym_line_comment, sym_block_comment, - ACTIONS(4225), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4239), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4307), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [56175] = 22, + STATE(3510), 2, + sym_const_parameter, + sym_optional_type_parameter, + [72224] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4203), 1, - anon_sym_LBRACK, - ACTIONS(4205), 1, - anon_sym_QMARK, - ACTIONS(4207), 1, - anon_sym_DOT, - ACTIONS(4227), 1, - anon_sym_CARET, - ACTIONS(4229), 1, - anon_sym_AMP, - ACTIONS(4231), 1, - anon_sym_PIPE, - ACTIONS(4235), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4243), 1, - anon_sym_as, - ACTIONS(4249), 1, - anon_sym_EQ_GT, - ACTIONS(4309), 1, - anon_sym_EQ, - ACTIONS(4375), 1, - anon_sym_DOT_DOT, - ACTIONS(4379), 1, - anon_sym_AMP_AMP, - ACTIONS(4223), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4237), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4241), 2, + ACTIONS(3427), 1, + anon_sym_POUND, + ACTIONS(3429), 1, + anon_sym_SQUOTE, + ACTIONS(5223), 1, + sym_identifier, + ACTIONS(5227), 1, + anon_sym_const, + ACTIONS(5229), 1, + sym_metavariable, + ACTIONS(5235), 1, anon_sym_GT, - anon_sym_LT, - ACTIONS(4377), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1868), 2, + STATE(2189), 1, + sym_attribute_item, + STATE(2372), 1, + aux_sym_mod_item_repeat1, + STATE(2909), 1, + sym_lifetime, + STATE(3422), 1, + sym_constrained_type_parameter, + STATE(2312), 2, sym_line_comment, sym_block_comment, - ACTIONS(4225), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4239), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4307), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [56261] = 22, + STATE(3510), 2, + sym_const_parameter, + sym_optional_type_parameter, + [72269] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, - anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4381), 1, - anon_sym_COMMA, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(3427), 1, + anon_sym_POUND, + ACTIONS(3429), 1, + anon_sym_SQUOTE, + ACTIONS(5223), 1, + sym_identifier, + ACTIONS(5227), 1, + anon_sym_const, + ACTIONS(5229), 1, + sym_metavariable, + ACTIONS(5237), 1, anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1869), 2, + STATE(2189), 1, + sym_attribute_item, + STATE(2372), 1, + aux_sym_mod_item_repeat1, + STATE(2909), 1, + sym_lifetime, + STATE(3422), 1, + sym_constrained_type_parameter, + STATE(2313), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [56347] = 16, - ACTIONS(29), 1, - anon_sym_LT, + STATE(3510), 2, + sym_const_parameter, + sym_optional_type_parameter, + [72314] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4173), 1, + ACTIONS(3427), 1, + anon_sym_POUND, + ACTIONS(3429), 1, + anon_sym_SQUOTE, + ACTIONS(5223), 1, sym_identifier, - ACTIONS(4175), 1, - anon_sym_LBRACE, - ACTIONS(4179), 1, - anon_sym_STAR, - ACTIONS(4185), 1, - anon_sym_COLON_COLON, - ACTIONS(4189), 1, + ACTIONS(5227), 1, + anon_sym_const, + ACTIONS(5229), 1, sym_metavariable, - STATE(2477), 1, - sym_scoped_identifier, - STATE(3166), 1, - sym__use_clause, - STATE(3423), 1, - sym_generic_type_with_turbofish, - STATE(3517), 1, - sym_bracketed_type, - STATE(1870), 2, + ACTIONS(5239), 1, + anon_sym_GT, + STATE(2189), 1, + sym_attribute_item, + STATE(2372), 1, + aux_sym_mod_item_repeat1, + STATE(2909), 1, + sym_lifetime, + STATE(3422), 1, + sym_constrained_type_parameter, + STATE(2314), 2, sym_line_comment, sym_block_comment, - ACTIONS(4187), 3, - sym_self, - sym_super, - sym_crate, - STATE(2910), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4181), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_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_gen, - anon_sym_union, - [56421] = 22, + STATE(3510), 2, + sym_const_parameter, + sym_optional_type_parameter, + [72359] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, - anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4383), 1, - anon_sym_SEMI, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(3427), 1, + anon_sym_POUND, + ACTIONS(3429), 1, + anon_sym_SQUOTE, + ACTIONS(5223), 1, + sym_identifier, + ACTIONS(5227), 1, + anon_sym_const, + ACTIONS(5229), 1, + sym_metavariable, + ACTIONS(5241), 1, anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1871), 2, + STATE(2189), 1, + sym_attribute_item, + STATE(2372), 1, + aux_sym_mod_item_repeat1, + STATE(2909), 1, + sym_lifetime, + STATE(3422), 1, + sym_constrained_type_parameter, + STATE(2315), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [56507] = 22, + STATE(3510), 2, + sym_const_parameter, + sym_optional_type_parameter, + [72404] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, - anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4385), 1, - anon_sym_RBRACK, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(3427), 1, + anon_sym_POUND, + ACTIONS(3429), 1, + anon_sym_SQUOTE, + ACTIONS(5223), 1, + sym_identifier, + ACTIONS(5227), 1, + anon_sym_const, + ACTIONS(5229), 1, + sym_metavariable, + ACTIONS(5243), 1, anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1872), 2, + STATE(2189), 1, + sym_attribute_item, + STATE(2372), 1, + aux_sym_mod_item_repeat1, + STATE(2909), 1, + sym_lifetime, + STATE(3422), 1, + sym_constrained_type_parameter, + STATE(2316), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [56593] = 22, + STATE(3510), 2, + sym_const_parameter, + sym_optional_type_parameter, + [72449] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, - anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4387), 1, - anon_sym_SEMI, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(3427), 1, + anon_sym_POUND, + ACTIONS(3429), 1, + anon_sym_SQUOTE, + ACTIONS(5223), 1, + sym_identifier, + ACTIONS(5227), 1, + anon_sym_const, + ACTIONS(5229), 1, + sym_metavariable, + ACTIONS(5245), 1, anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1873), 2, + STATE(2189), 1, + sym_attribute_item, + STATE(2372), 1, + aux_sym_mod_item_repeat1, + STATE(2909), 1, + sym_lifetime, + STATE(3422), 1, + sym_constrained_type_parameter, + STATE(2317), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [56679] = 22, + STATE(3510), 2, + sym_const_parameter, + sym_optional_type_parameter, + [72494] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, - anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4389), 1, - anon_sym_RBRACK, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(3427), 1, + anon_sym_POUND, + ACTIONS(3429), 1, + anon_sym_SQUOTE, + ACTIONS(5223), 1, + sym_identifier, + ACTIONS(5227), 1, + anon_sym_const, + ACTIONS(5229), 1, + sym_metavariable, + ACTIONS(5247), 1, anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1874), 2, + STATE(2189), 1, + sym_attribute_item, + STATE(2372), 1, + aux_sym_mod_item_repeat1, + STATE(2909), 1, + sym_lifetime, + STATE(3422), 1, + sym_constrained_type_parameter, + STATE(2318), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [56765] = 22, + STATE(3510), 2, + sym_const_parameter, + sym_optional_type_parameter, + [72539] = 10, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, - anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4391), 1, - anon_sym_RBRACK, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1875), 2, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + ACTIONS(4982), 1, + anon_sym_impl, + ACTIONS(4994), 1, + anon_sym_trait, + STATE(406), 1, + sym_block, + STATE(3944), 1, + sym_label, + STATE(2319), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [56851] = 22, + ACTIONS(3820), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [72576] = 14, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3427), 1, + anon_sym_POUND, + ACTIONS(3429), 1, + anon_sym_SQUOTE, + ACTIONS(5223), 1, + sym_identifier, + ACTIONS(5227), 1, + anon_sym_const, + ACTIONS(5229), 1, + sym_metavariable, + ACTIONS(5249), 1, + anon_sym_GT, + STATE(2189), 1, + sym_attribute_item, + STATE(2372), 1, + aux_sym_mod_item_repeat1, + STATE(2909), 1, + sym_lifetime, + STATE(3422), 1, + sym_constrained_type_parameter, + STATE(2320), 2, + sym_line_comment, + sym_block_comment, + STATE(3510), 2, + sym_const_parameter, + sym_optional_type_parameter, + [72621] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, - anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4393), 1, - anon_sym_RBRACK, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(3427), 1, + anon_sym_POUND, + ACTIONS(3429), 1, + anon_sym_SQUOTE, + ACTIONS(5223), 1, + sym_identifier, + ACTIONS(5227), 1, + anon_sym_const, + ACTIONS(5229), 1, + sym_metavariable, + ACTIONS(5251), 1, anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1876), 2, + STATE(2189), 1, + sym_attribute_item, + STATE(2372), 1, + aux_sym_mod_item_repeat1, + STATE(2909), 1, + sym_lifetime, + STATE(3422), 1, + sym_constrained_type_parameter, + STATE(2321), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [56937] = 22, + STATE(3510), 2, + sym_const_parameter, + sym_optional_type_parameter, + [72666] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, - anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4395), 1, - anon_sym_RBRACK, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(3427), 1, + anon_sym_POUND, + ACTIONS(3429), 1, + anon_sym_SQUOTE, + ACTIONS(5223), 1, + sym_identifier, + ACTIONS(5227), 1, + anon_sym_const, + ACTIONS(5229), 1, + sym_metavariable, + ACTIONS(5253), 1, anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1877), 2, + STATE(2189), 1, + sym_attribute_item, + STATE(2372), 1, + aux_sym_mod_item_repeat1, + STATE(2909), 1, + sym_lifetime, + STATE(3422), 1, + sym_constrained_type_parameter, + STATE(2322), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [57023] = 16, - ACTIONS(29), 1, - anon_sym_LT, + STATE(3510), 2, + sym_const_parameter, + sym_optional_type_parameter, + [72711] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4173), 1, + ACTIONS(3427), 1, + anon_sym_POUND, + ACTIONS(3429), 1, + anon_sym_SQUOTE, + ACTIONS(5223), 1, sym_identifier, - ACTIONS(4175), 1, - anon_sym_LBRACE, - ACTIONS(4179), 1, - anon_sym_STAR, - ACTIONS(4185), 1, - anon_sym_COLON_COLON, - ACTIONS(4189), 1, + ACTIONS(5227), 1, + anon_sym_const, + ACTIONS(5229), 1, sym_metavariable, - STATE(2477), 1, - sym_scoped_identifier, - STATE(3347), 1, - sym__use_clause, - STATE(3423), 1, - sym_generic_type_with_turbofish, - STATE(3517), 1, - sym_bracketed_type, - STATE(1878), 2, + ACTIONS(5255), 1, + anon_sym_GT, + STATE(2189), 1, + sym_attribute_item, + STATE(2372), 1, + aux_sym_mod_item_repeat1, + STATE(2909), 1, + sym_lifetime, + STATE(3422), 1, + sym_constrained_type_parameter, + STATE(2323), 2, sym_line_comment, sym_block_comment, - ACTIONS(4187), 3, - sym_self, - sym_super, - sym_crate, - STATE(2910), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4181), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_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_gen, - anon_sym_union, - [57097] = 22, + STATE(3510), 2, + sym_const_parameter, + sym_optional_type_parameter, + [72756] = 14, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, - anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4397), 1, - anon_sym_SEMI, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, + ACTIONS(3427), 1, + anon_sym_POUND, + ACTIONS(3429), 1, + anon_sym_SQUOTE, + ACTIONS(5223), 1, + sym_identifier, + ACTIONS(5227), 1, + anon_sym_const, + ACTIONS(5229), 1, + sym_metavariable, + ACTIONS(5257), 1, anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1879), 2, + STATE(2189), 1, + sym_attribute_item, + STATE(2372), 1, + aux_sym_mod_item_repeat1, + STATE(2909), 1, + sym_lifetime, + STATE(3422), 1, + sym_constrained_type_parameter, + STATE(2324), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [57183] = 22, + STATE(3510), 2, + sym_const_parameter, + sym_optional_type_parameter, + [72801] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, - anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4399), 1, - anon_sym_COMMA, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1880), 2, + ACTIONS(3427), 1, + anon_sym_POUND, + ACTIONS(3429), 1, + anon_sym_SQUOTE, + ACTIONS(5227), 1, + anon_sym_const, + ACTIONS(5259), 1, + sym_identifier, + ACTIONS(5261), 1, + sym_metavariable, + STATE(2189), 1, + sym_attribute_item, + STATE(2333), 1, + aux_sym_mod_item_repeat1, + STATE(2811), 1, + sym_lifetime, + STATE(3099), 1, + sym_constrained_type_parameter, + STATE(2325), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [57269] = 22, + STATE(3191), 2, + sym_const_parameter, + sym_optional_type_parameter, + [72843] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, - anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4401), 1, - anon_sym_SEMI, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1881), 2, + ACTIONS(5036), 1, + anon_sym_LPAREN, + ACTIONS(5038), 1, + anon_sym_BANG, + ACTIONS(5040), 1, + anon_sym_COLON_COLON, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(5263), 1, + anon_sym_for, + STATE(2221), 1, + sym_type_arguments, + STATE(2250), 1, + sym_parameters, + STATE(2326), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [57355] = 22, + ACTIONS(3737), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [72881] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, - anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(3427), 1, + anon_sym_POUND, + ACTIONS(5265), 1, + sym_identifier, + ACTIONS(5267), 1, + anon_sym_RBRACE, + ACTIONS(5269), 1, anon_sym_DOT_DOT, - ACTIONS(4403), 1, - anon_sym_SEMI, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1882), 2, + ACTIONS(5271), 1, + anon_sym_COMMA, + ACTIONS(5273), 1, + sym_integer_literal, + STATE(2189), 1, + sym_attribute_item, + STATE(2846), 1, + aux_sym_mod_item_repeat1, + STATE(2327), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [57441] = 22, + STATE(3134), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [72921] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, - anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, + ACTIONS(3741), 1, + anon_sym_COLON, + ACTIONS(5036), 1, + anon_sym_LPAREN, + ACTIONS(5038), 1, + anon_sym_BANG, + ACTIONS(5040), 1, + anon_sym_COLON_COLON, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(5275), 1, anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4405), 1, - anon_sym_SEMI, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1883), 2, + STATE(2250), 1, + sym_parameters, + STATE(2714), 1, + sym_type_arguments, + STATE(2328), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [57527] = 22, + ACTIONS(3737), 3, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + [72961] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(5279), 1, + anon_sym_COLON, + ACTIONS(5281), 1, + anon_sym_COLON_COLON, + STATE(2329), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5277), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4407), 1, - anon_sym_SEMI, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1884), 2, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [72989] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5285), 1, + anon_sym_COLON, + ACTIONS(5287), 1, + anon_sym_COLON_COLON, + STATE(2330), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [57613] = 22, + ACTIONS(5283), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [73017] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, - anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(3814), 1, anon_sym_DOT_DOT, - ACTIONS(4409), 1, - anon_sym_SEMI, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1885), 2, + ACTIONS(3810), 2, + anon_sym_LBRACE, + anon_sym_LT2, + STATE(2331), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [57699] = 22, + ACTIONS(3816), 8, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_if, + [73045] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, - anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(3799), 1, anon_sym_DOT_DOT, - ACTIONS(4197), 1, - anon_sym_SEMI, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1886), 2, + ACTIONS(3795), 2, + anon_sym_LBRACE, + anon_sym_LT2, + STATE(2332), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [57785] = 22, + ACTIONS(3801), 8, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_if, + [73073] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, - anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4411), 1, - anon_sym_SEMI, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1887), 2, + ACTIONS(3427), 1, + anon_sym_POUND, + ACTIONS(3429), 1, + anon_sym_SQUOTE, + ACTIONS(5227), 1, + anon_sym_const, + ACTIONS(5289), 1, + sym_identifier, + ACTIONS(5291), 1, + sym_metavariable, + STATE(2185), 1, + aux_sym_mod_item_repeat1, + STATE(2189), 1, + sym_attribute_item, + STATE(2805), 1, + sym_lifetime, + STATE(3089), 1, + sym_constrained_type_parameter, + STATE(2333), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [57871] = 22, + STATE(3202), 2, + sym_const_parameter, + sym_optional_type_parameter, + [73115] = 9, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, - anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4413), 1, - anon_sym_RBRACK, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1888), 2, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + ACTIONS(5293), 1, + sym_identifier, + STATE(402), 1, + sym_block, + STATE(3944), 1, + sym_label, + STATE(2334), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [57957] = 22, + ACTIONS(5295), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [73149] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, - anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, + ACTIONS(3427), 1, + anon_sym_POUND, + ACTIONS(5265), 1, + sym_identifier, + ACTIONS(5269), 1, anon_sym_DOT_DOT, - ACTIONS(4415), 1, - anon_sym_SEMI, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1889), 2, + ACTIONS(5273), 1, + sym_integer_literal, + ACTIONS(5297), 1, + anon_sym_RBRACE, + ACTIONS(5299), 1, + anon_sym_COMMA, + STATE(2189), 1, + sym_attribute_item, + STATE(2846), 1, + aux_sym_mod_item_repeat1, + STATE(2335), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [58043] = 22, + STATE(3426), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [73189] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, + STATE(2336), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1273), 11, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4417), 1, - anon_sym_RBRACK, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1890), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [58129] = 16, - ACTIONS(29), 1, - anon_sym_LT, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [73213] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4173), 1, + ACTIONS(3427), 1, + anon_sym_POUND, + ACTIONS(3429), 1, + anon_sym_SQUOTE, + ACTIONS(5227), 1, + anon_sym_const, + ACTIONS(5301), 1, sym_identifier, - ACTIONS(4175), 1, - anon_sym_LBRACE, - ACTIONS(4179), 1, - anon_sym_STAR, - ACTIONS(4185), 1, - anon_sym_COLON_COLON, - ACTIONS(4189), 1, + ACTIONS(5303), 1, sym_metavariable, - STATE(2477), 1, - sym_scoped_identifier, - STATE(3422), 1, - sym__use_clause, - STATE(3423), 1, - sym_generic_type_with_turbofish, - STATE(3517), 1, - sym_bracketed_type, - STATE(1891), 2, + STATE(2189), 1, + sym_attribute_item, + STATE(2355), 1, + aux_sym_mod_item_repeat1, + STATE(2651), 1, + sym_lifetime, + STATE(2951), 1, + sym_constrained_type_parameter, + STATE(2337), 2, sym_line_comment, sym_block_comment, - ACTIONS(4187), 3, - sym_self, - sym_super, - sym_crate, - STATE(2910), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4181), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_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_gen, - anon_sym_union, - [58203] = 22, + STATE(3324), 2, + sym_const_parameter, + sym_optional_type_parameter, + [73255] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, - anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4419), 1, - anon_sym_RBRACK, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1892), 2, + ACTIONS(5307), 1, + anon_sym_COLON, + ACTIONS(5309), 1, + anon_sym_COLON_COLON, + STATE(2338), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [58289] = 16, - ACTIONS(29), 1, - anon_sym_LT, + ACTIONS(5305), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [73283] = 9, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4173), 1, - sym_identifier, - ACTIONS(4175), 1, - anon_sym_LBRACE, - ACTIONS(4179), 1, - anon_sym_STAR, - ACTIONS(4185), 1, - anon_sym_COLON_COLON, - ACTIONS(4189), 1, - sym_metavariable, - STATE(2477), 1, - sym_scoped_identifier, - STATE(3423), 1, - sym_generic_type_with_turbofish, - STATE(3510), 1, - sym__use_clause, - STATE(3517), 1, - sym_bracketed_type, - STATE(1893), 2, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + ACTIONS(5311), 1, + anon_sym_move, + STATE(411), 1, + sym_block, + STATE(3944), 1, + sym_label, + STATE(2339), 2, sym_line_comment, sym_block_comment, - ACTIONS(4187), 3, - sym_self, - sym_super, - sym_crate, - STATE(2910), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4181), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - 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(3820), 6, + anon_sym_async, + anon_sym_const, anon_sym_default, - anon_sym_gen, - anon_sym_union, - [58363] = 22, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [73317] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, - anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4421), 1, - anon_sym_COMMA, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1894), 2, + ACTIONS(5036), 1, + anon_sym_LPAREN, + ACTIONS(5038), 1, + anon_sym_BANG, + ACTIONS(5040), 1, + anon_sym_COLON_COLON, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(5313), 1, + anon_sym_for, + STATE(2221), 1, + sym_type_arguments, + STATE(2250), 1, + sym_parameters, + STATE(2340), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [58449] = 22, + ACTIONS(3737), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [73355] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, - anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4423), 1, - anon_sym_RBRACK, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1895), 2, + ACTIONS(1353), 1, + aux_sym_string_literal_token1, + ACTIONS(5317), 1, + sym_crate, + STATE(2504), 1, + sym_string_literal, + STATE(2341), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [58535] = 22, + ACTIONS(5315), 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, + [73385] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(5175), 1, + anon_sym_COLON_COLON, + ACTIONS(5307), 1, + anon_sym_COLON, + STATE(2342), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5305), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4425), 1, - anon_sym_RBRACK, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1896), 2, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [73413] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5281), 1, + anon_sym_COLON_COLON, + ACTIONS(5307), 1, + anon_sym_COLON, + STATE(2343), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [58621] = 22, + ACTIONS(5305), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [73441] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, + ACTIONS(5175), 1, + anon_sym_COLON_COLON, + ACTIONS(5279), 1, + anon_sym_COLON, + STATE(2344), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5277), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4427), 1, - anon_sym_RBRACK, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1897), 2, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [73469] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1353), 1, + aux_sym_string_literal_token1, + ACTIONS(5319), 1, + sym_crate, + STATE(2504), 1, + sym_string_literal, + STATE(2345), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [58707] = 16, - ACTIONS(29), 1, - anon_sym_LT, + ACTIONS(5315), 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, + [73499] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4173), 1, - sym_identifier, - ACTIONS(4175), 1, - anon_sym_LBRACE, - ACTIONS(4179), 1, - anon_sym_STAR, - ACTIONS(4185), 1, + ACTIONS(5036), 1, + anon_sym_LPAREN, + ACTIONS(5038), 1, + anon_sym_BANG, + ACTIONS(5040), 1, anon_sym_COLON_COLON, - ACTIONS(4189), 1, - sym_metavariable, - STATE(2477), 1, - sym_scoped_identifier, - STATE(3423), 1, - sym_generic_type_with_turbofish, - STATE(3441), 1, - sym__use_clause, - STATE(3517), 1, - sym_bracketed_type, - STATE(1898), 2, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(5321), 1, + anon_sym_for, + STATE(2221), 1, + sym_type_arguments, + STATE(2250), 1, + sym_parameters, + STATE(2346), 2, sym_line_comment, sym_block_comment, - ACTIONS(4187), 3, - sym_self, - sym_super, - sym_crate, - STATE(2910), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4181), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_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_gen, - anon_sym_union, - [58781] = 22, + ACTIONS(3737), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [73537] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, + STATE(2347), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1269), 11, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4429), 1, - anon_sym_COMMA, - ACTIONS(3965), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1899), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [58867] = 22, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [73561] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3679), 1, - anon_sym_LBRACK, - ACTIONS(3683), 1, - anon_sym_QMARK, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_as, - ACTIONS(3969), 1, - anon_sym_CARET, - ACTIONS(3971), 1, - anon_sym_AMP, - ACTIONS(3973), 1, - anon_sym_PIPE, - ACTIONS(3975), 1, - anon_sym_AMP_AMP, - ACTIONS(3977), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3983), 1, - anon_sym_EQ, - ACTIONS(4065), 1, - anon_sym_DOT_DOT, - ACTIONS(4431), 1, + ACTIONS(5036), 1, + anon_sym_LPAREN, + ACTIONS(5038), 1, + anon_sym_BANG, + ACTIONS(5040), 1, + anon_sym_COLON_COLON, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(5323), 1, + anon_sym_for, + STATE(2221), 1, + sym_type_arguments, + STATE(2250), 1, + sym_parameters, + STATE(2348), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3737), 4, anon_sym_SEMI, - ACTIONS(3965), 2, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3979), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3987), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4067), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1900), 2, + anon_sym_where, + [73599] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5036), 1, + anon_sym_LPAREN, + ACTIONS(5038), 1, + anon_sym_BANG, + ACTIONS(5040), 1, + anon_sym_COLON_COLON, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(5325), 1, + anon_sym_for, + STATE(2221), 1, + sym_type_arguments, + STATE(2250), 1, + sym_parameters, + STATE(2349), 2, sym_line_comment, sym_block_comment, - ACTIONS(3967), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3985), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3981), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [58953] = 17, - ACTIONS(29), 1, - anon_sym_LT, + ACTIONS(3737), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [73637] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3783), 1, - anon_sym_where, - ACTIONS(4433), 1, - sym_identifier, - ACTIONS(4437), 1, + ACTIONS(5036), 1, + anon_sym_LPAREN, + ACTIONS(5038), 1, + anon_sym_BANG, + ACTIONS(5040), 1, anon_sym_COLON_COLON, - ACTIONS(4443), 1, - sym_metavariable, - STATE(2759), 1, - sym_scoped_type_identifier, - STATE(3110), 1, - sym_generic_type, - STATE(3399), 1, - sym_scoped_identifier, - STATE(3505), 1, - sym_generic_type_with_turbofish, - STATE(3532), 1, - sym_bracketed_type, - STATE(1901), 2, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(5327), 1, + anon_sym_for, + STATE(2221), 1, + sym_type_arguments, + STATE(2250), 1, + sym_parameters, + STATE(2350), 2, sym_line_comment, sym_block_comment, - ACTIONS(3781), 3, + ACTIONS(3737), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4439), 3, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - ACTIONS(4441), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(4435), 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, - [59028] = 17, - ACTIONS(29), 1, - anon_sym_LT, + anon_sym_where, + [73675] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3783), 1, - anon_sym_where, - ACTIONS(4437), 1, + ACTIONS(5036), 1, + anon_sym_LPAREN, + ACTIONS(5038), 1, + anon_sym_BANG, + ACTIONS(5040), 1, anon_sym_COLON_COLON, - ACTIONS(4443), 1, - sym_metavariable, - ACTIONS(4445), 1, - sym_identifier, - STATE(2841), 1, - sym_scoped_type_identifier, - STATE(3126), 1, - sym_generic_type, - STATE(3399), 1, - sym_scoped_identifier, - STATE(3505), 1, - sym_generic_type_with_turbofish, - STATE(3532), 1, - sym_bracketed_type, - STATE(1902), 2, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(5329), 1, + anon_sym_for, + STATE(2221), 1, + sym_type_arguments, + STATE(2250), 1, + sym_parameters, + STATE(2351), 2, sym_line_comment, sym_block_comment, - ACTIONS(3781), 3, + ACTIONS(3737), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4439), 3, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - ACTIONS(4441), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(4435), 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, - [59103] = 17, - ACTIONS(29), 1, - anon_sym_LT, + anon_sym_where, + [73713] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3783), 1, - anon_sym_where, - ACTIONS(4437), 1, - anon_sym_COLON_COLON, - ACTIONS(4443), 1, - sym_metavariable, - ACTIONS(4447), 1, - sym_identifier, - STATE(2937), 1, - sym_scoped_type_identifier, - STATE(3107), 1, - sym_generic_type, - STATE(3399), 1, - sym_scoped_identifier, - STATE(3505), 1, - sym_generic_type_with_turbofish, - STATE(3532), 1, - sym_bracketed_type, - STATE(1903), 2, + STATE(2352), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1261), 11, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [73737] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2353), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1257), 11, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [73761] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1353), 1, + aux_sym_string_literal_token1, + ACTIONS(5331), 1, + sym_crate, + STATE(2504), 1, + sym_string_literal, + STATE(2354), 2, sym_line_comment, sym_block_comment, - ACTIONS(3781), 3, + ACTIONS(5315), 8, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_PLUS, - ACTIONS(4439), 3, + anon_sym_async, + anon_sym_const, anon_sym_default, - anon_sym_gen, - anon_sym_union, - ACTIONS(4441), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(4435), 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, - [59178] = 17, - ACTIONS(29), 1, - anon_sym_LT, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [73791] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3783), 1, - anon_sym_where, - ACTIONS(4437), 1, - anon_sym_COLON_COLON, - ACTIONS(4443), 1, - sym_metavariable, - ACTIONS(4449), 1, + ACTIONS(3427), 1, + anon_sym_POUND, + ACTIONS(3429), 1, + anon_sym_SQUOTE, + ACTIONS(5227), 1, + anon_sym_const, + ACTIONS(5333), 1, sym_identifier, - STATE(3052), 1, - sym_scoped_type_identifier, - STATE(3328), 1, - sym_generic_type, - STATE(3399), 1, - sym_scoped_identifier, - STATE(3505), 1, - sym_generic_type_with_turbofish, - STATE(3532), 1, - sym_bracketed_type, - STATE(1904), 2, + ACTIONS(5335), 1, + sym_metavariable, + STATE(2185), 1, + aux_sym_mod_item_repeat1, + STATE(2189), 1, + sym_attribute_item, + STATE(2782), 1, + sym_lifetime, + STATE(3055), 1, + sym_constrained_type_parameter, + STATE(2355), 2, sym_line_comment, sym_block_comment, - ACTIONS(3781), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - ACTIONS(4439), 3, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - ACTIONS(4441), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(4435), 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, - [59253] = 17, - ACTIONS(29), 1, - anon_sym_LT, + STATE(3265), 2, + sym_const_parameter, + sym_optional_type_parameter, + [73833] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3783), 1, - anon_sym_where, - ACTIONS(4437), 1, + ACTIONS(5036), 1, + anon_sym_LPAREN, + ACTIONS(5038), 1, + anon_sym_BANG, + ACTIONS(5040), 1, anon_sym_COLON_COLON, - ACTIONS(4443), 1, - sym_metavariable, - ACTIONS(4451), 1, - sym_identifier, - STATE(3050), 1, - sym_scoped_type_identifier, - STATE(3321), 1, - sym_generic_type, - STATE(3399), 1, - sym_scoped_identifier, - STATE(3505), 1, - sym_generic_type_with_turbofish, - STATE(3532), 1, - sym_bracketed_type, - STATE(1905), 2, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(5337), 1, + anon_sym_for, + STATE(2221), 1, + sym_type_arguments, + STATE(2250), 1, + sym_parameters, + STATE(2356), 2, sym_line_comment, sym_block_comment, - ACTIONS(3781), 3, + ACTIONS(3737), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4439), 3, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - ACTIONS(4441), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(4435), 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, - [59328] = 17, - ACTIONS(29), 1, - anon_sym_LT, + anon_sym_where, + [73871] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3783), 1, - anon_sym_where, - ACTIONS(4437), 1, + ACTIONS(5279), 1, + anon_sym_COLON, + ACTIONS(5309), 1, anon_sym_COLON_COLON, - ACTIONS(4443), 1, - sym_metavariable, - ACTIONS(4453), 1, - sym_identifier, - STATE(2764), 1, - sym_scoped_type_identifier, - STATE(3263), 1, - sym_generic_type, - STATE(3399), 1, - sym_scoped_identifier, - STATE(3505), 1, - sym_generic_type_with_turbofish, - STATE(3532), 1, - sym_bracketed_type, - STATE(1906), 2, + STATE(2357), 2, sym_line_comment, sym_block_comment, - ACTIONS(3781), 3, + ACTIONS(5277), 9, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - ACTIONS(4439), 3, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - ACTIONS(4441), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(4435), 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, - [59403] = 17, - ACTIONS(29), 1, - anon_sym_LT, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [73899] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3783), 1, - anon_sym_where, - ACTIONS(4437), 1, + ACTIONS(5287), 1, anon_sym_COLON_COLON, - ACTIONS(4443), 1, - sym_metavariable, - ACTIONS(4455), 1, - sym_identifier, - STATE(3042), 1, - sym_scoped_type_identifier, - STATE(3316), 1, - sym_generic_type, - STATE(3399), 1, - sym_scoped_identifier, - STATE(3505), 1, - sym_generic_type_with_turbofish, - STATE(3532), 1, - sym_bracketed_type, - STATE(1907), 2, + ACTIONS(5341), 1, + anon_sym_COLON, + STATE(2358), 2, sym_line_comment, sym_block_comment, - ACTIONS(3781), 3, + ACTIONS(5339), 9, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - ACTIONS(4439), 3, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - ACTIONS(4441), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(4435), 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, - [59478] = 17, - ACTIONS(29), 1, - anon_sym_LT, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [73927] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3783), 1, - anon_sym_where, - ACTIONS(4437), 1, + ACTIONS(5036), 1, + anon_sym_LPAREN, + ACTIONS(5038), 1, + anon_sym_BANG, + ACTIONS(5040), 1, anon_sym_COLON_COLON, - ACTIONS(4443), 1, - sym_metavariable, - ACTIONS(4457), 1, - sym_identifier, - STATE(3048), 1, - sym_scoped_type_identifier, - STATE(3319), 1, - sym_generic_type, - STATE(3399), 1, - sym_scoped_identifier, - STATE(3505), 1, - sym_generic_type_with_turbofish, - STATE(3532), 1, - sym_bracketed_type, - STATE(1908), 2, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(5343), 1, + anon_sym_for, + STATE(2221), 1, + sym_type_arguments, + STATE(2250), 1, + sym_parameters, + STATE(2359), 2, sym_line_comment, sym_block_comment, - ACTIONS(3781), 3, + ACTIONS(3737), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - ACTIONS(4439), 3, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - ACTIONS(4441), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(4435), 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, - [59553] = 5, + anon_sym_where, + [73965] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1909), 2, + ACTIONS(1353), 1, + aux_sym_string_literal_token1, + ACTIONS(5345), 1, + sym_crate, + STATE(2504), 1, + sym_string_literal, + STATE(2360), 2, sym_line_comment, sym_block_comment, - ACTIONS(4461), 3, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(4459), 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, + ACTIONS(5315), 8, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, - anon_sym_gen, - anon_sym_union, anon_sym_unsafe, anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [59600] = 5, + [73995] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1910), 2, + ACTIONS(5036), 1, + anon_sym_LPAREN, + ACTIONS(5038), 1, + anon_sym_BANG, + ACTIONS(5040), 1, + anon_sym_COLON_COLON, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(5347), 1, + anon_sym_for, + STATE(2221), 1, + sym_type_arguments, + STATE(2250), 1, + sym_parameters, + STATE(2361), 2, sym_line_comment, sym_block_comment, - ACTIONS(4465), 3, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(4463), 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_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_gen, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [59647] = 5, + ACTIONS(3737), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [74033] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1911), 2, + ACTIONS(5036), 1, + anon_sym_LPAREN, + ACTIONS(5038), 1, + anon_sym_BANG, + ACTIONS(5040), 1, + anon_sym_COLON_COLON, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(5349), 1, + anon_sym_for, + STATE(2221), 1, + sym_type_arguments, + STATE(2250), 1, + sym_parameters, + STATE(2362), 2, sym_line_comment, sym_block_comment, - ACTIONS(4469), 3, - anon_sym_LT, - anon_sym_COLON_COLON, - sym_metavariable, - ACTIONS(4467), 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_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_gen, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - sym_identifier, - sym_self, - sym_super, - sym_crate, - [59694] = 13, - ACTIONS(29), 1, - anon_sym_LT, + ACTIONS(3737), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [74071] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2471), 1, + ACTIONS(5036), 1, + anon_sym_LPAREN, + ACTIONS(5038), 1, + anon_sym_BANG, + ACTIONS(5040), 1, anon_sym_COLON_COLON, - ACTIONS(4471), 1, - sym_identifier, - ACTIONS(4477), 1, - sym_metavariable, - STATE(2268), 1, - sym_scoped_identifier, - STATE(3353), 1, - sym_bracketed_type, - STATE(3379), 1, - sym_generic_type_with_turbofish, - STATE(3393), 1, - sym_attribute, - STATE(1912), 2, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(5351), 1, + anon_sym_for, + STATE(2221), 1, + sym_type_arguments, + STATE(2250), 1, + sym_parameters, + STATE(2363), 2, sym_line_comment, sym_block_comment, - ACTIONS(4475), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(4473), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_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_gen, - anon_sym_union, - [59756] = 13, - ACTIONS(29), 1, - anon_sym_LT, + ACTIONS(3737), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [74109] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2471), 1, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(5064), 1, + anon_sym_COLON, + ACTIONS(5066), 1, + anon_sym_BANG, + ACTIONS(5068), 1, + anon_sym_DOT_DOT, + ACTIONS(5072), 1, anon_sym_COLON_COLON, - ACTIONS(4471), 1, - sym_identifier, - ACTIONS(4477), 1, - sym_metavariable, - STATE(2268), 1, - sym_scoped_identifier, - STATE(3353), 1, - sym_bracketed_type, - STATE(3379), 1, - sym_generic_type_with_turbofish, - STATE(3541), 1, - sym_attribute, - STATE(1913), 2, + STATE(2226), 1, + sym_type_arguments, + ACTIONS(5070), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2364), 2, sym_line_comment, sym_block_comment, - ACTIONS(4475), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(4473), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_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_gen, - anon_sym_union, - [59818] = 13, - ACTIONS(29), 1, - anon_sym_LT, + ACTIONS(5062), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [74147] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2471), 1, - anon_sym_COLON_COLON, - ACTIONS(4471), 1, - sym_identifier, - ACTIONS(4477), 1, - sym_metavariable, - STATE(2268), 1, - sym_scoped_identifier, - STATE(3353), 1, - sym_bracketed_type, - STATE(3379), 1, - sym_generic_type_with_turbofish, - STATE(3425), 1, - sym_attribute, - STATE(1914), 2, + ACTIONS(3791), 1, + anon_sym_DOT_DOT, + ACTIONS(3787), 2, + anon_sym_LBRACE, + anon_sym_LT2, + STATE(2365), 2, sym_line_comment, sym_block_comment, - ACTIONS(4475), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(4473), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_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_gen, - anon_sym_union, - [59880] = 13, - ACTIONS(29), 1, - anon_sym_LT, + ACTIONS(3793), 8, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_if, + [74175] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2471), 1, - anon_sym_COLON_COLON, - ACTIONS(4471), 1, - sym_identifier, - ACTIONS(4477), 1, - sym_metavariable, - STATE(2268), 1, - sym_scoped_identifier, - STATE(3353), 1, - sym_bracketed_type, - STATE(3360), 1, - sym_attribute, - STATE(3379), 1, - sym_generic_type_with_turbofish, - STATE(1915), 2, + ACTIONS(1353), 1, + aux_sym_string_literal_token1, + ACTIONS(5353), 1, + sym_crate, + STATE(2504), 1, + sym_string_literal, + STATE(2366), 2, sym_line_comment, sym_block_comment, - ACTIONS(4475), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(4473), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - 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(5315), 8, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_async, + anon_sym_const, anon_sym_default, - anon_sym_gen, - anon_sym_union, - [59942] = 13, - ACTIONS(29), 1, - anon_sym_LT, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [74205] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2471), 1, - anon_sym_COLON_COLON, - ACTIONS(4471), 1, + ACTIONS(3427), 1, + anon_sym_POUND, + ACTIONS(3429), 1, + anon_sym_SQUOTE, + ACTIONS(5227), 1, + anon_sym_const, + ACTIONS(5301), 1, sym_identifier, - ACTIONS(4477), 1, + ACTIONS(5303), 1, sym_metavariable, - STATE(2268), 1, - sym_scoped_identifier, - STATE(3353), 1, - sym_bracketed_type, - STATE(3379), 1, - sym_generic_type_with_turbofish, - STATE(3449), 1, - sym_attribute, - STATE(1916), 2, + STATE(2189), 1, + sym_attribute_item, + STATE(2355), 1, + aux_sym_mod_item_repeat1, + STATE(2763), 1, + sym_lifetime, + STATE(2951), 1, + sym_constrained_type_parameter, + STATE(2367), 2, sym_line_comment, sym_block_comment, - ACTIONS(4475), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(4473), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_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_gen, - anon_sym_union, - [60004] = 13, - ACTIONS(29), 1, - anon_sym_LT, + STATE(3324), 2, + sym_const_parameter, + sym_optional_type_parameter, + [74247] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2471), 1, - anon_sym_COLON_COLON, - ACTIONS(4471), 1, - sym_identifier, - ACTIONS(4477), 1, - sym_metavariable, - STATE(2268), 1, - sym_scoped_identifier, - STATE(3353), 1, - sym_bracketed_type, - STATE(3370), 1, - sym_attribute, - STATE(3379), 1, - sym_generic_type_with_turbofish, - STATE(1917), 2, + ACTIONS(1353), 1, + aux_sym_string_literal_token1, + ACTIONS(5355), 1, + sym_crate, + STATE(2504), 1, + sym_string_literal, + STATE(2368), 2, sym_line_comment, sym_block_comment, - ACTIONS(4475), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(4473), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - 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(5315), 8, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_async, + anon_sym_const, anon_sym_default, - anon_sym_gen, - anon_sym_union, - [60066] = 13, - ACTIONS(29), 1, - anon_sym_LT, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [74277] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2471), 1, - anon_sym_COLON_COLON, - ACTIONS(4471), 1, - sym_identifier, - ACTIONS(4477), 1, - sym_metavariable, - STATE(2268), 1, - sym_scoped_identifier, - STATE(3353), 1, - sym_bracketed_type, - STATE(3379), 1, - sym_generic_type_with_turbofish, - STATE(3448), 1, - sym_attribute, - STATE(1918), 2, + ACTIONS(3771), 1, + anon_sym_DOT_DOT, + ACTIONS(3767), 2, + anon_sym_LBRACE, + anon_sym_LT2, + STATE(2369), 2, sym_line_comment, sym_block_comment, - ACTIONS(4475), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(4473), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_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_gen, - anon_sym_union, - [60128] = 13, - ACTIONS(29), 1, - anon_sym_LT, + ACTIONS(3773), 8, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_if, + [74305] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2471), 1, - anon_sym_COLON_COLON, - ACTIONS(4471), 1, + ACTIONS(3427), 1, + anon_sym_POUND, + ACTIONS(3429), 1, + anon_sym_SQUOTE, + ACTIONS(5223), 1, sym_identifier, - ACTIONS(4477), 1, + ACTIONS(5227), 1, + anon_sym_const, + ACTIONS(5229), 1, sym_metavariable, - STATE(2268), 1, - sym_scoped_identifier, - STATE(3353), 1, - sym_bracketed_type, - STATE(3379), 1, - sym_generic_type_with_turbofish, - STATE(3453), 1, - sym_attribute, - STATE(1919), 2, + STATE(2189), 1, + sym_attribute_item, + STATE(2372), 1, + aux_sym_mod_item_repeat1, + STATE(2909), 1, + sym_lifetime, + STATE(3422), 1, + sym_constrained_type_parameter, + STATE(2370), 2, sym_line_comment, sym_block_comment, - ACTIONS(4475), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(4473), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_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_gen, - anon_sym_union, - [60190] = 12, - ACTIONS(29), 1, - anon_sym_LT, + STATE(3510), 2, + sym_const_parameter, + sym_optional_type_parameter, + [74347] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4479), 1, - sym_identifier, - ACTIONS(4483), 1, - anon_sym_COLON_COLON, - ACTIONS(4487), 1, - sym_metavariable, - STATE(3099), 1, - sym_scoped_identifier, - STATE(3423), 1, - sym_generic_type_with_turbofish, - STATE(3517), 1, - sym_bracketed_type, - STATE(1920), 2, + STATE(2371), 2, sym_line_comment, sym_block_comment, - ACTIONS(4485), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(4481), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_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_gen, - anon_sym_union, - [60249] = 12, - ACTIONS(29), 1, - anon_sym_LT, + ACTIONS(1265), 11, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [74371] = 13, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4483), 1, - anon_sym_COLON_COLON, - ACTIONS(4489), 1, + ACTIONS(3427), 1, + anon_sym_POUND, + ACTIONS(3429), 1, + anon_sym_SQUOTE, + ACTIONS(5227), 1, + anon_sym_const, + ACTIONS(5357), 1, sym_identifier, - ACTIONS(4495), 1, + ACTIONS(5359), 1, sym_metavariable, - STATE(3202), 1, - sym_scoped_identifier, - STATE(3423), 1, - sym_generic_type_with_turbofish, - STATE(3517), 1, - sym_bracketed_type, - STATE(1921), 2, + STATE(2185), 1, + aux_sym_mod_item_repeat1, + STATE(2189), 1, + sym_attribute_item, + STATE(2992), 1, + sym_lifetime, + STATE(3330), 1, + sym_constrained_type_parameter, + STATE(2372), 2, sym_line_comment, sym_block_comment, - ACTIONS(4493), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(4491), 20, - anon_sym_u8, - anon_sym_i8, - anon_sym_u16, - anon_sym_i16, - anon_sym_u32, - anon_sym_i32, - anon_sym_u64, - anon_sym_i64, - anon_sym_u128, - anon_sym_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_gen, - anon_sym_union, - [60308] = 11, + STATE(3710), 2, + sym_const_parameter, + sym_optional_type_parameter, + [74413] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3299), 1, - anon_sym_COLON, - ACTIONS(4497), 1, - anon_sym_LPAREN, - ACTIONS(4499), 1, - anon_sym_BANG, - ACTIONS(4501), 1, - anon_sym_COLON_COLON, - ACTIONS(4503), 1, - anon_sym_LT2, - STATE(1953), 1, - sym_type_arguments, - STATE(1982), 1, - sym_parameters, - STATE(1922), 2, + STATE(2373), 2, sym_line_comment, sym_block_comment, - ACTIONS(3295), 14, + ACTIONS(5361), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_PLUS, + anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, anon_sym_else, - [60356] = 5, + anon_sym_in, + [74436] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1011), 1, - anon_sym_DOT_DOT, - STATE(1923), 2, + STATE(2374), 2, sym_line_comment, sym_block_comment, - ACTIONS(1013), 20, + ACTIONS(5363), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, anon_sym_else, anon_sym_in, - [60392] = 5, + [74459] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1027), 1, - anon_sym_DOT_DOT, - STATE(1924), 2, + STATE(2375), 2, sym_line_comment, sym_block_comment, - ACTIONS(1029), 20, + ACTIONS(5365), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, anon_sym_else, anon_sym_in, - [60428] = 6, + [74482] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3370), 1, - anon_sym_COLON, - ACTIONS(3374), 2, - anon_sym_BANG, - anon_sym_COLON_COLON, - STATE(1925), 2, + STATE(2376), 2, sym_line_comment, sym_block_comment, - ACTIONS(3368), 17, + ACTIONS(5367), 10, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_PLUS, + anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_for, - anon_sym_where, anon_sym_else, - anon_sym_LT2, - [60465] = 10, + anon_sym_in, + [74505] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3319), 1, - anon_sym_COLON, - ACTIONS(4497), 1, - anon_sym_LPAREN, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(4505), 1, - anon_sym_COLON_COLON, - STATE(1953), 1, - sym_type_arguments, - STATE(1982), 1, - sym_parameters, - STATE(1926), 2, + STATE(2377), 2, sym_line_comment, sym_block_comment, - ACTIONS(3317), 14, + ACTIONS(5369), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_PLUS, + anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, anon_sym_else, - [60510] = 10, + anon_sym_in, + [74528] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3309), 1, + STATE(2378), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5371), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_COLON, - ACTIONS(4497), 1, - anon_sym_LPAREN, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(4505), 1, - anon_sym_COLON_COLON, - STATE(1953), 1, - sym_type_arguments, - STATE(1982), 1, - sym_parameters, - STATE(1927), 2, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [74551] = 13, + ACTIONS(69), 1, + anon_sym_pub, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3427), 1, + anon_sym_POUND, + ACTIONS(5373), 1, + sym_identifier, + ACTIONS(5375), 1, + anon_sym_RBRACE, + ACTIONS(5377), 1, + anon_sym_COMMA, + ACTIONS(5379), 1, + sym_crate, + STATE(2189), 1, + sym_attribute_item, + STATE(2487), 1, + aux_sym_mod_item_repeat1, + STATE(3152), 1, + sym_field_declaration, + STATE(4084), 1, + sym_visibility_modifier, + STATE(2379), 2, + sym_line_comment, + sym_block_comment, + [74592] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2380), 2, sym_line_comment, sym_block_comment, - ACTIONS(3307), 14, + ACTIONS(5381), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_PLUS, + anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, anon_sym_else, - [60555] = 6, + anon_sym_in, + [74615] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3331), 1, - anon_sym_COLON, - ACTIONS(3335), 2, - anon_sym_BANG, - anon_sym_COLON_COLON, - STATE(1928), 2, + STATE(2381), 2, sym_line_comment, sym_block_comment, - ACTIONS(3329), 17, + ACTIONS(5383), 10, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_PLUS, + anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_for, - anon_sym_where, anon_sym_else, - anon_sym_LT2, - [60592] = 10, + anon_sym_in, + [74638] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3315), 1, - anon_sym_COLON, - ACTIONS(4497), 1, - anon_sym_LPAREN, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(4505), 1, - anon_sym_COLON_COLON, - STATE(1953), 1, - sym_type_arguments, - STATE(1982), 1, - sym_parameters, - STATE(1929), 2, + STATE(2382), 2, sym_line_comment, sym_block_comment, - ACTIONS(3313), 14, + ACTIONS(5385), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_PLUS, + anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, anon_sym_else, - [60637] = 6, + anon_sym_in, + [74661] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3343), 1, - anon_sym_COLON, - ACTIONS(3347), 2, - anon_sym_BANG, - anon_sym_COLON_COLON, - STATE(1930), 2, + STATE(2383), 2, sym_line_comment, sym_block_comment, - ACTIONS(3341), 17, + ACTIONS(5387), 10, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_PLUS, + anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_for, - anon_sym_where, anon_sym_else, - anon_sym_LT2, - [60674] = 14, + anon_sym_in, + [74684] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4499), 1, - anon_sym_BANG, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(4509), 1, - anon_sym_LPAREN, - ACTIONS(4511), 1, - anon_sym_LBRACE, - ACTIONS(4513), 1, - anon_sym_COLON, - ACTIONS(4515), 1, - anon_sym_AT, - ACTIONS(4517), 1, - anon_sym_DOT_DOT, - ACTIONS(4521), 1, - anon_sym_COLON_COLON, - STATE(1953), 1, - sym_type_arguments, - ACTIONS(4519), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1931), 2, + STATE(2384), 2, sym_line_comment, sym_block_comment, - ACTIONS(4507), 9, + ACTIONS(5389), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, anon_sym_COMMA, anon_sym_else, anon_sym_in, - [60727] = 6, + [74707] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3351), 1, - anon_sym_COLON, - ACTIONS(3355), 2, - anon_sym_BANG, - anon_sym_COLON_COLON, - STATE(1932), 2, + STATE(2385), 2, sym_line_comment, sym_block_comment, - ACTIONS(3349), 17, + ACTIONS(5391), 10, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_PLUS, + anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_for, - anon_sym_where, anon_sym_else, - anon_sym_LT2, - [60764] = 8, + anon_sym_in, + [74730] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4497), 1, - anon_sym_LPAREN, - ACTIONS(4503), 1, - anon_sym_LT2, - STATE(1955), 1, - sym_type_arguments, - STATE(1975), 1, - sym_parameters, - STATE(1933), 2, + STATE(2386), 2, sym_line_comment, sym_block_comment, - ACTIONS(3337), 15, + ACTIONS(5393), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COLON, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, anon_sym_else, - [60804] = 6, + anon_sym_in, + [74753] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3372), 2, - anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(1934), 2, + STATE(2387), 2, sym_line_comment, sym_block_comment, - ACTIONS(3368), 3, - anon_sym_LBRACE, - anon_sym_for, - anon_sym_LT2, - ACTIONS(3374), 14, + ACTIONS(5395), 10, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_BANG, + anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [60840] = 8, + [74776] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4497), 1, - anon_sym_LPAREN, - ACTIONS(4503), 1, - anon_sym_LT2, - STATE(1955), 1, - sym_type_arguments, - STATE(1975), 1, - sym_parameters, - STATE(1935), 2, + STATE(2388), 2, sym_line_comment, sym_block_comment, - ACTIONS(3357), 15, + ACTIONS(5397), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COLON, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, anon_sym_else, - [60880] = 8, + anon_sym_in, + [74799] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4497), 1, - anon_sym_LPAREN, - ACTIONS(4503), 1, - anon_sym_LT2, - STATE(1955), 1, - sym_type_arguments, - STATE(1975), 1, - sym_parameters, - STATE(1936), 2, + STATE(2389), 2, sym_line_comment, sym_block_comment, - ACTIONS(3321), 15, + ACTIONS(5399), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COLON, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, anon_sym_else, - [60920] = 6, + anon_sym_in, + [74822] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3345), 2, - anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(1937), 2, + STATE(2390), 2, sym_line_comment, sym_block_comment, - ACTIONS(3341), 3, - anon_sym_LBRACE, - anon_sym_for, - anon_sym_LT2, - ACTIONS(3347), 14, + ACTIONS(5401), 10, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_BANG, + anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [60956] = 8, + [74845] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4497), 1, - anon_sym_LPAREN, - ACTIONS(4503), 1, + ACTIONS(5042), 1, anon_sym_LT2, - STATE(1955), 1, + ACTIONS(5066), 1, + anon_sym_BANG, + ACTIONS(5068), 1, + anon_sym_DOT_DOT, + ACTIONS(5163), 1, + anon_sym_COLON_COLON, + STATE(2226), 1, sym_type_arguments, - STATE(1975), 1, - sym_parameters, - STATE(1938), 2, + ACTIONS(5070), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2391), 2, sym_line_comment, sym_block_comment, - ACTIONS(3325), 15, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(5062), 3, anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PLUS, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, - anon_sym_else, - [60996] = 6, + [74880] = 13, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3353), 2, - anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(1939), 2, + ACTIONS(3427), 1, + anon_sym_POUND, + ACTIONS(5373), 1, + sym_identifier, + ACTIONS(5379), 1, + sym_crate, + ACTIONS(5403), 1, + anon_sym_RBRACE, + ACTIONS(5405), 1, + anon_sym_COMMA, + STATE(2189), 1, + sym_attribute_item, + STATE(2502), 1, + aux_sym_mod_item_repeat1, + STATE(3219), 1, + sym_field_declaration, + STATE(4084), 1, + sym_visibility_modifier, + STATE(2392), 2, sym_line_comment, sym_block_comment, - ACTIONS(3349), 3, - anon_sym_LBRACE, - anon_sym_for, + [74921] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3747), 1, anon_sym_LT2, - ACTIONS(3355), 14, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(3954), 1, + anon_sym_COLON_COLON, + ACTIONS(5407), 1, anon_sym_BANG, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, + STATE(1437), 1, + sym_type_arguments, + STATE(2393), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3820), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [74952] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(5066), 1, + anon_sym_BANG, + ACTIONS(5151), 1, anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_in, - [61032] = 6, + STATE(2226), 1, + sym_type_arguments, + STATE(2394), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3820), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [74983] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3333), 2, - anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(1940), 2, + STATE(2395), 2, sym_line_comment, sym_block_comment, - ACTIONS(3329), 3, - anon_sym_LBRACE, - anon_sym_for, - anon_sym_LT2, - ACTIONS(3335), 14, + ACTIONS(5409), 10, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_BANG, + anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [61068] = 5, + [75006] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3353), 2, - anon_sym_COLON, + ACTIONS(3427), 1, + anon_sym_POUND, + ACTIONS(5265), 1, + sym_identifier, + ACTIONS(5269), 1, anon_sym_DOT_DOT, - STATE(1941), 2, + ACTIONS(5273), 1, + sym_integer_literal, + ACTIONS(5411), 1, + anon_sym_RBRACE, + STATE(2189), 1, + sym_attribute_item, + STATE(2846), 1, + aux_sym_mod_item_repeat1, + STATE(2396), 2, sym_line_comment, sym_block_comment, - ACTIONS(3355), 16, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_in, - [61101] = 5, + STATE(3581), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [75043] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3345), 2, + ACTIONS(5038), 1, + anon_sym_BANG, + ACTIONS(5046), 1, + anon_sym_LPAREN, + ACTIONS(5050), 1, anon_sym_COLON, + ACTIONS(5054), 1, anon_sym_DOT_DOT, - STATE(1942), 2, + ACTIONS(5413), 1, + anon_sym_COLON_COLON, + ACTIONS(5056), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2397), 2, sym_line_comment, sym_block_comment, - ACTIONS(3347), 16, - anon_sym_SEMI, - anon_sym_LPAREN, + ACTIONS(5044), 3, anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_in, - [61134] = 5, + [75078] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3333), 2, - anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(1943), 2, + STATE(2398), 2, sym_line_comment, sym_block_comment, - ACTIONS(3335), 16, + ACTIONS(5305), 10, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_BANG, + anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [61167] = 5, + [75101] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3372), 2, - anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(1944), 2, + STATE(2399), 2, sym_line_comment, sym_block_comment, - ACTIONS(3374), 16, + ACTIONS(5415), 10, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_BANG, + anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [61200] = 5, + [75124] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3605), 1, - anon_sym_COLON, - STATE(1945), 2, + ACTIONS(5036), 1, + anon_sym_LPAREN, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(5417), 1, + anon_sym_LBRACE, + STATE(2219), 1, + sym_type_arguments, + STATE(2244), 1, + sym_parameters, + STATE(2400), 2, sym_line_comment, sym_block_comment, - ACTIONS(3603), 17, + ACTIONS(3775), 5, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_for, - anon_sym_where, - anon_sym_else, - [61233] = 5, + [75157] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3619), 1, - anon_sym_COLON, - STATE(1946), 2, + STATE(2401), 2, sym_line_comment, sym_block_comment, - ACTIONS(3617), 17, + ACTIONS(5419), 10, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_PLUS, + anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_for, - anon_sym_where, anon_sym_else, - [61266] = 5, + anon_sym_in, + [75180] = 13, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3639), 1, - anon_sym_COLON, - STATE(1947), 2, + ACTIONS(3427), 1, + anon_sym_POUND, + ACTIONS(5379), 1, + sym_crate, + ACTIONS(5421), 1, + sym_identifier, + ACTIONS(5423), 1, + anon_sym_RBRACE, + ACTIONS(5425), 1, + anon_sym_COMMA, + STATE(2189), 1, + sym_attribute_item, + STATE(2485), 1, + aux_sym_mod_item_repeat1, + STATE(3189), 1, + sym_enum_variant, + STATE(3821), 1, + sym_visibility_modifier, + STATE(2402), 2, + sym_line_comment, + sym_block_comment, + [75221] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2403), 2, sym_line_comment, sym_block_comment, - ACTIONS(3637), 17, + ACTIONS(5427), 10, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_PLUS, + anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_for, - anon_sym_where, anon_sym_else, - [61299] = 4, + anon_sym_in, + [75244] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1948), 2, + STATE(2404), 2, sym_line_comment, sym_block_comment, - ACTIONS(3341), 18, + ACTIONS(1437), 10, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COLON, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_for, - anon_sym_where, anon_sym_else, - anon_sym_LT2, - [61330] = 5, + anon_sym_in, + [75267] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3631), 1, - anon_sym_COLON, - STATE(1949), 2, + STATE(2405), 2, sym_line_comment, sym_block_comment, - ACTIONS(3629), 17, + ACTIONS(5429), 10, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_PLUS, + anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_for, - anon_sym_where, anon_sym_else, - [61363] = 19, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4525), 1, - anon_sym_const, - ACTIONS(4527), 1, - anon_sym_enum, - ACTIONS(4529), 1, - anon_sym_fn, - ACTIONS(4531), 1, - anon_sym_mod, - ACTIONS(4533), 1, - anon_sym_static, - ACTIONS(4535), 1, - anon_sym_struct, - ACTIONS(4537), 1, - anon_sym_trait, - ACTIONS(4539), 1, - anon_sym_type, - ACTIONS(4541), 1, - anon_sym_union, - ACTIONS(4543), 1, - anon_sym_unsafe, - ACTIONS(4545), 1, - anon_sym_use, - ACTIONS(4547), 1, - anon_sym_extern, - STATE(2181), 1, - sym_extern_modifier, - STATE(2239), 1, - aux_sym_function_modifiers_repeat1, - STATE(3564), 1, - sym_function_modifiers, - ACTIONS(4523), 2, - anon_sym_async, - anon_sym_default, - STATE(1950), 2, - sym_line_comment, - sym_block_comment, - [61423] = 11, + anon_sym_in, + [75290] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, + ACTIONS(4413), 1, anon_sym_LT2, - ACTIONS(4551), 1, - anon_sym_COLON, - ACTIONS(4553), 1, - anon_sym_BANG, - ACTIONS(4555), 1, - anon_sym_DOT_DOT, - ACTIONS(4559), 1, + ACTIONS(4615), 1, anon_sym_COLON_COLON, - STATE(1952), 1, + ACTIONS(5431), 1, + anon_sym_BANG, + STATE(1873), 1, sym_type_arguments, - ACTIONS(4557), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1951), 2, + STATE(2406), 2, sym_line_comment, sym_block_comment, - ACTIONS(4549), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [61467] = 5, + ACTIONS(3820), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [75321] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3543), 1, - anon_sym_COLON, - STATE(1952), 2, + STATE(2407), 2, sym_line_comment, sym_block_comment, - ACTIONS(3541), 16, + ACTIONS(5433), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_PLUS, + anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_for, - anon_sym_where, anon_sym_else, - [61499] = 5, + anon_sym_in, + [75344] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3555), 1, - anon_sym_COLON, - STATE(1953), 2, + STATE(2408), 2, sym_line_comment, sym_block_comment, - ACTIONS(3553), 16, + ACTIONS(5435), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_PLUS, + anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_for, - anon_sym_where, anon_sym_else, - [61531] = 19, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4561), 1, - anon_sym_const, - ACTIONS(4563), 1, - anon_sym_enum, - ACTIONS(4565), 1, - anon_sym_fn, - ACTIONS(4567), 1, - anon_sym_mod, - ACTIONS(4569), 1, - anon_sym_static, - ACTIONS(4571), 1, - anon_sym_struct, - ACTIONS(4573), 1, - anon_sym_trait, - ACTIONS(4575), 1, - anon_sym_type, - ACTIONS(4577), 1, - anon_sym_union, - ACTIONS(4579), 1, - anon_sym_unsafe, - ACTIONS(4581), 1, - anon_sym_use, - ACTIONS(4583), 1, - anon_sym_extern, - STATE(2170), 1, - sym_extern_modifier, - STATE(2239), 1, - aux_sym_function_modifiers_repeat1, - STATE(3629), 1, - sym_function_modifiers, - ACTIONS(4523), 2, - anon_sym_async, - anon_sym_default, - STATE(1954), 2, - sym_line_comment, - sym_block_comment, - [61591] = 5, + anon_sym_in, + [75367] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3559), 1, - anon_sym_COLON, - STATE(1955), 2, + STATE(2409), 2, sym_line_comment, sym_block_comment, - ACTIONS(3557), 16, + ACTIONS(5044), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_PLUS, + anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_for, - anon_sym_where, anon_sym_else, - [61623] = 12, + anon_sym_in, + [75390] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(4551), 1, - anon_sym_COLON, - ACTIONS(4553), 1, - anon_sym_BANG, - ACTIONS(4555), 1, + ACTIONS(3427), 1, + anon_sym_POUND, + ACTIONS(5265), 1, + sym_identifier, + ACTIONS(5269), 1, anon_sym_DOT_DOT, - ACTIONS(4585), 1, - anon_sym_COLON_COLON, - STATE(1952), 1, - sym_type_arguments, - ACTIONS(4557), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1956), 2, + ACTIONS(5273), 1, + sym_integer_literal, + ACTIONS(5437), 1, + anon_sym_RBRACE, + STATE(2189), 1, + sym_attribute_item, + STATE(2846), 1, + aux_sym_mod_item_repeat1, + STATE(2410), 2, sym_line_comment, sym_block_comment, - ACTIONS(4549), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - ACTIONS(3458), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [61669] = 6, + STATE(3581), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [75427] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3323), 1, - anon_sym_COLON, - ACTIONS(4587), 1, - anon_sym_COLON_COLON, - STATE(1957), 2, + STATE(2411), 2, sym_line_comment, sym_block_comment, - ACTIONS(3321), 14, + ACTIONS(5439), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_PLUS, + anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, anon_sym_else, - [61702] = 4, + anon_sym_in, + [75450] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1958), 2, + STATE(2412), 2, sym_line_comment, sym_block_comment, - ACTIONS(3581), 16, + ACTIONS(5441), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COLON, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, anon_sym_else, - [61731] = 5, + anon_sym_in, + [75473] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4589), 1, - anon_sym_DASH_GT, - STATE(1959), 2, + STATE(2413), 2, sym_line_comment, sym_block_comment, - ACTIONS(3585), 15, + ACTIONS(5443), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COLON, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, anon_sym_else, - [61762] = 5, + anon_sym_in, + [75496] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4591), 1, - anon_sym_DASH_GT, - STATE(1960), 2, + STATE(2414), 2, sym_line_comment, sym_block_comment, - ACTIONS(3591), 15, + ACTIONS(5445), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COLON, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, anon_sym_else, - [61793] = 5, + anon_sym_in, + [75519] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4593), 1, - anon_sym_DASH_GT, - STATE(1961), 2, + ACTIONS(3427), 1, + anon_sym_POUND, + ACTIONS(5265), 1, + sym_identifier, + ACTIONS(5269), 1, + anon_sym_DOT_DOT, + ACTIONS(5273), 1, + sym_integer_literal, + ACTIONS(5447), 1, + anon_sym_RBRACE, + STATE(2189), 1, + sym_attribute_item, + STATE(2846), 1, + aux_sym_mod_item_repeat1, + STATE(2415), 2, sym_line_comment, sym_block_comment, - ACTIONS(3597), 15, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, + STATE(3581), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [75556] = 13, + ACTIONS(69), 1, + anon_sym_pub, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3427), 1, + anon_sym_POUND, + ACTIONS(5379), 1, + sym_crate, + ACTIONS(5421), 1, + sym_identifier, + ACTIONS(5449), 1, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, + ACTIONS(5451), 1, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, - anon_sym_else, - [61824] = 6, + STATE(2189), 1, + sym_attribute_item, + STATE(2550), 1, + aux_sym_mod_item_repeat1, + STATE(3320), 1, + sym_enum_variant, + STATE(3821), 1, + sym_visibility_modifier, + STATE(2416), 2, + sym_line_comment, + sym_block_comment, + [75597] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3323), 1, - anon_sym_COLON, - ACTIONS(4595), 1, - anon_sym_COLON_COLON, - STATE(1962), 2, + STATE(2417), 2, sym_line_comment, sym_block_comment, - ACTIONS(3321), 14, + ACTIONS(5453), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_PLUS, + anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, anon_sym_else, - [61857] = 10, + anon_sym_in, + [75620] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4499), 1, - anon_sym_BANG, - ACTIONS(4509), 1, - anon_sym_LPAREN, - ACTIONS(4513), 1, - anon_sym_COLON, - ACTIONS(4517), 1, - anon_sym_DOT_DOT, - ACTIONS(4597), 1, - anon_sym_COLON_COLON, - ACTIONS(4519), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1963), 2, + ACTIONS(1601), 1, + anon_sym_LBRACE, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + STATE(2404), 1, + sym_block, + STATE(4107), 1, + sym_label, + STATE(2418), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3820), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [75651] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2419), 2, sym_line_comment, sym_block_comment, - ACTIONS(4507), 9, + ACTIONS(5277), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, anon_sym_COMMA, anon_sym_else, anon_sym_in, - [61898] = 4, + [75674] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1964), 2, + STATE(2420), 2, sym_line_comment, sym_block_comment, - ACTIONS(1475), 16, + ACTIONS(5455), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COLON, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, anon_sym_else, anon_sym_in, - [61927] = 5, + [75697] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4599), 1, - anon_sym_DASH_GT, - STATE(1965), 2, + STATE(2421), 2, sym_line_comment, sym_block_comment, - ACTIONS(3561), 15, + ACTIONS(5457), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_COLON, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, anon_sym_else, - [61958] = 6, + anon_sym_in, + [75720] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3359), 1, - anon_sym_COLON, - ACTIONS(4595), 1, - anon_sym_COLON_COLON, - STATE(1966), 2, + STATE(2422), 2, sym_line_comment, sym_block_comment, - ACTIONS(3357), 14, + ACTIONS(5459), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_PLUS, + anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, anon_sym_else, - [61991] = 16, + anon_sym_in, + [75743] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4499), 1, - anon_sym_BANG, - ACTIONS(4503), 1, + ACTIONS(5042), 1, anon_sym_LT2, - ACTIONS(4511), 1, - anon_sym_LBRACE, - ACTIONS(4515), 1, - anon_sym_AT, - ACTIONS(4517), 1, + ACTIONS(5461), 1, + anon_sym_BANG, + ACTIONS(5463), 1, anon_sym_DOT_DOT, - ACTIONS(4601), 1, - anon_sym_LPAREN, - ACTIONS(4603), 1, - anon_sym_RBRACK, - ACTIONS(4606), 1, + ACTIONS(5467), 1, anon_sym_COLON_COLON, - STATE(1953), 1, + STATE(2226), 1, sym_type_arguments, - STATE(1982), 1, - sym_parameters, - ACTIONS(3295), 2, + ACTIONS(5465), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2423), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5062), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [75778] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3427), 1, + anon_sym_POUND, + ACTIONS(5265), 1, + sym_identifier, + ACTIONS(5269), 1, + anon_sym_DOT_DOT, + ACTIONS(5273), 1, + sym_integer_literal, + ACTIONS(5469), 1, + anon_sym_RBRACE, + STATE(2189), 1, + sym_attribute_item, + STATE(2846), 1, + aux_sym_mod_item_repeat1, + STATE(2424), 2, + sym_line_comment, + sym_block_comment, + STATE(3581), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [75815] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5471), 1, anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(4507), 2, + ACTIONS(5473), 1, + anon_sym_LBRACE, + STATE(1559), 1, + sym_declaration_list, + STATE(2425), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3820), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [75843] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3791), 1, + anon_sym_DOT_DOT, + STATE(2426), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3793), 8, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_BANG, anon_sym_PIPE, - anon_sym_COMMA, - ACTIONS(4519), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1967), 2, + anon_sym_COLON_COLON, + anon_sym_if, + [75867] = 12, + ACTIONS(69), 1, + anon_sym_pub, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3427), 1, + anon_sym_POUND, + ACTIONS(5373), 1, + sym_identifier, + ACTIONS(5379), 1, + sym_crate, + ACTIONS(5475), 1, + anon_sym_RBRACE, + STATE(2189), 1, + sym_attribute_item, + STATE(2520), 1, + aux_sym_mod_item_repeat1, + STATE(3741), 1, + sym_field_declaration, + STATE(4084), 1, + sym_visibility_modifier, + STATE(2427), 2, sym_line_comment, sym_block_comment, - [62044] = 17, + [75905] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3295), 1, - anon_sym_PLUS, - ACTIONS(4499), 1, - anon_sym_BANG, - ACTIONS(4503), 1, + ACTIONS(3747), 1, anon_sym_LT2, - ACTIONS(4507), 1, - anon_sym_PIPE, - ACTIONS(4511), 1, + ACTIONS(5477), 1, + anon_sym_COLON_COLON, + STATE(1437), 1, + sym_type_arguments, + STATE(2428), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3820), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [75933] = 12, + ACTIONS(69), 1, + anon_sym_pub, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3427), 1, + anon_sym_POUND, + ACTIONS(5379), 1, + sym_crate, + ACTIONS(5421), 1, + sym_identifier, + ACTIONS(5479), 1, + anon_sym_RBRACE, + STATE(2189), 1, + sym_attribute_item, + STATE(2510), 1, + aux_sym_mod_item_repeat1, + STATE(3692), 1, + sym_enum_variant, + STATE(3821), 1, + sym_visibility_modifier, + STATE(2429), 2, + sym_line_comment, + sym_block_comment, + [75971] = 12, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5481), 1, + anon_sym_SEMI, + ACTIONS(5483), 1, + anon_sym_LPAREN, + ACTIONS(5485), 1, anon_sym_LBRACE, - ACTIONS(4513), 1, - anon_sym_COLON, - ACTIONS(4515), 1, - anon_sym_AT, - ACTIONS(4517), 1, - anon_sym_DOT_DOT, - ACTIONS(4608), 1, + ACTIONS(5487), 1, + anon_sym_LT, + ACTIONS(5489), 1, + anon_sym_where, + STATE(571), 1, + sym_field_declaration_list, + STATE(2583), 1, + sym_type_parameters, + STATE(3423), 1, + sym_ordered_field_declaration_list, + STATE(3642), 1, + sym_where_clause, + STATE(2430), 2, + sym_line_comment, + sym_block_comment, + [76009] = 12, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5483), 1, anon_sym_LPAREN, - ACTIONS(4610), 1, - anon_sym_COLON_COLON, - STATE(1953), 1, + ACTIONS(5485), 1, + anon_sym_LBRACE, + ACTIONS(5487), 1, + anon_sym_LT, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5491), 1, + anon_sym_SEMI, + STATE(821), 1, + sym_field_declaration_list, + STATE(2561), 1, + sym_type_parameters, + STATE(3289), 1, + sym_ordered_field_declaration_list, + STATE(3770), 1, + sym_where_clause, + STATE(2431), 2, + sym_line_comment, + sym_block_comment, + [76047] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5036), 1, + anon_sym_LPAREN, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(5493), 1, + anon_sym_for, + STATE(2219), 1, sym_type_arguments, - STATE(1982), 1, + STATE(2244), 1, sym_parameters, - ACTIONS(4519), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4603), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(1968), 2, + STATE(2432), 2, sym_line_comment, sym_block_comment, - [62099] = 4, + ACTIONS(3775), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [76079] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1969), 2, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(5495), 1, + anon_sym_COLON_COLON, + STATE(2226), 1, + sym_type_arguments, + STATE(2433), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3820), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [76107] = 10, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3427), 1, + anon_sym_POUND, + ACTIONS(5265), 1, + sym_identifier, + ACTIONS(5269), 1, + anon_sym_DOT_DOT, + ACTIONS(5273), 1, + sym_integer_literal, + STATE(2189), 1, + sym_attribute_item, + STATE(2846), 1, + aux_sym_mod_item_repeat1, + STATE(2434), 2, + sym_line_comment, + sym_block_comment, + STATE(3581), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [76141] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5036), 1, + anon_sym_LPAREN, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(5497), 1, + anon_sym_for, + STATE(2219), 1, + sym_type_arguments, + STATE(2244), 1, + sym_parameters, + STATE(2435), 2, sym_line_comment, sym_block_comment, - ACTIONS(1415), 16, + ACTIONS(3775), 4, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, anon_sym_where, - anon_sym_else, - anon_sym_in, - [62128] = 6, + [76173] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3323), 1, - anon_sym_COLON, - ACTIONS(4612), 1, + ACTIONS(5038), 1, + anon_sym_BANG, + ACTIONS(5046), 1, + anon_sym_LPAREN, + ACTIONS(5054), 1, + anon_sym_DOT_DOT, + ACTIONS(5499), 1, anon_sym_COLON_COLON, - STATE(1970), 2, + ACTIONS(5056), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2436), 2, sym_line_comment, sym_block_comment, - ACTIONS(3321), 14, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(5044), 3, anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, - anon_sym_else, - [62161] = 4, + [76205] = 12, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1971), 2, + ACTIONS(3427), 1, + anon_sym_POUND, + ACTIONS(5373), 1, + sym_identifier, + ACTIONS(5379), 1, + sym_crate, + ACTIONS(5501), 1, + anon_sym_RBRACE, + STATE(2189), 1, + sym_attribute_item, + STATE(2520), 1, + aux_sym_mod_item_repeat1, + STATE(3741), 1, + sym_field_declaration, + STATE(4084), 1, + sym_visibility_modifier, + STATE(2437), 2, sym_line_comment, sym_block_comment, - ACTIONS(1047), 16, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, - anon_sym_else, - anon_sym_in, - [62190] = 5, + [76243] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4614), 1, - anon_sym_LPAREN, - STATE(1972), 2, + ACTIONS(5473), 1, + anon_sym_LBRACE, + ACTIONS(5503), 1, + anon_sym_SEMI, + STATE(1415), 1, + sym_declaration_list, + STATE(2438), 2, sym_line_comment, sym_block_comment, - ACTIONS(4035), 15, + ACTIONS(3820), 6, 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, - [62221] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(1973), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3621), 16, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, - anon_sym_else, - [62250] = 16, + [76271] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4499), 1, - anon_sym_BANG, - ACTIONS(4503), 1, + ACTIONS(5042), 1, anon_sym_LT2, - ACTIONS(4507), 1, + ACTIONS(5062), 1, anon_sym_PIPE, - ACTIONS(4511), 1, - anon_sym_LBRACE, - ACTIONS(4513), 1, + ACTIONS(5064), 1, anon_sym_COLON, - ACTIONS(4515), 1, - anon_sym_AT, - ACTIONS(4517), 1, + ACTIONS(5066), 1, + anon_sym_BANG, + ACTIONS(5068), 1, anon_sym_DOT_DOT, - ACTIONS(4616), 1, - anon_sym_LPAREN, - ACTIONS(4618), 1, + ACTIONS(5173), 1, anon_sym_COLON_COLON, - STATE(1953), 1, + STATE(2226), 1, sym_type_arguments, - STATE(1982), 1, - sym_parameters, - ACTIONS(4519), 2, + ACTIONS(5070), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1974), 2, + STATE(2439), 2, sym_line_comment, sym_block_comment, - ACTIONS(3295), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [62303] = 5, + [76307] = 12, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4620), 1, - anon_sym_DASH_GT, - STATE(1975), 2, + ACTIONS(3427), 1, + anon_sym_POUND, + ACTIONS(5373), 1, + sym_identifier, + ACTIONS(5379), 1, + sym_crate, + ACTIONS(5505), 1, + anon_sym_RBRACE, + STATE(2189), 1, + sym_attribute_item, + STATE(2520), 1, + aux_sym_mod_item_repeat1, + STATE(3741), 1, + sym_field_declaration, + STATE(4084), 1, + sym_visibility_modifier, + STATE(2440), 2, sym_line_comment, sym_block_comment, - ACTIONS(3573), 15, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, - anon_sym_else, - [62334] = 4, + [76345] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1976), 2, + ACTIONS(5036), 1, + anon_sym_LPAREN, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(5507), 1, + anon_sym_for, + STATE(2219), 1, + sym_type_arguments, + STATE(2244), 1, + sym_parameters, + STATE(2441), 2, sym_line_comment, sym_block_comment, - ACTIONS(1051), 16, + ACTIONS(3775), 4, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, anon_sym_where, - anon_sym_else, - anon_sym_in, - [62363] = 4, + [76377] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1977), 2, + ACTIONS(5511), 1, + anon_sym_PLUS, + STATE(2451), 1, + aux_sym_trait_bounds_repeat1, + STATE(2442), 2, sym_line_comment, sym_block_comment, - ACTIONS(3641), 16, + ACTIONS(5509), 7, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_SQUOTE, - anon_sym_as, anon_sym_where, - anon_sym_else, - [62392] = 6, + [76403] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3327), 1, - anon_sym_COLON, - ACTIONS(4595), 1, - anon_sym_COLON_COLON, - STATE(1978), 2, + ACTIONS(5036), 1, + anon_sym_LPAREN, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(5513), 1, + anon_sym_for, + STATE(2219), 1, + sym_type_arguments, + STATE(2244), 1, + sym_parameters, + STATE(2443), 2, sym_line_comment, sym_block_comment, - ACTIONS(3325), 14, + ACTIONS(3775), 4, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, anon_sym_where, - anon_sym_else, - [62425] = 4, + [76435] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1979), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3607), 16, + ACTIONS(5483), 1, + anon_sym_LPAREN, + ACTIONS(5487), 1, + anon_sym_LT, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5515), 1, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(5517), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, - anon_sym_else, - [62454] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3339), 1, - anon_sym_COLON, - ACTIONS(4595), 1, - anon_sym_COLON_COLON, - STATE(1980), 2, + STATE(1518), 1, + sym_field_declaration_list, + STATE(2554), 1, + sym_type_parameters, + STATE(3176), 1, + sym_ordered_field_declaration_list, + STATE(3541), 1, + sym_where_clause, + STATE(2444), 2, sym_line_comment, sym_block_comment, - ACTIONS(3337), 14, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, - anon_sym_else, - [62487] = 5, + [76473] = 12, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4622), 1, - anon_sym_DASH_GT, - STATE(1981), 2, + ACTIONS(5483), 1, + anon_sym_LPAREN, + ACTIONS(5487), 1, + anon_sym_LT, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5517), 1, + anon_sym_LBRACE, + ACTIONS(5519), 1, + anon_sym_SEMI, + STATE(1438), 1, + sym_field_declaration_list, + STATE(2563), 1, + sym_type_parameters, + STATE(3357), 1, + sym_ordered_field_declaration_list, + STATE(3663), 1, + sym_where_clause, + STATE(2445), 2, sym_line_comment, sym_block_comment, - ACTIONS(3611), 15, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, - anon_sym_else, - [62518] = 5, + [76511] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4624), 1, - anon_sym_DASH_GT, - STATE(1982), 2, + ACTIONS(3799), 1, + anon_sym_DOT_DOT, + STATE(2446), 2, sym_line_comment, sym_block_comment, - ACTIONS(3567), 15, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PLUS, + ACTIONS(3801), 8, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_BANG, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, - anon_sym_else, - [62549] = 11, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_if, + [76535] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(4553), 1, - anon_sym_BANG, - ACTIONS(4555), 1, - anon_sym_DOT_DOT, - ACTIONS(4626), 1, - anon_sym_COLON_COLON, - STATE(1952), 1, - sym_type_arguments, - ACTIONS(4557), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1983), 2, + ACTIONS(5521), 1, + anon_sym_SEMI, + ACTIONS(5523), 1, + anon_sym_LBRACE, + STATE(544), 1, + sym_declaration_list, + STATE(2447), 2, sym_line_comment, sym_block_comment, - ACTIONS(4549), 3, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_COMMA, - ACTIONS(3458), 6, + ACTIONS(3820), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [62592] = 4, + [76563] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1984), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3633), 16, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(5068), 1, + anon_sym_DOT_DOT, + ACTIONS(5163), 1, + anon_sym_COLON_COLON, + ACTIONS(5525), 1, anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, + ACTIONS(3775), 2, + anon_sym_SEMI, anon_sym_PLUS, + ACTIONS(5062), 2, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, - anon_sym_else, - [62621] = 4, + ACTIONS(5070), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2448), 2, + sym_line_comment, + sym_block_comment, + [76595] = 12, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1985), 2, + ACTIONS(3427), 1, + anon_sym_POUND, + ACTIONS(5379), 1, + sym_crate, + ACTIONS(5421), 1, + sym_identifier, + ACTIONS(5528), 1, + anon_sym_RBRACE, + STATE(2189), 1, + sym_attribute_item, + STATE(2510), 1, + aux_sym_mod_item_repeat1, + STATE(3692), 1, + sym_enum_variant, + STATE(3821), 1, + sym_visibility_modifier, + STATE(2449), 2, sym_line_comment, sym_block_comment, - ACTIONS(3813), 15, - anon_sym_SEMI, + [76633] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5530), 1, + anon_sym_LPAREN, + ACTIONS(5535), 1, + anon_sym_LBRACK, + ACTIONS(5538), 1, + anon_sym_LBRACE, + STATE(3904), 1, + sym_macro_rule, + STATE(4058), 1, + sym_token_tree_pattern, + ACTIONS(5533), 3, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, - anon_sym_else, - [62649] = 4, + STATE(2450), 3, + sym_line_comment, + sym_block_comment, + aux_sym_macro_definition_repeat1, + [76665] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1986), 2, + ACTIONS(5543), 1, + anon_sym_PLUS, + STATE(2451), 3, sym_line_comment, sym_block_comment, - ACTIONS(3781), 15, + aux_sym_trait_bounds_repeat1, + ACTIONS(5541), 7, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, anon_sym_SQUOTE, - anon_sym_as, anon_sym_where, - anon_sym_else, - [62677] = 4, + [76689] = 12, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1987), 2, + ACTIONS(3427), 1, + anon_sym_POUND, + ACTIONS(5373), 1, + sym_identifier, + ACTIONS(5379), 1, + sym_crate, + ACTIONS(5546), 1, + anon_sym_RBRACE, + STATE(2189), 1, + sym_attribute_item, + STATE(2520), 1, + aux_sym_mod_item_repeat1, + STATE(3741), 1, + sym_field_declaration, + STATE(4084), 1, + sym_visibility_modifier, + STATE(2452), 2, sym_line_comment, sym_block_comment, - ACTIONS(4046), 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, - [62705] = 5, + [76727] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3963), 1, - anon_sym_COLON_COLON, - STATE(1988), 2, + ACTIONS(5036), 1, + anon_sym_LPAREN, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(5548), 1, + anon_sym_for, + STATE(2219), 1, + sym_type_arguments, + STATE(2244), 1, + sym_parameters, + STATE(2453), 2, sym_line_comment, sym_block_comment, - ACTIONS(4037), 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, - [62735] = 4, + ACTIONS(3775), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [76759] = 12, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1989), 2, + ACTIONS(3427), 1, + anon_sym_POUND, + ACTIONS(5379), 1, + sym_crate, + ACTIONS(5421), 1, + sym_identifier, + ACTIONS(5550), 1, + anon_sym_RBRACE, + STATE(2189), 1, + sym_attribute_item, + STATE(2510), 1, + aux_sym_mod_item_repeat1, + STATE(3692), 1, + sym_enum_variant, + STATE(3821), 1, + sym_visibility_modifier, + STATE(2454), 2, sym_line_comment, sym_block_comment, - ACTIONS(3689), 15, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, - anon_sym_else, - [62763] = 12, + [76797] = 12, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(4549), 1, - anon_sym_PIPE, - ACTIONS(4551), 1, - anon_sym_COLON, - ACTIONS(4553), 1, - anon_sym_BANG, - ACTIONS(4555), 1, - anon_sym_DOT_DOT, - ACTIONS(4628), 1, - anon_sym_COLON_COLON, - STATE(1952), 1, - sym_type_arguments, - ACTIONS(4557), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1990), 2, + ACTIONS(3427), 1, + anon_sym_POUND, + ACTIONS(5379), 1, + sym_crate, + ACTIONS(5421), 1, + sym_identifier, + ACTIONS(5552), 1, + anon_sym_RBRACE, + STATE(2189), 1, + sym_attribute_item, + STATE(2510), 1, + aux_sym_mod_item_repeat1, + STATE(3692), 1, + sym_enum_variant, + STATE(3821), 1, + sym_visibility_modifier, + STATE(2455), 2, + sym_line_comment, + sym_block_comment, + [76835] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5473), 1, + anon_sym_LBRACE, + ACTIONS(5554), 1, + anon_sym_SEMI, + STATE(1535), 1, + sym_declaration_list, + STATE(2456), 2, sym_line_comment, sym_block_comment, - ACTIONS(3458), 6, + ACTIONS(3820), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [62807] = 4, + [76863] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1991), 2, + ACTIONS(3771), 1, + anon_sym_DOT_DOT, + STATE(2457), 2, sym_line_comment, sym_block_comment, - ACTIONS(3321), 15, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PLUS, + ACTIONS(3773), 8, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_BANG, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, - anon_sym_else, - [62835] = 4, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_if, + [76887] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1992), 2, + ACTIONS(5036), 1, + anon_sym_LPAREN, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(5556), 1, + anon_sym_for, + STATE(2219), 1, + sym_type_arguments, + STATE(2244), 1, + sym_parameters, + STATE(2458), 2, sym_line_comment, sym_block_comment, - ACTIONS(3701), 15, + ACTIONS(3775), 4, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, anon_sym_where, - anon_sym_else, - [62863] = 4, + [76919] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1993), 2, + ACTIONS(5036), 1, + anon_sym_LPAREN, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(5558), 1, + anon_sym_for, + STATE(2219), 1, + sym_type_arguments, + STATE(2244), 1, + sym_parameters, + STATE(2459), 2, sym_line_comment, sym_block_comment, - ACTIONS(3855), 15, + ACTIONS(3775), 4, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, anon_sym_where, - anon_sym_else, - [62891] = 4, + [76951] = 12, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1994), 2, + ACTIONS(3427), 1, + anon_sym_POUND, + ACTIONS(5379), 1, + sym_crate, + ACTIONS(5421), 1, + sym_identifier, + ACTIONS(5560), 1, + anon_sym_RBRACE, + STATE(2189), 1, + sym_attribute_item, + STATE(2510), 1, + aux_sym_mod_item_repeat1, + STATE(3692), 1, + sym_enum_variant, + STATE(3821), 1, + sym_visibility_modifier, + STATE(2460), 2, sym_line_comment, sym_block_comment, - ACTIONS(3357), 15, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, - anon_sym_else, - [62919] = 4, + [76989] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1995), 2, + ACTIONS(5192), 1, + anon_sym_LPAREN, + ACTIONS(5196), 1, + anon_sym_BANG, + ACTIONS(5200), 1, + anon_sym_DOT_DOT, + ACTIONS(5562), 1, + anon_sym_COLON_COLON, + ACTIONS(5202), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2461), 2, sym_line_comment, sym_block_comment, - ACTIONS(3325), 15, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PLUS, + ACTIONS(5044), 3, + anon_sym_EQ_GT, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, - anon_sym_else, - [62947] = 4, + anon_sym_if, + [77021] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1996), 2, + ACTIONS(3814), 1, + anon_sym_DOT_DOT, + STATE(2462), 2, sym_line_comment, sym_block_comment, - ACTIONS(3809), 15, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PLUS, + ACTIONS(3816), 8, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_BANG, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, - anon_sym_else, - [62975] = 4, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_if, + [77045] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1997), 2, + ACTIONS(5062), 1, + anon_sym_PIPE, + ACTIONS(5064), 1, + anon_sym_COLON, + ACTIONS(5068), 1, + anon_sym_DOT_DOT, + ACTIONS(5173), 1, + anon_sym_COLON_COLON, + ACTIONS(5070), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2463), 2, sym_line_comment, sym_block_comment, - ACTIONS(3697), 15, - anon_sym_SEMI, + ACTIONS(3775), 3, anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, - anon_sym_else, - [63003] = 4, + [77077] = 12, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1998), 2, + ACTIONS(3427), 1, + anon_sym_POUND, + ACTIONS(5373), 1, + sym_identifier, + ACTIONS(5379), 1, + sym_crate, + ACTIONS(5564), 1, + anon_sym_RBRACE, + STATE(2189), 1, + sym_attribute_item, + STATE(2520), 1, + aux_sym_mod_item_repeat1, + STATE(3741), 1, + sym_field_declaration, + STATE(4084), 1, + sym_visibility_modifier, + STATE(2464), 2, sym_line_comment, sym_block_comment, - ACTIONS(3863), 15, + [77115] = 12, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5483), 1, + anon_sym_LPAREN, + ACTIONS(5487), 1, + anon_sym_LT, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5517), 1, + anon_sym_LBRACE, + ACTIONS(5566), 1, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, + STATE(1569), 1, + sym_field_declaration_list, + STATE(2555), 1, + sym_type_parameters, + STATE(3241), 1, + sym_ordered_field_declaration_list, + STATE(3640), 1, + sym_where_clause, + STATE(2465), 2, + sym_line_comment, + sym_block_comment, + [77153] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5523), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, - anon_sym_else, - [63031] = 4, + ACTIONS(5568), 1, + anon_sym_SEMI, + STATE(766), 1, + sym_declaration_list, + STATE(2466), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3820), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [77181] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(1999), 2, + ACTIONS(5036), 1, + anon_sym_LPAREN, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(5570), 1, + anon_sym_for, + STATE(2219), 1, + sym_type_arguments, + STATE(2244), 1, + sym_parameters, + STATE(2467), 2, sym_line_comment, sym_block_comment, - ACTIONS(3705), 15, + ACTIONS(3775), 4, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, anon_sym_where, - anon_sym_else, - [63059] = 4, + [77213] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2000), 2, + ACTIONS(4413), 1, + anon_sym_LT2, + ACTIONS(5572), 1, + anon_sym_COLON_COLON, + STATE(1873), 1, + sym_type_arguments, + STATE(2468), 2, sym_line_comment, sym_block_comment, - ACTIONS(4031), 15, + ACTIONS(3820), 6, 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, - [63087] = 4, + [77241] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2001), 2, + ACTIONS(5576), 1, + anon_sym_PLUS, + STATE(2442), 1, + aux_sym_trait_bounds_repeat1, + STATE(2469), 2, sym_line_comment, sym_block_comment, - ACTIONS(3761), 15, + ACTIONS(5574), 7, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, anon_sym_SQUOTE, - anon_sym_as, anon_sym_where, - anon_sym_else, - [63115] = 4, + [77267] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2002), 2, + ACTIONS(5036), 1, + anon_sym_LPAREN, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(5578), 1, + anon_sym_for, + STATE(2219), 1, + sym_type_arguments, + STATE(2244), 1, + sym_parameters, + STATE(2470), 2, sym_line_comment, sym_block_comment, - ACTIONS(3765), 15, + ACTIONS(3775), 4, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, anon_sym_where, - anon_sym_else, - [63143] = 4, + [77299] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2003), 2, + ACTIONS(5036), 1, + anon_sym_LPAREN, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(5580), 1, + anon_sym_for, + STATE(2219), 1, + sym_type_arguments, + STATE(2244), 1, + sym_parameters, + STATE(2471), 2, sym_line_comment, sym_block_comment, - ACTIONS(3769), 15, + ACTIONS(3775), 4, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, anon_sym_where, - anon_sym_else, - [63171] = 4, + [77331] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2004), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3817), 15, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, + ACTIONS(3775), 1, anon_sym_PLUS, + ACTIONS(5062), 1, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, + ACTIONS(5064), 1, + anon_sym_COLON, + ACTIONS(5068), 1, + anon_sym_DOT_DOT, + ACTIONS(5072), 1, + anon_sym_COLON_COLON, + ACTIONS(5070), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5525), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, - anon_sym_else, - [63199] = 4, + STATE(2472), 2, + sym_line_comment, + sym_block_comment, + [77365] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2005), 2, + ACTIONS(5523), 1, + anon_sym_LBRACE, + ACTIONS(5582), 1, + anon_sym_SEMI, + STATE(554), 1, + sym_declaration_list, + STATE(2473), 2, sym_line_comment, sym_block_comment, - ACTIONS(3337), 15, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, - anon_sym_else, - [63227] = 4, + ACTIONS(3820), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [77393] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2006), 2, + ACTIONS(5511), 1, + anon_sym_PLUS, + STATE(2442), 1, + aux_sym_trait_bounds_repeat1, + STATE(2474), 2, sym_line_comment, sym_block_comment, - ACTIONS(3859), 15, + ACTIONS(5574), 7, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, anon_sym_SQUOTE, - anon_sym_as, anon_sym_where, - anon_sym_else, - [63255] = 4, + [77419] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2007), 2, + ACTIONS(5036), 1, + anon_sym_LPAREN, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(5584), 1, + anon_sym_for, + STATE(2219), 1, + sym_type_arguments, + STATE(2244), 1, + sym_parameters, + STATE(2475), 2, sym_line_comment, sym_block_comment, - ACTIONS(3693), 15, + ACTIONS(3775), 4, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, anon_sym_where, - anon_sym_else, - [63283] = 4, + [77451] = 12, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2008), 2, + ACTIONS(3427), 1, + anon_sym_POUND, + ACTIONS(5373), 1, + sym_identifier, + ACTIONS(5379), 1, + sym_crate, + ACTIONS(5586), 1, + anon_sym_RBRACE, + STATE(2189), 1, + sym_attribute_item, + STATE(2520), 1, + aux_sym_mod_item_repeat1, + STATE(3741), 1, + sym_field_declaration, + STATE(4084), 1, + sym_visibility_modifier, + STATE(2476), 2, sym_line_comment, sym_block_comment, - ACTIONS(3867), 15, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, - anon_sym_else, - [63311] = 4, + [77489] = 12, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2009), 2, + ACTIONS(3427), 1, + anon_sym_POUND, + ACTIONS(5379), 1, + sym_crate, + ACTIONS(5421), 1, + sym_identifier, + ACTIONS(5588), 1, + anon_sym_RBRACE, + STATE(2189), 1, + sym_attribute_item, + STATE(2510), 1, + aux_sym_mod_item_repeat1, + STATE(3692), 1, + sym_enum_variant, + STATE(3821), 1, + sym_visibility_modifier, + STATE(2477), 2, sym_line_comment, sym_block_comment, - ACTIONS(3777), 15, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, + [77527] = 12, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5483), 1, + anon_sym_LPAREN, + ACTIONS(5485), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, + ACTIONS(5487), 1, + anon_sym_LT, + ACTIONS(5489), 1, anon_sym_where, - anon_sym_else, - [63339] = 4, + ACTIONS(5590), 1, + anon_sym_SEMI, + STATE(528), 1, + sym_field_declaration_list, + STATE(2589), 1, + sym_type_parameters, + STATE(3332), 1, + sym_ordered_field_declaration_list, + STATE(3703), 1, + sym_where_clause, + STATE(2478), 2, + sym_line_comment, + sym_block_comment, + [77565] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2010), 2, + ACTIONS(5036), 1, + anon_sym_LPAREN, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(5592), 1, + anon_sym_for, + STATE(2219), 1, + sym_type_arguments, + STATE(2244), 1, + sym_parameters, + STATE(2479), 2, sym_line_comment, sym_block_comment, - ACTIONS(3785), 15, + ACTIONS(3775), 4, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, anon_sym_where, - anon_sym_else, - [63367] = 4, + [77597] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2011), 2, + ACTIONS(5594), 1, + anon_sym_PLUS, + STATE(2442), 1, + aux_sym_trait_bounds_repeat1, + STATE(2480), 2, sym_line_comment, sym_block_comment, - ACTIONS(3851), 15, + ACTIONS(5574), 7, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, anon_sym_SQUOTE, - anon_sym_as, anon_sym_where, - anon_sym_else, - [63395] = 4, + [77623] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2012), 2, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5523), 1, + anon_sym_LBRACE, + ACTIONS(5596), 1, + anon_sym_COLON, + ACTIONS(5598), 1, + anon_sym_LT, + STATE(522), 1, + sym_declaration_list, + STATE(2686), 1, + sym_type_parameters, + STATE(2941), 1, + sym_trait_bounds, + STATE(3701), 1, + sym_where_clause, + STATE(2481), 2, sym_line_comment, sym_block_comment, - ACTIONS(3877), 15, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, + [77658] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5596), 1, anon_sym_COLON, - anon_sym_PLUS, - anon_sym_PIPE, + ACTIONS(5598), 1, + anon_sym_LT, + ACTIONS(5600), 1, + anon_sym_SEMI, + ACTIONS(5602), 1, anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, - anon_sym_else, - [63423] = 5, + STATE(2680), 1, + sym_type_parameters, + STATE(3337), 1, + sym_trait_bounds, + STATE(3866), 1, + sym_where_clause, + STATE(2482), 2, + sym_line_comment, + sym_block_comment, + [77693] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4630), 1, + ACTIONS(5287), 1, anon_sym_COLON_COLON, - STATE(2013), 2, + ACTIONS(5461), 1, + anon_sym_BANG, + STATE(2483), 2, sym_line_comment, sym_block_comment, - ACTIONS(4037), 14, + ACTIONS(3820), 6, 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, - [63453] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2014), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3705), 15, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, - anon_sym_else, - [63481] = 4, + [77718] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2015), 2, + ACTIONS(5014), 1, + anon_sym_impl, + ACTIONS(5024), 1, + anon_sym_trait, + STATE(2484), 2, sym_line_comment, sym_block_comment, - ACTIONS(4042), 15, + ACTIONS(3820), 6, 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, - [63509] = 4, + [77743] = 11, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2016), 2, + ACTIONS(3427), 1, + anon_sym_POUND, + ACTIONS(5379), 1, + sym_crate, + ACTIONS(5421), 1, + sym_identifier, + STATE(2185), 1, + aux_sym_mod_item_repeat1, + STATE(2189), 1, + sym_attribute_item, + STATE(3300), 1, + sym_enum_variant, + STATE(3821), 1, + sym_visibility_modifier, + STATE(2485), 2, sym_line_comment, sym_block_comment, - ACTIONS(3725), 15, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, - anon_sym_else, - [63537] = 8, + [77778] = 11, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4551), 1, - anon_sym_COLON, - ACTIONS(4555), 1, - anon_sym_DOT_DOT, - ACTIONS(4559), 1, - anon_sym_COLON_COLON, - ACTIONS(4557), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2017), 2, + ACTIONS(3427), 1, + anon_sym_POUND, + ACTIONS(5379), 1, + sym_crate, + ACTIONS(5421), 1, + sym_identifier, + STATE(2189), 1, + sym_attribute_item, + STATE(2510), 1, + aux_sym_mod_item_repeat1, + STATE(3692), 1, + sym_enum_variant, + STATE(3821), 1, + sym_visibility_modifier, + STATE(2486), 2, sym_line_comment, sym_block_comment, - ACTIONS(4549), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [63572] = 16, + [77813] = 11, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4497), 1, - anon_sym_LPAREN, - ACTIONS(4499), 1, - anon_sym_BANG, - ACTIONS(4501), 1, - anon_sym_COLON_COLON, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(4632), 1, - anon_sym_COLON, - ACTIONS(4634), 1, - anon_sym_EQ, - ACTIONS(4636), 1, - anon_sym_GT, - ACTIONS(4638), 1, - anon_sym_COMMA, - STATE(1953), 1, - sym_type_arguments, - STATE(1982), 1, - sym_parameters, - STATE(2809), 1, - sym_trait_bounds, - STATE(2811), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3295), 2, - anon_sym_PLUS, - anon_sym_as, - STATE(2018), 2, + ACTIONS(3427), 1, + anon_sym_POUND, + ACTIONS(5373), 1, + sym_identifier, + ACTIONS(5379), 1, + sym_crate, + STATE(2185), 1, + aux_sym_mod_item_repeat1, + STATE(2189), 1, + sym_attribute_item, + STATE(3411), 1, + sym_field_declaration, + STATE(4084), 1, + sym_visibility_modifier, + STATE(2487), 2, sym_line_comment, sym_block_comment, - [63623] = 5, + [77848] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1023), 1, - anon_sym_DOT_DOT, - STATE(2019), 2, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5604), 1, + anon_sym_SEMI, + ACTIONS(5606), 1, + anon_sym_LBRACE, + ACTIONS(5608), 1, + anon_sym_PLUS, + STATE(1266), 1, + sym_block, + STATE(2764), 1, + sym_where_clause, + STATE(4115), 1, + sym_label, + STATE(2488), 2, sym_line_comment, sym_block_comment, - ACTIONS(1025), 13, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [63652] = 5, + [77883] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1007), 1, - anon_sym_DOT_DOT, - STATE(2020), 2, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(5610), 1, + anon_sym_SEMI, + ACTIONS(5612), 1, + anon_sym_LBRACE, + STATE(851), 1, + sym_block, + STATE(2778), 1, + sym_where_clause, + STATE(4112), 1, + sym_label, + STATE(2489), 2, sym_line_comment, sym_block_comment, - ACTIONS(1009), 13, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [63681] = 6, + [77918] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4642), 1, - anon_sym_pat, - STATE(151), 1, - sym_fragment_specifier, - STATE(2021), 2, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5606), 1, + anon_sym_LBRACE, + ACTIONS(5614), 1, + anon_sym_SEMI, + ACTIONS(5616), 1, + anon_sym_DASH_GT, + STATE(1256), 1, + sym_block, + STATE(2768), 1, + sym_where_clause, + STATE(4115), 1, + sym_label, + STATE(2490), 2, sym_line_comment, sym_block_comment, - ACTIONS(4640), 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, - [63712] = 7, + [77953] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3345), 2, - anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(2022), 2, + ACTIONS(5621), 1, + anon_sym_fn, + ACTIONS(5623), 1, + anon_sym_extern, + STATE(2621), 1, + sym_extern_modifier, + STATE(2491), 3, sym_line_comment, sym_block_comment, - ACTIONS(3341), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(4644), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3347), 5, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - [63744] = 7, + aux_sym_function_modifiers_repeat1, + ACTIONS(5618), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + [77980] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3353), 2, - anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(2023), 2, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(5612), 1, + anon_sym_LBRACE, + ACTIONS(5626), 1, + anon_sym_SEMI, + STATE(760), 1, + sym_block, + STATE(2794), 1, + sym_where_clause, + STATE(4112), 1, + sym_label, + STATE(2492), 2, sym_line_comment, sym_block_comment, - ACTIONS(3349), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(4647), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3355), 5, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - [63776] = 7, + [78015] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3333), 2, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5596), 1, anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(2024), 2, + ACTIONS(5598), 1, + anon_sym_LT, + ACTIONS(5628), 1, + anon_sym_SEMI, + ACTIONS(5630), 1, + anon_sym_EQ, + STATE(2728), 1, + sym_type_parameters, + STATE(3341), 1, + sym_trait_bounds, + STATE(3858), 1, + sym_where_clause, + STATE(2493), 2, sym_line_comment, sym_block_comment, - ACTIONS(3329), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(4650), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3335), 5, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - [63808] = 6, + [78050] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4517), 1, - anon_sym_DOT_DOT, - ACTIONS(4519), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2025), 2, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5523), 1, + anon_sym_LBRACE, + ACTIONS(5596), 1, + anon_sym_COLON, + ACTIONS(5598), 1, + anon_sym_LT, + STATE(856), 1, + sym_declaration_list, + STATE(2722), 1, + sym_type_parameters, + STATE(3020), 1, + sym_trait_bounds, + STATE(3727), 1, + sym_where_clause, + STATE(2494), 2, sym_line_comment, sym_block_comment, - ACTIONS(4507), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [63838] = 7, + [78085] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3372), 2, - anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(2026), 2, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(5612), 1, + anon_sym_LBRACE, + ACTIONS(5632), 1, + anon_sym_SEMI, + STATE(677), 1, + sym_block, + STATE(2790), 1, + sym_where_clause, + STATE(4112), 1, + sym_label, + STATE(2495), 2, sym_line_comment, sym_block_comment, - ACTIONS(3368), 3, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(4653), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3374), 5, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - [63870] = 7, + [78120] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4647), 1, - anon_sym_LPAREN, - ACTIONS(3353), 2, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5596), 1, anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(2027), 2, + ACTIONS(5598), 1, + anon_sym_LT, + ACTIONS(5634), 1, + anon_sym_SEMI, + ACTIONS(5636), 1, + anon_sym_EQ, + STATE(2693), 1, + sym_type_parameters, + STATE(3256), 1, + sym_trait_bounds, + STATE(3886), 1, + sym_where_clause, + STATE(2496), 2, sym_line_comment, sym_block_comment, - ACTIONS(3349), 5, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_LT2, - ACTIONS(3355), 5, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - [63902] = 7, + [78155] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4650), 1, - anon_sym_LPAREN, - ACTIONS(3333), 2, - anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(2028), 2, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5606), 1, + anon_sym_LBRACE, + ACTIONS(5638), 1, + anon_sym_SEMI, + ACTIONS(5640), 1, + anon_sym_DASH_GT, + STATE(1232), 1, + sym_block, + STATE(2795), 1, + sym_where_clause, + STATE(4115), 1, + sym_label, + STATE(2497), 2, sym_line_comment, sym_block_comment, - ACTIONS(3329), 5, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_LT2, - ACTIONS(3335), 5, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - [63934] = 7, + [78190] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3372), 1, + ACTIONS(1519), 1, anon_sym_DOT_DOT, - ACTIONS(4653), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, - STATE(2029), 2, + ACTIONS(5642), 1, + sym_identifier, + ACTIONS(5644), 1, + anon_sym_RBRACE, + ACTIONS(5646), 1, + anon_sym_COMMA, + ACTIONS(5648), 1, + anon_sym_ref, + ACTIONS(5650), 1, + sym_mutable_specifier, + STATE(2498), 2, sym_line_comment, sym_block_comment, - ACTIONS(3368), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(3374), 6, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - [63966] = 7, + STATE(3399), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [78223] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4653), 1, - anon_sym_LPAREN, - ACTIONS(3372), 2, - anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(2030), 2, + ACTIONS(5116), 1, + anon_sym_trait, + ACTIONS(5652), 1, + anon_sym_impl, + STATE(2499), 2, sym_line_comment, sym_block_comment, - ACTIONS(3368), 5, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_LT2, - ACTIONS(3374), 5, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - [63998] = 7, + ACTIONS(3820), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [78248] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3345), 1, - anon_sym_DOT_DOT, - ACTIONS(4644), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, - STATE(2031), 2, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5606), 1, + anon_sym_LBRACE, + ACTIONS(5654), 1, + anon_sym_SEMI, + ACTIONS(5656), 1, + anon_sym_DASH_GT, + STATE(1520), 1, + sym_block, + STATE(2771), 1, + sym_where_clause, + STATE(4115), 1, + sym_label, + STATE(2500), 2, sym_line_comment, sym_block_comment, - ACTIONS(3341), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(3347), 6, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - [64030] = 13, + [78283] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(4656), 1, - anon_sym_LPAREN, - ACTIONS(4658), 1, + ACTIONS(5473), 1, anon_sym_LBRACE, - ACTIONS(4660), 1, - anon_sym_BANG, - ACTIONS(4662), 1, - anon_sym_AT, - ACTIONS(4664), 1, - anon_sym_DOT_DOT, - ACTIONS(4668), 1, - anon_sym_COLON_COLON, - STATE(1953), 1, - sym_type_arguments, - ACTIONS(4666), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2032), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4507), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [64074] = 7, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5596), 1, + anon_sym_COLON, + ACTIONS(5598), 1, + anon_sym_LT, + STATE(1578), 1, + sym_declaration_list, + STATE(2681), 1, + sym_type_parameters, + STATE(3077), 1, + sym_trait_bounds, + STATE(3628), 1, + sym_where_clause, + STATE(2501), 2, + sym_line_comment, + sym_block_comment, + [78318] = 11, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3333), 1, - anon_sym_DOT_DOT, - ACTIONS(4650), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, - STATE(2033), 2, + ACTIONS(3427), 1, + anon_sym_POUND, + ACTIONS(5373), 1, + sym_identifier, + ACTIONS(5379), 1, + sym_crate, + STATE(2185), 1, + aux_sym_mod_item_repeat1, + STATE(2189), 1, + sym_attribute_item, + STATE(3322), 1, + sym_field_declaration, + STATE(4084), 1, + sym_visibility_modifier, + STATE(2502), 2, sym_line_comment, sym_block_comment, - ACTIONS(3329), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(3335), 6, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - [64106] = 5, + [78353] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_DOT_DOT, - STATE(2034), 2, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5606), 1, + anon_sym_LBRACE, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(5658), 1, + anon_sym_SEMI, + STATE(1404), 1, + sym_block, + STATE(2743), 1, + sym_where_clause, + STATE(4115), 1, + sym_label, + STATE(2503), 2, sym_line_comment, sym_block_comment, - ACTIONS(4670), 12, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [64134] = 7, + [78388] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_LPAREN, - ACTIONS(3345), 2, - anon_sym_COLON, - anon_sym_DOT_DOT, - STATE(2035), 2, + STATE(2504), 2, sym_line_comment, sym_block_comment, - ACTIONS(3341), 5, - anon_sym_RPAREN, + ACTIONS(5660), 8, + anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_LT2, - ACTIONS(3347), 5, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - [64166] = 7, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [78409] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3353), 1, - anon_sym_DOT_DOT, - ACTIONS(4647), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, - STATE(2036), 2, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5612), 1, + anon_sym_LBRACE, + ACTIONS(5662), 1, + anon_sym_SEMI, + ACTIONS(5664), 1, + anon_sym_DASH_GT, + STATE(802), 1, + sym_block, + STATE(2746), 1, + sym_where_clause, + STATE(4112), 1, + sym_label, + STATE(2505), 2, sym_line_comment, sym_block_comment, - ACTIONS(3349), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(3355), 6, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - [64198] = 5, + [78444] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4676), 1, - anon_sym_DOT_DOT, - STATE(2037), 2, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5606), 1, + anon_sym_LBRACE, + ACTIONS(5666), 1, + anon_sym_SEMI, + ACTIONS(5668), 1, + anon_sym_DASH_GT, + STATE(1608), 1, + sym_block, + STATE(2810), 1, + sym_where_clause, + STATE(4115), 1, + sym_label, + STATE(2506), 2, sym_line_comment, sym_block_comment, - ACTIONS(4674), 12, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [64226] = 14, + [78479] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, - anon_sym_POUND, - ACTIONS(2999), 1, + ACTIONS(3733), 1, anon_sym_SQUOTE, - ACTIONS(4678), 1, - sym_identifier, - ACTIONS(4680), 1, - anon_sym_GT, - ACTIONS(4682), 1, - anon_sym_const, - ACTIONS(4684), 1, - sym_metavariable, - STATE(1405), 1, - sym_attribute_item, - STATE(2059), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2572), 1, - sym_lifetime, - STATE(3014), 1, - sym_constrained_type_parameter, - STATE(2038), 2, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(5612), 1, + anon_sym_LBRACE, + ACTIONS(5670), 1, + anon_sym_SEMI, + STATE(632), 1, + sym_block, + STATE(2851), 1, + sym_where_clause, + STATE(4112), 1, + sym_label, + STATE(2507), 2, sym_line_comment, sym_block_comment, - STATE(3270), 2, - sym_const_parameter, - sym_optional_type_parameter, - [64271] = 14, + [78514] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, - anon_sym_POUND, - ACTIONS(2999), 1, + ACTIONS(3733), 1, anon_sym_SQUOTE, - ACTIONS(4678), 1, - sym_identifier, - ACTIONS(4682), 1, - anon_sym_const, - ACTIONS(4684), 1, - sym_metavariable, - ACTIONS(4686), 1, - anon_sym_GT, - STATE(1405), 1, - sym_attribute_item, - STATE(2059), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2572), 1, - sym_lifetime, - STATE(3014), 1, - sym_constrained_type_parameter, - STATE(2039), 2, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5612), 1, + anon_sym_LBRACE, + ACTIONS(5672), 1, + anon_sym_SEMI, + ACTIONS(5674), 1, + anon_sym_DASH_GT, + STATE(710), 1, + sym_block, + STATE(2809), 1, + sym_where_clause, + STATE(4112), 1, + sym_label, + STATE(2508), 2, sym_line_comment, sym_block_comment, - STATE(3270), 2, - sym_const_parameter, - sym_optional_type_parameter, - [64316] = 14, + [78549] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, - anon_sym_POUND, - ACTIONS(2999), 1, + ACTIONS(3733), 1, anon_sym_SQUOTE, - ACTIONS(4678), 1, - sym_identifier, - ACTIONS(4682), 1, - anon_sym_const, - ACTIONS(4684), 1, - sym_metavariable, - ACTIONS(4688), 1, - anon_sym_GT, - STATE(1405), 1, - sym_attribute_item, - STATE(2059), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2572), 1, - sym_lifetime, - STATE(3014), 1, - sym_constrained_type_parameter, - STATE(2040), 2, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(5612), 1, + anon_sym_LBRACE, + ACTIONS(5676), 1, + anon_sym_SEMI, + STATE(586), 1, + sym_block, + STATE(2787), 1, + sym_where_clause, + STATE(4112), 1, + sym_label, + STATE(2509), 2, sym_line_comment, sym_block_comment, - STATE(3270), 2, - sym_const_parameter, - sym_optional_type_parameter, - [64361] = 14, + [78584] = 11, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, + ACTIONS(3427), 1, anon_sym_POUND, - ACTIONS(2999), 1, - anon_sym_SQUOTE, - ACTIONS(4678), 1, + ACTIONS(5379), 1, + sym_crate, + ACTIONS(5421), 1, sym_identifier, - ACTIONS(4682), 1, - anon_sym_const, - ACTIONS(4684), 1, - sym_metavariable, - ACTIONS(4690), 1, - anon_sym_GT, - STATE(1405), 1, + STATE(2185), 1, + aux_sym_mod_item_repeat1, + STATE(2189), 1, sym_attribute_item, - STATE(2059), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2572), 1, - sym_lifetime, - STATE(3014), 1, - sym_constrained_type_parameter, - STATE(2041), 2, + STATE(3705), 1, + sym_enum_variant, + STATE(3821), 1, + sym_visibility_modifier, + STATE(2510), 2, sym_line_comment, sym_block_comment, - STATE(3270), 2, - sym_const_parameter, - sym_optional_type_parameter, - [64406] = 10, - ACTIONS(19), 1, - anon_sym_LBRACE, + [78619] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(4537), 1, - anon_sym_trait, - ACTIONS(4692), 1, - anon_sym_impl, - STATE(379), 1, - sym_block, - STATE(3355), 1, - sym_label, - STATE(2042), 2, + ACTIONS(1353), 1, + aux_sym_string_literal_token1, + STATE(2504), 1, + sym_string_literal, + STATE(2511), 2, sym_line_comment, sym_block_comment, - ACTIONS(3458), 6, + ACTIONS(5315), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [64443] = 14, + [78644] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, - anon_sym_POUND, - ACTIONS(2999), 1, - anon_sym_SQUOTE, - ACTIONS(4678), 1, + ACTIONS(1519), 1, + anon_sym_DOT_DOT, + ACTIONS(5642), 1, sym_identifier, - ACTIONS(4682), 1, - anon_sym_const, - ACTIONS(4684), 1, - sym_metavariable, - ACTIONS(4694), 1, - anon_sym_GT, - STATE(1405), 1, - sym_attribute_item, - STATE(2059), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2572), 1, - sym_lifetime, - STATE(3014), 1, - sym_constrained_type_parameter, - STATE(2043), 2, + ACTIONS(5648), 1, + anon_sym_ref, + ACTIONS(5650), 1, + sym_mutable_specifier, + ACTIONS(5678), 1, + anon_sym_RBRACE, + ACTIONS(5680), 1, + anon_sym_COMMA, + STATE(2512), 2, sym_line_comment, sym_block_comment, - STATE(3270), 2, - sym_const_parameter, - sym_optional_type_parameter, - [64488] = 14, + STATE(3168), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [78677] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, - anon_sym_POUND, - ACTIONS(2999), 1, + ACTIONS(3733), 1, anon_sym_SQUOTE, - ACTIONS(4678), 1, - sym_identifier, - ACTIONS(4682), 1, - anon_sym_const, - ACTIONS(4684), 1, - sym_metavariable, - ACTIONS(4696), 1, - anon_sym_GT, - STATE(1405), 1, - sym_attribute_item, - STATE(2059), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2572), 1, - sym_lifetime, - STATE(3014), 1, - sym_constrained_type_parameter, - STATE(2044), 2, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5606), 1, + anon_sym_LBRACE, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(5682), 1, + anon_sym_SEMI, + STATE(1253), 1, + sym_block, + STATE(2832), 1, + sym_where_clause, + STATE(4115), 1, + sym_label, + STATE(2513), 2, sym_line_comment, sym_block_comment, - STATE(3270), 2, - sym_const_parameter, - sym_optional_type_parameter, - [64533] = 14, + [78712] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, - anon_sym_POUND, - ACTIONS(2999), 1, - anon_sym_SQUOTE, - ACTIONS(4678), 1, + ACTIONS(1519), 1, + anon_sym_DOT_DOT, + ACTIONS(5642), 1, sym_identifier, - ACTIONS(4682), 1, - anon_sym_const, - ACTIONS(4684), 1, - sym_metavariable, - ACTIONS(4698), 1, - anon_sym_GT, - STATE(1405), 1, - sym_attribute_item, - STATE(2059), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2572), 1, - sym_lifetime, - STATE(3014), 1, - sym_constrained_type_parameter, - STATE(2045), 2, + ACTIONS(5648), 1, + anon_sym_ref, + ACTIONS(5650), 1, + sym_mutable_specifier, + ACTIONS(5684), 1, + anon_sym_RBRACE, + ACTIONS(5686), 1, + anon_sym_COMMA, + STATE(2514), 2, sym_line_comment, sym_block_comment, - STATE(3270), 2, - sym_const_parameter, - sym_optional_type_parameter, - [64578] = 14, + STATE(3164), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [78745] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, - anon_sym_POUND, - ACTIONS(2999), 1, + ACTIONS(3733), 1, anon_sym_SQUOTE, - ACTIONS(4678), 1, - sym_identifier, - ACTIONS(4682), 1, - anon_sym_const, - ACTIONS(4684), 1, - sym_metavariable, - ACTIONS(4700), 1, - anon_sym_GT, - STATE(1405), 1, - sym_attribute_item, - STATE(2059), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2572), 1, - sym_lifetime, - STATE(3014), 1, - sym_constrained_type_parameter, - STATE(2046), 2, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5612), 1, + anon_sym_LBRACE, + ACTIONS(5688), 1, + anon_sym_SEMI, + ACTIONS(5690), 1, + anon_sym_DASH_GT, + STATE(779), 1, + sym_block, + STATE(2854), 1, + sym_where_clause, + STATE(4112), 1, + sym_label, + STATE(2515), 2, sym_line_comment, sym_block_comment, - STATE(3270), 2, - sym_const_parameter, - sym_optional_type_parameter, - [64623] = 14, + [78780] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, - anon_sym_POUND, - ACTIONS(2999), 1, + ACTIONS(3733), 1, anon_sym_SQUOTE, - ACTIONS(4678), 1, - sym_identifier, - ACTIONS(4682), 1, - anon_sym_const, - ACTIONS(4684), 1, - sym_metavariable, - ACTIONS(4702), 1, - anon_sym_GT, - STATE(1405), 1, - sym_attribute_item, - STATE(2059), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2572), 1, - sym_lifetime, - STATE(3014), 1, - sym_constrained_type_parameter, - STATE(2047), 2, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5612), 1, + anon_sym_LBRACE, + ACTIONS(5692), 1, + anon_sym_SEMI, + ACTIONS(5694), 1, + anon_sym_DASH_GT, + STATE(510), 1, + sym_block, + STATE(2842), 1, + sym_where_clause, + STATE(4112), 1, + sym_label, + STATE(2516), 2, sym_line_comment, sym_block_comment, - STATE(3270), 2, - sym_const_parameter, - sym_optional_type_parameter, - [64668] = 14, + [78815] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, - anon_sym_POUND, - ACTIONS(2999), 1, + ACTIONS(3733), 1, anon_sym_SQUOTE, - ACTIONS(4678), 1, - sym_identifier, - ACTIONS(4682), 1, - anon_sym_const, - ACTIONS(4684), 1, - sym_metavariable, - ACTIONS(4704), 1, - anon_sym_GT, - STATE(1405), 1, - sym_attribute_item, - STATE(2059), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2572), 1, - sym_lifetime, - STATE(3014), 1, - sym_constrained_type_parameter, - STATE(2048), 2, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5606), 1, + anon_sym_LBRACE, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(5696), 1, + anon_sym_SEMI, + STATE(1307), 1, + sym_block, + STATE(2759), 1, + sym_where_clause, + STATE(4115), 1, + sym_label, + STATE(2517), 2, sym_line_comment, sym_block_comment, - STATE(3270), 2, - sym_const_parameter, - sym_optional_type_parameter, - [64713] = 14, + [78850] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, - anon_sym_POUND, - ACTIONS(2999), 1, + ACTIONS(3733), 1, anon_sym_SQUOTE, - ACTIONS(4678), 1, - sym_identifier, - ACTIONS(4682), 1, - anon_sym_const, - ACTIONS(4684), 1, - sym_metavariable, - ACTIONS(4706), 1, - anon_sym_GT, - STATE(1405), 1, - sym_attribute_item, - STATE(2059), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2572), 1, - sym_lifetime, - STATE(3014), 1, - sym_constrained_type_parameter, - STATE(2049), 2, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5606), 1, + anon_sym_LBRACE, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(5698), 1, + anon_sym_SEMI, + STATE(1328), 1, + sym_block, + STATE(2830), 1, + sym_where_clause, + STATE(4115), 1, + sym_label, + STATE(2518), 2, sym_line_comment, sym_block_comment, - STATE(3270), 2, - sym_const_parameter, - sym_optional_type_parameter, - [64758] = 14, + [78885] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, - anon_sym_POUND, - ACTIONS(2999), 1, - anon_sym_SQUOTE, - ACTIONS(4678), 1, - sym_identifier, - ACTIONS(4682), 1, - anon_sym_const, - ACTIONS(4684), 1, - sym_metavariable, - ACTIONS(4708), 1, - anon_sym_GT, - STATE(1405), 1, - sym_attribute_item, - STATE(2059), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2572), 1, - sym_lifetime, - STATE(3014), 1, - sym_constrained_type_parameter, - STATE(2050), 2, + ACTIONS(5700), 1, + anon_sym_fn, + ACTIONS(5702), 1, + anon_sym_extern, + STATE(2491), 1, + aux_sym_function_modifiers_repeat1, + STATE(2621), 1, + sym_extern_modifier, + STATE(2519), 2, sym_line_comment, sym_block_comment, - STATE(3270), 2, - sym_const_parameter, - sym_optional_type_parameter, - [64803] = 14, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(2997), 1, - anon_sym_POUND, - ACTIONS(2999), 1, - anon_sym_SQUOTE, - ACTIONS(4678), 1, - sym_identifier, - ACTIONS(4682), 1, + ACTIONS(4974), 4, + anon_sym_async, anon_sym_const, - ACTIONS(4684), 1, - sym_metavariable, - ACTIONS(4710), 1, - anon_sym_GT, - STATE(1405), 1, - sym_attribute_item, - STATE(2059), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2667), 1, - sym_lifetime, - STATE(3014), 1, - sym_constrained_type_parameter, - STATE(2051), 2, - sym_line_comment, - sym_block_comment, - STATE(3270), 2, - sym_const_parameter, - sym_optional_type_parameter, - [64848] = 14, + anon_sym_default, + anon_sym_unsafe, + [78914] = 11, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, + ACTIONS(3427), 1, anon_sym_POUND, - ACTIONS(2999), 1, - anon_sym_SQUOTE, - ACTIONS(4678), 1, + ACTIONS(5373), 1, sym_identifier, - ACTIONS(4682), 1, - anon_sym_const, - ACTIONS(4684), 1, - sym_metavariable, - ACTIONS(4712), 1, - anon_sym_GT, - STATE(1405), 1, + ACTIONS(5379), 1, + sym_crate, + STATE(2185), 1, + aux_sym_mod_item_repeat1, + STATE(2189), 1, sym_attribute_item, - STATE(2059), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2572), 1, - sym_lifetime, - STATE(3014), 1, - sym_constrained_type_parameter, - STATE(2052), 2, + STATE(3676), 1, + sym_field_declaration, + STATE(4084), 1, + sym_visibility_modifier, + STATE(2520), 2, sym_line_comment, sym_block_comment, - STATE(3270), 2, - sym_const_parameter, - sym_optional_type_parameter, - [64893] = 14, + [78949] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, - anon_sym_POUND, - ACTIONS(2999), 1, - anon_sym_SQUOTE, - ACTIONS(4678), 1, - sym_identifier, - ACTIONS(4682), 1, - anon_sym_const, - ACTIONS(4684), 1, - sym_metavariable, - ACTIONS(4714), 1, - anon_sym_GT, - STATE(1405), 1, - sym_attribute_item, - STATE(2059), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2572), 1, - sym_lifetime, - STATE(3014), 1, - sym_constrained_type_parameter, - STATE(2053), 2, + STATE(2521), 2, sym_line_comment, sym_block_comment, - STATE(3270), 2, - sym_const_parameter, - sym_optional_type_parameter, - [64938] = 11, + ACTIONS(5541), 8, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + [78970] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4497), 1, - anon_sym_LPAREN, - ACTIONS(4499), 1, - anon_sym_BANG, - ACTIONS(4501), 1, - anon_sym_COLON_COLON, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(4716), 1, - anon_sym_for, - STATE(1953), 1, - sym_type_arguments, - STATE(1982), 1, - sym_parameters, - STATE(2054), 2, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5612), 1, + anon_sym_LBRACE, + ACTIONS(5704), 1, + anon_sym_SEMI, + ACTIONS(5706), 1, + anon_sym_DASH_GT, + STATE(774), 1, + sym_block, + STATE(2792), 1, + sym_where_clause, + STATE(4112), 1, + sym_label, + STATE(2522), 2, sym_line_comment, sym_block_comment, - ACTIONS(3295), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [64976] = 11, + [79005] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4497), 1, - anon_sym_LPAREN, - ACTIONS(4499), 1, - anon_sym_BANG, - ACTIONS(4501), 1, - anon_sym_COLON_COLON, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(4718), 1, - anon_sym_for, - STATE(1953), 1, - sym_type_arguments, - STATE(1982), 1, - sym_parameters, - STATE(2055), 2, + STATE(2523), 2, sym_line_comment, sym_block_comment, - ACTIONS(3295), 4, + ACTIONS(5541), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, anon_sym_where, - [65014] = 6, + [79026] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4630), 1, - anon_sym_COLON_COLON, - ACTIONS(4722), 1, - anon_sym_COLON, - STATE(2056), 2, + STATE(2524), 2, sym_line_comment, sym_block_comment, - ACTIONS(4720), 9, + ACTIONS(5541), 8, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_PIPE, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_EQ, + anon_sym_GT, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [65042] = 7, + anon_sym_SQUOTE, + anon_sym_where, + [79047] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1341), 1, - aux_sym_string_literal_token1, - ACTIONS(4726), 1, - sym_crate, - STATE(2199), 1, - sym_string_literal, - STATE(2057), 2, + ACTIONS(5086), 1, + anon_sym_trait, + ACTIONS(5708), 1, + anon_sym_impl, + STATE(2525), 2, sym_line_comment, sym_block_comment, - ACTIONS(4724), 8, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(3820), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [65072] = 9, - ACTIONS(19), 1, - anon_sym_LBRACE, + [79072] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(4728), 1, - anon_sym_move, - STATE(381), 1, - sym_block, - STATE(3355), 1, - sym_label, - STATE(2058), 2, + STATE(2526), 2, sym_line_comment, sym_block_comment, - ACTIONS(3458), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [65106] = 13, + ACTIONS(5541), 8, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + [79093] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, - anon_sym_POUND, - ACTIONS(2999), 1, + ACTIONS(3733), 1, anon_sym_SQUOTE, - ACTIONS(4682), 1, - anon_sym_const, - ACTIONS(4730), 1, - sym_identifier, - ACTIONS(4732), 1, - sym_metavariable, - STATE(1061), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1405), 1, - sym_attribute_item, - STATE(2722), 1, - sym_lifetime, - STATE(2781), 1, - sym_constrained_type_parameter, - STATE(2059), 2, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5606), 1, + anon_sym_LBRACE, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(5710), 1, + anon_sym_SEMI, + STATE(1564), 1, + sym_block, + STATE(2821), 1, + sym_where_clause, + STATE(4115), 1, + sym_label, + STATE(2527), 2, sym_line_comment, sym_block_comment, - STATE(3310), 2, - sym_const_parameter, - sym_optional_type_parameter, - [65148] = 6, + [79128] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4630), 1, - anon_sym_COLON_COLON, - ACTIONS(4736), 1, - anon_sym_COLON, - STATE(2060), 2, + STATE(2528), 2, sym_line_comment, sym_block_comment, - ACTIONS(4734), 9, + ACTIONS(5541), 8, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_PIPE, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_EQ, + anon_sym_GT, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [65176] = 13, + anon_sym_SQUOTE, + anon_sym_where, + [79149] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, - anon_sym_POUND, - ACTIONS(2999), 1, - anon_sym_SQUOTE, - ACTIONS(4682), 1, - anon_sym_const, - ACTIONS(4738), 1, - sym_identifier, - ACTIONS(4740), 1, - sym_metavariable, - STATE(1405), 1, - sym_attribute_item, - STATE(2077), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2486), 1, - sym_lifetime, - STATE(2540), 1, - sym_constrained_type_parameter, - STATE(2061), 2, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5523), 1, + anon_sym_LBRACE, + ACTIONS(5596), 1, + anon_sym_COLON, + ACTIONS(5598), 1, + anon_sym_LT, + STATE(862), 1, + sym_declaration_list, + STATE(2664), 1, + sym_type_parameters, + STATE(3091), 1, + sym_trait_bounds, + STATE(3595), 1, + sym_where_clause, + STATE(2529), 2, sym_line_comment, sym_block_comment, - STATE(2953), 2, - sym_const_parameter, - sym_optional_type_parameter, - [65218] = 11, + [79184] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4497), 1, - anon_sym_LPAREN, - ACTIONS(4499), 1, - anon_sym_BANG, - ACTIONS(4501), 1, - anon_sym_COLON_COLON, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(4742), 1, - anon_sym_for, - STATE(1953), 1, - sym_type_arguments, - STATE(1982), 1, - sym_parameters, - STATE(2062), 2, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5606), 1, + anon_sym_LBRACE, + ACTIONS(5712), 1, + anon_sym_SEMI, + ACTIONS(5714), 1, + anon_sym_DASH_GT, + STATE(1470), 1, + sym_block, + STATE(2754), 1, + sym_where_clause, + STATE(4115), 1, + sym_label, + STATE(2530), 2, sym_line_comment, sym_block_comment, - ACTIONS(3295), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [65256] = 12, + [79219] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3299), 1, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5596), 1, anon_sym_COLON, - ACTIONS(4497), 1, - anon_sym_LPAREN, - ACTIONS(4499), 1, - anon_sym_BANG, - ACTIONS(4501), 1, - anon_sym_COLON_COLON, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(4744), 1, + ACTIONS(5598), 1, + anon_sym_LT, + ACTIONS(5716), 1, + anon_sym_SEMI, + ACTIONS(5718), 1, anon_sym_EQ, - STATE(1982), 1, - sym_parameters, - STATE(2358), 1, - sym_type_arguments, - STATE(2063), 2, + STATE(2630), 1, + sym_type_parameters, + STATE(3166), 1, + sym_trait_bounds, + STATE(4060), 1, + sym_where_clause, + STATE(2531), 2, sym_line_comment, sym_block_comment, - ACTIONS(3295), 3, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - [65296] = 4, + [79254] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2064), 2, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5523), 1, + anon_sym_LBRACE, + ACTIONS(5596), 1, + anon_sym_COLON, + ACTIONS(5598), 1, + anon_sym_LT, + STATE(519), 1, + sym_declaration_list, + STATE(2623), 1, + sym_type_parameters, + STATE(2868), 1, + sym_trait_bounds, + STATE(3604), 1, + sym_where_clause, + STATE(2532), 2, sym_line_comment, sym_block_comment, - ACTIONS(1265), 11, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [65320] = 4, + [79289] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2065), 2, + ACTIONS(5473), 1, + anon_sym_LBRACE, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5596), 1, + anon_sym_COLON, + ACTIONS(5598), 1, + anon_sym_LT, + STATE(1460), 1, + sym_declaration_list, + STATE(2731), 1, + sym_type_parameters, + STATE(3006), 1, + sym_trait_bounds, + STATE(3689), 1, + sym_where_clause, + STATE(2533), 2, sym_line_comment, sym_block_comment, - ACTIONS(1273), 11, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [65344] = 6, + [79324] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3372), 1, - anon_sym_DOT_DOT, - ACTIONS(3368), 2, - anon_sym_LBRACE, - anon_sym_LT2, - STATE(2066), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3374), 8, - anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(5038), 1, anon_sym_BANG, + ACTIONS(5044), 1, anon_sym_PIPE, + ACTIONS(5046), 1, + anon_sym_LPAREN, + ACTIONS(5050), 1, + anon_sym_COLON, + ACTIONS(5054), 1, + anon_sym_DOT_DOT, + ACTIONS(5720), 1, + anon_sym_COLON_COLON, + ACTIONS(5056), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_if, - [65372] = 6, + STATE(2534), 2, + sym_line_comment, + sym_block_comment, + [79357] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3333), 1, - anon_sym_DOT_DOT, - ACTIONS(3329), 2, + ACTIONS(5473), 1, anon_sym_LBRACE, - anon_sym_LT2, - STATE(2067), 2, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5596), 1, + anon_sym_COLON, + ACTIONS(5598), 1, + anon_sym_LT, + STATE(1522), 1, + sym_declaration_list, + STATE(2633), 1, + sym_type_parameters, + STATE(3110), 1, + sym_trait_bounds, + STATE(3538), 1, + sym_where_clause, + STATE(2535), 2, sym_line_comment, sym_block_comment, - ACTIONS(3335), 8, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_if, - [65400] = 6, + [79392] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3345), 1, - anon_sym_DOT_DOT, - ACTIONS(3341), 2, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5612), 1, anon_sym_LBRACE, - anon_sym_LT2, - STATE(2068), 2, + ACTIONS(5722), 1, + anon_sym_SEMI, + ACTIONS(5724), 1, + anon_sym_DASH_GT, + STATE(647), 1, + sym_block, + STATE(2843), 1, + sym_where_clause, + STATE(4112), 1, + sym_label, + STATE(2536), 2, sym_line_comment, sym_block_comment, - ACTIONS(3347), 8, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_if, - [65428] = 6, + [79427] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3353), 1, - anon_sym_DOT_DOT, - ACTIONS(3349), 2, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5612), 1, anon_sym_LBRACE, - anon_sym_LT2, - STATE(2069), 2, + ACTIONS(5726), 1, + anon_sym_SEMI, + ACTIONS(5728), 1, + anon_sym_DASH_GT, + STATE(747), 1, + sym_block, + STATE(2742), 1, + sym_where_clause, + STATE(4112), 1, + sym_label, + STATE(2537), 2, sym_line_comment, sym_block_comment, - ACTIONS(3355), 8, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_if, - [65456] = 13, + [79462] = 11, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, + ACTIONS(3427), 1, anon_sym_POUND, - ACTIONS(2999), 1, - anon_sym_SQUOTE, - ACTIONS(4682), 1, - anon_sym_const, - ACTIONS(4746), 1, + ACTIONS(5373), 1, sym_identifier, - ACTIONS(4748), 1, - sym_metavariable, - STATE(1405), 1, + ACTIONS(5379), 1, + sym_crate, + STATE(2189), 1, sym_attribute_item, - STATE(2071), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2422), 1, - sym_lifetime, - STATE(2600), 1, - sym_constrained_type_parameter, - STATE(2070), 2, + STATE(2520), 1, + aux_sym_mod_item_repeat1, + STATE(3741), 1, + sym_field_declaration, + STATE(4084), 1, + sym_visibility_modifier, + STATE(2538), 2, sym_line_comment, sym_block_comment, - STATE(3040), 2, - sym_const_parameter, - sym_optional_type_parameter, - [65498] = 13, + [79497] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, - anon_sym_POUND, - ACTIONS(2999), 1, - anon_sym_SQUOTE, - ACTIONS(4682), 1, - anon_sym_const, - ACTIONS(4750), 1, + ACTIONS(1519), 1, + anon_sym_DOT_DOT, + ACTIONS(5642), 1, sym_identifier, - ACTIONS(4752), 1, - sym_metavariable, - STATE(1061), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1405), 1, - sym_attribute_item, - STATE(2425), 1, - sym_lifetime, - STATE(2536), 1, - sym_constrained_type_parameter, - STATE(2071), 2, + ACTIONS(5648), 1, + anon_sym_ref, + ACTIONS(5650), 1, + sym_mutable_specifier, + ACTIONS(5730), 1, + anon_sym_RBRACE, + ACTIONS(5732), 1, + anon_sym_COMMA, + STATE(2539), 2, sym_line_comment, sym_block_comment, - STATE(2796), 2, - sym_const_parameter, - sym_optional_type_parameter, - [65540] = 7, + STATE(3439), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [79530] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1341), 1, - aux_sym_string_literal_token1, - ACTIONS(4754), 1, - sym_crate, - STATE(2199), 1, - sym_string_literal, - STATE(2072), 2, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(5612), 1, + anon_sym_LBRACE, + ACTIONS(5734), 1, + anon_sym_SEMI, + STATE(678), 1, + sym_block, + STATE(2828), 1, + sym_where_clause, + STATE(4112), 1, + sym_label, + STATE(2540), 2, sym_line_comment, sym_block_comment, - ACTIONS(4724), 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, - [65570] = 13, + [79565] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, - anon_sym_POUND, - ACTIONS(2999), 1, + ACTIONS(3733), 1, anon_sym_SQUOTE, - ACTIONS(4678), 1, - sym_identifier, - ACTIONS(4682), 1, - anon_sym_const, - ACTIONS(4684), 1, - sym_metavariable, - STATE(1405), 1, - sym_attribute_item, - STATE(2059), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2572), 1, - sym_lifetime, - STATE(3014), 1, - sym_constrained_type_parameter, - STATE(2073), 2, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5612), 1, + anon_sym_LBRACE, + ACTIONS(5736), 1, + anon_sym_SEMI, + ACTIONS(5738), 1, + anon_sym_DASH_GT, + STATE(581), 1, + sym_block, + STATE(2827), 1, + sym_where_clause, + STATE(4112), 1, + sym_label, + STATE(2541), 2, sym_line_comment, sym_block_comment, - STATE(3270), 2, - sym_const_parameter, - sym_optional_type_parameter, - [65612] = 6, + [79600] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4736), 1, + ACTIONS(5473), 1, + anon_sym_LBRACE, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5596), 1, anon_sym_COLON, - ACTIONS(4756), 1, - anon_sym_COLON_COLON, - STATE(2074), 2, + ACTIONS(5598), 1, + anon_sym_LT, + STATE(1329), 1, + sym_declaration_list, + STATE(2721), 1, + sym_type_parameters, + STATE(2965), 1, + sym_trait_bounds, + STATE(3473), 1, + sym_where_clause, + STATE(2542), 2, sym_line_comment, sym_block_comment, - ACTIONS(4734), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [65640] = 13, + [79635] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, - anon_sym_POUND, - ACTIONS(2999), 1, + ACTIONS(3733), 1, anon_sym_SQUOTE, - ACTIONS(4682), 1, - anon_sym_const, - ACTIONS(4738), 1, - sym_identifier, - ACTIONS(4740), 1, - sym_metavariable, - STATE(1405), 1, - sym_attribute_item, - STATE(2077), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2382), 1, - sym_lifetime, - STATE(2540), 1, - sym_constrained_type_parameter, - STATE(2075), 2, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(5612), 1, + anon_sym_LBRACE, + ACTIONS(5740), 1, + anon_sym_SEMI, + STATE(500), 1, + sym_block, + STATE(2856), 1, + sym_where_clause, + STATE(4112), 1, + sym_label, + STATE(2543), 2, sym_line_comment, sym_block_comment, - STATE(2953), 2, - sym_const_parameter, - sym_optional_type_parameter, - [65682] = 6, + [79670] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4736), 1, - anon_sym_COLON, - ACTIONS(4758), 1, - anon_sym_COLON_COLON, - STATE(2076), 2, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5606), 1, + anon_sym_LBRACE, + ACTIONS(5742), 1, + anon_sym_SEMI, + ACTIONS(5744), 1, + anon_sym_DASH_GT, + STATE(1347), 1, + sym_block, + STATE(2752), 1, + sym_where_clause, + STATE(4115), 1, + sym_label, + STATE(2544), 2, sym_line_comment, sym_block_comment, - ACTIONS(4734), 9, + [79705] = 11, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5606), 1, + anon_sym_LBRACE, + ACTIONS(5746), 1, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [65710] = 13, + ACTIONS(5748), 1, + anon_sym_DASH_GT, + STATE(1367), 1, + sym_block, + STATE(2750), 1, + sym_where_clause, + STATE(4115), 1, + sym_label, + STATE(2545), 2, + sym_line_comment, + sym_block_comment, + [79740] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, - anon_sym_POUND, - ACTIONS(2999), 1, + ACTIONS(3733), 1, anon_sym_SQUOTE, - ACTIONS(4682), 1, - anon_sym_const, - ACTIONS(4760), 1, - sym_identifier, - ACTIONS(4762), 1, - sym_metavariable, - STATE(1061), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1405), 1, - sym_attribute_item, - STATE(2428), 1, - sym_lifetime, - STATE(2539), 1, - sym_constrained_type_parameter, - STATE(2077), 2, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5606), 1, + anon_sym_LBRACE, + ACTIONS(5750), 1, + anon_sym_SEMI, + ACTIONS(5752), 1, + anon_sym_DASH_GT, + STATE(1622), 1, + sym_block, + STATE(2815), 1, + sym_where_clause, + STATE(4115), 1, + sym_label, + STATE(2546), 2, sym_line_comment, sym_block_comment, - STATE(2837), 2, - sym_const_parameter, - sym_optional_type_parameter, - [65752] = 4, + [79775] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2078), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1269), 11, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(5612), 1, + anon_sym_LBRACE, + ACTIONS(5754), 1, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [65776] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4722), 1, - anon_sym_COLON, - ACTIONS(4756), 1, - anon_sym_COLON_COLON, - STATE(2079), 2, + STATE(666), 1, + sym_block, + STATE(2829), 1, + sym_where_clause, + STATE(4112), 1, + sym_label, + STATE(2547), 2, sym_line_comment, sym_block_comment, - ACTIONS(4720), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [65804] = 6, + [79810] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4766), 1, - anon_sym_COLON, - ACTIONS(4768), 1, - anon_sym_COLON_COLON, - STATE(2080), 2, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5606), 1, + anon_sym_LBRACE, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(5756), 1, + anon_sym_SEMI, + STATE(1428), 1, + sym_block, + STATE(2803), 1, + sym_where_clause, + STATE(4115), 1, + sym_label, + STATE(2548), 2, sym_line_comment, sym_block_comment, - ACTIONS(4764), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [65832] = 9, - ACTIONS(19), 1, - anon_sym_LBRACE, + [79845] = 11, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, + ACTIONS(3733), 1, anon_sym_SQUOTE, - ACTIONS(4770), 1, - sym_identifier, - STATE(397), 1, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5606), 1, + anon_sym_LBRACE, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(5758), 1, + anon_sym_SEMI, + STATE(1318), 1, sym_block, - STATE(3355), 1, + STATE(2798), 1, + sym_where_clause, + STATE(4115), 1, sym_label, - STATE(2081), 2, + STATE(2549), 2, sym_line_comment, sym_block_comment, - ACTIONS(4772), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [65866] = 12, + [79880] = 11, + ACTIONS(69), 1, + anon_sym_pub, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, + ACTIONS(3427), 1, anon_sym_POUND, - ACTIONS(4774), 1, + ACTIONS(5379), 1, + sym_crate, + ACTIONS(5421), 1, sym_identifier, - ACTIONS(4776), 1, - anon_sym_RBRACE, - ACTIONS(4778), 1, - anon_sym_DOT_DOT, - ACTIONS(4780), 1, - anon_sym_COMMA, - ACTIONS(4782), 1, - sym_integer_literal, - STATE(1405), 1, + STATE(2185), 1, + aux_sym_mod_item_repeat1, + STATE(2189), 1, sym_attribute_item, - STATE(2466), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2082), 2, + STATE(3452), 1, + sym_enum_variant, + STATE(3821), 1, + sym_visibility_modifier, + STATE(2550), 2, sym_line_comment, sym_block_comment, - STATE(2758), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [65906] = 6, + [79915] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4722), 1, - anon_sym_COLON, - ACTIONS(4758), 1, - anon_sym_COLON_COLON, - STATE(2083), 2, + ACTIONS(1519), 1, + anon_sym_DOT_DOT, + ACTIONS(5642), 1, + sym_identifier, + ACTIONS(5648), 1, + anon_sym_ref, + ACTIONS(5650), 1, + sym_mutable_specifier, + ACTIONS(5760), 1, + anon_sym_RBRACE, + STATE(2551), 2, sym_line_comment, sym_block_comment, - ACTIONS(4720), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [65934] = 11, + STATE(3664), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [79945] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(4551), 1, - anon_sym_COLON, - ACTIONS(4553), 1, - anon_sym_BANG, - ACTIONS(4555), 1, + ACTIONS(5463), 1, anon_sym_DOT_DOT, - ACTIONS(4585), 1, + ACTIONS(5467), 1, anon_sym_COLON_COLON, - STATE(1952), 1, - sym_type_arguments, - ACTIONS(4557), 2, + ACTIONS(5465), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2084), 2, + STATE(2552), 2, sym_line_comment, sym_block_comment, - ACTIONS(4549), 3, - anon_sym_RPAREN, + ACTIONS(5062), 3, + anon_sym_EQ_GT, anon_sym_PIPE, - anon_sym_COMMA, - [65972] = 12, + anon_sym_if, + [79971] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, - anon_sym_POUND, - ACTIONS(4774), 1, - sym_identifier, - ACTIONS(4778), 1, - anon_sym_DOT_DOT, - ACTIONS(4782), 1, - sym_integer_literal, - ACTIONS(4784), 1, + ACTIONS(5762), 1, + anon_sym_LPAREN, + ACTIONS(5764), 1, + anon_sym_LBRACK, + ACTIONS(5766), 1, + anon_sym_LBRACE, + ACTIONS(5768), 1, anon_sym_RBRACE, - ACTIONS(4786), 1, - anon_sym_COMMA, - STATE(1405), 1, - sym_attribute_item, - STATE(2466), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2085), 2, + STATE(2450), 1, + aux_sym_macro_definition_repeat1, + STATE(3720), 1, + sym_macro_rule, + STATE(4058), 1, + sym_token_tree_pattern, + STATE(2553), 2, sym_line_comment, sym_block_comment, - STATE(2905), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [66012] = 11, + [80003] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4497), 1, + ACTIONS(5483), 1, anon_sym_LPAREN, - ACTIONS(4499), 1, - anon_sym_BANG, - ACTIONS(4501), 1, - anon_sym_COLON_COLON, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(4788), 1, - anon_sym_for, - STATE(1953), 1, - sym_type_arguments, - STATE(1982), 1, - sym_parameters, - STATE(2086), 2, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5517), 1, + anon_sym_LBRACE, + ACTIONS(5770), 1, + anon_sym_SEMI, + STATE(1590), 1, + sym_field_declaration_list, + STATE(3221), 1, + sym_ordered_field_declaration_list, + STATE(3616), 1, + sym_where_clause, + STATE(2554), 2, sym_line_comment, sym_block_comment, - ACTIONS(3295), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [66050] = 4, + [80035] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2087), 2, + ACTIONS(5483), 1, + anon_sym_LPAREN, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5517), 1, + anon_sym_LBRACE, + ACTIONS(5772), 1, + anon_sym_SEMI, + STATE(1464), 1, + sym_field_declaration_list, + STATE(3339), 1, + sym_ordered_field_declaration_list, + STATE(3696), 1, + sym_where_clause, + STATE(2555), 2, sym_line_comment, sym_block_comment, - ACTIONS(1261), 11, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [66074] = 7, + [80067] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1341), 1, - aux_sym_string_literal_token1, - ACTIONS(4790), 1, - sym_crate, - STATE(2199), 1, - sym_string_literal, - STATE(2088), 2, + ACTIONS(5762), 1, + anon_sym_LPAREN, + ACTIONS(5764), 1, + anon_sym_LBRACK, + ACTIONS(5766), 1, + anon_sym_LBRACE, + ACTIONS(5774), 1, + anon_sym_RBRACE, + STATE(2553), 1, + aux_sym_macro_definition_repeat1, + STATE(3512), 1, + sym_macro_rule, + STATE(4058), 1, + sym_token_tree_pattern, + STATE(2556), 2, sym_line_comment, sym_block_comment, - ACTIONS(4724), 8, - anon_sym_SEMI, + [80099] = 10, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5762), 1, + anon_sym_LPAREN, + ACTIONS(5764), 1, + anon_sym_LBRACK, + ACTIONS(5766), 1, anon_sym_LBRACE, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [66104] = 7, + ACTIONS(5776), 1, + anon_sym_RBRACE, + STATE(2569), 1, + aux_sym_macro_definition_repeat1, + STATE(3505), 1, + sym_macro_rule, + STATE(4058), 1, + sym_token_tree_pattern, + STATE(2557), 2, + sym_line_comment, + sym_block_comment, + [80131] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1341), 1, - aux_sym_string_literal_token1, - ACTIONS(4792), 1, - sym_crate, - STATE(2199), 1, - sym_string_literal, - STATE(2089), 2, + ACTIONS(5778), 1, + sym_identifier, + STATE(2558), 2, sym_line_comment, sym_block_comment, - ACTIONS(4724), 8, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(5295), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [66134] = 11, + [80153] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4497), 1, - anon_sym_LPAREN, - ACTIONS(4499), 1, - anon_sym_BANG, - ACTIONS(4501), 1, - anon_sym_COLON_COLON, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(4794), 1, - anon_sym_for, - STATE(1953), 1, - sym_type_arguments, - STATE(1982), 1, - sym_parameters, - STATE(2090), 2, + ACTIONS(1519), 1, + anon_sym_DOT_DOT, + ACTIONS(5642), 1, + sym_identifier, + ACTIONS(5648), 1, + anon_sym_ref, + ACTIONS(5650), 1, + sym_mutable_specifier, + ACTIONS(5780), 1, + anon_sym_RBRACE, + STATE(2559), 2, sym_line_comment, sym_block_comment, - ACTIONS(3295), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [66172] = 11, + STATE(3664), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [80183] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4497), 1, - anon_sym_LPAREN, - ACTIONS(4499), 1, - anon_sym_BANG, - ACTIONS(4501), 1, - anon_sym_COLON_COLON, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(4796), 1, - anon_sym_for, - STATE(1953), 1, - sym_type_arguments, - STATE(1982), 1, - sym_parameters, - STATE(2091), 2, + ACTIONS(1519), 1, + anon_sym_DOT_DOT, + ACTIONS(5642), 1, + sym_identifier, + ACTIONS(5648), 1, + anon_sym_ref, + ACTIONS(5650), 1, + sym_mutable_specifier, + ACTIONS(5782), 1, + anon_sym_RBRACE, + STATE(2560), 2, sym_line_comment, sym_block_comment, - ACTIONS(3295), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [66210] = 11, + STATE(3664), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [80213] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4497), 1, + ACTIONS(5483), 1, anon_sym_LPAREN, - ACTIONS(4499), 1, - anon_sym_BANG, - ACTIONS(4501), 1, - anon_sym_COLON_COLON, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(4798), 1, - anon_sym_for, - STATE(1953), 1, - sym_type_arguments, - STATE(1982), 1, - sym_parameters, - STATE(2092), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3295), 4, - anon_sym_SEMI, + ACTIONS(5485), 1, anon_sym_LBRACE, - anon_sym_PLUS, + ACTIONS(5489), 1, anon_sym_where, - [66248] = 4, + ACTIONS(5784), 1, + anon_sym_SEMI, + STATE(534), 1, + sym_field_declaration_list, + STATE(3391), 1, + sym_ordered_field_declaration_list, + STATE(3599), 1, + sym_where_clause, + STATE(2561), 2, + sym_line_comment, + sym_block_comment, + [80245] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2093), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1257), 11, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, + ACTIONS(5483), 1, + anon_sym_LPAREN, + ACTIONS(5517), 1, + anon_sym_LBRACE, + ACTIONS(5788), 1, anon_sym_EQ, - anon_sym_GT, + ACTIONS(5786), 2, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [66272] = 11, + STATE(2562), 2, + sym_line_comment, + sym_block_comment, + STATE(3131), 2, + sym_field_declaration_list, + sym_ordered_field_declaration_list, + [80273] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4497), 1, + ACTIONS(5483), 1, anon_sym_LPAREN, - ACTIONS(4499), 1, - anon_sym_BANG, - ACTIONS(4501), 1, - anon_sym_COLON_COLON, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(4800), 1, - anon_sym_for, - STATE(1953), 1, - sym_type_arguments, - STATE(1982), 1, - sym_parameters, - STATE(2094), 2, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5517), 1, + anon_sym_LBRACE, + ACTIONS(5790), 1, + anon_sym_SEMI, + STATE(1332), 1, + sym_field_declaration_list, + STATE(3428), 1, + sym_ordered_field_declaration_list, + STATE(3470), 1, + sym_where_clause, + STATE(2563), 2, sym_line_comment, sym_block_comment, - ACTIONS(3295), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [66310] = 6, + [80305] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4768), 1, - anon_sym_COLON_COLON, - ACTIONS(4804), 1, - anon_sym_COLON, - STATE(2095), 2, + ACTIONS(5792), 1, + sym_identifier, + STATE(2564), 2, sym_line_comment, sym_block_comment, - ACTIONS(4802), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [66338] = 4, + ACTIONS(5295), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [80327] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2096), 2, + ACTIONS(1519), 1, + anon_sym_DOT_DOT, + ACTIONS(5642), 1, + sym_identifier, + ACTIONS(5648), 1, + anon_sym_ref, + ACTIONS(5650), 1, + sym_mutable_specifier, + ACTIONS(5794), 1, + anon_sym_RBRACE, + STATE(2565), 2, sym_line_comment, sym_block_comment, - ACTIONS(4806), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [66361] = 8, + STATE(3664), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [80357] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(4553), 1, - anon_sym_BANG, - ACTIONS(4587), 1, - anon_sym_COLON_COLON, - STATE(1952), 1, - sym_type_arguments, - STATE(2097), 2, + ACTIONS(1519), 1, + anon_sym_DOT_DOT, + ACTIONS(5642), 1, + sym_identifier, + ACTIONS(5648), 1, + anon_sym_ref, + ACTIONS(5650), 1, + sym_mutable_specifier, + ACTIONS(5796), 1, + anon_sym_RBRACE, + STATE(2566), 2, sym_line_comment, sym_block_comment, - ACTIONS(3458), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [66392] = 4, + STATE(3664), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [80387] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2098), 2, + ACTIONS(5054), 1, + anon_sym_DOT_DOT, + ACTIONS(5798), 1, + anon_sym_COLON_COLON, + ACTIONS(5056), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2567), 2, sym_line_comment, sym_block_comment, - ACTIONS(4808), 10, - anon_sym_SEMI, + ACTIONS(3775), 3, anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, + anon_sym_PLUS, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [66415] = 4, + [80413] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2099), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4810), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(5054), 1, + anon_sym_DOT_DOT, + ACTIONS(5798), 1, + anon_sym_COLON_COLON, + ACTIONS(5802), 1, anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, + ACTIONS(5056), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5800), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [66438] = 4, + STATE(2568), 2, + sym_line_comment, + sym_block_comment, + [80441] = 10, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5762), 1, + anon_sym_LPAREN, + ACTIONS(5764), 1, + anon_sym_LBRACK, + ACTIONS(5766), 1, + anon_sym_LBRACE, + ACTIONS(5804), 1, + anon_sym_RBRACE, + STATE(2450), 1, + aux_sym_macro_definition_repeat1, + STATE(3708), 1, + sym_macro_rule, + STATE(4058), 1, + sym_token_tree_pattern, + STATE(2569), 2, + sym_line_comment, + sym_block_comment, + [80473] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2100), 2, + ACTIONS(1519), 1, + anon_sym_DOT_DOT, + ACTIONS(5642), 1, + sym_identifier, + ACTIONS(5648), 1, + anon_sym_ref, + ACTIONS(5650), 1, + sym_mutable_specifier, + ACTIONS(5806), 1, + anon_sym_RBRACE, + STATE(2570), 2, sym_line_comment, sym_block_comment, - ACTIONS(4812), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [66461] = 4, + STATE(3664), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [80503] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2101), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4814), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(5054), 1, + anon_sym_DOT_DOT, + ACTIONS(5810), 1, anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, + ACTIONS(5812), 1, + anon_sym_COLON_COLON, + ACTIONS(5056), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5808), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [66484] = 4, + STATE(2571), 2, + sym_line_comment, + sym_block_comment, + [80531] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2102), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4816), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, + ACTIONS(5483), 1, + anon_sym_LPAREN, + ACTIONS(5517), 1, + anon_sym_LBRACE, + ACTIONS(5816), 1, anon_sym_EQ, + ACTIONS(5814), 2, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [66507] = 4, + STATE(2572), 2, + sym_line_comment, + sym_block_comment, + STATE(3338), 2, + sym_field_declaration_list, + sym_ordered_field_declaration_list, + [80559] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2103), 2, + ACTIONS(5762), 1, + anon_sym_LPAREN, + ACTIONS(5764), 1, + anon_sym_LBRACK, + ACTIONS(5766), 1, + anon_sym_LBRACE, + ACTIONS(5818), 1, + anon_sym_RBRACE, + STATE(2450), 1, + aux_sym_macro_definition_repeat1, + STATE(3480), 1, + sym_macro_rule, + STATE(4058), 1, + sym_token_tree_pattern, + STATE(2573), 2, sym_line_comment, sym_block_comment, - ACTIONS(4818), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [66530] = 4, + [80591] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2104), 2, + ACTIONS(5762), 1, + anon_sym_LPAREN, + ACTIONS(5764), 1, + anon_sym_LBRACK, + ACTIONS(5766), 1, + anon_sym_LBRACE, + ACTIONS(5820), 1, + anon_sym_RBRACK, + STATE(2450), 1, + aux_sym_macro_definition_repeat1, + STATE(3477), 1, + sym_macro_rule, + STATE(4058), 1, + sym_token_tree_pattern, + STATE(2574), 2, sym_line_comment, sym_block_comment, - ACTIONS(4820), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [66553] = 4, + [80623] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2105), 2, + ACTIONS(5762), 1, + anon_sym_LPAREN, + ACTIONS(5764), 1, + anon_sym_LBRACK, + ACTIONS(5766), 1, + anon_sym_LBRACE, + ACTIONS(5820), 1, + anon_sym_RPAREN, + STATE(2450), 1, + aux_sym_macro_definition_repeat1, + STATE(3475), 1, + sym_macro_rule, + STATE(4058), 1, + sym_token_tree_pattern, + STATE(2575), 2, sym_line_comment, sym_block_comment, - ACTIONS(4822), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [66576] = 4, + [80655] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2106), 2, + ACTIONS(5762), 1, + anon_sym_LPAREN, + ACTIONS(5764), 1, + anon_sym_LBRACK, + ACTIONS(5766), 1, + anon_sym_LBRACE, + ACTIONS(5822), 1, + anon_sym_RBRACE, + STATE(2450), 1, + aux_sym_macro_definition_repeat1, + STATE(3471), 1, + sym_macro_rule, + STATE(4058), 1, + sym_token_tree_pattern, + STATE(2576), 2, sym_line_comment, sym_block_comment, - ACTIONS(4824), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [66599] = 4, + [80687] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2107), 2, + ACTIONS(5762), 1, + anon_sym_LPAREN, + ACTIONS(5764), 1, + anon_sym_LBRACK, + ACTIONS(5766), 1, + anon_sym_LBRACE, + ACTIONS(5824), 1, + anon_sym_RBRACK, + STATE(2450), 1, + aux_sym_macro_definition_repeat1, + STATE(3518), 1, + sym_macro_rule, + STATE(4058), 1, + sym_token_tree_pattern, + STATE(2577), 2, sym_line_comment, sym_block_comment, - ACTIONS(4826), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [66622] = 4, + [80719] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2108), 2, + ACTIONS(5762), 1, + anon_sym_LPAREN, + ACTIONS(5764), 1, + anon_sym_LBRACK, + ACTIONS(5766), 1, + anon_sym_LBRACE, + ACTIONS(5824), 1, + anon_sym_RPAREN, + STATE(2450), 1, + aux_sym_macro_definition_repeat1, + STATE(3521), 1, + sym_macro_rule, + STATE(4058), 1, + sym_token_tree_pattern, + STATE(2578), 2, sym_line_comment, sym_block_comment, - ACTIONS(4828), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [66645] = 11, + [80751] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, - anon_sym_POUND, - ACTIONS(4774), 1, - sym_identifier, - ACTIONS(4778), 1, - anon_sym_DOT_DOT, - ACTIONS(4782), 1, - sym_integer_literal, - ACTIONS(4830), 1, - anon_sym_RBRACE, - STATE(1405), 1, - sym_attribute_item, - STATE(2466), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2109), 2, + ACTIONS(5826), 1, + anon_sym_trait, + STATE(2579), 2, sym_line_comment, sym_block_comment, - STATE(3096), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [66682] = 8, + ACTIONS(3820), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [80773] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3305), 1, - anon_sym_LT2, - ACTIONS(3525), 1, - anon_sym_COLON_COLON, - ACTIONS(4832), 1, - anon_sym_BANG, - STATE(1087), 1, - sym_type_arguments, - STATE(2110), 2, + ACTIONS(5828), 1, + anon_sym_trait, + STATE(2580), 2, sym_line_comment, sym_block_comment, - ACTIONS(3458), 6, + ACTIONS(3820), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [66713] = 4, + [80795] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2111), 2, + ACTIONS(5830), 1, + sym_identifier, + STATE(2581), 2, sym_line_comment, sym_block_comment, - ACTIONS(1455), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [66736] = 8, + ACTIONS(5295), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [80817] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4011), 1, - anon_sym_LT2, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(4834), 1, - anon_sym_BANG, - STATE(1615), 1, - sym_type_arguments, - STATE(2112), 2, + ACTIONS(5832), 1, + sym_identifier, + STATE(2582), 2, sym_line_comment, sym_block_comment, - ACTIONS(3458), 6, + ACTIONS(5295), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [66767] = 4, + [80839] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2113), 2, + ACTIONS(5483), 1, + anon_sym_LPAREN, + ACTIONS(5485), 1, + anon_sym_LBRACE, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5834), 1, + anon_sym_SEMI, + STATE(847), 1, + sym_field_declaration_list, + STATE(3278), 1, + sym_ordered_field_declaration_list, + STATE(3735), 1, + sym_where_clause, + STATE(2583), 2, sym_line_comment, sym_block_comment, - ACTIONS(4836), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [66790] = 4, + [80871] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2114), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4838), 10, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(5175), 1, + anon_sym_COLON_COLON, + ACTIONS(5836), 1, + anon_sym_LPAREN, + ACTIONS(5838), 1, + anon_sym_LBRACK, + ACTIONS(5840), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, + ACTIONS(5842), 1, + anon_sym_LBRACE, + ACTIONS(5844), 1, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [66813] = 4, + STATE(3896), 1, + sym_delim_token_tree, + STATE(2584), 2, + sym_line_comment, + sym_block_comment, + [80903] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2115), 2, + ACTIONS(4621), 1, + anon_sym_LBRACE, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(5848), 1, + anon_sym_STAR, + STATE(3236), 1, + sym_use_list, + STATE(3523), 1, + sym_type_arguments, + ACTIONS(5846), 2, + sym_identifier, + sym_super, + STATE(2585), 2, sym_line_comment, sym_block_comment, - ACTIONS(4840), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [66836] = 4, + [80933] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2116), 2, + ACTIONS(1519), 1, + anon_sym_DOT_DOT, + ACTIONS(5642), 1, + sym_identifier, + ACTIONS(5648), 1, + anon_sym_ref, + ACTIONS(5650), 1, + sym_mutable_specifier, + ACTIONS(5850), 1, + anon_sym_RBRACE, + STATE(2586), 2, sym_line_comment, sym_block_comment, - ACTIONS(4842), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [66859] = 11, + STATE(3664), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [80963] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, - anon_sym_POUND, - ACTIONS(4774), 1, - sym_identifier, - ACTIONS(4778), 1, + ACTIONS(1519), 1, anon_sym_DOT_DOT, - ACTIONS(4782), 1, - sym_integer_literal, - ACTIONS(4844), 1, + ACTIONS(5642), 1, + sym_identifier, + ACTIONS(5648), 1, + anon_sym_ref, + ACTIONS(5650), 1, + sym_mutable_specifier, + ACTIONS(5852), 1, anon_sym_RBRACE, - STATE(1405), 1, - sym_attribute_item, - STATE(2466), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2117), 2, + STATE(2587), 2, sym_line_comment, sym_block_comment, - STATE(3096), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [66896] = 9, + STATE(3664), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [80993] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4497), 1, - anon_sym_LPAREN, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(4846), 1, + ACTIONS(4621), 1, anon_sym_LBRACE, - STATE(1955), 1, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(5848), 1, + anon_sym_STAR, + STATE(3236), 1, + sym_use_list, + STATE(3478), 1, sym_type_arguments, - STATE(1975), 1, - sym_parameters, - STATE(2118), 2, + ACTIONS(5846), 2, + sym_identifier, + sym_super, + STATE(2588), 2, sym_line_comment, sym_block_comment, - ACTIONS(3321), 5, + [81023] = 10, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5483), 1, + anon_sym_LPAREN, + ACTIONS(5485), 1, + anon_sym_LBRACE, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5854), 1, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_PLUS, - anon_sym_COMMA, - [66929] = 4, + STATE(854), 1, + sym_field_declaration_list, + STATE(3149), 1, + sym_ordered_field_declaration_list, + STATE(3503), 1, + sym_where_clause, + STATE(2589), 2, + sym_line_comment, + sym_block_comment, + [81055] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2119), 2, + ACTIONS(5116), 1, + anon_sym_trait, + STATE(2590), 2, sym_line_comment, sym_block_comment, - ACTIONS(4848), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [66952] = 4, + ACTIONS(3820), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [81077] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2120), 2, + ACTIONS(5856), 1, + sym_identifier, + STATE(2591), 2, sym_line_comment, sym_block_comment, - ACTIONS(4850), 10, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(5295), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [81099] = 10, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5281), 1, + anon_sym_COLON_COLON, + ACTIONS(5836), 1, + anon_sym_LPAREN, + ACTIONS(5838), 1, + anon_sym_LBRACK, + ACTIONS(5840), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, + ACTIONS(5842), 1, + anon_sym_LBRACE, + ACTIONS(5844), 1, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [66975] = 4, + STATE(3896), 1, + sym_delim_token_tree, + STATE(2592), 2, + sym_line_comment, + sym_block_comment, + [81131] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2121), 2, + ACTIONS(5309), 1, + anon_sym_COLON_COLON, + ACTIONS(5836), 1, + anon_sym_LPAREN, + ACTIONS(5838), 1, + anon_sym_LBRACK, + ACTIONS(5840), 1, + anon_sym_RBRACK, + ACTIONS(5842), 1, + anon_sym_LBRACE, + ACTIONS(5844), 1, + anon_sym_EQ, + STATE(3896), 1, + sym_delim_token_tree, + STATE(2593), 2, sym_line_comment, sym_block_comment, - ACTIONS(4720), 10, - anon_sym_SEMI, - anon_sym_RPAREN, + [81163] = 10, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5287), 1, + anon_sym_COLON_COLON, + ACTIONS(5836), 1, + anon_sym_LPAREN, + ACTIONS(5838), 1, + anon_sym_LBRACK, + ACTIONS(5842), 1, + anon_sym_LBRACE, + ACTIONS(5858), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, + ACTIONS(5860), 1, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [66998] = 4, + STATE(3914), 1, + sym_delim_token_tree, + STATE(2594), 2, + sym_line_comment, + sym_block_comment, + [81195] = 10, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5762), 1, + anon_sym_LPAREN, + ACTIONS(5764), 1, + anon_sym_LBRACK, + ACTIONS(5766), 1, + anon_sym_LBRACE, + ACTIONS(5862), 1, + anon_sym_RPAREN, + STATE(2607), 1, + aux_sym_macro_definition_repeat1, + STATE(3697), 1, + sym_macro_rule, + STATE(4058), 1, + sym_token_tree_pattern, + STATE(2595), 2, + sym_line_comment, + sym_block_comment, + [81227] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2122), 2, + ACTIONS(5762), 1, + anon_sym_LPAREN, + ACTIONS(5764), 1, + anon_sym_LBRACK, + ACTIONS(5766), 1, + anon_sym_LBRACE, + ACTIONS(5862), 1, + anon_sym_RBRACK, + STATE(2608), 1, + aux_sym_macro_definition_repeat1, + STATE(3682), 1, + sym_macro_rule, + STATE(4058), 1, + sym_token_tree_pattern, + STATE(2596), 2, sym_line_comment, sym_block_comment, - ACTIONS(4852), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [67021] = 11, - ACTIONS(103), 1, + [81259] = 10, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, - anon_sym_POUND, - ACTIONS(4774), 1, - sym_identifier, - ACTIONS(4778), 1, - anon_sym_DOT_DOT, - ACTIONS(4782), 1, - sym_integer_literal, - ACTIONS(4854), 1, - anon_sym_RBRACE, - STATE(1405), 1, - sym_attribute_item, - STATE(2466), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2123), 2, + ACTIONS(5864), 1, + aux_sym_line_comment_token1, + ACTIONS(5866), 1, + aux_sym_line_comment_token3, + ACTIONS(5868), 1, + anon_sym_BANG2, + ACTIONS(5870), 1, + anon_sym_SLASH2, + STATE(3980), 1, + sym__inner_line_doc_comment_marker, + STATE(4018), 1, + sym__outer_line_doc_comment_marker, + STATE(4040), 1, + sym__line_doc_comment_marker, + STATE(2597), 2, sym_line_comment, sym_block_comment, - STATE(3096), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [67058] = 4, + [81291] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2124), 2, + ACTIONS(5762), 1, + anon_sym_LPAREN, + ACTIONS(5764), 1, + anon_sym_LBRACK, + ACTIONS(5766), 1, + anon_sym_LBRACE, + ACTIONS(5872), 1, + anon_sym_RPAREN, + STATE(2609), 1, + aux_sym_macro_definition_repeat1, + STATE(3681), 1, + sym_macro_rule, + STATE(4058), 1, + sym_token_tree_pattern, + STATE(2598), 2, sym_line_comment, sym_block_comment, - ACTIONS(4856), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [67081] = 10, + [81323] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4499), 1, - anon_sym_BANG, - ACTIONS(4509), 1, + ACTIONS(5762), 1, anon_sym_LPAREN, - ACTIONS(4513), 1, - anon_sym_COLON, - ACTIONS(4517), 1, - anon_sym_DOT_DOT, - ACTIONS(4858), 1, - anon_sym_COLON_COLON, - ACTIONS(4519), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2125), 2, + ACTIONS(5764), 1, + anon_sym_LBRACK, + ACTIONS(5766), 1, + anon_sym_LBRACE, + ACTIONS(5872), 1, + anon_sym_RBRACK, + STATE(2610), 1, + aux_sym_macro_definition_repeat1, + STATE(3680), 1, + sym_macro_rule, + STATE(4058), 1, + sym_token_tree_pattern, + STATE(2599), 2, sym_line_comment, sym_block_comment, - ACTIONS(4507), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [67116] = 4, + [81355] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2126), 2, + ACTIONS(5762), 1, + anon_sym_LPAREN, + ACTIONS(5764), 1, + anon_sym_LBRACK, + ACTIONS(5766), 1, + anon_sym_LBRACE, + ACTIONS(5874), 1, + anon_sym_RBRACE, + STATE(2573), 1, + aux_sym_macro_definition_repeat1, + STATE(3498), 1, + sym_macro_rule, + STATE(4058), 1, + sym_token_tree_pattern, + STATE(2600), 2, sym_line_comment, sym_block_comment, - ACTIONS(4860), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [67139] = 8, + [81387] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1601), 1, + ACTIONS(5762), 1, + anon_sym_LPAREN, + ACTIONS(5764), 1, + anon_sym_LBRACK, + ACTIONS(5766), 1, anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - STATE(2111), 1, - sym_block, - STATE(3611), 1, - sym_label, - STATE(2127), 2, + ACTIONS(5876), 1, + anon_sym_RBRACK, + STATE(2574), 1, + aux_sym_macro_definition_repeat1, + STATE(3511), 1, + sym_macro_rule, + STATE(4058), 1, + sym_token_tree_pattern, + STATE(2601), 2, sym_line_comment, sym_block_comment, - ACTIONS(3458), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [67170] = 4, + [81419] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2128), 2, + ACTIONS(5762), 1, + anon_sym_LPAREN, + ACTIONS(5764), 1, + anon_sym_LBRACK, + ACTIONS(5766), 1, + anon_sym_LBRACE, + ACTIONS(5876), 1, + anon_sym_RPAREN, + STATE(2575), 1, + aux_sym_macro_definition_repeat1, + STATE(3515), 1, + sym_macro_rule, + STATE(4058), 1, + sym_token_tree_pattern, + STATE(2602), 2, sym_line_comment, sym_block_comment, - ACTIONS(4862), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [67193] = 4, + [81451] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2129), 2, + ACTIONS(5762), 1, + anon_sym_LPAREN, + ACTIONS(5764), 1, + anon_sym_LBRACK, + ACTIONS(5766), 1, + anon_sym_LBRACE, + ACTIONS(5878), 1, + anon_sym_RBRACE, + STATE(2576), 1, + aux_sym_macro_definition_repeat1, + STATE(3530), 1, + sym_macro_rule, + STATE(4058), 1, + sym_token_tree_pattern, + STATE(2603), 2, sym_line_comment, sym_block_comment, - ACTIONS(4734), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [67216] = 13, - ACTIONS(69), 1, - anon_sym_pub, + [81483] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, - anon_sym_POUND, - ACTIONS(4864), 1, - sym_identifier, - ACTIONS(4866), 1, - anon_sym_RBRACE, - ACTIONS(4868), 1, - anon_sym_COMMA, - ACTIONS(4870), 1, - sym_crate, - STATE(1405), 1, - sym_attribute_item, - STATE(2244), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2787), 1, - sym_enum_variant, - STATE(3612), 1, - sym_visibility_modifier, - STATE(2130), 2, + ACTIONS(5762), 1, + anon_sym_LPAREN, + ACTIONS(5764), 1, + anon_sym_LBRACK, + ACTIONS(5766), 1, + anon_sym_LBRACE, + ACTIONS(5880), 1, + anon_sym_RBRACK, + STATE(2577), 1, + aux_sym_macro_definition_repeat1, + STATE(3534), 1, + sym_macro_rule, + STATE(4058), 1, + sym_token_tree_pattern, + STATE(2604), 2, sym_line_comment, sym_block_comment, - [67257] = 4, + [81515] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2131), 2, + ACTIONS(5762), 1, + anon_sym_LPAREN, + ACTIONS(5764), 1, + anon_sym_LBRACK, + ACTIONS(5766), 1, + anon_sym_LBRACE, + ACTIONS(5880), 1, + anon_sym_RPAREN, + STATE(2578), 1, + aux_sym_macro_definition_repeat1, + STATE(3540), 1, + sym_macro_rule, + STATE(4058), 1, + sym_token_tree_pattern, + STATE(2605), 2, sym_line_comment, sym_block_comment, - ACTIONS(4872), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [67280] = 10, + [81547] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(4553), 1, - anon_sym_BANG, - ACTIONS(4555), 1, + ACTIONS(5054), 1, anon_sym_DOT_DOT, - ACTIONS(4626), 1, + ACTIONS(5882), 1, anon_sym_COLON_COLON, - STATE(1952), 1, - sym_type_arguments, - ACTIONS(4557), 2, + ACTIONS(5056), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2132), 2, + STATE(2606), 2, sym_line_comment, sym_block_comment, - ACTIONS(4549), 3, + ACTIONS(3775), 3, + anon_sym_SEMI, anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_COMMA, - [67315] = 13, - ACTIONS(69), 1, - anon_sym_pub, + anon_sym_PLUS, + [81573] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, - anon_sym_POUND, - ACTIONS(4870), 1, - sym_crate, - ACTIONS(4874), 1, - sym_identifier, - ACTIONS(4876), 1, - anon_sym_RBRACE, - ACTIONS(4878), 1, - anon_sym_COMMA, - STATE(1405), 1, - sym_attribute_item, - STATE(2246), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2802), 1, - sym_field_declaration, - STATE(3407), 1, - sym_visibility_modifier, - STATE(2133), 2, + ACTIONS(5762), 1, + anon_sym_LPAREN, + ACTIONS(5764), 1, + anon_sym_LBRACK, + ACTIONS(5766), 1, + anon_sym_LBRACE, + ACTIONS(5884), 1, + anon_sym_RPAREN, + STATE(2450), 1, + aux_sym_macro_definition_repeat1, + STATE(3656), 1, + sym_macro_rule, + STATE(4058), 1, + sym_token_tree_pattern, + STATE(2607), 2, sym_line_comment, sym_block_comment, - [67356] = 4, + [81605] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2134), 2, + ACTIONS(5762), 1, + anon_sym_LPAREN, + ACTIONS(5764), 1, + anon_sym_LBRACK, + ACTIONS(5766), 1, + anon_sym_LBRACE, + ACTIONS(5884), 1, + anon_sym_RBRACK, + STATE(2450), 1, + aux_sym_macro_definition_repeat1, + STATE(3653), 1, + sym_macro_rule, + STATE(4058), 1, + sym_token_tree_pattern, + STATE(2608), 2, sym_line_comment, sym_block_comment, - ACTIONS(4880), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [67379] = 4, + [81637] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2135), 2, + ACTIONS(5762), 1, + anon_sym_LPAREN, + ACTIONS(5764), 1, + anon_sym_LBRACK, + ACTIONS(5766), 1, + anon_sym_LBRACE, + ACTIONS(5886), 1, + anon_sym_RPAREN, + STATE(2450), 1, + aux_sym_macro_definition_repeat1, + STATE(3651), 1, + sym_macro_rule, + STATE(4058), 1, + sym_token_tree_pattern, + STATE(2609), 2, sym_line_comment, sym_block_comment, - ACTIONS(4882), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [67402] = 4, + [81669] = 10, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2136), 2, + ACTIONS(5762), 1, + anon_sym_LPAREN, + ACTIONS(5764), 1, + anon_sym_LBRACK, + ACTIONS(5766), 1, + anon_sym_LBRACE, + ACTIONS(5886), 1, + anon_sym_RBRACK, + STATE(2450), 1, + aux_sym_macro_definition_repeat1, + STATE(3649), 1, + sym_macro_rule, + STATE(4058), 1, + sym_token_tree_pattern, + STATE(2610), 2, sym_line_comment, sym_block_comment, - ACTIONS(4507), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [67425] = 4, + [81701] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2137), 2, + ACTIONS(5086), 1, + anon_sym_trait, + STATE(2611), 2, sym_line_comment, sym_block_comment, - ACTIONS(4884), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [67448] = 11, + ACTIONS(3820), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [81723] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, - anon_sym_POUND, - ACTIONS(4774), 1, - sym_identifier, - ACTIONS(4778), 1, + ACTIONS(5054), 1, anon_sym_DOT_DOT, - ACTIONS(4782), 1, - sym_integer_literal, - ACTIONS(4886), 1, - anon_sym_RBRACE, - STATE(1405), 1, - sym_attribute_item, - STATE(2466), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2138), 2, + ACTIONS(5802), 1, + anon_sym_COLON, + ACTIONS(5888), 1, + anon_sym_COLON_COLON, + ACTIONS(5056), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5800), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2612), 2, sym_line_comment, sym_block_comment, - STATE(3096), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [67485] = 10, + [81751] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(4888), 1, - anon_sym_BANG, - ACTIONS(4890), 1, + ACTIONS(5054), 1, anon_sym_DOT_DOT, - ACTIONS(4894), 1, + ACTIONS(5888), 1, anon_sym_COLON_COLON, - STATE(1952), 1, - sym_type_arguments, - ACTIONS(4892), 2, + ACTIONS(5056), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2139), 2, + STATE(2613), 2, sym_line_comment, sym_block_comment, - ACTIONS(4549), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [67520] = 4, + ACTIONS(3775), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [81777] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2140), 2, + ACTIONS(5890), 1, + sym_identifier, + STATE(2614), 2, sym_line_comment, sym_block_comment, - ACTIONS(4896), 10, + ACTIONS(5295), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [81799] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5473), 1, + anon_sym_LBRACE, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(5892), 1, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [67543] = 13, - ACTIONS(69), 1, - anon_sym_pub, + STATE(1296), 1, + sym_declaration_list, + STATE(3443), 1, + sym_where_clause, + STATE(2615), 2, + sym_line_comment, + sym_block_comment, + [81828] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, - anon_sym_POUND, - ACTIONS(4864), 1, - sym_identifier, - ACTIONS(4870), 1, - sym_crate, - ACTIONS(4898), 1, - anon_sym_RBRACE, - ACTIONS(4900), 1, - anon_sym_COMMA, - STATE(1405), 1, - sym_attribute_item, - STATE(2213), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2969), 1, - sym_enum_variant, - STATE(3612), 1, - sym_visibility_modifier, - STATE(2141), 2, + ACTIONS(5473), 1, + anon_sym_LBRACE, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(5894), 1, + anon_sym_SEMI, + STATE(1477), 1, + sym_declaration_list, + STATE(3328), 1, + sym_where_clause, + STATE(2616), 2, sym_line_comment, sym_block_comment, - [67584] = 4, + [81857] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2142), 2, + ACTIONS(5200), 1, + anon_sym_DOT_DOT, + ACTIONS(5202), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2617), 2, sym_line_comment, sym_block_comment, - ACTIONS(4902), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, + ACTIONS(5044), 3, + anon_sym_EQ_GT, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [67607] = 4, + anon_sym_if, + [81880] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2143), 2, + ACTIONS(1227), 1, + anon_sym_LBRACE, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + ACTIONS(5896), 1, + anon_sym_if, + STATE(4116), 1, + sym_label, + STATE(474), 2, + sym_if_expression, + sym_block, + STATE(2618), 2, sym_line_comment, sym_block_comment, - ACTIONS(4904), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [67630] = 4, + [81907] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2144), 2, + ACTIONS(5487), 1, + anon_sym_LT, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5517), 1, + anon_sym_LBRACE, + STATE(1568), 1, + sym_field_declaration_list, + STATE(3068), 1, + sym_type_parameters, + STATE(3643), 1, + sym_where_clause, + STATE(2619), 2, sym_line_comment, sym_block_comment, - ACTIONS(4906), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [67653] = 4, + [81936] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2145), 2, + ACTIONS(5221), 1, + anon_sym_DOT_DOT, + STATE(2620), 2, sym_line_comment, sym_block_comment, - ACTIONS(4908), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, + ACTIONS(5219), 5, + anon_sym_EQ_GT, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [67676] = 13, - ACTIONS(69), 1, - anon_sym_pub, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [81957] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, - anon_sym_POUND, - ACTIONS(4870), 1, - sym_crate, - ACTIONS(4874), 1, - sym_identifier, - ACTIONS(4910), 1, - anon_sym_RBRACE, - ACTIONS(4912), 1, - anon_sym_COMMA, - STATE(1405), 1, - sym_attribute_item, - STATE(2200), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2949), 1, - sym_field_declaration, - STATE(3407), 1, - sym_visibility_modifier, - STATE(2146), 2, + STATE(2621), 2, sym_line_comment, sym_block_comment, - [67717] = 4, + ACTIONS(3820), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [81976] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2147), 2, + ACTIONS(5487), 1, + anon_sym_LT, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5898), 1, + anon_sym_LBRACE, + STATE(1574), 1, + sym_enum_variant_list, + STATE(3070), 1, + sym_type_parameters, + STATE(3635), 1, + sym_where_clause, + STATE(2622), 2, sym_line_comment, sym_block_comment, - ACTIONS(4914), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [67740] = 12, - ACTIONS(69), 1, - anon_sym_pub, + [82005] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, - anon_sym_POUND, - ACTIONS(4870), 1, - sym_crate, - ACTIONS(4874), 1, - sym_identifier, - ACTIONS(4916), 1, - anon_sym_RBRACE, - STATE(1405), 1, - sym_attribute_item, - STATE(2214), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3246), 1, - sym_field_declaration, - STATE(3407), 1, - sym_visibility_modifier, - STATE(2148), 2, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5523), 1, + anon_sym_LBRACE, + ACTIONS(5596), 1, + anon_sym_COLON, + STATE(799), 1, + sym_declaration_list, + STATE(2985), 1, + sym_trait_bounds, + STATE(3772), 1, + sym_where_clause, + STATE(2623), 2, sym_line_comment, sym_block_comment, - [67778] = 6, + [82034] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4920), 1, + ACTIONS(5596), 1, + anon_sym_COLON, + ACTIONS(5900), 1, anon_sym_PLUS, - STATE(2154), 1, - aux_sym_trait_bounds_repeat1, - STATE(2149), 2, + ACTIONS(5902), 1, + anon_sym_GT, + ACTIONS(5904), 1, + anon_sym_COMMA, + STATE(3279), 1, + sym_trait_bounds, + STATE(3280), 1, + aux_sym_type_arguments_repeat1, + STATE(2624), 2, sym_line_comment, sym_block_comment, - ACTIONS(4918), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, + [82063] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3587), 1, + anon_sym_PLUS, + ACTIONS(5596), 1, + anon_sym_COLON, + ACTIONS(5902), 1, anon_sym_GT, + ACTIONS(5904), 1, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - [67804] = 12, - ACTIONS(69), 1, - anon_sym_pub, + STATE(3279), 1, + sym_trait_bounds, + STATE(3280), 1, + aux_sym_type_arguments_repeat1, + STATE(2625), 2, + sym_line_comment, + sym_block_comment, + [82092] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, - anon_sym_POUND, - ACTIONS(4864), 1, - sym_identifier, - ACTIONS(4870), 1, - sym_crate, - ACTIONS(4922), 1, - anon_sym_RBRACE, - STATE(1405), 1, - sym_attribute_item, - STATE(2198), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3233), 1, - sym_enum_variant, - STATE(3612), 1, - sym_visibility_modifier, - STATE(2150), 2, + ACTIONS(5473), 1, + anon_sym_LBRACE, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(5906), 1, + anon_sym_SEMI, + STATE(1579), 1, + sym_declaration_list, + STATE(3232), 1, + sym_where_clause, + STATE(2626), 2, sym_line_comment, sym_block_comment, - [67842] = 9, + [82121] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4656), 1, - anon_sym_LPAREN, - ACTIONS(4660), 1, - anon_sym_BANG, - ACTIONS(4664), 1, - anon_sym_DOT_DOT, - ACTIONS(4924), 1, - anon_sym_COLON_COLON, - ACTIONS(4666), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2151), 2, + ACTIONS(5487), 1, + anon_sym_LT, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5908), 1, + anon_sym_LBRACE, + STATE(827), 1, + sym_enum_variant_list, + STATE(3052), 1, + sym_type_parameters, + STATE(3723), 1, + sym_where_clause, + STATE(2627), 2, sym_line_comment, sym_block_comment, - ACTIONS(4507), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [67874] = 9, + [82150] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4497), 1, - anon_sym_LPAREN, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(4926), 1, - anon_sym_for, - STATE(1955), 1, - sym_type_arguments, - STATE(1975), 1, - sym_parameters, - STATE(2152), 2, + ACTIONS(5487), 1, + anon_sym_LT, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5908), 1, + anon_sym_LBRACE, + STATE(635), 1, + sym_enum_variant_list, + STATE(2955), 1, + sym_type_parameters, + STATE(3739), 1, + sym_where_clause, + STATE(2628), 2, sym_line_comment, sym_block_comment, - ACTIONS(3321), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [67906] = 9, + [82179] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4555), 1, - anon_sym_DOT_DOT, - ACTIONS(4626), 1, - anon_sym_COLON_COLON, - ACTIONS(4928), 1, - anon_sym_RBRACK, - ACTIONS(3321), 2, - anon_sym_SEMI, + ACTIONS(5596), 1, + anon_sym_COLON, + ACTIONS(5900), 1, anon_sym_PLUS, - ACTIONS(4549), 2, - anon_sym_PIPE, + ACTIONS(5910), 1, + anon_sym_GT, + ACTIONS(5912), 1, anon_sym_COMMA, - ACTIONS(4557), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2153), 2, + STATE(3384), 1, + aux_sym_type_arguments_repeat1, + STATE(3385), 1, + sym_trait_bounds, + STATE(2629), 2, sym_line_comment, sym_block_comment, - [67938] = 5, + [82208] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4933), 1, - anon_sym_PLUS, - STATE(2154), 3, - sym_line_comment, - sym_block_comment, - aux_sym_trait_bounds_repeat1, - ACTIONS(4931), 7, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5596), 1, + anon_sym_COLON, + ACTIONS(5914), 1, anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(5916), 1, anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - [67962] = 9, + STATE(3229), 1, + sym_trait_bounds, + STATE(3929), 1, + sym_where_clause, + STATE(2630), 2, + sym_line_comment, + sym_block_comment, + [82237] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4497), 1, - anon_sym_LPAREN, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(4936), 1, - anon_sym_for, - STATE(1955), 1, - sym_type_arguments, - STATE(1975), 1, - sym_parameters, - STATE(2155), 2, + ACTIONS(3587), 1, + anon_sym_PLUS, + ACTIONS(5596), 1, + anon_sym_COLON, + ACTIONS(5910), 1, + anon_sym_GT, + ACTIONS(5912), 1, + anon_sym_COMMA, + STATE(3384), 1, + aux_sym_type_arguments_repeat1, + STATE(3385), 1, + sym_trait_bounds, + STATE(2631), 2, sym_line_comment, sym_block_comment, - ACTIONS(3321), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [67994] = 10, + [82266] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, - anon_sym_POUND, - ACTIONS(4774), 1, - sym_identifier, - ACTIONS(4778), 1, - anon_sym_DOT_DOT, - ACTIONS(4782), 1, - sym_integer_literal, - STATE(1405), 1, - sym_attribute_item, - STATE(2466), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2156), 2, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5523), 1, + anon_sym_LBRACE, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(5918), 1, + anon_sym_SEMI, + STATE(831), 1, + sym_declaration_list, + STATE(3287), 1, + sym_where_clause, + STATE(2632), 2, sym_line_comment, sym_block_comment, - STATE(3096), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [68028] = 12, + [82295] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4938), 1, - anon_sym_SEMI, - ACTIONS(4940), 1, - anon_sym_LPAREN, - ACTIONS(4942), 1, + ACTIONS(5473), 1, anon_sym_LBRACE, - ACTIONS(4944), 1, - anon_sym_LT, - ACTIONS(4946), 1, + ACTIONS(5489), 1, anon_sym_where, - STATE(758), 1, - sym_field_declaration_list, - STATE(2272), 1, - sym_type_parameters, - STATE(2891), 1, - sym_ordered_field_declaration_list, - STATE(3320), 1, + ACTIONS(5596), 1, + anon_sym_COLON, + STATE(1586), 1, + sym_declaration_list, + STATE(3080), 1, + sym_trait_bounds, + STATE(3624), 1, sym_where_clause, - STATE(2157), 2, + STATE(2633), 2, sym_line_comment, sym_block_comment, - [68066] = 5, + [82324] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3372), 1, - anon_sym_DOT_DOT, - STATE(2158), 2, + ACTIONS(5132), 1, + anon_sym_COLON_COLON, + ACTIONS(5580), 1, + anon_sym_for, + STATE(2634), 2, sym_line_comment, sym_block_comment, - ACTIONS(3374), 8, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_if, - [68090] = 5, + ACTIONS(3775), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [82347] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3333), 1, - anon_sym_DOT_DOT, - STATE(2159), 2, + ACTIONS(4063), 2, + anon_sym_PLUS, + anon_sym_DASH_GT, + ACTIONS(5393), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(5920), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2635), 2, sym_line_comment, sym_block_comment, - ACTIONS(3335), 8, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_if, - [68114] = 7, + [82370] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4948), 1, - anon_sym_SEMI, - ACTIONS(4950), 1, - anon_sym_LBRACE, - STATE(680), 1, - sym_declaration_list, - STATE(2160), 2, + ACTIONS(4087), 2, + anon_sym_PLUS, + anon_sym_DASH_GT, + ACTIONS(5381), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(5923), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2636), 2, sym_line_comment, sym_block_comment, - ACTIONS(3458), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [68142] = 5, + [82393] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3345), 1, - anon_sym_DOT_DOT, - STATE(2161), 2, + ACTIONS(5132), 1, + anon_sym_COLON_COLON, + ACTIONS(5578), 1, + anon_sym_for, + STATE(2637), 2, sym_line_comment, sym_block_comment, - ACTIONS(3347), 8, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_if, - [68166] = 5, + ACTIONS(3775), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [82416] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3353), 1, - anon_sym_DOT_DOT, - STATE(2162), 2, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5523), 1, + anon_sym_LBRACE, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(5926), 1, + anon_sym_SEMI, + STATE(715), 1, + sym_declaration_list, + STATE(3326), 1, + sym_where_clause, + STATE(2638), 2, sym_line_comment, sym_block_comment, - ACTIONS(3355), 8, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_if, - [68190] = 10, + [82445] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3321), 1, - anon_sym_PLUS, - ACTIONS(4549), 1, - anon_sym_PIPE, - ACTIONS(4551), 1, - anon_sym_COLON, - ACTIONS(4555), 1, + ACTIONS(5054), 1, anon_sym_DOT_DOT, - ACTIONS(4585), 1, + ACTIONS(5888), 1, anon_sym_COLON_COLON, - ACTIONS(4557), 2, + ACTIONS(5056), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4928), 2, + ACTIONS(5928), 2, anon_sym_RPAREN, anon_sym_COMMA, - STATE(2163), 2, + STATE(2639), 2, sym_line_comment, sym_block_comment, - [68224] = 7, + [82470] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(4952), 1, - anon_sym_COLON_COLON, - STATE(1952), 1, - sym_type_arguments, - STATE(2164), 2, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5523), 1, + anon_sym_LBRACE, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(5930), 1, + anon_sym_SEMI, + STATE(507), 1, + sym_declaration_list, + STATE(3409), 1, + sym_where_clause, + STATE(2640), 2, sym_line_comment, sym_block_comment, - ACTIONS(3458), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [68252] = 7, + [82499] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4954), 1, - anon_sym_SEMI, - ACTIONS(4956), 1, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5523), 1, anon_sym_LBRACE, - STATE(1085), 1, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(5932), 1, + anon_sym_SEMI, + STATE(589), 1, sym_declaration_list, - STATE(2165), 2, + STATE(3325), 1, + sym_where_clause, + STATE(2641), 2, sym_line_comment, sym_block_comment, - ACTIONS(3458), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [68280] = 6, + [82528] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4920), 1, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5523), 1, + anon_sym_LBRACE, + ACTIONS(5608), 1, anon_sym_PLUS, - STATE(2149), 1, - aux_sym_trait_bounds_repeat1, - STATE(2166), 2, + ACTIONS(5934), 1, + anon_sym_SEMI, + STATE(617), 1, + sym_declaration_list, + STATE(3213), 1, + sym_where_clause, + STATE(2642), 2, sym_line_comment, sym_block_comment, - ACTIONS(4958), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - [68306] = 9, + [82557] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4497), 1, - anon_sym_LPAREN, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(4960), 1, - anon_sym_for, - STATE(1955), 1, - sym_type_arguments, - STATE(1975), 1, - sym_parameters, - STATE(2167), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3321), 4, - anon_sym_SEMI, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5523), 1, anon_sym_LBRACE, + ACTIONS(5608), 1, anon_sym_PLUS, - anon_sym_where, - [68338] = 9, + ACTIONS(5936), 1, + anon_sym_SEMI, + STATE(620), 1, + sym_declaration_list, + STATE(3214), 1, + sym_where_clause, + STATE(2643), 2, + sym_line_comment, + sym_block_comment, + [82586] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4497), 1, - anon_sym_LPAREN, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(4962), 1, + ACTIONS(5132), 1, + anon_sym_COLON_COLON, + ACTIONS(5558), 1, anon_sym_for, - STATE(1955), 1, - sym_type_arguments, - STATE(1975), 1, - sym_parameters, - STATE(2168), 2, + STATE(2644), 2, sym_line_comment, sym_block_comment, - ACTIONS(3321), 4, + ACTIONS(3775), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [68370] = 6, + [82609] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4964), 1, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5523), 1, + anon_sym_LBRACE, + ACTIONS(5608), 1, anon_sym_PLUS, - STATE(2149), 1, - aux_sym_trait_bounds_repeat1, - STATE(2169), 2, + ACTIONS(5938), 1, + anon_sym_SEMI, + STATE(712), 1, + sym_declaration_list, + STATE(3327), 1, + sym_where_clause, + STATE(2645), 2, sym_line_comment, sym_block_comment, - ACTIONS(4958), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - [68396] = 7, + [82638] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4956), 1, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5523), 1, anon_sym_LBRACE, - ACTIONS(4966), 1, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(5940), 1, anon_sym_SEMI, - STATE(1112), 1, + STATE(696), 1, sym_declaration_list, - STATE(2170), 2, + STATE(3333), 1, + sym_where_clause, + STATE(2646), 2, sym_line_comment, sym_block_comment, - ACTIONS(3458), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [68424] = 6, + [82667] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4968), 1, + ACTIONS(5473), 1, + anon_sym_LBRACE, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5608), 1, anon_sym_PLUS, - STATE(2149), 1, - aux_sym_trait_bounds_repeat1, - STATE(2171), 2, + ACTIONS(5942), 1, + anon_sym_SEMI, + STATE(1602), 1, + sym_declaration_list, + STATE(3206), 1, + sym_where_clause, + STATE(2647), 2, sym_line_comment, sym_block_comment, - ACTIONS(4958), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - [68450] = 12, - ACTIONS(69), 1, - anon_sym_pub, + [82696] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, - anon_sym_POUND, - ACTIONS(4864), 1, - sym_identifier, - ACTIONS(4870), 1, - sym_crate, - ACTIONS(4970), 1, - anon_sym_RBRACE, - STATE(1405), 1, - sym_attribute_item, - STATE(2198), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3233), 1, - sym_enum_variant, - STATE(3612), 1, - sym_visibility_modifier, - STATE(2172), 2, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5523), 1, + anon_sym_LBRACE, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(5944), 1, + anon_sym_SEMI, + STATE(694), 1, + sym_declaration_list, + STATE(3334), 1, + sym_where_clause, + STATE(2648), 2, sym_line_comment, sym_block_comment, - [68488] = 7, + [82725] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3305), 1, - anon_sym_LT2, - ACTIONS(4972), 1, + ACTIONS(5132), 1, anon_sym_COLON_COLON, - STATE(1087), 1, - sym_type_arguments, - STATE(2173), 2, + ACTIONS(5513), 1, + anon_sym_for, + STATE(2649), 2, sym_line_comment, sym_block_comment, - ACTIONS(3458), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [68516] = 12, + ACTIONS(3775), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [82748] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4940), 1, - anon_sym_LPAREN, - ACTIONS(4944), 1, + ACTIONS(5485), 1, + anon_sym_LBRACE, + ACTIONS(5487), 1, anon_sym_LT, - ACTIONS(4946), 1, + ACTIONS(5489), 1, anon_sym_where, - ACTIONS(4974), 1, - anon_sym_SEMI, - ACTIONS(4976), 1, - anon_sym_LBRACE, - STATE(1151), 1, + STATE(502), 1, sym_field_declaration_list, - STATE(2260), 1, + STATE(2934), 1, sym_type_parameters, - STATE(2810), 1, - sym_ordered_field_declaration_list, - STATE(3277), 1, + STATE(3690), 1, sym_where_clause, - STATE(2174), 2, + STATE(2650), 2, sym_line_comment, sym_block_comment, - [68554] = 9, + [82777] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4497), 1, - anon_sym_LPAREN, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(4978), 1, + ACTIONS(5596), 1, + anon_sym_COLON, + ACTIONS(5946), 1, + anon_sym_GT, + ACTIONS(5948), 1, + anon_sym_COMMA, + STATE(3271), 1, + sym_trait_bounds, + STATE(3272), 1, + aux_sym_type_parameters_repeat1, + STATE(3456), 1, + aux_sym_for_lifetimes_repeat1, + STATE(2651), 2, + sym_line_comment, + sym_block_comment, + [82806] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5132), 1, + anon_sym_COLON_COLON, + ACTIONS(5592), 1, anon_sym_for, - STATE(1955), 1, - sym_type_arguments, - STATE(1975), 1, - sym_parameters, - STATE(2175), 2, + STATE(2652), 2, sym_line_comment, sym_block_comment, - ACTIONS(3321), 4, + ACTIONS(3775), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [68586] = 12, - ACTIONS(69), 1, - anon_sym_pub, + [82829] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, - anon_sym_POUND, - ACTIONS(4864), 1, - sym_identifier, - ACTIONS(4870), 1, - sym_crate, - ACTIONS(4980), 1, - anon_sym_RBRACE, - STATE(1405), 1, - sym_attribute_item, - STATE(2198), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3233), 1, - sym_enum_variant, - STATE(3612), 1, - sym_visibility_modifier, - STATE(2176), 2, + ACTIONS(5132), 1, + anon_sym_COLON_COLON, + ACTIONS(5584), 1, + anon_sym_for, + STATE(2653), 2, sym_line_comment, sym_block_comment, - [68624] = 9, + ACTIONS(3775), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [82852] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4549), 1, - anon_sym_PIPE, - ACTIONS(4551), 1, - anon_sym_COLON, - ACTIONS(4555), 1, + ACTIONS(5054), 1, anon_sym_DOT_DOT, - ACTIONS(4628), 1, + ACTIONS(5798), 1, anon_sym_COLON_COLON, - ACTIONS(4557), 2, + ACTIONS(5056), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2177), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3321), 3, + ACTIONS(5928), 2, anon_sym_RPAREN, - anon_sym_PLUS, anon_sym_COMMA, - [68656] = 12, - ACTIONS(69), 1, - anon_sym_pub, + STATE(2654), 2, + sym_line_comment, + sym_block_comment, + [82877] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, - anon_sym_POUND, - ACTIONS(4870), 1, - sym_crate, - ACTIONS(4874), 1, - sym_identifier, - ACTIONS(4982), 1, - anon_sym_RBRACE, - STATE(1405), 1, - sym_attribute_item, - STATE(2214), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3246), 1, - sym_field_declaration, - STATE(3407), 1, - sym_visibility_modifier, - STATE(2178), 2, + ACTIONS(5473), 1, + anon_sym_LBRACE, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(5950), 1, + anon_sym_SEMI, + STATE(1434), 1, + sym_declaration_list, + STATE(3437), 1, + sym_where_clause, + STATE(2655), 2, sym_line_comment, sym_block_comment, - [68694] = 12, - ACTIONS(69), 1, - anon_sym_pub, + [82906] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, - anon_sym_POUND, - ACTIONS(4864), 1, - sym_identifier, - ACTIONS(4870), 1, - sym_crate, - ACTIONS(4984), 1, - anon_sym_RBRACE, - STATE(1405), 1, - sym_attribute_item, - STATE(2198), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3233), 1, - sym_enum_variant, - STATE(3612), 1, - sym_visibility_modifier, - STATE(2179), 2, + ACTIONS(5179), 1, + anon_sym_EQ, + ACTIONS(5596), 1, + anon_sym_COLON, + ACTIONS(5952), 1, + anon_sym_GT, + ACTIONS(5954), 1, + anon_sym_COMMA, + STATE(3198), 1, + aux_sym_type_parameters_repeat1, + STATE(3274), 1, + sym_trait_bounds, + STATE(2656), 2, sym_line_comment, sym_block_comment, - [68732] = 12, - ACTIONS(69), 1, - anon_sym_pub, + [82935] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, - anon_sym_POUND, - ACTIONS(4870), 1, - sym_crate, - ACTIONS(4874), 1, - sym_identifier, - ACTIONS(4986), 1, - anon_sym_RBRACE, - STATE(1405), 1, - sym_attribute_item, - STATE(2214), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3246), 1, - sym_field_declaration, - STATE(3407), 1, - sym_visibility_modifier, - STATE(2180), 2, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + ACTIONS(5956), 1, + anon_sym_if, + STATE(4117), 1, + sym_label, + STATE(2105), 2, + sym_if_expression, + sym_block, + STATE(2657), 2, sym_line_comment, sym_block_comment, - [68770] = 7, + [82962] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4950), 1, - anon_sym_LBRACE, - ACTIONS(4988), 1, - anon_sym_SEMI, - STATE(703), 1, - sym_declaration_list, - STATE(2181), 2, + ACTIONS(5132), 1, + anon_sym_COLON_COLON, + ACTIONS(5556), 1, + anon_sym_for, + STATE(2658), 2, sym_line_comment, sym_block_comment, - ACTIONS(3458), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [68798] = 12, - ACTIONS(69), 1, - anon_sym_pub, + ACTIONS(3775), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [82985] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, - anon_sym_POUND, - ACTIONS(4864), 1, - sym_identifier, - ACTIONS(4870), 1, - sym_crate, - ACTIONS(4990), 1, - anon_sym_RBRACE, - STATE(1405), 1, - sym_attribute_item, - STATE(2198), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3233), 1, - sym_enum_variant, - STATE(3612), 1, - sym_visibility_modifier, - STATE(2182), 2, + ACTIONS(5920), 1, + anon_sym_RBRACK, + ACTIONS(5393), 2, + anon_sym_PIPE, + anon_sym_COMMA, + STATE(2659), 2, sym_line_comment, sym_block_comment, - [68836] = 12, - ACTIONS(69), 1, - anon_sym_pub, + ACTIONS(4063), 3, + anon_sym_SEMI, + anon_sym_PLUS, + anon_sym_DASH_GT, + [83008] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, - anon_sym_POUND, - ACTIONS(4870), 1, - sym_crate, - ACTIONS(4874), 1, - sym_identifier, - ACTIONS(4992), 1, - anon_sym_RBRACE, - STATE(1405), 1, - sym_attribute_item, - STATE(2214), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3246), 1, - sym_field_declaration, - STATE(3407), 1, - sym_visibility_modifier, - STATE(2183), 2, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + ACTIONS(5958), 1, + anon_sym_if, + STATE(4045), 1, + sym_label, + STATE(1692), 2, + sym_if_expression, + sym_block, + STATE(2660), 2, sym_line_comment, sym_block_comment, - [68874] = 7, + [83035] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4011), 1, - anon_sym_LT2, - ACTIONS(4994), 1, - anon_sym_COLON_COLON, - STATE(1615), 1, - sym_type_arguments, - STATE(2184), 2, + ACTIONS(5179), 1, + anon_sym_EQ, + ACTIONS(5596), 1, + anon_sym_COLON, + ACTIONS(5960), 1, + anon_sym_GT, + ACTIONS(5962), 1, + anon_sym_COMMA, + STATE(3274), 1, + sym_trait_bounds, + STATE(3308), 1, + aux_sym_type_parameters_repeat1, + STATE(2661), 2, sym_line_comment, sym_block_comment, - ACTIONS(3458), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [68902] = 12, - ACTIONS(69), 1, - anon_sym_pub, + [83064] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, - anon_sym_POUND, - ACTIONS(4870), 1, - sym_crate, - ACTIONS(4874), 1, - sym_identifier, - ACTIONS(4996), 1, - anon_sym_RBRACE, - STATE(1405), 1, - sym_attribute_item, - STATE(2214), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3246), 1, - sym_field_declaration, - STATE(3407), 1, - sym_visibility_modifier, - STATE(2185), 2, + ACTIONS(5473), 1, + anon_sym_LBRACE, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(5964), 1, + anon_sym_SEMI, + STATE(1479), 1, + sym_declaration_list, + STATE(3431), 1, + sym_where_clause, + STATE(2662), 2, sym_line_comment, sym_block_comment, - [68940] = 9, + [83093] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4998), 1, - anon_sym_LPAREN, - ACTIONS(5003), 1, - anon_sym_LBRACK, - ACTIONS(5006), 1, - anon_sym_LBRACE, - STATE(3404), 1, - sym_macro_rule, - STATE(3487), 1, - sym_token_tree_pattern, - ACTIONS(5001), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(2186), 3, + ACTIONS(5381), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2663), 2, sym_line_comment, sym_block_comment, - aux_sym_macro_definition_repeat1, - [68972] = 12, + ACTIONS(4087), 4, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH_GT, + [83114] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4940), 1, - anon_sym_LPAREN, - ACTIONS(4942), 1, - anon_sym_LBRACE, - ACTIONS(4944), 1, - anon_sym_LT, - ACTIONS(4946), 1, + ACTIONS(5489), 1, anon_sym_where, - ACTIONS(5009), 1, - anon_sym_SEMI, - STATE(644), 1, - sym_field_declaration_list, - STATE(2259), 1, - sym_type_parameters, - STATE(2888), 1, - sym_ordered_field_declaration_list, - STATE(3314), 1, + ACTIONS(5523), 1, + anon_sym_LBRACE, + ACTIONS(5596), 1, + anon_sym_COLON, + STATE(542), 1, + sym_declaration_list, + STATE(2874), 1, + sym_trait_bounds, + STATE(3565), 1, sym_where_clause, - STATE(2187), 2, + STATE(2664), 2, sym_line_comment, sym_block_comment, - [69010] = 11, + [83143] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(4549), 1, - anon_sym_PIPE, - ACTIONS(4551), 1, - anon_sym_COLON, - ACTIONS(4553), 1, - anon_sym_BANG, - ACTIONS(4555), 1, + ACTIONS(5132), 1, + anon_sym_COLON_COLON, + ACTIONS(5497), 1, + anon_sym_for, + STATE(2665), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3775), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [83166] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5054), 1, anon_sym_DOT_DOT, - ACTIONS(4628), 1, + ACTIONS(5888), 1, anon_sym_COLON_COLON, - STATE(1952), 1, - sym_type_arguments, - ACTIONS(4557), 2, + ACTIONS(5056), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2188), 2, + ACTIONS(5808), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2666), 2, sym_line_comment, sym_block_comment, - [69046] = 12, - ACTIONS(69), 1, - anon_sym_pub, + [83191] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, - anon_sym_POUND, - ACTIONS(4870), 1, - sym_crate, - ACTIONS(4874), 1, - sym_identifier, - ACTIONS(5011), 1, - anon_sym_RBRACE, - STATE(1405), 1, - sym_attribute_item, - STATE(2214), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3246), 1, - sym_field_declaration, - STATE(3407), 1, - sym_visibility_modifier, - STATE(2189), 2, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5523), 1, + anon_sym_LBRACE, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(5966), 1, + anon_sym_SEMI, + STATE(864), 1, + sym_declaration_list, + STATE(3201), 1, + sym_where_clause, + STATE(2667), 2, sym_line_comment, sym_block_comment, - [69084] = 12, - ACTIONS(69), 1, - anon_sym_pub, + [83220] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, - anon_sym_POUND, - ACTIONS(4864), 1, - sym_identifier, - ACTIONS(4870), 1, - sym_crate, - ACTIONS(5013), 1, - anon_sym_RBRACE, - STATE(1405), 1, - sym_attribute_item, - STATE(2198), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3233), 1, - sym_enum_variant, - STATE(3612), 1, - sym_visibility_modifier, - STATE(2190), 2, + ACTIONS(5923), 1, + anon_sym_RBRACK, + ACTIONS(5381), 2, + anon_sym_PIPE, + anon_sym_COMMA, + STATE(2668), 2, sym_line_comment, sym_block_comment, - [69122] = 9, + ACTIONS(4087), 3, + anon_sym_SEMI, + anon_sym_PLUS, + anon_sym_DASH_GT, + [83243] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4499), 1, - anon_sym_BANG, - ACTIONS(4509), 1, - anon_sym_LPAREN, - ACTIONS(4517), 1, + ACTIONS(1009), 1, anon_sym_DOT_DOT, - ACTIONS(5015), 1, - anon_sym_COLON_COLON, - ACTIONS(4519), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2191), 2, + STATE(2669), 2, sym_line_comment, sym_block_comment, - ACTIONS(4507), 3, - anon_sym_RBRACK, + ACTIONS(1011), 5, + anon_sym_EQ_GT, anon_sym_PIPE, - anon_sym_COMMA, - [69154] = 9, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [83264] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4497), 1, - anon_sym_LPAREN, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(5017), 1, - anon_sym_for, - STATE(1955), 1, - sym_type_arguments, - STATE(1975), 1, - sym_parameters, - STATE(2192), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3321), 4, - anon_sym_SEMI, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5523), 1, anon_sym_LBRACE, + ACTIONS(5608), 1, anon_sym_PLUS, - anon_sym_where, - [69186] = 9, + ACTIONS(5968), 1, + anon_sym_SEMI, + STATE(658), 1, + sym_declaration_list, + STATE(3223), 1, + sym_where_clause, + STATE(2670), 2, + sym_line_comment, + sym_block_comment, + [83293] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4497), 1, - anon_sym_LPAREN, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(5019), 1, - anon_sym_for, - STATE(1955), 1, - sym_type_arguments, - STATE(1975), 1, - sym_parameters, - STATE(2193), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3321), 4, - anon_sym_SEMI, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5523), 1, anon_sym_LBRACE, + ACTIONS(5608), 1, anon_sym_PLUS, - anon_sym_where, - [69218] = 9, + ACTIONS(5970), 1, + anon_sym_SEMI, + STATE(660), 1, + sym_declaration_list, + STATE(3224), 1, + sym_where_clause, + STATE(2671), 2, + sym_line_comment, + sym_block_comment, + [83322] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4497), 1, - anon_sym_LPAREN, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(5021), 1, - anon_sym_for, - STATE(1955), 1, - sym_type_arguments, - STATE(1975), 1, - sym_parameters, - STATE(2194), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3321), 4, - anon_sym_SEMI, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5523), 1, anon_sym_LBRACE, + ACTIONS(5608), 1, anon_sym_PLUS, - anon_sym_where, - [69250] = 12, + ACTIONS(5972), 1, + anon_sym_SEMI, + STATE(662), 1, + sym_declaration_list, + STATE(3226), 1, + sym_where_clause, + STATE(2672), 2, + sym_line_comment, + sym_block_comment, + [83351] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4940), 1, - anon_sym_LPAREN, - ACTIONS(4944), 1, - anon_sym_LT, - ACTIONS(4946), 1, + ACTIONS(5489), 1, anon_sym_where, - ACTIONS(4976), 1, + ACTIONS(5523), 1, anon_sym_LBRACE, - ACTIONS(5023), 1, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(5974), 1, anon_sym_SEMI, - STATE(1105), 1, - sym_field_declaration_list, - STATE(2273), 1, - sym_type_parameters, - STATE(3049), 1, - sym_ordered_field_declaration_list, - STATE(3324), 1, + STATE(664), 1, + sym_declaration_list, + STATE(3227), 1, sym_where_clause, - STATE(2195), 2, + STATE(2673), 2, sym_line_comment, sym_block_comment, - [69288] = 11, + [83380] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(4946), 1, + ACTIONS(5473), 1, + anon_sym_LBRACE, + ACTIONS(5489), 1, anon_sym_where, - ACTIONS(5025), 1, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(5976), 1, anon_sym_SEMI, - ACTIONS(5027), 1, - anon_sym_LBRACE, - ACTIONS(5029), 1, - anon_sym_DASH_GT, - STATE(687), 1, - sym_block, - STATE(2442), 1, + STATE(1508), 1, + sym_declaration_list, + STATE(3310), 1, sym_where_clause, - STATE(3615), 1, - sym_label, - STATE(2196), 2, + STATE(2674), 2, sym_line_comment, sym_block_comment, - [69323] = 11, + [83409] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(5027), 1, + ACTIONS(5473), 1, anon_sym_LBRACE, - ACTIONS(5031), 1, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(5978), 1, anon_sym_SEMI, - ACTIONS(5033), 1, - anon_sym_DASH_GT, - STATE(524), 1, - sym_block, - STATE(2487), 1, + STATE(1504), 1, + sym_declaration_list, + STATE(3313), 1, sym_where_clause, - STATE(3615), 1, - sym_label, - STATE(2197), 2, + STATE(2675), 2, sym_line_comment, sym_block_comment, - [69358] = 11, - ACTIONS(69), 1, - anon_sym_pub, + [83438] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, - anon_sym_POUND, - ACTIONS(4864), 1, - sym_identifier, - ACTIONS(4870), 1, - sym_crate, - STATE(1061), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1405), 1, - sym_attribute_item, - STATE(3230), 1, - sym_enum_variant, - STATE(3612), 1, - sym_visibility_modifier, - STATE(2198), 2, + ACTIONS(5485), 1, + anon_sym_LBRACE, + ACTIONS(5487), 1, + anon_sym_LT, + ACTIONS(5489), 1, + anon_sym_where, + STATE(809), 1, + sym_field_declaration_list, + STATE(3034), 1, + sym_type_parameters, + STATE(3780), 1, + sym_where_clause, + STATE(2676), 2, sym_line_comment, sym_block_comment, - [69393] = 4, + [83467] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2199), 2, + ACTIONS(987), 1, + anon_sym_DOT_DOT, + STATE(2677), 2, sym_line_comment, sym_block_comment, - ACTIONS(5035), 8, - anon_sym_SEMI, + ACTIONS(989), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [83488] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5473), 1, anon_sym_LBRACE, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [69414] = 11, - ACTIONS(69), 1, - anon_sym_pub, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(5980), 1, + anon_sym_SEMI, + STATE(1274), 1, + sym_declaration_list, + STATE(3454), 1, + sym_where_clause, + STATE(2678), 2, + sym_line_comment, + sym_block_comment, + [83517] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, - anon_sym_POUND, - ACTIONS(4870), 1, - sym_crate, - ACTIONS(4874), 1, - sym_identifier, - STATE(1061), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1405), 1, - sym_attribute_item, - STATE(3027), 1, - sym_field_declaration, - STATE(3407), 1, - sym_visibility_modifier, - STATE(2200), 2, + ACTIONS(941), 1, + anon_sym_DOT_DOT, + STATE(2679), 2, sym_line_comment, sym_block_comment, - [69449] = 11, + ACTIONS(943), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [83538] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(4946), 1, + ACTIONS(5489), 1, anon_sym_where, - ACTIONS(5027), 1, - anon_sym_LBRACE, - ACTIONS(5037), 1, + ACTIONS(5596), 1, + anon_sym_COLON, + ACTIONS(5982), 1, anon_sym_SEMI, - ACTIONS(5039), 1, - anon_sym_PLUS, - STATE(574), 1, - sym_block, - STATE(2456), 1, + ACTIONS(5984), 1, + anon_sym_EQ, + STATE(3139), 1, + sym_trait_bounds, + STATE(4130), 1, + sym_where_clause, + STATE(2680), 2, + sym_line_comment, + sym_block_comment, + [83567] = 9, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5473), 1, + anon_sym_LBRACE, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5596), 1, + anon_sym_COLON, + STATE(1472), 1, + sym_declaration_list, + STATE(3013), 1, + sym_trait_bounds, + STATE(3713), 1, sym_where_clause, - STATE(3615), 1, - sym_label, - STATE(2201), 2, + STATE(2681), 2, sym_line_comment, sym_block_comment, - [69484] = 11, + [83596] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(4946), 1, + ACTIONS(5489), 1, anon_sym_where, - ACTIONS(5027), 1, + ACTIONS(5523), 1, anon_sym_LBRACE, - ACTIONS(5039), 1, + ACTIONS(5608), 1, anon_sym_PLUS, - ACTIONS(5041), 1, + ACTIONS(5986), 1, anon_sym_SEMI, - STATE(751), 1, - sym_block, - STATE(2465), 1, + STATE(556), 1, + sym_declaration_list, + STATE(3414), 1, sym_where_clause, - STATE(3615), 1, - sym_label, - STATE(2202), 2, + STATE(2682), 2, sym_line_comment, sym_block_comment, - [69519] = 11, + [83625] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, + ACTIONS(5489), 1, anon_sym_where, - ACTIONS(4956), 1, + ACTIONS(5523), 1, anon_sym_LBRACE, - ACTIONS(5043), 1, - anon_sym_COLON, - ACTIONS(5045), 1, - anon_sym_LT, - STATE(1106), 1, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(5988), 1, + anon_sym_SEMI, + STATE(684), 1, sym_declaration_list, - STATE(2352), 1, - sym_type_parameters, - STATE(2583), 1, - sym_trait_bounds, - STATE(3327), 1, + STATE(3230), 1, sym_where_clause, - STATE(2203), 2, + STATE(2683), 2, sym_line_comment, sym_block_comment, - [69554] = 11, + [83654] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, + ACTIONS(5489), 1, anon_sym_where, - ACTIONS(5043), 1, - anon_sym_COLON, - ACTIONS(5045), 1, - anon_sym_LT, - ACTIONS(5047), 1, + ACTIONS(5523), 1, + anon_sym_LBRACE, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(5990), 1, anon_sym_SEMI, - ACTIONS(5049), 1, - anon_sym_EQ, - STATE(2353), 1, - sym_type_parameters, - STATE(2966), 1, - sym_trait_bounds, - STATE(3640), 1, + STATE(686), 1, + sym_declaration_list, + STATE(3211), 1, sym_where_clause, - STATE(2204), 2, - sym_line_comment, - sym_block_comment, - [69589] = 11, - ACTIONS(69), 1, - anon_sym_pub, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(2997), 1, - anon_sym_POUND, - ACTIONS(4864), 1, - sym_identifier, - ACTIONS(4870), 1, - sym_crate, - STATE(1405), 1, - sym_attribute_item, - STATE(2198), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3233), 1, - sym_enum_variant, - STATE(3612), 1, - sym_visibility_modifier, - STATE(2205), 2, + STATE(2684), 2, sym_line_comment, sym_block_comment, - [69624] = 10, + [83683] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1519), 1, - anon_sym_DOT_DOT, - ACTIONS(5051), 1, - sym_identifier, - ACTIONS(5053), 1, - anon_sym_RBRACE, - ACTIONS(5055), 1, + ACTIONS(5596), 1, + anon_sym_COLON, + ACTIONS(5900), 1, + anon_sym_PLUS, + ACTIONS(5992), 1, + anon_sym_GT, + ACTIONS(5994), 1, anon_sym_COMMA, - ACTIONS(5057), 1, - anon_sym_ref, - ACTIONS(5059), 1, - sym_mutable_specifier, - STATE(2206), 2, + STATE(3458), 1, + sym_trait_bounds, + STATE(3462), 1, + aux_sym_type_arguments_repeat1, + STATE(2685), 2, sym_line_comment, sym_block_comment, - STATE(2901), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [69657] = 11, + [83712] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(4946), 1, + ACTIONS(5489), 1, anon_sym_where, - ACTIONS(5027), 1, + ACTIONS(5523), 1, anon_sym_LBRACE, - ACTIONS(5061), 1, - anon_sym_SEMI, - ACTIONS(5063), 1, - anon_sym_DASH_GT, - STATE(597), 1, - sym_block, - STATE(2413), 1, + ACTIONS(5596), 1, + anon_sym_COLON, + STATE(863), 1, + sym_declaration_list, + STATE(3128), 1, + sym_trait_bounds, + STATE(3487), 1, sym_where_clause, - STATE(3615), 1, - sym_label, - STATE(2207), 2, + STATE(2686), 2, sym_line_comment, sym_block_comment, - [69692] = 11, + [83741] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, + ACTIONS(5489), 1, anon_sym_where, - ACTIONS(4950), 1, + ACTIONS(5523), 1, anon_sym_LBRACE, - ACTIONS(5043), 1, - anon_sym_COLON, - ACTIONS(5045), 1, - anon_sym_LT, - STATE(636), 1, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(5996), 1, + anon_sym_SEMI, + STATE(563), 1, sym_declaration_list, - STATE(2374), 1, - sym_type_parameters, - STATE(2646), 1, - sym_trait_bounds, - STATE(3339), 1, + STATE(3416), 1, sym_where_clause, - STATE(2208), 2, + STATE(2687), 2, sym_line_comment, sym_block_comment, - [69727] = 10, + [83770] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1519), 1, + ACTIONS(5208), 1, anon_sym_DOT_DOT, - ACTIONS(5051), 1, - sym_identifier, - ACTIONS(5057), 1, - anon_sym_ref, - ACTIONS(5059), 1, - sym_mutable_specifier, - ACTIONS(5065), 1, - anon_sym_RBRACE, - ACTIONS(5067), 1, - anon_sym_COMMA, - STATE(2209), 2, + STATE(2688), 2, sym_line_comment, sym_block_comment, - STATE(2776), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [69760] = 10, + ACTIONS(5206), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [83791] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1519), 1, + ACTIONS(5054), 1, anon_sym_DOT_DOT, - ACTIONS(5051), 1, - sym_identifier, - ACTIONS(5057), 1, - anon_sym_ref, - ACTIONS(5059), 1, - sym_mutable_specifier, - ACTIONS(5069), 1, - anon_sym_RBRACE, - ACTIONS(5071), 1, + ACTIONS(5798), 1, + anon_sym_COLON_COLON, + ACTIONS(5056), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5808), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2210), 2, + STATE(2689), 2, sym_line_comment, sym_block_comment, - STATE(2777), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [69793] = 11, + [83816] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(5073), 1, + ACTIONS(5132), 1, + anon_sym_COLON_COLON, + ACTIONS(5548), 1, + anon_sym_for, + STATE(2690), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3775), 4, anon_sym_SEMI, - ACTIONS(5075), 1, anon_sym_LBRACE, - ACTIONS(5077), 1, - anon_sym_DASH_GT, - STATE(1124), 1, - sym_block, - STATE(2424), 1, - sym_where_clause, - STATE(3618), 1, - sym_label, - STATE(2211), 2, + anon_sym_PLUS, + anon_sym_where, + [83839] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(977), 1, + anon_sym_DOT_DOT, + STATE(2691), 2, sym_line_comment, sym_block_comment, - [69828] = 11, + ACTIONS(979), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [83860] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4956), 1, + ACTIONS(5473), 1, anon_sym_LBRACE, - ACTIONS(5043), 1, - anon_sym_COLON, - ACTIONS(5045), 1, - anon_sym_LT, - STATE(1144), 1, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(5998), 1, + anon_sym_SEMI, + STATE(1547), 1, sym_declaration_list, - STATE(2386), 1, - sym_type_parameters, - STATE(2554), 1, - sym_trait_bounds, - STATE(3242), 1, + STATE(3430), 1, sym_where_clause, - STATE(2212), 2, + STATE(2692), 2, sym_line_comment, sym_block_comment, - [69863] = 11, - ACTIONS(69), 1, - anon_sym_pub, + [83889] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, - anon_sym_POUND, - ACTIONS(4864), 1, - sym_identifier, - ACTIONS(4870), 1, - sym_crate, - STATE(1061), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1405), 1, - sym_attribute_item, - STATE(3031), 1, - sym_enum_variant, - STATE(3612), 1, - sym_visibility_modifier, - STATE(2213), 2, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5596), 1, + anon_sym_COLON, + ACTIONS(6000), 1, + anon_sym_SEMI, + ACTIONS(6002), 1, + anon_sym_EQ, + STATE(3352), 1, + sym_trait_bounds, + STATE(3888), 1, + sym_where_clause, + STATE(2693), 2, sym_line_comment, sym_block_comment, - [69898] = 11, - ACTIONS(69), 1, - anon_sym_pub, + [83918] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, - anon_sym_POUND, - ACTIONS(4870), 1, - sym_crate, - ACTIONS(4874), 1, - sym_identifier, - STATE(1061), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1405), 1, - sym_attribute_item, - STATE(3115), 1, - sym_field_declaration, - STATE(3407), 1, - sym_visibility_modifier, - STATE(2214), 2, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5523), 1, + anon_sym_LBRACE, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(6004), 1, + anon_sym_SEMI, + STATE(829), 1, + sym_declaration_list, + STATE(3266), 1, + sym_where_clause, + STATE(2694), 2, sym_line_comment, sym_block_comment, - [69933] = 11, + [83947] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(5075), 1, + ACTIONS(5473), 1, anon_sym_LBRACE, - ACTIONS(5079), 1, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(6006), 1, anon_sym_SEMI, - ACTIONS(5081), 1, - anon_sym_DASH_GT, - STATE(1165), 1, - sym_block, - STATE(2434), 1, + STATE(1446), 1, + sym_declaration_list, + STATE(3354), 1, sym_where_clause, - STATE(3618), 1, - sym_label, - STATE(2215), 2, + STATE(2695), 2, sym_line_comment, sym_block_comment, - [69968] = 11, + [83976] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(4946), 1, + ACTIONS(5487), 1, + anon_sym_LT, + ACTIONS(5489), 1, anon_sym_where, - ACTIONS(5075), 1, + ACTIONS(5898), 1, anon_sym_LBRACE, - ACTIONS(5083), 1, - anon_sym_SEMI, - ACTIONS(5085), 1, - anon_sym_DASH_GT, - STATE(1197), 1, - sym_block, - STATE(2438), 1, + STATE(1445), 1, + sym_enum_variant_list, + STATE(2999), 1, + sym_type_parameters, + STATE(3667), 1, sym_where_clause, - STATE(3618), 1, - sym_label, - STATE(2216), 2, + STATE(2696), 2, sym_line_comment, sym_block_comment, - [70003] = 11, + [84005] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, + ACTIONS(5489), 1, anon_sym_where, - ACTIONS(4956), 1, + ACTIONS(5523), 1, anon_sym_LBRACE, - ACTIONS(5043), 1, - anon_sym_COLON, - ACTIONS(5045), 1, - anon_sym_LT, - STATE(1206), 1, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(6008), 1, + anon_sym_SEMI, + STATE(822), 1, sym_declaration_list, - STATE(2311), 1, - sym_type_parameters, - STATE(2711), 1, - sym_trait_bounds, - STATE(3217), 1, + STATE(3264), 1, sym_where_clause, - STATE(2217), 2, + STATE(2697), 2, sym_line_comment, sym_block_comment, - [70038] = 11, + [84034] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(4946), 1, + ACTIONS(5487), 1, + anon_sym_LT, + ACTIONS(5489), 1, anon_sym_where, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5075), 1, + ACTIONS(5517), 1, anon_sym_LBRACE, - ACTIONS(5087), 1, - anon_sym_SEMI, - STATE(1216), 1, - sym_block, - STATE(2443), 1, + STATE(1436), 1, + sym_field_declaration_list, + STATE(2997), 1, + sym_type_parameters, + STATE(3660), 1, sym_where_clause, - STATE(3618), 1, - sym_label, - STATE(2218), 2, + STATE(2698), 2, sym_line_comment, sym_block_comment, - [70073] = 4, + [84063] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2219), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4931), 8, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, + ACTIONS(5179), 1, anon_sym_EQ, + ACTIONS(5596), 1, + anon_sym_COLON, + ACTIONS(6010), 1, anon_sym_GT, + ACTIONS(6012), 1, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - [70094] = 4, + STATE(3274), 1, + sym_trait_bounds, + STATE(3418), 1, + aux_sym_type_parameters_repeat1, + STATE(2699), 2, + sym_line_comment, + sym_block_comment, + [84092] = 8, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2220), 2, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + ACTIONS(6014), 1, + anon_sym_if, + STATE(3944), 1, + sym_label, + STATE(410), 2, + sym_if_expression, + sym_block, + STATE(2700), 2, sym_line_comment, sym_block_comment, - ACTIONS(4931), 8, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - [70115] = 11, + [84119] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(5075), 1, + ACTIONS(5473), 1, anon_sym_LBRACE, - ACTIONS(5089), 1, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(6016), 1, anon_sym_SEMI, - ACTIONS(5091), 1, - anon_sym_DASH_GT, - STATE(1245), 1, - sym_block, - STATE(2448), 1, + STATE(1543), 1, + sym_declaration_list, + STATE(3427), 1, sym_where_clause, - STATE(3618), 1, - sym_label, - STATE(2221), 2, + STATE(2701), 2, sym_line_comment, sym_block_comment, - [70150] = 11, + [84148] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(5075), 1, + ACTIONS(5473), 1, anon_sym_LBRACE, - ACTIONS(5093), 1, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(6018), 1, anon_sym_SEMI, - ACTIONS(5095), 1, - anon_sym_DASH_GT, - STATE(1259), 1, - sym_block, - STATE(2449), 1, + STATE(1513), 1, + sym_declaration_list, + STATE(3461), 1, sym_where_clause, - STATE(3618), 1, - sym_label, - STATE(2222), 2, + STATE(2702), 2, sym_line_comment, sym_block_comment, - [70185] = 11, + [84177] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(5027), 1, + ACTIONS(5473), 1, anon_sym_LBRACE, - ACTIONS(5097), 1, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(6020), 1, anon_sym_SEMI, - ACTIONS(5099), 1, - anon_sym_DASH_GT, - STATE(729), 1, - sym_block, - STATE(2423), 1, + STATE(1510), 1, + sym_declaration_list, + STATE(3460), 1, sym_where_clause, - STATE(3615), 1, - sym_label, - STATE(2223), 2, + STATE(2703), 2, sym_line_comment, sym_block_comment, - [70220] = 4, + [84206] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2224), 2, + ACTIONS(5132), 1, + anon_sym_COLON_COLON, + ACTIONS(5570), 1, + anon_sym_for, + STATE(2704), 2, sym_line_comment, sym_block_comment, - ACTIONS(4931), 8, + ACTIONS(3775), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_where, - [70241] = 11, + [84229] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(4946), 1, + ACTIONS(5489), 1, anon_sym_where, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5075), 1, + ACTIONS(5523), 1, anon_sym_LBRACE, - ACTIONS(5101), 1, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(6022), 1, anon_sym_SEMI, - STATE(1267), 1, - sym_block, - STATE(2451), 1, + STATE(804), 1, + sym_declaration_list, + STATE(3246), 1, sym_where_clause, - STATE(3618), 1, - sym_label, - STATE(2225), 2, + STATE(2705), 2, sym_line_comment, sym_block_comment, - [70276] = 11, + [84258] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(5039), 1, + ACTIONS(3587), 1, anon_sym_PLUS, - ACTIONS(5075), 1, - anon_sym_LBRACE, - ACTIONS(5103), 1, - anon_sym_SEMI, - STATE(1300), 1, - sym_block, - STATE(2454), 1, - sym_where_clause, - STATE(3618), 1, - sym_label, - STATE(2226), 2, + ACTIONS(5596), 1, + anon_sym_COLON, + ACTIONS(6024), 1, + anon_sym_GT, + ACTIONS(6026), 1, + anon_sym_COMMA, + STATE(3271), 1, + sym_trait_bounds, + STATE(3272), 1, + aux_sym_type_parameters_repeat1, + STATE(2706), 2, sym_line_comment, sym_block_comment, - [70311] = 4, + [84287] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2227), 2, + ACTIONS(5393), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2707), 2, sym_line_comment, sym_block_comment, - ACTIONS(4931), 8, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(4063), 4, + anon_sym_RPAREN, anon_sym_PLUS, - anon_sym_EQ, - anon_sym_GT, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - [70332] = 4, + anon_sym_DASH_GT, + [84308] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2228), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4931), 8, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(3587), 1, anon_sym_PLUS, - anon_sym_EQ, + ACTIONS(5596), 1, + anon_sym_COLON, + ACTIONS(5992), 1, anon_sym_GT, + ACTIONS(5994), 1, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - [70353] = 11, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5075), 1, - anon_sym_LBRACE, - ACTIONS(5105), 1, - anon_sym_SEMI, - STATE(1338), 1, - sym_block, - STATE(2457), 1, - sym_where_clause, - STATE(3618), 1, - sym_label, - STATE(2229), 2, + STATE(3458), 1, + sym_trait_bounds, + STATE(3462), 1, + aux_sym_type_arguments_repeat1, + STATE(2708), 2, sym_line_comment, sym_block_comment, - [70388] = 11, + [84337] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(5039), 1, + ACTIONS(5147), 1, + anon_sym_COLON_COLON, + ACTIONS(6024), 1, + anon_sym_GT, + ACTIONS(6026), 1, + anon_sym_COMMA, + STATE(3272), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3775), 2, anon_sym_PLUS, - ACTIONS(5075), 1, - anon_sym_LBRACE, - ACTIONS(5107), 1, - anon_sym_SEMI, - STATE(1348), 1, - sym_block, - STATE(2458), 1, - sym_where_clause, - STATE(3618), 1, - sym_label, - STATE(2230), 2, + anon_sym_as, + STATE(2709), 2, sym_line_comment, sym_block_comment, - [70423] = 11, + [84364] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(4946), 1, + ACTIONS(5473), 1, + anon_sym_LBRACE, + ACTIONS(5489), 1, anon_sym_where, - ACTIONS(5039), 1, + ACTIONS(5608), 1, anon_sym_PLUS, - ACTIONS(5075), 1, - anon_sym_LBRACE, - ACTIONS(5109), 1, + ACTIONS(6028), 1, anon_sym_SEMI, - STATE(1358), 1, - sym_block, - STATE(2459), 1, + STATE(1402), 1, + sym_declaration_list, + STATE(3386), 1, sym_where_clause, - STATE(3618), 1, - sym_label, - STATE(2231), 2, + STATE(2710), 2, sym_line_comment, sym_block_comment, - [70458] = 11, + [84393] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4950), 1, + ACTIONS(5473), 1, anon_sym_LBRACE, - ACTIONS(5043), 1, - anon_sym_COLON, - ACTIONS(5045), 1, - anon_sym_LT, - STATE(739), 1, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(6030), 1, + anon_sym_SEMI, + STATE(1400), 1, sym_declaration_list, - STATE(2314), 1, - sym_type_parameters, - STATE(2666), 1, - sym_trait_bounds, - STATE(3176), 1, + STATE(3387), 1, sym_where_clause, - STATE(2232), 2, - sym_line_comment, - sym_block_comment, - [70493] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1341), 1, - aux_sym_string_literal_token1, - STATE(2199), 1, - sym_string_literal, - STATE(2233), 2, + STATE(2711), 2, sym_line_comment, sym_block_comment, - ACTIONS(4724), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [70518] = 11, + [84422] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(4946), 1, + ACTIONS(5487), 1, + anon_sym_LT, + ACTIONS(5489), 1, anon_sym_where, - ACTIONS(5027), 1, + ACTIONS(5517), 1, anon_sym_LBRACE, - ACTIONS(5111), 1, - anon_sym_SEMI, - ACTIONS(5113), 1, - anon_sym_DASH_GT, - STATE(677), 1, - sym_block, - STATE(2507), 1, + STATE(1526), 1, + sym_field_declaration_list, + STATE(3116), 1, + sym_type_parameters, + STATE(3532), 1, sym_where_clause, - STATE(3615), 1, - sym_label, - STATE(2234), 2, + STATE(2712), 2, sym_line_comment, sym_block_comment, - [70553] = 11, - ACTIONS(69), 1, - anon_sym_pub, + [84451] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, - anon_sym_POUND, - ACTIONS(4870), 1, - sym_crate, - ACTIONS(4874), 1, + ACTIONS(1519), 1, + anon_sym_DOT_DOT, + ACTIONS(5642), 1, sym_identifier, - STATE(1405), 1, - sym_attribute_item, - STATE(2214), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3246), 1, - sym_field_declaration, - STATE(3407), 1, - sym_visibility_modifier, - STATE(2235), 2, + ACTIONS(5648), 1, + anon_sym_ref, + ACTIONS(5650), 1, + sym_mutable_specifier, + STATE(2713), 2, sym_line_comment, sym_block_comment, - [70588] = 6, + STATE(3664), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [84478] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4768), 1, - anon_sym_COLON_COLON, - ACTIONS(4888), 1, - anon_sym_BANG, - STATE(2236), 2, + ACTIONS(4010), 1, + anon_sym_COLON, + ACTIONS(6032), 1, + anon_sym_EQ, + STATE(2714), 2, sym_line_comment, sym_block_comment, - ACTIONS(3458), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [70613] = 11, + ACTIONS(4008), 4, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_COLON_COLON, + [84501] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(5027), 1, + ACTIONS(5473), 1, anon_sym_LBRACE, - ACTIONS(5039), 1, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5608), 1, anon_sym_PLUS, - ACTIONS(5115), 1, + ACTIONS(6034), 1, anon_sym_SEMI, - STATE(515), 1, - sym_block, - STATE(2484), 1, + STATE(1317), 1, + sym_declaration_list, + STATE(3442), 1, sym_where_clause, - STATE(3615), 1, - sym_label, - STATE(2237), 2, - sym_line_comment, - sym_block_comment, - [70648] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4573), 1, - anon_sym_trait, - ACTIONS(5117), 1, - anon_sym_impl, - STATE(2238), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3458), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [70673] = 8, + STATE(2715), 2, + sym_line_comment, + sym_block_comment, + [84530] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5119), 1, - anon_sym_fn, - ACTIONS(5121), 1, - anon_sym_extern, - STATE(2245), 1, - aux_sym_function_modifiers_repeat1, - STATE(2387), 1, - sym_extern_modifier, - STATE(2239), 2, + ACTIONS(5179), 1, + anon_sym_EQ, + ACTIONS(5181), 1, + anon_sym_GT, + ACTIONS(5183), 1, + anon_sym_COMMA, + ACTIONS(5596), 1, + anon_sym_COLON, + STATE(3273), 1, + aux_sym_type_parameters_repeat1, + STATE(3274), 1, + sym_trait_bounds, + STATE(2716), 2, sym_line_comment, sym_block_comment, - ACTIONS(4523), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - [70702] = 11, + [84559] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(5027), 1, + ACTIONS(5473), 1, anon_sym_LBRACE, - ACTIONS(5039), 1, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5608), 1, anon_sym_PLUS, - ACTIONS(5123), 1, + ACTIONS(6036), 1, anon_sym_SEMI, - STATE(553), 1, - sym_block, - STATE(2441), 1, + STATE(1392), 1, + sym_declaration_list, + STATE(3392), 1, sym_where_clause, - STATE(3615), 1, - sym_label, - STATE(2240), 2, + STATE(2717), 2, sym_line_comment, sym_block_comment, - [70737] = 11, + [84588] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4950), 1, + ACTIONS(5473), 1, anon_sym_LBRACE, - ACTIONS(5043), 1, - anon_sym_COLON, - ACTIONS(5045), 1, - anon_sym_LT, - STATE(595), 1, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(6038), 1, + anon_sym_SEMI, + STATE(1390), 1, sym_declaration_list, - STATE(2376), 1, - sym_type_parameters, - STATE(2521), 1, - sym_trait_bounds, - STATE(3071), 1, + STATE(3393), 1, sym_where_clause, - STATE(2241), 2, + STATE(2718), 2, sym_line_comment, sym_block_comment, - [70772] = 10, + [84617] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4499), 1, - anon_sym_BANG, - ACTIONS(4507), 1, - anon_sym_PIPE, - ACTIONS(4509), 1, - anon_sym_LPAREN, - ACTIONS(4513), 1, - anon_sym_COLON, - ACTIONS(4517), 1, - anon_sym_DOT_DOT, - ACTIONS(5125), 1, - anon_sym_COLON_COLON, - ACTIONS(4519), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2242), 2, + ACTIONS(5473), 1, + anon_sym_LBRACE, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(6040), 1, + anon_sym_SEMI, + STATE(1210), 1, + sym_declaration_list, + STATE(3441), 1, + sym_where_clause, + STATE(2719), 2, sym_line_comment, sym_block_comment, - [70805] = 11, + [84646] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(5027), 1, + ACTIONS(5473), 1, anon_sym_LBRACE, - ACTIONS(5039), 1, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5608), 1, anon_sym_PLUS, - ACTIONS(5127), 1, + ACTIONS(6042), 1, anon_sym_SEMI, - STATE(564), 1, - sym_block, - STATE(2418), 1, + STATE(1499), 1, + sym_declaration_list, + STATE(3190), 1, sym_where_clause, - STATE(3615), 1, - sym_label, - STATE(2243), 2, + STATE(2720), 2, sym_line_comment, sym_block_comment, - [70840] = 11, - ACTIONS(69), 1, - anon_sym_pub, + [84675] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, - anon_sym_POUND, - ACTIONS(4864), 1, - sym_identifier, - ACTIONS(4870), 1, - sym_crate, - STATE(1061), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1405), 1, - sym_attribute_item, - STATE(2839), 1, - sym_enum_variant, - STATE(3612), 1, - sym_visibility_modifier, - STATE(2244), 2, + ACTIONS(5473), 1, + anon_sym_LBRACE, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5596), 1, + anon_sym_COLON, + STATE(1234), 1, + sym_declaration_list, + STATE(2943), 1, + sym_trait_bounds, + STATE(3493), 1, + sym_where_clause, + STATE(2721), 2, sym_line_comment, sym_block_comment, - [70875] = 7, + [84704] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5132), 1, - anon_sym_fn, - ACTIONS(5134), 1, - anon_sym_extern, - STATE(2387), 1, - sym_extern_modifier, - STATE(2245), 3, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5523), 1, + anon_sym_LBRACE, + ACTIONS(5596), 1, + anon_sym_COLON, + STATE(716), 1, + sym_declaration_list, + STATE(3092), 1, + sym_trait_bounds, + STATE(3645), 1, + sym_where_clause, + STATE(2722), 2, sym_line_comment, sym_block_comment, - aux_sym_function_modifiers_repeat1, - ACTIONS(5129), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - [70902] = 11, - ACTIONS(69), 1, - anon_sym_pub, + [84733] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, - anon_sym_POUND, - ACTIONS(4870), 1, - sym_crate, - ACTIONS(4874), 1, - sym_identifier, - STATE(1061), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1405), 1, - sym_attribute_item, - STATE(2849), 1, - sym_field_declaration, - STATE(3407), 1, - sym_visibility_modifier, - STATE(2246), 2, + ACTIONS(5487), 1, + anon_sym_LT, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5898), 1, + anon_sym_LBRACE, + STATE(1483), 1, + sym_enum_variant_list, + STATE(3095), 1, + sym_type_parameters, + STATE(3588), 1, + sym_where_clause, + STATE(2723), 2, sym_line_comment, sym_block_comment, - [70937] = 10, + [84762] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1519), 1, - anon_sym_DOT_DOT, - ACTIONS(5051), 1, - sym_identifier, - ACTIONS(5057), 1, - anon_sym_ref, - ACTIONS(5059), 1, - sym_mutable_specifier, - ACTIONS(5137), 1, - anon_sym_RBRACE, - ACTIONS(5139), 1, - anon_sym_COMMA, - STATE(2247), 2, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5523), 1, + anon_sym_LBRACE, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(6044), 1, + anon_sym_SEMI, + STATE(788), 1, + sym_declaration_list, + STATE(3254), 1, + sym_where_clause, + STATE(2724), 2, sym_line_comment, sym_block_comment, - STATE(2857), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [70970] = 11, + [84791] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(4946), 1, + ACTIONS(5489), 1, anon_sym_where, - ACTIONS(5027), 1, + ACTIONS(5523), 1, anon_sym_LBRACE, - ACTIONS(5141), 1, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(6046), 1, anon_sym_SEMI, - ACTIONS(5143), 1, - anon_sym_DASH_GT, - STATE(652), 1, - sym_block, - STATE(2416), 1, + STATE(786), 1, + sym_declaration_list, + STATE(3304), 1, sym_where_clause, - STATE(3615), 1, - sym_label, - STATE(2248), 2, + STATE(2725), 2, sym_line_comment, sym_block_comment, - [71005] = 11, + [84820] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, + ACTIONS(5489), 1, anon_sym_where, - ACTIONS(5043), 1, - anon_sym_COLON, - ACTIONS(5045), 1, - anon_sym_LT, - ACTIONS(5145), 1, + ACTIONS(5523), 1, + anon_sym_LBRACE, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(6048), 1, anon_sym_SEMI, - ACTIONS(5147), 1, - anon_sym_EQ, - STATE(2388), 1, - sym_type_parameters, - STATE(2911), 1, - sym_trait_bounds, - STATE(3521), 1, + STATE(778), 1, + sym_declaration_list, + STATE(3251), 1, sym_where_clause, - STATE(2249), 2, + STATE(2726), 2, sym_line_comment, sym_block_comment, - [71040] = 11, + [84849] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(4946), 1, + ACTIONS(5489), 1, anon_sym_where, - ACTIONS(5027), 1, + ACTIONS(5523), 1, anon_sym_LBRACE, - ACTIONS(5039), 1, + ACTIONS(5608), 1, anon_sym_PLUS, - ACTIONS(5149), 1, + ACTIONS(6050), 1, anon_sym_SEMI, - STATE(708), 1, - sym_block, - STATE(2494), 1, + STATE(775), 1, + sym_declaration_list, + STATE(3252), 1, sym_where_clause, - STATE(3615), 1, - sym_label, - STATE(2250), 2, + STATE(2727), 2, sym_line_comment, sym_block_comment, - [71075] = 11, + [84878] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(4946), 1, + ACTIONS(5489), 1, anon_sym_where, - ACTIONS(5075), 1, - anon_sym_LBRACE, - ACTIONS(5151), 1, + ACTIONS(5596), 1, + anon_sym_COLON, + ACTIONS(6052), 1, anon_sym_SEMI, - ACTIONS(5153), 1, - anon_sym_DASH_GT, - STATE(1309), 1, - sym_block, - STATE(2455), 1, + ACTIONS(6054), 1, + anon_sym_EQ, + STATE(3368), 1, + sym_trait_bounds, + STATE(3926), 1, sym_where_clause, - STATE(3618), 1, - sym_label, - STATE(2251), 2, + STATE(2728), 2, sym_line_comment, sym_block_comment, - [71110] = 9, + [84907] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1519), 1, - anon_sym_DOT_DOT, - ACTIONS(5051), 1, - sym_identifier, - ACTIONS(5057), 1, - anon_sym_ref, - ACTIONS(5059), 1, - sym_mutable_specifier, - ACTIONS(5155), 1, - anon_sym_RBRACE, - STATE(2252), 2, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5523), 1, + anon_sym_LBRACE, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(6056), 1, + anon_sym_SEMI, + STATE(566), 1, + sym_declaration_list, + STATE(3329), 1, + sym_where_clause, + STATE(2729), 2, sym_line_comment, sym_block_comment, - STATE(3058), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [71140] = 10, + [84936] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5157), 1, - anon_sym_LPAREN, - ACTIONS(5159), 1, - anon_sym_LBRACK, - ACTIONS(5161), 1, - anon_sym_LBRACE, - ACTIONS(5163), 1, - anon_sym_RBRACE, - STATE(2298), 1, - aux_sym_macro_definition_repeat1, - STATE(3322), 1, - sym_macro_rule, - STATE(3487), 1, - sym_token_tree_pattern, - STATE(2253), 2, + ACTIONS(5132), 1, + anon_sym_COLON_COLON, + ACTIONS(5493), 1, + anon_sym_for, + STATE(2730), 2, sym_line_comment, sym_block_comment, - [71172] = 10, + ACTIONS(3775), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [84959] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5157), 1, - anon_sym_LPAREN, - ACTIONS(5159), 1, - anon_sym_LBRACK, - ACTIONS(5161), 1, + ACTIONS(5473), 1, anon_sym_LBRACE, - ACTIONS(5165), 1, - anon_sym_RPAREN, - STATE(2186), 1, - aux_sym_macro_definition_repeat1, - STATE(3144), 1, - sym_macro_rule, - STATE(3487), 1, - sym_token_tree_pattern, - STATE(2254), 2, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5596), 1, + anon_sym_COLON, + STATE(1349), 1, + sym_declaration_list, + STATE(2971), 1, + sym_trait_bounds, + STATE(3543), 1, + sym_where_clause, + STATE(2731), 2, sym_line_comment, sym_block_comment, - [71204] = 10, + [84988] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5157), 1, - anon_sym_LPAREN, - ACTIONS(5159), 1, - anon_sym_LBRACK, - ACTIONS(5161), 1, + ACTIONS(5487), 1, + anon_sym_LT, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5908), 1, anon_sym_LBRACE, - ACTIONS(5167), 1, - anon_sym_RBRACK, - STATE(2186), 1, - aux_sym_macro_definition_repeat1, - STATE(3154), 1, - sym_macro_rule, - STATE(3487), 1, - sym_token_tree_pattern, - STATE(2255), 2, + STATE(567), 1, + sym_enum_variant_list, + STATE(2890), 1, + sym_type_parameters, + STATE(3632), 1, + sym_where_clause, + STATE(2732), 2, sym_line_comment, sym_block_comment, - [71236] = 5, + [85017] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5169), 1, - sym_identifier, - STATE(2256), 2, + ACTIONS(5473), 1, + anon_sym_LBRACE, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(6058), 1, + anon_sym_SEMI, + STATE(1341), 1, + sym_declaration_list, + STATE(3424), 1, + sym_where_clause, + STATE(2733), 2, sym_line_comment, sym_block_comment, - ACTIONS(4772), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [71258] = 10, + [85046] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5157), 1, + STATE(2734), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5533), 6, anon_sym_LPAREN, - ACTIONS(5159), 1, + anon_sym_RPAREN, anon_sym_LBRACK, - ACTIONS(5161), 1, + anon_sym_RBRACK, anon_sym_LBRACE, - ACTIONS(5171), 1, anon_sym_RBRACE, - STATE(2301), 1, - aux_sym_macro_definition_repeat1, - STATE(3097), 1, - sym_macro_rule, - STATE(3487), 1, - sym_token_tree_pattern, - STATE(2257), 2, - sym_line_comment, - sym_block_comment, - [71290] = 5, + [85065] = 9, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5173), 1, + ACTIONS(6060), 1, sym_identifier, - STATE(2258), 2, + ACTIONS(6062), 1, + anon_sym_ref, + ACTIONS(6064), 1, + sym_mutable_specifier, + ACTIONS(6066), 1, + anon_sym_move, + STATE(222), 1, + sym_closure_parameters, + STATE(2735), 2, sym_line_comment, sym_block_comment, - ACTIONS(4772), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [71312] = 10, + [85094] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4940), 1, - anon_sym_LPAREN, - ACTIONS(4942), 1, + ACTIONS(5473), 1, anon_sym_LBRACE, - ACTIONS(4946), 1, + ACTIONS(5489), 1, anon_sym_where, - ACTIONS(5175), 1, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(6068), 1, anon_sym_SEMI, - STATE(735), 1, - sym_field_declaration_list, - STATE(2924), 1, - sym_ordered_field_declaration_list, - STATE(3118), 1, + STATE(1271), 1, + sym_declaration_list, + STATE(3455), 1, sym_where_clause, - STATE(2259), 2, + STATE(2736), 2, sym_line_comment, sym_block_comment, - [71344] = 10, + [85123] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4940), 1, - anon_sym_LPAREN, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4976), 1, + ACTIONS(5485), 1, anon_sym_LBRACE, - ACTIONS(5177), 1, - anon_sym_SEMI, - STATE(1203), 1, + ACTIONS(5487), 1, + anon_sym_LT, + ACTIONS(5489), 1, + anon_sym_where, + STATE(580), 1, sym_field_declaration_list, - STATE(2854), 1, - sym_ordered_field_declaration_list, - STATE(3197), 1, + STATE(2911), 1, + sym_type_parameters, + STATE(3644), 1, sym_where_clause, - STATE(2260), 2, + STATE(2737), 2, sym_line_comment, sym_block_comment, - [71376] = 10, + [85152] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4768), 1, + ACTIONS(5132), 1, anon_sym_COLON_COLON, - ACTIONS(5179), 1, - anon_sym_LPAREN, - ACTIONS(5181), 1, - anon_sym_LBRACK, - ACTIONS(5183), 1, - anon_sym_RBRACK, - ACTIONS(5185), 1, - anon_sym_LBRACE, - ACTIONS(5187), 1, - anon_sym_EQ, - STATE(3581), 1, - sym_delim_token_tree, - STATE(2261), 2, + ACTIONS(5507), 1, + anon_sym_for, + STATE(2738), 2, sym_line_comment, sym_block_comment, - [71408] = 9, + ACTIONS(3775), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [85175] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1519), 1, - anon_sym_DOT_DOT, - ACTIONS(5051), 1, - sym_identifier, - ACTIONS(5057), 1, - anon_sym_ref, - ACTIONS(5059), 1, - sym_mutable_specifier, - ACTIONS(5189), 1, - anon_sym_RBRACE, - STATE(2262), 2, + ACTIONS(5473), 1, + anon_sym_LBRACE, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(6070), 1, + anon_sym_SEMI, + STATE(1294), 1, + sym_declaration_list, + STATE(3444), 1, + sym_where_clause, + STATE(2739), 2, sym_line_comment, sym_block_comment, - STATE(3058), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [71438] = 9, + [85204] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1519), 1, - anon_sym_DOT_DOT, - ACTIONS(5051), 1, - sym_identifier, - ACTIONS(5057), 1, - anon_sym_ref, - ACTIONS(5059), 1, - sym_mutable_specifier, - ACTIONS(5191), 1, - anon_sym_RBRACE, - STATE(2263), 2, + ACTIONS(5473), 1, + anon_sym_LBRACE, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(6072), 1, + anon_sym_SEMI, + STATE(1279), 1, + sym_declaration_list, + STATE(3450), 1, + sym_where_clause, + STATE(2740), 2, sym_line_comment, sym_block_comment, - STATE(3058), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [71468] = 10, + [85233] = 9, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5157), 1, - anon_sym_LPAREN, - ACTIONS(5159), 1, - anon_sym_LBRACK, - ACTIONS(5161), 1, + ACTIONS(5473), 1, anon_sym_LBRACE, - ACTIONS(5165), 1, - anon_sym_RBRACK, - STATE(2186), 1, - aux_sym_macro_definition_repeat1, - STATE(3146), 1, - sym_macro_rule, - STATE(3487), 1, - sym_token_tree_pattern, - STATE(2264), 2, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(6074), 1, + anon_sym_SEMI, + STATE(1276), 1, + sym_declaration_list, + STATE(3451), 1, + sym_where_clause, + STATE(2741), 2, sym_line_comment, sym_block_comment, - [71500] = 5, + [85262] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5193), 1, - sym_identifier, - STATE(2265), 2, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + ACTIONS(5612), 1, + anon_sym_LBRACE, + ACTIONS(6076), 1, + anon_sym_SEMI, + STATE(668), 1, + sym_block, + STATE(4112), 1, + sym_label, + STATE(2742), 2, sym_line_comment, sym_block_comment, - ACTIONS(4772), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [71522] = 9, + [85288] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4175), 1, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + ACTIONS(5606), 1, anon_sym_LBRACE, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(5197), 1, - anon_sym_STAR, - STATE(2819), 1, - sym_use_list, - STATE(3311), 1, - sym_type_arguments, - ACTIONS(5195), 2, - sym_identifier, - sym_super, - STATE(2266), 2, + ACTIONS(6078), 1, + anon_sym_SEMI, + STATE(1305), 1, + sym_block, + STATE(4115), 1, + sym_label, + STATE(2743), 2, sym_line_comment, sym_block_comment, - [71552] = 10, + [85314] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5157), 1, - anon_sym_LPAREN, - ACTIONS(5159), 1, - anon_sym_LBRACK, - ACTIONS(5161), 1, - anon_sym_LBRACE, - ACTIONS(5167), 1, + ACTIONS(6080), 1, anon_sym_RPAREN, - STATE(2186), 1, - aux_sym_macro_definition_repeat1, - STATE(3150), 1, - sym_macro_rule, - STATE(3487), 1, - sym_token_tree_pattern, - STATE(2267), 2, + ACTIONS(6082), 1, + anon_sym_COMMA, + STATE(3436), 1, + aux_sym_parameters_repeat1, + ACTIONS(5044), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2744), 2, sym_line_comment, sym_block_comment, - [71584] = 10, + [85338] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4756), 1, - anon_sym_COLON_COLON, - ACTIONS(5179), 1, + ACTIONS(4407), 1, anon_sym_LPAREN, - ACTIONS(5181), 1, - anon_sym_LBRACK, - ACTIONS(5185), 1, - anon_sym_LBRACE, - ACTIONS(5199), 1, - anon_sym_RBRACK, - ACTIONS(5201), 1, - anon_sym_EQ, - STATE(3503), 1, - sym_delim_token_tree, - STATE(2268), 2, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(5060), 1, + anon_sym_COLON_COLON, + STATE(1852), 1, + sym_parameters, + STATE(2221), 1, + sym_type_arguments, + STATE(2745), 2, sym_line_comment, sym_block_comment, - [71616] = 9, + [85364] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1519), 1, - anon_sym_DOT_DOT, - ACTIONS(5051), 1, - sym_identifier, - ACTIONS(5057), 1, - anon_sym_ref, - ACTIONS(5059), 1, - sym_mutable_specifier, - ACTIONS(5203), 1, - anon_sym_RBRACE, - STATE(2269), 2, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + ACTIONS(5612), 1, + anon_sym_LBRACE, + ACTIONS(6084), 1, + anon_sym_SEMI, + STATE(744), 1, + sym_block, + STATE(4112), 1, + sym_label, + STATE(2746), 2, sym_line_comment, sym_block_comment, - STATE(3058), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [71646] = 8, + [85390] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4940), 1, - anon_sym_LPAREN, - ACTIONS(4976), 1, + ACTIONS(1227), 1, anon_sym_LBRACE, - ACTIONS(5207), 1, - anon_sym_EQ, - ACTIONS(5205), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(2270), 2, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + ACTIONS(6086), 1, + anon_sym_move, + STATE(467), 1, + sym_block, + STATE(4116), 1, + sym_label, + STATE(2747), 2, sym_line_comment, sym_block_comment, - STATE(3029), 2, - sym_field_declaration_list, - sym_ordered_field_declaration_list, - [71674] = 10, + [85416] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5157), 1, - anon_sym_LPAREN, - ACTIONS(5159), 1, - anon_sym_LBRACK, - ACTIONS(5161), 1, - anon_sym_LBRACE, - ACTIONS(5209), 1, - anon_sym_RBRACE, - STATE(2186), 1, - aux_sym_macro_definition_repeat1, - STATE(3164), 1, - sym_macro_rule, - STATE(3487), 1, - sym_token_tree_pattern, - STATE(2271), 2, + STATE(2748), 2, sym_line_comment, sym_block_comment, - [71706] = 10, + ACTIONS(3918), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [85434] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4940), 1, - anon_sym_LPAREN, - ACTIONS(4942), 1, - anon_sym_LBRACE, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(5211), 1, - anon_sym_SEMI, - STATE(615), 1, - sym_field_declaration_list, - STATE(2971), 1, - sym_ordered_field_declaration_list, - STATE(3205), 1, - sym_where_clause, - STATE(2272), 2, + STATE(2749), 2, sym_line_comment, sym_block_comment, - [71738] = 10, + ACTIONS(4085), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [85452] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4940), 1, - anon_sym_LPAREN, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4976), 1, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + ACTIONS(5606), 1, anon_sym_LBRACE, - ACTIONS(5213), 1, + ACTIONS(6088), 1, anon_sym_SEMI, - STATE(1133), 1, - sym_field_declaration_list, - STATE(2803), 1, - sym_ordered_field_declaration_list, - STATE(3225), 1, - sym_where_clause, - STATE(2273), 2, + STATE(1268), 1, + sym_block, + STATE(4115), 1, + sym_label, + STATE(2750), 2, sym_line_comment, sym_block_comment, - [71770] = 10, + [85478] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5157), 1, - anon_sym_LPAREN, - ACTIONS(5159), 1, - anon_sym_LBRACK, - ACTIONS(5161), 1, - anon_sym_LBRACE, - ACTIONS(5215), 1, - anon_sym_RPAREN, - STATE(2281), 1, - aux_sym_macro_definition_repeat1, - STATE(3243), 1, - sym_macro_rule, - STATE(3487), 1, - sym_token_tree_pattern, - STATE(2274), 2, + ACTIONS(5044), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2751), 2, sym_line_comment, sym_block_comment, - [71802] = 10, + ACTIONS(3775), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [85498] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5157), 1, - anon_sym_LPAREN, - ACTIONS(5159), 1, - anon_sym_LBRACK, - ACTIONS(5161), 1, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + ACTIONS(5606), 1, anon_sym_LBRACE, - ACTIONS(5215), 1, - anon_sym_RBRACK, - STATE(2282), 1, - aux_sym_macro_definition_repeat1, - STATE(3244), 1, - sym_macro_rule, - STATE(3487), 1, - sym_token_tree_pattern, - STATE(2275), 2, + ACTIONS(6090), 1, + anon_sym_SEMI, + STATE(1254), 1, + sym_block, + STATE(4115), 1, + sym_label, + STATE(2752), 2, sym_line_comment, sym_block_comment, - [71834] = 10, + [85524] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5157), 1, + ACTIONS(5036), 1, anon_sym_LPAREN, - ACTIONS(5159), 1, - anon_sym_LBRACK, - ACTIONS(5161), 1, - anon_sym_LBRACE, - ACTIONS(5217), 1, - anon_sym_RPAREN, - STATE(2283), 1, - aux_sym_macro_definition_repeat1, - STATE(3245), 1, - sym_macro_rule, - STATE(3487), 1, - sym_token_tree_pattern, - STATE(2276), 2, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(5060), 1, + anon_sym_COLON_COLON, + STATE(2221), 1, + sym_type_arguments, + STATE(2245), 1, + sym_parameters, + STATE(2753), 2, sym_line_comment, sym_block_comment, - [71866] = 10, + [85550] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5157), 1, - anon_sym_LPAREN, - ACTIONS(5159), 1, - anon_sym_LBRACK, - ACTIONS(5161), 1, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + ACTIONS(5606), 1, anon_sym_LBRACE, - ACTIONS(5217), 1, - anon_sym_RBRACK, - STATE(2284), 1, - aux_sym_macro_definition_repeat1, - STATE(3247), 1, - sym_macro_rule, - STATE(3487), 1, - sym_token_tree_pattern, - STATE(2277), 2, + ACTIONS(6092), 1, + anon_sym_SEMI, + STATE(1362), 1, + sym_block, + STATE(4115), 1, + sym_label, + STATE(2754), 2, sym_line_comment, sym_block_comment, - [71898] = 10, + [85576] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5157), 1, - anon_sym_LPAREN, - ACTIONS(5159), 1, - anon_sym_LBRACK, - ACTIONS(5161), 1, - anon_sym_LBRACE, - ACTIONS(5219), 1, - anon_sym_RBRACE, - STATE(2186), 1, - aux_sym_macro_definition_repeat1, - STATE(3147), 1, - sym_macro_rule, - STATE(3487), 1, - sym_token_tree_pattern, - STATE(2278), 2, + STATE(2755), 2, sym_line_comment, sym_block_comment, - [71930] = 9, + ACTIONS(4081), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [85594] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4175), 1, - anon_sym_LBRACE, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(5197), 1, - anon_sym_STAR, - STATE(2819), 1, - sym_use_list, - STATE(3158), 1, - sym_type_arguments, - ACTIONS(5195), 2, - sym_identifier, - sym_super, - STATE(2279), 2, + ACTIONS(6094), 1, + anon_sym_RBRACK, + ACTIONS(3775), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(5044), 2, + anon_sym_PIPE, + anon_sym_COMMA, + STATE(2756), 2, sym_line_comment, sym_block_comment, - [71960] = 8, + [85616] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4517), 1, + ACTIONS(5054), 1, anon_sym_DOT_DOT, - ACTIONS(5223), 1, + ACTIONS(5810), 1, anon_sym_COLON, - ACTIONS(5225), 1, + ACTIONS(5812), 1, anon_sym_COLON_COLON, - ACTIONS(4519), 2, + ACTIONS(5056), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(5221), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2280), 2, + STATE(2757), 2, sym_line_comment, sym_block_comment, - [71988] = 10, + [85640] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5157), 1, - anon_sym_LPAREN, - ACTIONS(5159), 1, - anon_sym_LBRACK, - ACTIONS(5161), 1, - anon_sym_LBRACE, - ACTIONS(5227), 1, - anon_sym_RPAREN, - STATE(2186), 1, - aux_sym_macro_definition_repeat1, - STATE(3264), 1, - sym_macro_rule, - STATE(3487), 1, - sym_token_tree_pattern, - STATE(2281), 2, + ACTIONS(5453), 1, + anon_sym_PIPE, + ACTIONS(6097), 1, + anon_sym_SEMI, + ACTIONS(6099), 1, + anon_sym_COLON, + ACTIONS(6101), 1, + anon_sym_EQ, + ACTIONS(6103), 1, + anon_sym_else, + STATE(2758), 2, sym_line_comment, sym_block_comment, - [72020] = 10, + [85666] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5157), 1, - anon_sym_LPAREN, - ACTIONS(5159), 1, - anon_sym_LBRACK, - ACTIONS(5161), 1, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + ACTIONS(5606), 1, anon_sym_LBRACE, - ACTIONS(5227), 1, - anon_sym_RBRACK, - STATE(2186), 1, - aux_sym_macro_definition_repeat1, - STATE(3265), 1, - sym_macro_rule, - STATE(3487), 1, - sym_token_tree_pattern, - STATE(2282), 2, + ACTIONS(6105), 1, + anon_sym_SEMI, + STATE(1227), 1, + sym_block, + STATE(4115), 1, + sym_label, + STATE(2759), 2, sym_line_comment, sym_block_comment, - [72052] = 10, + [85692] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5157), 1, - anon_sym_LPAREN, - ACTIONS(5159), 1, - anon_sym_LBRACK, - ACTIONS(5161), 1, - anon_sym_LBRACE, - ACTIONS(5229), 1, - anon_sym_RPAREN, - STATE(2186), 1, - aux_sym_macro_definition_repeat1, - STATE(3266), 1, - sym_macro_rule, - STATE(3487), 1, - sym_token_tree_pattern, - STATE(2283), 2, + STATE(2760), 2, sym_line_comment, sym_block_comment, - [72084] = 10, + ACTIONS(4055), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [85710] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5157), 1, - anon_sym_LPAREN, - ACTIONS(5159), 1, - anon_sym_LBRACK, - ACTIONS(5161), 1, + ACTIONS(407), 1, anon_sym_LBRACE, - ACTIONS(5229), 1, - anon_sym_RBRACK, - STATE(2186), 1, - aux_sym_macro_definition_repeat1, - STATE(3267), 1, - sym_macro_rule, - STATE(3487), 1, - sym_token_tree_pattern, - STATE(2284), 2, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + ACTIONS(5608), 1, + anon_sym_PLUS, + STATE(2084), 1, + sym_block, + STATE(4117), 1, + sym_label, + STATE(2761), 2, sym_line_comment, sym_block_comment, - [72116] = 8, + [85736] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4517), 1, - anon_sym_DOT_DOT, - ACTIONS(5223), 1, + ACTIONS(6107), 1, + anon_sym_SEMI, + ACTIONS(6109), 1, anon_sym_COLON, - ACTIONS(5231), 1, - anon_sym_COLON_COLON, - ACTIONS(4519), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5221), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2285), 2, + ACTIONS(6111), 1, + anon_sym_PIPE, + ACTIONS(6113), 1, + anon_sym_EQ, + ACTIONS(6115), 1, + anon_sym_else, + STATE(2762), 2, sym_line_comment, sym_block_comment, - [72144] = 7, + [85762] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4517), 1, - anon_sym_DOT_DOT, - ACTIONS(5231), 1, - anon_sym_COLON_COLON, - ACTIONS(4519), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2286), 2, + ACTIONS(5596), 1, + anon_sym_COLON, + ACTIONS(6024), 1, + anon_sym_GT, + ACTIONS(6026), 1, + anon_sym_COMMA, + STATE(3271), 1, + sym_trait_bounds, + STATE(3272), 1, + aux_sym_type_parameters_repeat1, + STATE(2763), 2, sym_line_comment, sym_block_comment, - ACTIONS(3321), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [72170] = 7, + [85788] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4890), 1, - anon_sym_DOT_DOT, - ACTIONS(4894), 1, - anon_sym_COLON_COLON, - ACTIONS(4892), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2287), 2, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + ACTIONS(5606), 1, + anon_sym_LBRACE, + ACTIONS(6117), 1, + anon_sym_SEMI, + STATE(1396), 1, + sym_block, + STATE(4115), 1, + sym_label, + STATE(2764), 2, sym_line_comment, sym_block_comment, - ACTIONS(4549), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [72196] = 5, + [85814] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5233), 1, - anon_sym_trait, - STATE(2288), 2, + STATE(2765), 2, sym_line_comment, sym_block_comment, - ACTIONS(3458), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [72218] = 8, + ACTIONS(6119), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [85832] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4517), 1, - anon_sym_DOT_DOT, - ACTIONS(5237), 1, + ACTIONS(5596), 1, anon_sym_COLON, - ACTIONS(5239), 1, - anon_sym_COLON_COLON, - ACTIONS(4519), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5235), 2, - anon_sym_RPAREN, + ACTIONS(5992), 1, + anon_sym_GT, + ACTIONS(5994), 1, anon_sym_COMMA, - STATE(2289), 2, + STATE(3458), 1, + sym_trait_bounds, + STATE(3462), 1, + aux_sym_type_arguments_repeat1, + STATE(2766), 2, sym_line_comment, sym_block_comment, - [72246] = 9, + [85858] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1519), 1, - anon_sym_DOT_DOT, - ACTIONS(5051), 1, - sym_identifier, - ACTIONS(5057), 1, - anon_sym_ref, - ACTIONS(5059), 1, - sym_mutable_specifier, - ACTIONS(5241), 1, - anon_sym_RBRACE, - STATE(2290), 2, + STATE(2767), 2, sym_line_comment, sym_block_comment, - STATE(3058), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [72276] = 9, + ACTIONS(6121), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [85876] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1519), 1, - anon_sym_DOT_DOT, - ACTIONS(5051), 1, - sym_identifier, - ACTIONS(5057), 1, - anon_sym_ref, - ACTIONS(5059), 1, - sym_mutable_specifier, - ACTIONS(5243), 1, - anon_sym_RBRACE, - STATE(2291), 2, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + ACTIONS(5606), 1, + anon_sym_LBRACE, + ACTIONS(6123), 1, + anon_sym_SEMI, + STATE(1424), 1, + sym_block, + STATE(4115), 1, + sym_label, + STATE(2768), 2, sym_line_comment, sym_block_comment, - STATE(3058), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [72306] = 10, + [85902] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5157), 1, - anon_sym_LPAREN, - ACTIONS(5159), 1, - anon_sym_LBRACK, - ACTIONS(5161), 1, - anon_sym_LBRACE, - ACTIONS(5245), 1, - anon_sym_RPAREN, - STATE(2254), 1, - aux_sym_macro_definition_repeat1, - STATE(3145), 1, - sym_macro_rule, - STATE(3487), 1, - sym_token_tree_pattern, - STATE(2292), 2, + STATE(2769), 2, sym_line_comment, sym_block_comment, - [72338] = 10, + ACTIONS(6125), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [85920] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5157), 1, - anon_sym_LPAREN, - ACTIONS(5159), 1, - anon_sym_LBRACK, - ACTIONS(5161), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(5245), 1, - anon_sym_RBRACK, - STATE(2264), 1, - aux_sym_macro_definition_repeat1, - STATE(3100), 1, - sym_macro_rule, - STATE(3487), 1, - sym_token_tree_pattern, - STATE(2293), 2, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + ACTIONS(6127), 1, + anon_sym_move, + STATE(1653), 1, + sym_block, + STATE(4045), 1, + sym_label, + STATE(2770), 2, sym_line_comment, sym_block_comment, - [72370] = 10, + [85946] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5157), 1, - anon_sym_LPAREN, - ACTIONS(5159), 1, - anon_sym_LBRACK, - ACTIONS(5161), 1, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + ACTIONS(5606), 1, anon_sym_LBRACE, - ACTIONS(5247), 1, - anon_sym_RBRACE, - STATE(2278), 1, - aux_sym_macro_definition_repeat1, - STATE(3061), 1, - sym_macro_rule, - STATE(3487), 1, - sym_token_tree_pattern, - STATE(2294), 2, + ACTIONS(6129), 1, + anon_sym_SEMI, + STATE(1406), 1, + sym_block, + STATE(4115), 1, + sym_label, + STATE(2771), 2, sym_line_comment, sym_block_comment, - [72402] = 10, + [85972] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5157), 1, - anon_sym_LPAREN, - ACTIONS(5159), 1, - anon_sym_LBRACK, - ACTIONS(5161), 1, + STATE(2772), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3962), 5, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(5249), 1, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [85990] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1491), 1, anon_sym_RPAREN, - STATE(2267), 1, - aux_sym_macro_definition_repeat1, - STATE(3300), 1, - sym_macro_rule, - STATE(3487), 1, - sym_token_tree_pattern, - STATE(2295), 2, + ACTIONS(6131), 1, + anon_sym_COMMA, + STATE(3380), 1, + aux_sym_parameters_repeat1, + ACTIONS(5044), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2773), 2, sym_line_comment, sym_block_comment, - [72434] = 10, + [86014] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5157), 1, - anon_sym_LPAREN, - ACTIONS(5159), 1, - anon_sym_LBRACK, - ACTIONS(5161), 1, - anon_sym_LBRACE, - ACTIONS(5249), 1, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(5060), 1, + anon_sym_COLON_COLON, + ACTIONS(5177), 1, + anon_sym_COLON, + STATE(2221), 1, + sym_type_arguments, + STATE(2918), 1, + sym_trait_bounds, + STATE(2774), 2, + sym_line_comment, + sym_block_comment, + [86040] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6133), 1, anon_sym_RBRACK, - STATE(2255), 1, - aux_sym_macro_definition_repeat1, - STATE(3219), 1, - sym_macro_rule, - STATE(3487), 1, - sym_token_tree_pattern, - STATE(2296), 2, + ACTIONS(4351), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(5401), 2, + anon_sym_PIPE, + anon_sym_COMMA, + STATE(2775), 2, + sym_line_comment, + sym_block_comment, + [86062] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6138), 1, + anon_sym_COMMA, + STATE(2826), 1, + aux_sym_where_clause_repeat1, + STATE(2776), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6136), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_SQUOTE, + [86084] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(2777), 2, sym_line_comment, sym_block_comment, - [72466] = 10, + ACTIONS(3922), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [86102] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5157), 1, - anon_sym_LPAREN, - ACTIONS(5159), 1, - anon_sym_LBRACK, - ACTIONS(5161), 1, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + ACTIONS(5612), 1, anon_sym_LBRACE, - ACTIONS(5251), 1, - anon_sym_RBRACE, - STATE(2271), 1, - aux_sym_macro_definition_repeat1, - STATE(3223), 1, - sym_macro_rule, - STATE(3487), 1, - sym_token_tree_pattern, - STATE(2297), 2, + ACTIONS(6140), 1, + anon_sym_SEMI, + STATE(706), 1, + sym_block, + STATE(4112), 1, + sym_label, + STATE(2778), 2, sym_line_comment, sym_block_comment, - [72498] = 10, + [86128] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5157), 1, - anon_sym_LPAREN, - ACTIONS(5159), 1, - anon_sym_LBRACK, - ACTIONS(5161), 1, - anon_sym_LBRACE, - ACTIONS(5253), 1, - anon_sym_RBRACE, - STATE(2186), 1, - aux_sym_macro_definition_repeat1, - STATE(3062), 1, - sym_macro_rule, - STATE(3487), 1, - sym_token_tree_pattern, - STATE(2298), 2, + STATE(2779), 2, sym_line_comment, sym_block_comment, - [72530] = 8, + ACTIONS(3966), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [86146] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4940), 1, - anon_sym_LPAREN, - ACTIONS(4976), 1, - anon_sym_LBRACE, - ACTIONS(5257), 1, + ACTIONS(5453), 1, + anon_sym_PIPE, + ACTIONS(6142), 1, + anon_sym_SEMI, + ACTIONS(6144), 1, + anon_sym_COLON, + ACTIONS(6146), 1, anon_sym_EQ, - ACTIONS(5255), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(2299), 2, + ACTIONS(6148), 1, + anon_sym_else, + STATE(2780), 2, sym_line_comment, sym_block_comment, - STATE(3023), 2, - sym_field_declaration_list, - sym_ordered_field_declaration_list, - [72558] = 7, + [86172] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4517), 1, - anon_sym_DOT_DOT, - ACTIONS(5259), 1, - anon_sym_COLON_COLON, - ACTIONS(4519), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2300), 2, + STATE(2781), 2, sym_line_comment, sym_block_comment, - ACTIONS(3321), 3, + ACTIONS(3970), 5, anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS, - [72584] = 10, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [86190] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5157), 1, - anon_sym_LPAREN, - ACTIONS(5159), 1, - anon_sym_LBRACK, - ACTIONS(5161), 1, - anon_sym_LBRACE, - ACTIONS(5261), 1, - anon_sym_RBRACE, - STATE(2186), 1, - aux_sym_macro_definition_repeat1, - STATE(3063), 1, - sym_macro_rule, - STATE(3487), 1, - sym_token_tree_pattern, - STATE(2301), 2, + ACTIONS(5251), 1, + anon_sym_GT, + ACTIONS(5596), 1, + anon_sym_COLON, + ACTIONS(6150), 1, + anon_sym_COMMA, + STATE(3271), 1, + sym_trait_bounds, + STATE(3417), 1, + aux_sym_type_parameters_repeat1, + STATE(2782), 2, sym_line_comment, sym_block_comment, - [72616] = 9, + [86216] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1519), 1, - anon_sym_DOT_DOT, - ACTIONS(5051), 1, - sym_identifier, - ACTIONS(5057), 1, - anon_sym_ref, - ACTIONS(5059), 1, - sym_mutable_specifier, - ACTIONS(5263), 1, - anon_sym_RBRACE, - STATE(2302), 2, + STATE(2783), 2, sym_line_comment, sym_block_comment, - STATE(3058), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [72646] = 10, - ACTIONS(3), 1, + ACTIONS(6152), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [86234] = 5, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5265), 1, - aux_sym_line_comment_token1, - ACTIONS(5267), 1, - aux_sym_line_comment_token3, - ACTIONS(5269), 1, - anon_sym_BANG2, - ACTIONS(5271), 1, - anon_sym_SLASH2, - STATE(3395), 1, - sym__outer_line_doc_comment_marker, - STATE(3562), 1, - sym__line_doc_comment_marker, - STATE(3638), 1, - sym__inner_line_doc_comment_marker, - STATE(2303), 2, + ACTIONS(5401), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2784), 2, sym_line_comment, sym_block_comment, - [72678] = 5, + ACTIONS(4351), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [86254] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5273), 1, - anon_sym_trait, - STATE(2304), 2, + STATE(2785), 2, sym_line_comment, sym_block_comment, - ACTIONS(3458), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [72700] = 10, + ACTIONS(6154), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [86272] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4758), 1, - anon_sym_COLON_COLON, ACTIONS(5179), 1, - anon_sym_LPAREN, - ACTIONS(5181), 1, - anon_sym_LBRACK, - ACTIONS(5185), 1, - anon_sym_LBRACE, - ACTIONS(5199), 1, - anon_sym_RBRACK, - ACTIONS(5201), 1, anon_sym_EQ, - STATE(3503), 1, - sym_delim_token_tree, - STATE(2305), 2, + ACTIONS(5596), 1, + anon_sym_COLON, + STATE(3274), 1, + sym_trait_bounds, + ACTIONS(6156), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(2786), 2, sym_line_comment, sym_block_comment, - [72732] = 10, + [86296] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4630), 1, - anon_sym_COLON_COLON, - ACTIONS(5179), 1, - anon_sym_LPAREN, - ACTIONS(5181), 1, - anon_sym_LBRACK, - ACTIONS(5185), 1, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + ACTIONS(5612), 1, anon_sym_LBRACE, - ACTIONS(5199), 1, - anon_sym_RBRACK, - ACTIONS(5201), 1, - anon_sym_EQ, - STATE(3503), 1, - sym_delim_token_tree, - STATE(2306), 2, + ACTIONS(6158), 1, + anon_sym_SEMI, + STATE(574), 1, + sym_block, + STATE(4112), 1, + sym_label, + STATE(2787), 2, sym_line_comment, sym_block_comment, - [72764] = 7, + [86322] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4517), 1, - anon_sym_DOT_DOT, - ACTIONS(5225), 1, - anon_sym_COLON_COLON, - ACTIONS(4519), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2307), 2, + STATE(2788), 2, sym_line_comment, sym_block_comment, - ACTIONS(3321), 3, - anon_sym_RPAREN, - anon_sym_PLUS, + ACTIONS(6160), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, anon_sym_COMMA, - [72790] = 5, + anon_sym_where, + [86340] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5275), 1, - sym_identifier, - STATE(2308), 2, + ACTIONS(5453), 1, + anon_sym_PIPE, + ACTIONS(6162), 1, + anon_sym_SEMI, + ACTIONS(6164), 1, + anon_sym_COLON, + ACTIONS(6166), 1, + anon_sym_EQ, + ACTIONS(6168), 1, + anon_sym_else, + STATE(2789), 2, sym_line_comment, sym_block_comment, - ACTIONS(4772), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [72812] = 9, + [86366] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1519), 1, - anon_sym_DOT_DOT, - ACTIONS(5051), 1, - sym_identifier, - ACTIONS(5057), 1, - anon_sym_ref, - ACTIONS(5059), 1, - sym_mutable_specifier, - ACTIONS(5277), 1, - anon_sym_RBRACE, - STATE(2309), 2, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + ACTIONS(5612), 1, + anon_sym_LBRACE, + ACTIONS(6170), 1, + anon_sym_SEMI, + STATE(846), 1, + sym_block, + STATE(4112), 1, + sym_label, + STATE(2790), 2, sym_line_comment, sym_block_comment, - STATE(3058), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [72842] = 9, + [86392] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4956), 1, - anon_sym_LBRACE, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5279), 1, + ACTIONS(6174), 1, + anon_sym_COMMA, + ACTIONS(6172), 3, anon_sym_SEMI, - STATE(1218), 1, - sym_declaration_list, - STATE(2874), 1, - sym_where_clause, - STATE(2310), 2, + anon_sym_LBRACE, + anon_sym_SQUOTE, + STATE(2791), 3, sym_line_comment, sym_block_comment, - [72871] = 9, + aux_sym_where_clause_repeat1, + [86412] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4956), 1, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + ACTIONS(5612), 1, anon_sym_LBRACE, - ACTIONS(5043), 1, - anon_sym_COLON, - STATE(1257), 1, - sym_declaration_list, - STATE(2523), 1, - sym_trait_bounds, - STATE(3290), 1, - sym_where_clause, - STATE(2311), 2, + ACTIONS(6177), 1, + anon_sym_SEMI, + STATE(572), 1, + sym_block, + STATE(4112), 1, + sym_label, + STATE(2792), 2, sym_line_comment, sym_block_comment, - [72900] = 9, + [86438] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4950), 1, - anon_sym_LBRACE, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5281), 1, - anon_sym_SEMI, - STATE(635), 1, - sym_declaration_list, - STATE(2780), 1, - sym_where_clause, - STATE(2312), 2, + ACTIONS(6179), 1, + anon_sym_STAR_SLASH, + ACTIONS(6181), 1, + sym__outer_block_doc_comment_marker, + ACTIONS(6183), 1, + sym__inner_block_doc_comment_marker, + ACTIONS(6185), 1, + sym__block_comment_content, + STATE(3567), 1, + sym__block_doc_comment_marker, + STATE(2793), 2, sym_line_comment, sym_block_comment, - [72929] = 9, + [86464] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4950), 1, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + ACTIONS(5612), 1, anon_sym_LBRACE, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5283), 1, + ACTIONS(6187), 1, anon_sym_SEMI, - STATE(504), 1, - sym_declaration_list, - STATE(2940), 1, - sym_where_clause, - STATE(2313), 2, + STATE(675), 1, + sym_block, + STATE(4112), 1, + sym_label, + STATE(2794), 2, sym_line_comment, sym_block_comment, - [72958] = 9, + [86490] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4950), 1, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + ACTIONS(5606), 1, anon_sym_LBRACE, - ACTIONS(5043), 1, - anon_sym_COLON, - STATE(682), 1, - sym_declaration_list, - STATE(2727), 1, - sym_trait_bounds, - STATE(3294), 1, - sym_where_clause, - STATE(2314), 2, + ACTIONS(6189), 1, + anon_sym_SEMI, + STATE(1612), 1, + sym_block, + STATE(4115), 1, + sym_label, + STATE(2795), 2, sym_line_comment, sym_block_comment, - [72987] = 6, + [86516] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4595), 1, - anon_sym_COLON_COLON, - ACTIONS(4960), 1, - anon_sym_for, - STATE(2315), 2, + STATE(2796), 2, sym_line_comment, sym_block_comment, - ACTIONS(3321), 4, + ACTIONS(3926), 5, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_PLUS, + anon_sym_COLON, + anon_sym_EQ, anon_sym_where, - [73010] = 9, + [86534] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4944), 1, - anon_sym_LT, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(5285), 1, - anon_sym_LBRACE, - STATE(1097), 1, - sym_enum_variant_list, - STATE(2736), 1, - sym_type_parameters, - STATE(3309), 1, - sym_where_clause, - STATE(2316), 2, + ACTIONS(5054), 1, + anon_sym_DOT_DOT, + ACTIONS(5802), 1, + anon_sym_COLON, + ACTIONS(5812), 1, + anon_sym_COLON_COLON, + ACTIONS(5056), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2797), 2, sym_line_comment, sym_block_comment, - [73039] = 9, + [86558] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4956), 1, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + ACTIONS(5606), 1, anon_sym_LBRACE, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5287), 1, + ACTIONS(6191), 1, anon_sym_SEMI, - STATE(1100), 1, - sym_declaration_list, - STATE(3045), 1, - sym_where_clause, - STATE(2317), 2, + STATE(1572), 1, + sym_block, + STATE(4115), 1, + sym_label, + STATE(2798), 2, sym_line_comment, sym_block_comment, - [73068] = 9, + [86584] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4950), 1, + ACTIONS(407), 1, anon_sym_LBRACE, - ACTIONS(5039), 1, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + ACTIONS(5608), 1, anon_sym_PLUS, - ACTIONS(5289), 1, - anon_sym_SEMI, - STATE(506), 1, - sym_declaration_list, - STATE(2948), 1, - sym_where_clause, - STATE(2318), 2, + STATE(1917), 1, + sym_block, + STATE(4117), 1, + sym_label, + STATE(2799), 2, sym_line_comment, sym_block_comment, - [73097] = 9, + [86610] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4956), 1, - anon_sym_LBRACE, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5291), 1, + ACTIONS(6195), 1, + anon_sym_COLON_COLON, + ACTIONS(6197), 1, + anon_sym_as, + STATE(2800), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6193), 3, anon_sym_SEMI, - STATE(1275), 1, - sym_declaration_list, - STATE(2889), 1, - sym_where_clause, - STATE(2319), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [86632] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3739), 1, + anon_sym_LPAREN, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(5060), 1, + anon_sym_COLON_COLON, + STATE(1618), 1, + sym_parameters, + STATE(2221), 1, + sym_type_arguments, + STATE(2801), 2, sym_line_comment, sym_block_comment, - [73126] = 9, + [86658] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4956), 1, + ACTIONS(1495), 1, + anon_sym_RPAREN, + ACTIONS(6199), 1, + anon_sym_COMMA, + STATE(3345), 1, + aux_sym_parameters_repeat1, + ACTIONS(5044), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2802), 2, + sym_line_comment, + sym_block_comment, + [86682] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + ACTIONS(5606), 1, anon_sym_LBRACE, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5293), 1, + ACTIONS(6201), 1, anon_sym_SEMI, - STATE(1277), 1, - sym_declaration_list, - STATE(2890), 1, - sym_where_clause, - STATE(2320), 2, + STATE(1560), 1, + sym_block, + STATE(4115), 1, + sym_label, + STATE(2803), 2, sym_line_comment, sym_block_comment, - [73155] = 5, + [86708] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4672), 1, - anon_sym_DOT_DOT, - STATE(2321), 2, + ACTIONS(6111), 1, + anon_sym_PIPE, + ACTIONS(6203), 1, + anon_sym_RPAREN, + ACTIONS(6205), 1, + anon_sym_COLON, + ACTIONS(6207), 1, + anon_sym_COMMA, + STATE(3463), 1, + aux_sym_slice_pattern_repeat1, + STATE(2804), 2, sym_line_comment, sym_block_comment, - ACTIONS(4670), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [73176] = 9, + [86734] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4956), 1, - anon_sym_LBRACE, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5295), 1, - anon_sym_SEMI, - STATE(1289), 1, - sym_declaration_list, - STATE(2892), 1, - sym_where_clause, - STATE(2322), 2, + ACTIONS(5237), 1, + anon_sym_GT, + ACTIONS(5596), 1, + anon_sym_COLON, + ACTIONS(6209), 1, + anon_sym_COMMA, + STATE(3271), 1, + sym_trait_bounds, + STATE(3309), 1, + aux_sym_type_parameters_repeat1, + STATE(2805), 2, sym_line_comment, sym_block_comment, - [73205] = 9, + [86760] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4956), 1, - anon_sym_LBRACE, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5297), 1, + ACTIONS(6197), 1, + anon_sym_as, + ACTIONS(6211), 1, + anon_sym_COLON_COLON, + STATE(2806), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6193), 3, anon_sym_SEMI, - STATE(1291), 1, - sym_declaration_list, - STATE(2893), 1, - sym_where_clause, - STATE(2323), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + [86782] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6197), 1, + anon_sym_as, + ACTIONS(6213), 1, + anon_sym_COLON_COLON, + STATE(2807), 2, sym_line_comment, sym_block_comment, - [73234] = 9, + ACTIONS(6193), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [86804] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4956), 1, + ACTIONS(4621), 1, anon_sym_LBRACE, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5299), 1, - anon_sym_SEMI, - STATE(1293), 1, - sym_declaration_list, - STATE(2894), 1, - sym_where_clause, - STATE(2324), 2, + ACTIONS(6217), 1, + anon_sym_STAR, + STATE(3234), 1, + sym_use_list, + ACTIONS(6215), 2, + sym_identifier, + sym_super, + STATE(2808), 2, sym_line_comment, sym_block_comment, - [73263] = 9, + [86828] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4956), 1, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + ACTIONS(5612), 1, anon_sym_LBRACE, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5301), 1, + ACTIONS(6219), 1, anon_sym_SEMI, - STATE(1295), 1, - sym_declaration_list, - STATE(2895), 1, - sym_where_clause, - STATE(2325), 2, + STATE(645), 1, + sym_block, + STATE(4112), 1, + sym_label, + STATE(2809), 2, sym_line_comment, sym_block_comment, - [73292] = 9, + [86854] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4950), 1, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + ACTIONS(5606), 1, anon_sym_LBRACE, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5303), 1, + ACTIONS(6221), 1, anon_sym_SEMI, - STATE(508), 1, - sym_declaration_list, - STATE(2955), 1, - sym_where_clause, - STATE(2326), 2, + STATE(1516), 1, + sym_block, + STATE(4115), 1, + sym_label, + STATE(2810), 2, + sym_line_comment, + sym_block_comment, + [86880] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5596), 1, + anon_sym_COLON, + ACTIONS(6223), 1, + anon_sym_GT, + ACTIONS(6225), 1, + anon_sym_COMMA, + STATE(3200), 1, + aux_sym_type_parameters_repeat1, + STATE(3271), 1, + sym_trait_bounds, + STATE(2811), 2, sym_line_comment, sym_block_comment, - [73321] = 9, + [86906] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4950), 1, - anon_sym_LBRACE, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5305), 1, - anon_sym_SEMI, - STATE(510), 1, - sym_declaration_list, - STATE(2957), 1, - sym_where_clause, - STATE(2327), 2, + ACTIONS(5439), 1, + anon_sym_RPAREN, + ACTIONS(6227), 1, + anon_sym_COLON, + ACTIONS(6229), 1, + anon_sym_PIPE, + ACTIONS(6231), 1, + anon_sym_COMMA, + STATE(3283), 1, + aux_sym_closure_parameters_repeat1, + STATE(2812), 2, sym_line_comment, sym_block_comment, - [73350] = 9, + [86932] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4944), 1, - anon_sym_LT, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4976), 1, - anon_sym_LBRACE, - STATE(1108), 1, - sym_field_declaration_list, - STATE(2682), 1, - sym_type_parameters, - STATE(3317), 1, - sym_where_clause, - STATE(2328), 2, + STATE(2813), 2, sym_line_comment, sym_block_comment, - [73379] = 6, + ACTIONS(6233), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [86950] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5307), 1, - anon_sym_RBRACK, - ACTIONS(4862), 2, - anon_sym_PIPE, - anon_sym_COMMA, - STATE(2329), 2, + ACTIONS(6237), 1, + anon_sym_COLON_COLON, + ACTIONS(6239), 1, + anon_sym_as, + STATE(2814), 2, sym_line_comment, sym_block_comment, - ACTIONS(3581), 3, + ACTIONS(6235), 3, anon_sym_SEMI, - anon_sym_PLUS, - anon_sym_DASH_GT, - [73402] = 6, + anon_sym_RBRACE, + anon_sym_COMMA, + [86972] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4664), 1, - anon_sym_DOT_DOT, - ACTIONS(4666), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2330), 2, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + ACTIONS(5606), 1, + anon_sym_LBRACE, + ACTIONS(6241), 1, + anon_sym_SEMI, + STATE(1360), 1, + sym_block, + STATE(4115), 1, + sym_label, + STATE(2815), 2, sym_line_comment, sym_block_comment, - ACTIONS(4507), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [73425] = 9, + [86998] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4956), 1, - anon_sym_LBRACE, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5310), 1, - anon_sym_SEMI, - STATE(1330), 1, - sym_declaration_list, - STATE(2898), 1, - sym_where_clause, - STATE(2331), 2, + ACTIONS(6243), 1, + anon_sym_RPAREN, + ACTIONS(6246), 1, + anon_sym_COMMA, + STATE(3436), 1, + aux_sym_parameters_repeat1, + ACTIONS(5044), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2816), 2, sym_line_comment, sym_block_comment, - [73454] = 9, + [87022] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4956), 1, + ACTIONS(4621), 1, anon_sym_LBRACE, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5312), 1, - anon_sym_SEMI, - STATE(1332), 1, - sym_declaration_list, - STATE(2899), 1, - sym_where_clause, - STATE(2332), 2, + ACTIONS(5848), 1, + anon_sym_STAR, + STATE(3236), 1, + sym_use_list, + ACTIONS(5846), 2, + sym_identifier, + sym_super, + STATE(2817), 2, sym_line_comment, sym_block_comment, - [73483] = 6, + [87046] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5314), 1, - anon_sym_RBRACK, - ACTIONS(4896), 2, + ACTIONS(3775), 1, + anon_sym_PLUS, + ACTIONS(5044), 2, + anon_sym_COLON, anon_sym_PIPE, + ACTIONS(6094), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2333), 2, + STATE(2818), 2, sym_line_comment, sym_block_comment, - ACTIONS(3607), 3, - anon_sym_SEMI, - anon_sym_PLUS, - anon_sym_DASH_GT, - [73506] = 8, + [87068] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4612), 1, - anon_sym_COLON_COLON, - ACTIONS(5317), 1, - anon_sym_GT, - ACTIONS(5319), 1, - anon_sym_COMMA, - STATE(2826), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3321), 2, - anon_sym_PLUS, - anon_sym_as, - STATE(2334), 2, + STATE(2819), 2, sym_line_comment, sym_block_comment, - [73533] = 8, - ACTIONS(19), 1, - anon_sym_LBRACE, + ACTIONS(6249), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [87086] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(5321), 1, - anon_sym_if, - STATE(3355), 1, - sym_label, - STATE(404), 2, - sym_if_expression, - sym_block, - STATE(2335), 2, + STATE(2820), 2, sym_line_comment, sym_block_comment, - [73560] = 6, + ACTIONS(6251), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [87104] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3607), 2, - anon_sym_PLUS, - anon_sym_DASH_GT, - ACTIONS(4896), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5314), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2336), 2, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + ACTIONS(5606), 1, + anon_sym_LBRACE, + ACTIONS(6253), 1, + anon_sym_SEMI, + STATE(1320), 1, + sym_block, + STATE(4115), 1, + sym_label, + STATE(2821), 2, sym_line_comment, sym_block_comment, - [73583] = 9, - ACTIONS(27), 1, - anon_sym_PIPE, + [87130] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5323), 1, - sym_identifier, - ACTIONS(5325), 1, - anon_sym_ref, - ACTIONS(5327), 1, - sym_mutable_specifier, - ACTIONS(5329), 1, - anon_sym_move, - STATE(243), 1, - sym_closure_parameters, - STATE(2337), 2, + STATE(2822), 2, sym_line_comment, sym_block_comment, - [73612] = 9, + ACTIONS(6255), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [87148] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3093), 1, + ACTIONS(3587), 1, anon_sym_PLUS, - ACTIONS(5043), 1, + ACTIONS(5596), 1, anon_sym_COLON, - ACTIONS(5317), 1, + STATE(3724), 1, + sym_trait_bounds, + ACTIONS(6257), 2, anon_sym_GT, - ACTIONS(5319), 1, anon_sym_COMMA, - STATE(2826), 1, - aux_sym_type_parameters_repeat1, - STATE(2832), 1, - sym_trait_bounds, - STATE(2338), 2, + STATE(2823), 2, sym_line_comment, sym_block_comment, - [73641] = 9, + [87172] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5043), 1, + ACTIONS(5596), 1, anon_sym_COLON, - ACTIONS(5331), 1, + ACTIONS(5900), 1, anon_sym_PLUS, - ACTIONS(5333), 1, + STATE(3724), 1, + sym_trait_bounds, + ACTIONS(6257), 2, anon_sym_GT, - ACTIONS(5335), 1, anon_sym_COMMA, - STATE(2973), 1, - sym_trait_bounds, - STATE(2983), 1, - aux_sym_type_arguments_repeat1, - STATE(2339), 2, + STATE(2824), 2, sym_line_comment, sym_block_comment, - [73670] = 9, + [87196] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5043), 1, - anon_sym_COLON, - ACTIONS(5331), 1, + ACTIONS(4351), 1, anon_sym_PLUS, - ACTIONS(5337), 1, - anon_sym_GT, - ACTIONS(5339), 1, + ACTIONS(5401), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(6133), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2925), 1, - sym_trait_bounds, - STATE(2926), 1, - aux_sym_type_arguments_repeat1, - STATE(2340), 2, + STATE(2825), 2, sym_line_comment, sym_block_comment, - [73699] = 9, + [87218] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3093), 1, - anon_sym_PLUS, - ACTIONS(5043), 1, - anon_sym_COLON, - ACTIONS(5337), 1, - anon_sym_GT, - ACTIONS(5339), 1, + ACTIONS(6259), 1, anon_sym_COMMA, - STATE(2925), 1, - sym_trait_bounds, - STATE(2926), 1, - aux_sym_type_arguments_repeat1, - STATE(2341), 2, + STATE(2791), 1, + aux_sym_where_clause_repeat1, + STATE(2826), 2, sym_line_comment, sym_block_comment, - [73728] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(1229), 1, + ACTIONS(3860), 3, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3291), 1, anon_sym_SQUOTE, - ACTIONS(5341), 1, - anon_sym_if, - STATE(3619), 1, - sym_label, - STATE(459), 2, - sym_if_expression, - sym_block, - STATE(2342), 2, - sym_line_comment, - sym_block_comment, - [73755] = 9, + [87240] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4634), 1, - anon_sym_EQ, - ACTIONS(4636), 1, - anon_sym_GT, - ACTIONS(4638), 1, - anon_sym_COMMA, - ACTIONS(5043), 1, - anon_sym_COLON, - STATE(2809), 1, - sym_trait_bounds, - STATE(2811), 1, - aux_sym_type_parameters_repeat1, - STATE(2343), 2, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + ACTIONS(5612), 1, + anon_sym_LBRACE, + ACTIONS(6261), 1, + anon_sym_SEMI, + STATE(656), 1, + sym_block, + STATE(4112), 1, + sym_label, + STATE(2827), 2, sym_line_comment, sym_block_comment, - [73784] = 9, + [87266] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4634), 1, - anon_sym_EQ, - ACTIONS(5043), 1, - anon_sym_COLON, - ACTIONS(5343), 1, - anon_sym_GT, - ACTIONS(5345), 1, - anon_sym_COMMA, - STATE(2809), 1, - sym_trait_bounds, - STATE(2865), 1, - aux_sym_type_parameters_repeat1, - STATE(2344), 2, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + ACTIONS(5612), 1, + anon_sym_LBRACE, + ACTIONS(6263), 1, + anon_sym_SEMI, + STATE(634), 1, + sym_block, + STATE(4112), 1, + sym_label, + STATE(2828), 2, sym_line_comment, sym_block_comment, - [73813] = 9, + [87292] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4950), 1, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + ACTIONS(5612), 1, anon_sym_LBRACE, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5347), 1, + ACTIONS(6265), 1, anon_sym_SEMI, - STATE(685), 1, - sym_declaration_list, - STATE(2908), 1, - sym_where_clause, - STATE(2345), 2, + STATE(630), 1, + sym_block, + STATE(4112), 1, + sym_label, + STATE(2829), 2, sym_line_comment, sym_block_comment, - [73842] = 9, + [87318] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4956), 1, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + ACTIONS(5606), 1, anon_sym_LBRACE, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5349), 1, + ACTIONS(6267), 1, anon_sym_SEMI, - STATE(1126), 1, - sym_declaration_list, - STATE(2799), 1, - sym_where_clause, - STATE(2346), 2, + STATE(1242), 1, + sym_block, + STATE(4115), 1, + sym_label, + STATE(2830), 2, sym_line_comment, sym_block_comment, - [73871] = 4, + [87344] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2347), 2, + ACTIONS(5179), 1, + anon_sym_EQ, + ACTIONS(5596), 1, + anon_sym_COLON, + STATE(3274), 1, + sym_trait_bounds, + ACTIONS(6269), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(2831), 2, sym_line_comment, sym_block_comment, - ACTIONS(5001), 6, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - [73890] = 9, + [87368] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4942), 1, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + ACTIONS(5606), 1, anon_sym_LBRACE, - ACTIONS(4944), 1, - anon_sym_LT, - ACTIONS(4946), 1, - anon_sym_where, - STATE(608), 1, - sym_field_declaration_list, - STATE(2579), 1, - sym_type_parameters, - STATE(3105), 1, - sym_where_clause, - STATE(2348), 2, + ACTIONS(6271), 1, + anon_sym_SEMI, + STATE(1525), 1, + sym_block, + STATE(4115), 1, + sym_label, + STATE(2832), 2, sym_line_comment, sym_block_comment, - [73919] = 8, + [87394] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(407), 1, anon_sym_LBRACE, - ACTIONS(3291), 1, + ACTIONS(3733), 1, anon_sym_SQUOTE, - ACTIONS(5351), 1, - anon_sym_if, - STATE(3620), 1, - sym_label, - STATE(1780), 2, - sym_if_expression, + ACTIONS(6273), 1, + anon_sym_move, + STATE(1981), 1, sym_block, - STATE(2349), 2, + STATE(4117), 1, + sym_label, + STATE(2833), 2, sym_line_comment, sym_block_comment, - [73946] = 9, + [87420] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4950), 1, - anon_sym_LBRACE, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5353), 1, + ACTIONS(6111), 1, + anon_sym_PIPE, + ACTIONS(6275), 1, anon_sym_SEMI, - STATE(545), 1, - sym_declaration_list, - STATE(3054), 1, - sym_where_clause, - STATE(2350), 2, + ACTIONS(6277), 1, + anon_sym_COLON, + ACTIONS(6279), 1, + anon_sym_EQ, + ACTIONS(6281), 1, + anon_sym_else, + STATE(2834), 2, sym_line_comment, sym_block_comment, - [73975] = 9, + [87446] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4950), 1, - anon_sym_LBRACE, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5355), 1, + ACTIONS(5453), 1, + anon_sym_PIPE, + ACTIONS(6283), 1, anon_sym_SEMI, - STATE(547), 1, - sym_declaration_list, - STATE(2921), 1, - sym_where_clause, - STATE(2351), 2, + ACTIONS(6285), 1, + anon_sym_COLON, + ACTIONS(6287), 1, + anon_sym_EQ, + ACTIONS(6289), 1, + anon_sym_else, + STATE(2835), 2, sym_line_comment, sym_block_comment, - [74004] = 9, + [87472] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4956), 1, - anon_sym_LBRACE, - ACTIONS(5043), 1, + ACTIONS(6291), 1, + anon_sym_RPAREN, + ACTIONS(6293), 1, + anon_sym_COMMA, + STATE(3293), 1, + aux_sym_parameters_repeat1, + ACTIONS(5044), 2, anon_sym_COLON, - STATE(1136), 1, - sym_declaration_list, - STATE(2547), 1, - sym_trait_bounds, - STATE(3229), 1, - sym_where_clause, - STATE(2352), 2, + anon_sym_PIPE, + STATE(2836), 2, sym_line_comment, sym_block_comment, - [74033] = 9, + [87496] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(5043), 1, - anon_sym_COLON, - ACTIONS(5357), 1, - anon_sym_SEMI, - ACTIONS(5359), 1, - anon_sym_EQ, - STATE(2805), 1, - sym_trait_bounds, - STATE(3408), 1, - sym_where_clause, - STATE(2353), 2, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + ACTIONS(5608), 1, + anon_sym_PLUS, + STATE(1728), 1, + sym_block, + STATE(4045), 1, + sym_label, + STATE(2837), 2, sym_line_comment, sym_block_comment, - [74062] = 9, + [87522] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4956), 1, - anon_sym_LBRACE, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5361), 1, - anon_sym_SEMI, - STATE(1143), 1, - sym_declaration_list, - STATE(2806), 1, - sym_where_clause, - STATE(2354), 2, + STATE(2838), 2, sym_line_comment, sym_block_comment, - [74091] = 9, + ACTIONS(6295), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [87540] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4944), 1, - anon_sym_LT, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(5363), 1, - anon_sym_LBRACE, - STATE(640), 1, - sym_enum_variant_list, - STATE(2733), 1, - sym_type_parameters, - STATE(3231), 1, - sym_where_clause, - STATE(2355), 2, + STATE(2839), 2, sym_line_comment, sym_block_comment, - [74120] = 9, + ACTIONS(6297), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [87558] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4950), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(5039), 1, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + ACTIONS(5608), 1, anon_sym_PLUS, - ACTIONS(5365), 1, - anon_sym_SEMI, - STATE(581), 1, - sym_declaration_list, - STATE(2766), 1, - sym_where_clause, - STATE(2356), 2, + STATE(1624), 1, + sym_block, + STATE(4045), 1, + sym_label, + STATE(2840), 2, sym_line_comment, sym_block_comment, - [74149] = 9, + [87584] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4942), 1, - anon_sym_LBRACE, - ACTIONS(4944), 1, - anon_sym_LT, - ACTIONS(4946), 1, - anon_sym_where, - STATE(645), 1, - sym_field_declaration_list, - STATE(2551), 1, - sym_type_parameters, - STATE(3077), 1, - sym_where_clause, - STATE(2357), 2, + ACTIONS(6111), 1, + anon_sym_PIPE, + ACTIONS(6142), 1, + anon_sym_SEMI, + ACTIONS(6144), 1, + anon_sym_COLON, + ACTIONS(6146), 1, + anon_sym_EQ, + ACTIONS(6148), 1, + anon_sym_else, + STATE(2841), 2, sym_line_comment, sym_block_comment, - [74178] = 6, + [87610] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3555), 1, - anon_sym_COLON, - ACTIONS(5367), 1, - anon_sym_EQ, - STATE(2358), 2, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + ACTIONS(5612), 1, + anon_sym_LBRACE, + ACTIONS(6299), 1, + anon_sym_SEMI, + STATE(781), 1, + sym_block, + STATE(4112), 1, + sym_label, + STATE(2842), 2, sym_line_comment, sym_block_comment, - ACTIONS(3553), 4, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_COLON_COLON, - [74201] = 9, + [87636] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4944), 1, - anon_sym_LT, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(5285), 1, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + ACTIONS(5612), 1, anon_sym_LBRACE, - STATE(1147), 1, - sym_enum_variant_list, - STATE(2563), 1, - sym_type_parameters, - STATE(3257), 1, - sym_where_clause, - STATE(2359), 2, + ACTIONS(6301), 1, + anon_sym_SEMI, + STATE(602), 1, + sym_block, + STATE(4112), 1, + sym_label, + STATE(2843), 2, sym_line_comment, sym_block_comment, - [74230] = 9, + [87662] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3093), 1, - anon_sym_PLUS, - ACTIONS(5043), 1, - anon_sym_COLON, - ACTIONS(5333), 1, - anon_sym_GT, - ACTIONS(5335), 1, - anon_sym_COMMA, - STATE(2973), 1, - sym_trait_bounds, - STATE(2983), 1, - aux_sym_type_arguments_repeat1, - STATE(2360), 2, + STATE(2844), 2, sym_line_comment, sym_block_comment, - [74259] = 9, + ACTIONS(6303), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [87680] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4944), 1, - anon_sym_LT, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4976), 1, - anon_sym_LBRACE, - STATE(1152), 1, - sym_field_declaration_list, - STATE(2573), 1, - sym_type_parameters, - STATE(3292), 1, - sym_where_clause, - STATE(2361), 2, + STATE(2845), 2, sym_line_comment, sym_block_comment, - [74288] = 5, + ACTIONS(4048), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [87698] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4896), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(2362), 2, + ACTIONS(3427), 1, + anon_sym_POUND, + ACTIONS(6305), 1, + sym_identifier, + ACTIONS(6307), 1, + sym_integer_literal, + STATE(2185), 1, + aux_sym_mod_item_repeat1, + STATE(2189), 1, + sym_attribute_item, + STATE(2846), 2, sym_line_comment, sym_block_comment, - ACTIONS(3607), 4, + [87724] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6309), 1, anon_sym_RPAREN, - anon_sym_PLUS, + ACTIONS(6311), 1, anon_sym_COMMA, - anon_sym_DASH_GT, - [74309] = 9, + STATE(3379), 1, + aux_sym_parameters_repeat1, + ACTIONS(5044), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2847), 2, + sym_line_comment, + sym_block_comment, + [87748] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4950), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(5039), 1, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + ACTIONS(5608), 1, anon_sym_PLUS, - ACTIONS(5369), 1, - anon_sym_SEMI, - STATE(603), 1, - sym_declaration_list, - STATE(2846), 1, - sym_where_clause, - STATE(2363), 2, + STATE(1690), 1, + sym_block, + STATE(4045), 1, + sym_label, + STATE(2848), 2, sym_line_comment, sym_block_comment, - [74338] = 5, + [87774] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4676), 1, - anon_sym_DOT_DOT, - STATE(2364), 2, + ACTIONS(5596), 1, + anon_sym_COLON, + ACTIONS(5910), 1, + anon_sym_GT, + ACTIONS(5912), 1, + anon_sym_COMMA, + STATE(3384), 1, + aux_sym_type_arguments_repeat1, + STATE(3385), 1, + sym_trait_bounds, + STATE(2849), 2, sym_line_comment, sym_block_comment, - ACTIONS(4674), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [74359] = 9, + [87800] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, + STATE(2850), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6313), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_where, - ACTIONS(4950), 1, + [87818] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + ACTIONS(5612), 1, anon_sym_LBRACE, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5371), 1, + ACTIONS(6315), 1, anon_sym_SEMI, - STATE(721), 1, - sym_declaration_list, - STATE(2798), 1, - sym_where_clause, - STATE(2365), 2, + STATE(596), 1, + sym_block, + STATE(4112), 1, + sym_label, + STATE(2851), 2, sym_line_comment, sym_block_comment, - [74388] = 6, + [87844] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4595), 1, - anon_sym_COLON_COLON, - ACTIONS(4978), 1, - anon_sym_for, - STATE(2366), 2, + ACTIONS(1497), 1, + anon_sym_RPAREN, + ACTIONS(6317), 1, + anon_sym_COMMA, + STATE(3369), 1, + aux_sym_parameters_repeat1, + ACTIONS(5044), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2852), 2, sym_line_comment, sym_block_comment, - ACTIONS(3321), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [74411] = 6, + [87868] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3581), 2, - anon_sym_PLUS, - anon_sym_DASH_GT, - ACTIONS(4862), 2, + ACTIONS(5596), 1, anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5307), 2, - anon_sym_RPAREN, + ACTIONS(5902), 1, + anon_sym_GT, + ACTIONS(5904), 1, anon_sym_COMMA, - STATE(2367), 2, + STATE(3279), 1, + sym_trait_bounds, + STATE(3280), 1, + aux_sym_type_arguments_repeat1, + STATE(2853), 2, sym_line_comment, sym_block_comment, - [74434] = 9, + [87894] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4950), 1, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + ACTIONS(5612), 1, anon_sym_LBRACE, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5373), 1, + ACTIONS(6319), 1, anon_sym_SEMI, - STATE(488), 1, - sym_declaration_list, - STATE(2822), 1, - sym_where_clause, - STATE(2368), 2, + STATE(762), 1, + sym_block, + STATE(4112), 1, + sym_label, + STATE(2854), 2, sym_line_comment, sym_block_comment, - [74463] = 9, + [87920] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5043), 1, + STATE(2855), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3699), 5, anon_sym_COLON, - ACTIONS(5331), 1, anon_sym_PLUS, - ACTIONS(5375), 1, anon_sym_GT, - ACTIONS(5377), 1, anon_sym_COMMA, - STATE(2823), 1, - sym_trait_bounds, - STATE(2824), 1, - aux_sym_type_arguments_repeat1, - STATE(2369), 2, + anon_sym_as, + [87938] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + ACTIONS(5612), 1, + anon_sym_LBRACE, + ACTIONS(6321), 1, + anon_sym_SEMI, + STATE(579), 1, + sym_block, + STATE(4112), 1, + sym_label, + STATE(2856), 2, sym_line_comment, sym_block_comment, - [74492] = 9, + [87964] = 8, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3093), 1, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + ACTIONS(5608), 1, anon_sym_PLUS, - ACTIONS(5043), 1, + STATE(2012), 1, + sym_block, + STATE(4117), 1, + sym_label, + STATE(2857), 2, + sym_line_comment, + sym_block_comment, + [87990] = 8, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6111), 1, + anon_sym_PIPE, + ACTIONS(6283), 1, + anon_sym_SEMI, + ACTIONS(6285), 1, anon_sym_COLON, - ACTIONS(5375), 1, - anon_sym_GT, - ACTIONS(5377), 1, - anon_sym_COMMA, - STATE(2823), 1, - sym_trait_bounds, - STATE(2824), 1, - aux_sym_type_arguments_repeat1, - STATE(2370), 2, + ACTIONS(6287), 1, + anon_sym_EQ, + ACTIONS(6289), 1, + anon_sym_else, + STATE(2858), 2, sym_line_comment, sym_block_comment, - [74521] = 9, + [88016] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, + ACTIONS(5489), 1, anon_sym_where, - ACTIONS(4950), 1, - anon_sym_LBRACE, - ACTIONS(5039), 1, + ACTIONS(5608), 1, anon_sym_PLUS, - ACTIONS(5379), 1, + ACTIONS(6323), 1, anon_sym_SEMI, - STATE(490), 1, - sym_declaration_list, - STATE(2833), 1, + STATE(3897), 1, sym_where_clause, - STATE(2371), 2, + STATE(2859), 2, sym_line_comment, sym_block_comment, - [74550] = 5, + [88039] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4862), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(2372), 2, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(6325), 1, + anon_sym_SEMI, + ACTIONS(6327), 1, + anon_sym_EQ, + ACTIONS(6329), 1, + anon_sym_else, + STATE(2860), 2, sym_line_comment, sym_block_comment, - ACTIONS(3581), 4, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH_GT, - [74571] = 9, + [88062] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4950), 1, + ACTIONS(407), 1, anon_sym_LBRACE, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5381), 1, - anon_sym_SEMI, - STATE(585), 1, - sym_declaration_list, - STATE(2858), 1, - sym_where_clause, - STATE(2373), 2, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + STATE(1961), 1, + sym_block, + STATE(4117), 1, + sym_label, + STATE(2861), 2, sym_line_comment, sym_block_comment, - [74600] = 9, + [88085] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4950), 1, - anon_sym_LBRACE, - ACTIONS(5043), 1, - anon_sym_COLON, - STATE(726), 1, - sym_declaration_list, - STATE(2745), 1, - sym_trait_bounds, - STATE(3106), 1, - sym_where_clause, - STATE(2374), 2, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(6331), 1, + anon_sym_COLON_COLON, + ACTIONS(6333), 1, + anon_sym_for, + STATE(2221), 1, + sym_type_arguments, + STATE(2862), 2, sym_line_comment, sym_block_comment, - [74629] = 9, + [88108] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4634), 1, - anon_sym_EQ, - ACTIONS(5043), 1, - anon_sym_COLON, - ACTIONS(5383), 1, - anon_sym_GT, - ACTIONS(5385), 1, - anon_sym_COMMA, - STATE(2793), 1, - aux_sym_type_parameters_repeat1, - STATE(2809), 1, - sym_trait_bounds, - STATE(2375), 2, + ACTIONS(5036), 1, + anon_sym_LPAREN, + ACTIONS(5487), 1, + anon_sym_LT, + STATE(2516), 1, + sym_parameters, + STATE(3700), 1, + sym_type_parameters, + STATE(2863), 2, sym_line_comment, sym_block_comment, - [74658] = 9, + [88131] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4950), 1, - anon_sym_LBRACE, - ACTIONS(5043), 1, - anon_sym_COLON, - STATE(627), 1, - sym_declaration_list, - STATE(2743), 1, - sym_trait_bounds, - STATE(3281), 1, - sym_where_clause, - STATE(2376), 2, + ACTIONS(5042), 1, + anon_sym_LT2, + STATE(3523), 1, + sym_type_arguments, + ACTIONS(5846), 2, + sym_identifier, + sym_super, + STATE(2864), 2, sym_line_comment, sym_block_comment, - [74687] = 7, + [88152] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4517), 1, - anon_sym_DOT_DOT, - ACTIONS(5225), 1, - anon_sym_COLON_COLON, - ACTIONS(4519), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5235), 2, + ACTIONS(1497), 1, anon_sym_RPAREN, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(6317), 1, anon_sym_COMMA, - STATE(2377), 2, + STATE(3369), 1, + aux_sym_parameters_repeat1, + STATE(2865), 2, sym_line_comment, sym_block_comment, - [74712] = 8, + [88175] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3291), 1, + ACTIONS(3733), 1, anon_sym_SQUOTE, - ACTIONS(5387), 1, - anon_sym_if, - STATE(3569), 1, - sym_label, - STATE(1425), 2, - sym_if_expression, + STATE(3796), 1, sym_block, - STATE(2378), 2, + STATE(4045), 1, + sym_label, + STATE(2866), 2, sym_line_comment, sym_block_comment, - [74739] = 9, + [88198] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4634), 1, - anon_sym_EQ, - ACTIONS(5043), 1, - anon_sym_COLON, - ACTIONS(5389), 1, - anon_sym_GT, - ACTIONS(5391), 1, - anon_sym_COMMA, - STATE(2809), 1, - sym_trait_bounds, - STATE(2842), 1, - aux_sym_type_parameters_repeat1, - STATE(2379), 2, + ACTIONS(1227), 1, + anon_sym_LBRACE, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + STATE(484), 1, + sym_block, + STATE(4116), 1, + sym_label, + STATE(2867), 2, sym_line_comment, sym_block_comment, - [74768] = 9, + [88221] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, + ACTIONS(5489), 1, anon_sym_where, - ACTIONS(4956), 1, + ACTIONS(5523), 1, anon_sym_LBRACE, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5393), 1, - anon_sym_SEMI, - STATE(1169), 1, + STATE(798), 1, sym_declaration_list, - STATE(2844), 1, + STATE(3768), 1, sym_where_clause, - STATE(2380), 2, + STATE(2868), 2, sym_line_comment, sym_block_comment, - [74797] = 7, + [88244] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4517), 1, - anon_sym_DOT_DOT, - ACTIONS(5231), 1, - anon_sym_COLON_COLON, - ACTIONS(4519), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5235), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2381), 2, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(6335), 1, + anon_sym_SEMI, + STATE(3802), 1, + sym_where_clause, + STATE(2869), 2, sym_line_comment, sym_block_comment, - [74822] = 9, + [88267] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5043), 1, - anon_sym_COLON, - ACTIONS(5395), 1, - anon_sym_GT, - ACTIONS(5397), 1, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(6309), 1, + anon_sym_RPAREN, + ACTIONS(6311), 1, anon_sym_COMMA, - STATE(2826), 1, - aux_sym_type_parameters_repeat1, - STATE(2832), 1, - sym_trait_bounds, - STATE(3018), 1, - aux_sym_for_lifetimes_repeat1, - STATE(2382), 2, + STATE(3379), 1, + aux_sym_parameters_repeat1, + STATE(2870), 2, sym_line_comment, sym_block_comment, - [74851] = 9, + [88290] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4956), 1, + ACTIONS(1227), 1, anon_sym_LBRACE, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5399), 1, - anon_sym_SEMI, - STATE(1173), 1, - sym_declaration_list, - STATE(2845), 1, - sym_where_clause, - STATE(2383), 2, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + STATE(472), 1, + sym_block, + STATE(4116), 1, + sym_label, + STATE(2871), 2, sym_line_comment, sym_block_comment, - [74880] = 7, + [88313] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4517), 1, - anon_sym_DOT_DOT, - ACTIONS(5231), 1, - anon_sym_COLON_COLON, - ACTIONS(4519), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5401), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2384), 2, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + STATE(384), 1, + sym_block, + STATE(3944), 1, + sym_label, + STATE(2872), 2, sym_line_comment, sym_block_comment, - [74905] = 9, + [88336] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4956), 1, - anon_sym_LBRACE, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5403), 1, - anon_sym_SEMI, - STATE(1190), 1, - sym_declaration_list, - STATE(2850), 1, - sym_where_clause, - STATE(2385), 2, + ACTIONS(5036), 1, + anon_sym_LPAREN, + ACTIONS(5487), 1, + anon_sym_LT, + STATE(2544), 1, + sym_parameters, + STATE(3631), 1, + sym_type_parameters, + STATE(2873), 2, sym_line_comment, sym_block_comment, - [74934] = 9, + [88359] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, + ACTIONS(5489), 1, anon_sym_where, - ACTIONS(4956), 1, + ACTIONS(5523), 1, anon_sym_LBRACE, - ACTIONS(5043), 1, - anon_sym_COLON, - STATE(1195), 1, + STATE(772), 1, sym_declaration_list, - STATE(2692), 1, - sym_trait_bounds, - STATE(3175), 1, + STATE(3753), 1, sym_where_clause, - STATE(2386), 2, + STATE(2874), 2, sym_line_comment, sym_block_comment, - [74963] = 4, + [88382] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2387), 2, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(5846), 1, + sym_super, + ACTIONS(6337), 1, + sym_identifier, + STATE(3523), 1, + sym_type_arguments, + STATE(2875), 2, sym_line_comment, sym_block_comment, - ACTIONS(3458), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [74982] = 9, + [88405] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(5043), 1, - anon_sym_COLON, - ACTIONS(5405), 1, - anon_sym_SEMI, - ACTIONS(5407), 1, - anon_sym_EQ, - STATE(3036), 1, - sym_trait_bounds, - STATE(3542), 1, - sym_where_clause, - STATE(2388), 2, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(5846), 1, + sym_super, + ACTIONS(6337), 1, + sym_identifier, + STATE(3478), 1, + sym_type_arguments, + STATE(2876), 2, sym_line_comment, sym_block_comment, - [75011] = 5, + [88428] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1007), 1, - anon_sym_DOT_DOT, - STATE(2389), 2, + ACTIONS(4413), 1, + anon_sym_LT2, + ACTIONS(6339), 1, + sym_identifier, + ACTIONS(6341), 1, + sym_super, + STATE(1812), 1, + sym_type_arguments, + STATE(2877), 2, sym_line_comment, sym_block_comment, - ACTIONS(1009), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [75032] = 9, + [88451] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4944), 1, - anon_sym_LT, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(5363), 1, - anon_sym_LBRACE, - STATE(670), 1, - sym_enum_variant_list, - STATE(2621), 1, - sym_type_parameters, - STATE(3255), 1, - sym_where_clause, - STATE(2390), 2, + ACTIONS(4413), 1, + anon_sym_LT2, + ACTIONS(6339), 1, + sym_identifier, + ACTIONS(6341), 1, + sym_super, + STATE(1823), 1, + sym_type_arguments, + STATE(2878), 2, sym_line_comment, sym_block_comment, - [75061] = 5, + [88474] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1011), 1, - anon_sym_DOT_DOT, - STATE(2391), 2, + ACTIONS(6343), 1, + anon_sym_LPAREN, + ACTIONS(6345), 1, + anon_sym_LBRACK, + ACTIONS(6347), 1, + anon_sym_LBRACE, + STATE(2237), 1, + sym_delim_token_tree, + STATE(2879), 2, sym_line_comment, sym_block_comment, - ACTIONS(1013), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [75082] = 5, + [88497] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1023), 1, - anon_sym_DOT_DOT, - STATE(2392), 2, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(6331), 1, + anon_sym_COLON_COLON, + ACTIONS(6349), 1, + anon_sym_for, + STATE(2221), 1, + sym_type_arguments, + STATE(2880), 2, sym_line_comment, sym_block_comment, - ACTIONS(1025), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [75103] = 5, + [88520] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1027), 1, - anon_sym_DOT_DOT, - STATE(2393), 2, + ACTIONS(6351), 1, + anon_sym_DQUOTE, + STATE(2925), 1, + aux_sym_string_literal_repeat1, + ACTIONS(6353), 2, + sym_string_content, + sym_escape_sequence, + STATE(2881), 2, sym_line_comment, sym_block_comment, - ACTIONS(1029), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [75124] = 9, + [88541] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, + ACTIONS(5489), 1, anon_sym_where, - ACTIONS(4950), 1, - anon_sym_LBRACE, - ACTIONS(5039), 1, + ACTIONS(5608), 1, anon_sym_PLUS, - ACTIONS(5409), 1, + ACTIONS(6355), 1, anon_sym_SEMI, - STATE(698), 1, - sym_declaration_list, - STATE(2761), 1, + STATE(3805), 1, sym_where_clause, - STATE(2394), 2, + STATE(2882), 2, sym_line_comment, sym_block_comment, - [75153] = 8, + [88564] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1519), 1, - anon_sym_DOT_DOT, - ACTIONS(5051), 1, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(6357), 1, sym_identifier, - ACTIONS(5057), 1, - anon_sym_ref, - ACTIONS(5059), 1, - sym_mutable_specifier, - STATE(2395), 2, + ACTIONS(6359), 1, + sym_super, + STATE(3523), 1, + sym_type_arguments, + STATE(2883), 2, sym_line_comment, sym_block_comment, - STATE(3058), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [75180] = 9, + [88587] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4950), 1, + ACTIONS(1227), 1, anon_sym_LBRACE, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5411), 1, - anon_sym_SEMI, - STATE(588), 1, - sym_declaration_list, - STATE(2867), 1, - sym_where_clause, - STATE(2396), 2, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + STATE(485), 1, + sym_block, + STATE(4116), 1, + sym_label, + STATE(2884), 2, sym_line_comment, sym_block_comment, - [75209] = 6, + [88610] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4595), 1, - anon_sym_COLON_COLON, - ACTIONS(5017), 1, - anon_sym_for, - STATE(2397), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3321), 4, - anon_sym_SEMI, + ACTIONS(1227), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [75232] = 6, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4595), 1, - anon_sym_COLON_COLON, - ACTIONS(4926), 1, - anon_sym_for, - STATE(2398), 2, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + STATE(460), 1, + sym_block, + STATE(4116), 1, + sym_label, + STATE(2885), 2, sym_line_comment, sym_block_comment, - ACTIONS(3321), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [75255] = 9, + [88633] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4956), 1, + ACTIONS(1227), 1, anon_sym_LBRACE, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5413), 1, - anon_sym_SEMI, - STATE(1220), 1, - sym_declaration_list, - STATE(2875), 1, - sym_where_clause, - STATE(2399), 2, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + STATE(487), 1, + sym_block, + STATE(4116), 1, + sym_label, + STATE(2886), 2, sym_line_comment, sym_block_comment, - [75284] = 6, + [88656] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4595), 1, - anon_sym_COLON_COLON, - ACTIONS(5019), 1, - anon_sym_for, - STATE(2400), 2, + ACTIONS(6343), 1, + anon_sym_LPAREN, + ACTIONS(6345), 1, + anon_sym_LBRACK, + ACTIONS(6347), 1, + anon_sym_LBRACE, + STATE(2230), 1, + sym_delim_token_tree, + STATE(2887), 2, sym_line_comment, sym_block_comment, - ACTIONS(3321), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [75307] = 9, + [88679] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4956), 1, + ACTIONS(1227), 1, anon_sym_LBRACE, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5415), 1, - anon_sym_SEMI, - STATE(1224), 1, - sym_declaration_list, - STATE(2878), 1, - sym_where_clause, - STATE(2401), 2, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + STATE(490), 1, + sym_block, + STATE(4116), 1, + sym_label, + STATE(2888), 2, sym_line_comment, sym_block_comment, - [75336] = 6, + [88702] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4595), 1, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(6331), 1, anon_sym_COLON_COLON, - ACTIONS(5021), 1, + ACTIONS(6361), 1, anon_sym_for, - STATE(2402), 2, + STATE(2221), 1, + sym_type_arguments, + STATE(2889), 2, sym_line_comment, sym_block_comment, - ACTIONS(3321), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [75359] = 9, + [88725] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, + ACTIONS(5489), 1, anon_sym_where, - ACTIONS(4956), 1, + ACTIONS(5908), 1, anon_sym_LBRACE, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5417), 1, - anon_sym_SEMI, - STATE(1226), 1, - sym_declaration_list, - STATE(2879), 1, + STATE(838), 1, + sym_enum_variant_list, + STATE(3748), 1, sym_where_clause, - STATE(2403), 2, + STATE(2890), 2, sym_line_comment, sym_block_comment, - [75388] = 6, + [88748] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4595), 1, - anon_sym_COLON_COLON, - ACTIONS(4962), 1, - anon_sym_for, - STATE(2404), 2, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(6363), 1, + anon_sym_RPAREN, + ACTIONS(6365), 1, + anon_sym_COMMA, + STATE(3316), 1, + aux_sym_ordered_field_declaration_list_repeat1, + STATE(2891), 2, sym_line_comment, sym_block_comment, - ACTIONS(3321), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [75411] = 6, + [88771] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4595), 1, - anon_sym_COLON_COLON, - ACTIONS(4936), 1, - anon_sym_for, - STATE(2405), 2, + ACTIONS(6367), 1, + anon_sym_DQUOTE, + STATE(2916), 1, + aux_sym_string_literal_repeat1, + ACTIONS(6353), 2, + sym_string_content, + sym_escape_sequence, + STATE(2892), 2, sym_line_comment, sym_block_comment, - ACTIONS(3321), 4, - anon_sym_SEMI, + [88792] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1227), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [75434] = 7, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + STATE(488), 1, + sym_block, + STATE(4116), 1, + sym_label, + STATE(2893), 2, + sym_line_comment, + sym_block_comment, + [88815] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4517), 1, - anon_sym_DOT_DOT, - ACTIONS(5225), 1, + ACTIONS(4413), 1, + anon_sym_LT2, + ACTIONS(4615), 1, anon_sym_COLON_COLON, - ACTIONS(4519), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5401), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2406), 2, + ACTIONS(5431), 1, + anon_sym_BANG, + STATE(1873), 1, + sym_type_arguments, + STATE(2894), 2, sym_line_comment, sym_block_comment, - [75459] = 9, + [88838] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4950), 1, - anon_sym_LBRACE, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5419), 1, - anon_sym_SEMI, - STATE(742), 1, - sym_declaration_list, - STATE(2762), 1, - sym_where_clause, - STATE(2407), 2, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(5349), 1, + anon_sym_for, + ACTIONS(6331), 1, + anon_sym_COLON_COLON, + STATE(2221), 1, + sym_type_arguments, + STATE(2895), 2, sym_line_comment, sym_block_comment, - [75488] = 9, + [88861] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4950), 1, + ACTIONS(407), 1, anon_sym_LBRACE, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5421), 1, - anon_sym_SEMI, - STATE(691), 1, - sym_declaration_list, - STATE(2970), 1, - sym_where_clause, - STATE(2408), 2, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + STATE(1911), 1, + sym_block, + STATE(4117), 1, + sym_label, + STATE(2896), 2, sym_line_comment, sym_block_comment, - [75517] = 8, + [88884] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4497), 1, - anon_sym_LPAREN, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(4505), 1, - anon_sym_COLON_COLON, - STATE(1953), 1, - sym_type_arguments, - STATE(1960), 1, - sym_parameters, - STATE(2409), 2, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + STATE(3835), 1, + sym_block, + STATE(4045), 1, + sym_label, + STATE(2897), 2, sym_line_comment, sym_block_comment, - [75543] = 5, + [88907] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4507), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(2410), 2, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + STATE(3840), 1, + sym_block, + STATE(4045), 1, + sym_label, + STATE(2898), 2, sym_line_comment, sym_block_comment, - ACTIONS(3321), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [75563] = 8, + [88930] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4856), 1, - anon_sym_PIPE, - ACTIONS(5423), 1, - anon_sym_SEMI, - ACTIONS(5425), 1, - anon_sym_COLON, - ACTIONS(5427), 1, - anon_sym_EQ, - ACTIONS(5429), 1, - anon_sym_else, - STATE(2411), 2, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + STATE(1958), 1, + sym_block, + STATE(4117), 1, + sym_label, + STATE(2899), 2, sym_line_comment, sym_block_comment, - [75589] = 8, + [88953] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4856), 1, - anon_sym_PIPE, - ACTIONS(5431), 1, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(6369), 1, anon_sym_SEMI, - ACTIONS(5433), 1, - anon_sym_COLON, - ACTIONS(5435), 1, + ACTIONS(6371), 1, anon_sym_EQ, - ACTIONS(5437), 1, + ACTIONS(6373), 1, anon_sym_else, - STATE(2412), 2, + STATE(2900), 2, sym_line_comment, sym_block_comment, - [75615] = 8, + [88976] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, + ACTIONS(3733), 1, anon_sym_SQUOTE, - ACTIONS(5027), 1, + ACTIONS(5606), 1, anon_sym_LBRACE, - ACTIONS(5439), 1, - anon_sym_SEMI, - STATE(679), 1, + STATE(3447), 1, sym_block, - STATE(3615), 1, + STATE(4115), 1, sym_label, - STATE(2413), 2, + STATE(2901), 2, sym_line_comment, sym_block_comment, - [75641] = 7, + [88999] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4175), 1, - anon_sym_LBRACE, - ACTIONS(5443), 1, - anon_sym_STAR, - STATE(2816), 1, - sym_use_list, - ACTIONS(5441), 2, + ACTIONS(5042), 1, + anon_sym_LT2, + STATE(3478), 1, + sym_type_arguments, + ACTIONS(5846), 2, sym_identifier, sym_super, - STATE(2414), 2, + STATE(2902), 2, sym_line_comment, sym_block_comment, - [75665] = 8, + [89020] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, + ACTIONS(6375), 1, + anon_sym_LPAREN, + ACTIONS(6377), 1, + anon_sym_LBRACK, + ACTIONS(6379), 1, anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(5039), 1, - anon_sym_PLUS, - STATE(1670), 1, - sym_block, - STATE(3620), 1, - sym_label, - STATE(2415), 2, + STATE(1177), 1, + sym_delim_token_tree, + STATE(2903), 2, sym_line_comment, sym_block_comment, - [75691] = 8, + [89043] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(5027), 1, + ACTIONS(407), 1, anon_sym_LBRACE, - ACTIONS(5445), 1, - anon_sym_SEMI, - STATE(513), 1, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + STATE(1973), 1, sym_block, - STATE(3615), 1, + STATE(4117), 1, sym_label, - STATE(2416), 2, + STATE(2904), 2, sym_line_comment, sym_block_comment, - [75717] = 8, + [89066] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4848), 1, - anon_sym_RPAREN, - ACTIONS(5447), 1, - anon_sym_COLON, - ACTIONS(5449), 1, - anon_sym_PIPE, - ACTIONS(5451), 1, - anon_sym_COMMA, - STATE(3034), 1, - aux_sym_closure_parameters_repeat1, - STATE(2417), 2, + ACTIONS(6381), 1, + anon_sym_DQUOTE, + STATE(2881), 1, + aux_sym_string_literal_repeat1, + ACTIONS(6353), 2, + sym_string_content, + sym_escape_sequence, + STATE(2905), 2, sym_line_comment, sym_block_comment, - [75743] = 8, + [89087] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, + ACTIONS(1227), 1, + anon_sym_LBRACE, + ACTIONS(3733), 1, anon_sym_SQUOTE, - ACTIONS(5027), 1, + STATE(483), 1, + sym_block, + STATE(4116), 1, + sym_label, + STATE(2906), 2, + sym_line_comment, + sym_block_comment, + [89110] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1227), 1, anon_sym_LBRACE, - ACTIONS(5453), 1, - anon_sym_SEMI, - STATE(576), 1, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + STATE(486), 1, sym_block, - STATE(3615), 1, + STATE(4116), 1, sym_label, - STATE(2418), 2, + STATE(2907), 2, sym_line_comment, sym_block_comment, - [75769] = 8, + [89133] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5043), 1, - anon_sym_COLON, - ACTIONS(5375), 1, - anon_sym_GT, - ACTIONS(5377), 1, - anon_sym_COMMA, - STATE(2823), 1, - sym_trait_bounds, - STATE(2824), 1, - aux_sym_type_arguments_repeat1, - STATE(2419), 2, + ACTIONS(6383), 1, + anon_sym_DQUOTE, + STATE(3081), 1, + aux_sym_string_literal_repeat1, + ACTIONS(6353), 2, + sym_string_content, + sym_escape_sequence, + STATE(2908), 2, sym_line_comment, sym_block_comment, - [75795] = 7, + [89154] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5455), 1, - anon_sym_RPAREN, - ACTIONS(5457), 1, - anon_sym_COMMA, - STATE(2835), 1, - aux_sym_parameters_repeat1, - ACTIONS(4507), 2, + ACTIONS(5596), 1, anon_sym_COLON, - anon_sym_PIPE, - STATE(2420), 2, + STATE(3271), 1, + sym_trait_bounds, + ACTIONS(6385), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(2909), 2, sym_line_comment, sym_block_comment, - [75819] = 8, + [89175] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3291), 1, + ACTIONS(3733), 1, anon_sym_SQUOTE, - ACTIONS(5459), 1, - anon_sym_move, - STATE(1419), 1, + STATE(391), 1, sym_block, - STATE(3569), 1, + STATE(3944), 1, sym_label, - STATE(2421), 2, + STATE(2910), 2, sym_line_comment, sym_block_comment, - [75845] = 8, + [89198] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5043), 1, - anon_sym_COLON, - ACTIONS(5461), 1, - anon_sym_GT, - ACTIONS(5463), 1, - anon_sym_COMMA, - STATE(2795), 1, - aux_sym_type_parameters_repeat1, - STATE(2832), 1, - sym_trait_bounds, - STATE(2422), 2, + ACTIONS(5485), 1, + anon_sym_LBRACE, + ACTIONS(5489), 1, + anon_sym_where, + STATE(855), 1, + sym_field_declaration_list, + STATE(3733), 1, + sym_where_clause, + STATE(2911), 2, sym_line_comment, sym_block_comment, - [75871] = 8, + [89221] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(5027), 1, + ACTIONS(407), 1, anon_sym_LBRACE, - ACTIONS(5465), 1, - anon_sym_SEMI, - STATE(655), 1, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + STATE(1833), 1, sym_block, - STATE(3615), 1, + STATE(4117), 1, sym_label, - STATE(2423), 2, + STATE(2912), 2, sym_line_comment, sym_block_comment, - [75897] = 8, + [89244] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(5075), 1, + ACTIONS(5036), 1, + anon_sym_LPAREN, + ACTIONS(5487), 1, + anon_sym_LT, + STATE(2508), 1, + sym_parameters, + STATE(3725), 1, + sym_type_parameters, + STATE(2913), 2, + sym_line_comment, + sym_block_comment, + [89267] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(407), 1, anon_sym_LBRACE, - ACTIONS(5467), 1, - anon_sym_SEMI, - STATE(1167), 1, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + STATE(2108), 1, sym_block, - STATE(3618), 1, + STATE(4117), 1, sym_label, - STATE(2424), 2, + STATE(2914), 2, sym_line_comment, sym_block_comment, - [75923] = 8, + [89290] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4696), 1, - anon_sym_GT, - ACTIONS(5043), 1, - anon_sym_COLON, - ACTIONS(5469), 1, - anon_sym_COMMA, - STATE(2832), 1, - sym_trait_bounds, - STATE(2843), 1, - aux_sym_type_parameters_repeat1, - STATE(2425), 2, + STATE(2915), 2, sym_line_comment, sym_block_comment, - [75949] = 7, + ACTIONS(6387), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + [89307] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4634), 1, - anon_sym_EQ, - ACTIONS(5043), 1, - anon_sym_COLON, - STATE(2809), 1, - sym_trait_bounds, - ACTIONS(5471), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(2426), 2, + ACTIONS(6389), 1, + anon_sym_DQUOTE, + STATE(2925), 1, + aux_sym_string_literal_repeat1, + ACTIONS(6353), 2, + sym_string_content, + sym_escape_sequence, + STATE(2916), 2, sym_line_comment, sym_block_comment, - [75973] = 8, + [89328] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, + ACTIONS(6375), 1, + anon_sym_LPAREN, + ACTIONS(6377), 1, + anon_sym_LBRACK, + ACTIONS(6379), 1, anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(5039), 1, - anon_sym_PLUS, - STATE(1691), 1, - sym_block, - STATE(3620), 1, - sym_label, - STATE(2427), 2, + STATE(1173), 1, + sym_delim_token_tree, + STATE(2917), 2, sym_line_comment, sym_block_comment, - [75999] = 8, + [89351] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4702), 1, - anon_sym_GT, - ACTIONS(5043), 1, - anon_sym_COLON, - ACTIONS(5473), 1, - anon_sym_COMMA, - STATE(2832), 1, - sym_trait_bounds, - STATE(2947), 1, - aux_sym_type_parameters_repeat1, - STATE(2428), 2, + STATE(2918), 2, sym_line_comment, sym_block_comment, - [76025] = 7, + ACTIONS(6391), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SQUOTE, + [89368] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4175), 1, + STATE(2919), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6393), 4, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(5197), 1, - anon_sym_STAR, - STATE(2819), 1, - sym_use_list, - ACTIONS(5195), 2, - sym_identifier, + anon_sym_COMMA, + anon_sym_SQUOTE, + [89385] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(5846), 1, sym_super, - STATE(2429), 2, + ACTIONS(6395), 1, + sym_identifier, + STATE(3478), 1, + sym_type_arguments, + STATE(2920), 2, sym_line_comment, sym_block_comment, - [76049] = 6, + [89408] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3809), 1, + ACTIONS(5900), 1, anon_sym_PLUS, - ACTIONS(4872), 2, + STATE(2921), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6397), 3, anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5475), 2, - anon_sym_RPAREN, + anon_sym_GT, anon_sym_COMMA, - STATE(2430), 2, + [89427] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5596), 1, + anon_sym_COLON, + STATE(3724), 1, + sym_trait_bounds, + ACTIONS(6257), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(2922), 2, sym_line_comment, sym_block_comment, - [76071] = 8, + [89448] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5478), 1, - anon_sym_RPAREN, - ACTIONS(5480), 1, - anon_sym_COLON, - ACTIONS(5482), 1, - anon_sym_PIPE, - ACTIONS(5484), 1, + ACTIONS(6399), 1, anon_sym_COMMA, - STATE(2987), 1, - aux_sym_slice_pattern_repeat1, - STATE(2431), 2, + ACTIONS(4609), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(2923), 3, sym_line_comment, sym_block_comment, - [76097] = 4, + aux_sym_arguments_repeat1, + [89467] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2432), 2, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(5846), 1, + sym_super, + ACTIONS(6395), 1, + sym_identifier, + STATE(3523), 1, + sym_type_arguments, + STATE(2924), 2, sym_line_comment, sym_block_comment, - ACTIONS(3257), 5, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_as, - [76115] = 7, + [89490] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1499), 1, - anon_sym_RPAREN, - ACTIONS(5486), 1, - anon_sym_COMMA, - STATE(2869), 1, - aux_sym_parameters_repeat1, - ACTIONS(4507), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(2433), 2, + ACTIONS(6402), 1, + anon_sym_DQUOTE, + ACTIONS(6404), 2, + sym_string_content, + sym_escape_sequence, + STATE(2925), 3, sym_line_comment, sym_block_comment, - [76139] = 8, + aux_sym_string_literal_repeat1, + [89509] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(5075), 1, + ACTIONS(407), 1, anon_sym_LBRACE, - ACTIONS(5488), 1, - anon_sym_SEMI, - STATE(1214), 1, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + STATE(1948), 1, sym_block, - STATE(3618), 1, + STATE(4117), 1, sym_label, - STATE(2434), 2, + STATE(2926), 2, sym_line_comment, sym_block_comment, - [76165] = 6, + [89532] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5492), 1, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(5325), 1, + anon_sym_for, + ACTIONS(6331), 1, anon_sym_COLON_COLON, - ACTIONS(5494), 1, - anon_sym_as, - STATE(2435), 2, + STATE(2221), 1, + sym_type_arguments, + STATE(2927), 2, sym_line_comment, sym_block_comment, - ACTIONS(5490), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [76187] = 8, + [89555] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5482), 1, - anon_sym_PIPE, - ACTIONS(5496), 1, - anon_sym_SEMI, - ACTIONS(5498), 1, + ACTIONS(5044), 2, anon_sym_COLON, - ACTIONS(5500), 1, - anon_sym_EQ, - ACTIONS(5502), 1, - anon_sym_else, - STATE(2436), 2, + anon_sym_PIPE, + ACTIONS(6407), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2928), 2, + sym_line_comment, + sym_block_comment, + [89574] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(1495), 1, + anon_sym_RPAREN, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(6199), 1, + anon_sym_COMMA, + STATE(3345), 1, + aux_sym_parameters_repeat1, + STATE(2929), 2, sym_line_comment, sym_block_comment, - [76213] = 8, + [89597] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(407), 1, anon_sym_LBRACE, - ACTIONS(3291), 1, + ACTIONS(3733), 1, anon_sym_SQUOTE, - ACTIONS(5039), 1, - anon_sym_PLUS, - STATE(1809), 1, + STATE(1921), 1, sym_block, - STATE(3620), 1, + STATE(4117), 1, sym_label, - STATE(2437), 2, + STATE(2930), 2, sym_line_comment, sym_block_comment, - [76239] = 8, + [89620] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(5075), 1, + ACTIONS(6409), 1, + anon_sym_DQUOTE, + STATE(2936), 1, + aux_sym_string_literal_repeat1, + ACTIONS(6353), 2, + sym_string_content, + sym_escape_sequence, + STATE(2931), 2, + sym_line_comment, + sym_block_comment, + [89641] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(407), 1, anon_sym_LBRACE, - ACTIONS(5504), 1, - anon_sym_SEMI, - STATE(1247), 1, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + STATE(1940), 1, sym_block, - STATE(3618), 1, + STATE(4117), 1, sym_label, - STATE(2438), 2, + STATE(2932), 2, sym_line_comment, sym_block_comment, - [76265] = 7, + [89664] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5506), 1, - anon_sym_RPAREN, - ACTIONS(5508), 1, - anon_sym_COMMA, - STATE(3009), 1, - aux_sym_parameters_repeat1, - ACTIONS(4507), 2, + ACTIONS(6411), 1, anon_sym_COLON, - anon_sym_PIPE, - STATE(2439), 2, + STATE(2933), 2, sym_line_comment, sym_block_comment, - [76289] = 6, + ACTIONS(5453), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [89683] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5512), 1, - anon_sym_COLON_COLON, - ACTIONS(5514), 1, - anon_sym_as, - STATE(2440), 2, + ACTIONS(5485), 1, + anon_sym_LBRACE, + ACTIONS(5489), 1, + anon_sym_where, + STATE(871), 1, + sym_field_declaration_list, + STATE(3474), 1, + sym_where_clause, + STATE(2934), 2, sym_line_comment, sym_block_comment, - ACTIONS(5510), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [76311] = 8, + [89706] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(5027), 1, + ACTIONS(6413), 1, + anon_sym_LPAREN, + ACTIONS(6415), 1, + anon_sym_LBRACK, + ACTIONS(6417), 1, anon_sym_LBRACE, - ACTIONS(5516), 1, - anon_sym_SEMI, - STATE(572), 1, - sym_block, - STATE(3615), 1, - sym_label, - STATE(2441), 2, + STATE(1976), 1, + sym_delim_token_tree, + STATE(2935), 2, sym_line_comment, sym_block_comment, - [76337] = 8, + [89729] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(5027), 1, + ACTIONS(6419), 1, + anon_sym_DQUOTE, + STATE(2925), 1, + aux_sym_string_literal_repeat1, + ACTIONS(6353), 2, + sym_string_content, + sym_escape_sequence, + STATE(2936), 2, + sym_line_comment, + sym_block_comment, + [89750] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6413), 1, + anon_sym_LPAREN, + ACTIONS(6415), 1, + anon_sym_LBRACK, + ACTIONS(6417), 1, anon_sym_LBRACE, - ACTIONS(5518), 1, - anon_sym_SEMI, - STATE(526), 1, - sym_block, - STATE(3615), 1, - sym_label, - STATE(2442), 2, + STATE(1980), 1, + sym_delim_token_tree, + STATE(2937), 2, sym_line_comment, sym_block_comment, - [76363] = 8, + [89773] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(5075), 1, - anon_sym_LBRACE, - ACTIONS(5520), 1, - anon_sym_SEMI, - STATE(1269), 1, - sym_block, - STATE(3618), 1, - sym_label, - STATE(2443), 2, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(6359), 1, + sym_super, + ACTIONS(6421), 1, + sym_identifier, + STATE(3478), 1, + sym_type_arguments, + STATE(2938), 2, sym_line_comment, sym_block_comment, - [76389] = 7, + [89796] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5522), 1, - anon_sym_RPAREN, - ACTIONS(5525), 1, - anon_sym_COMMA, - STATE(3009), 1, - aux_sym_parameters_repeat1, - ACTIONS(4507), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(2444), 2, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(6359), 1, + sym_super, + ACTIONS(6421), 1, + sym_identifier, + STATE(3523), 1, + sym_type_arguments, + STATE(2939), 2, sym_line_comment, sym_block_comment, - [76413] = 4, + [89819] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2445), 2, + STATE(2940), 2, sym_line_comment, sym_block_comment, - ACTIONS(5528), 5, + ACTIONS(6172), 4, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_where, - [76431] = 6, + anon_sym_SQUOTE, + [89836] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3321), 1, - anon_sym_PLUS, - ACTIONS(4507), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5530), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2446), 2, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5523), 1, + anon_sym_LBRACE, + STATE(861), 1, + sym_declaration_list, + STATE(3500), 1, + sym_where_clause, + STATE(2941), 2, sym_line_comment, sym_block_comment, - [76453] = 6, + [89859] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5514), 1, - anon_sym_as, - ACTIONS(5533), 1, - anon_sym_COLON_COLON, - STATE(2447), 2, + ACTIONS(6423), 1, + anon_sym_DQUOTE, + STATE(2946), 1, + aux_sym_string_literal_repeat1, + ACTIONS(6353), 2, + sym_string_content, + sym_escape_sequence, + STATE(2942), 2, sym_line_comment, sym_block_comment, - ACTIONS(5510), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [76475] = 8, + [89880] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(5075), 1, + ACTIONS(5473), 1, anon_sym_LBRACE, - ACTIONS(5535), 1, - anon_sym_SEMI, - STATE(1298), 1, - sym_block, - STATE(3618), 1, - sym_label, - STATE(2448), 2, + ACTIONS(5489), 1, + anon_sym_where, + STATE(1605), 1, + sym_declaration_list, + STATE(3504), 1, + sym_where_clause, + STATE(2943), 2, sym_line_comment, sym_block_comment, - [76501] = 8, + [89903] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(5075), 1, - anon_sym_LBRACE, - ACTIONS(5537), 1, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(6425), 1, anon_sym_SEMI, - STATE(1311), 1, - sym_block, - STATE(3618), 1, - sym_label, - STATE(2449), 2, + STATE(4100), 1, + sym_where_clause, + STATE(2944), 2, sym_line_comment, sym_block_comment, - [76527] = 8, + [89926] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(5039), 1, - anon_sym_PLUS, - STATE(1433), 1, - sym_block, - STATE(3569), 1, - sym_label, - STATE(2450), 2, - sym_line_comment, - sym_block_comment, - [76553] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3291), 1, + ACTIONS(3733), 1, anon_sym_SQUOTE, - ACTIONS(5075), 1, - anon_sym_LBRACE, - ACTIONS(5539), 1, - anon_sym_SEMI, - STATE(1316), 1, + STATE(3968), 1, sym_block, - STATE(3618), 1, + STATE(4045), 1, sym_label, - STATE(2451), 2, + STATE(2945), 2, sym_line_comment, sym_block_comment, - [76579] = 4, + [89949] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2452), 2, + ACTIONS(6427), 1, + anon_sym_DQUOTE, + STATE(2925), 1, + aux_sym_string_literal_repeat1, + ACTIONS(6353), 2, + sym_string_content, + sym_escape_sequence, + STATE(2946), 2, sym_line_comment, sym_block_comment, - ACTIONS(3485), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [76597] = 4, + [89970] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2453), 2, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(6359), 1, + sym_super, + ACTIONS(6429), 1, + sym_identifier, + STATE(3478), 1, + sym_type_arguments, + STATE(2947), 2, sym_line_comment, sym_block_comment, - ACTIONS(5541), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [76615] = 8, + [89993] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(5075), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(5543), 1, - anon_sym_SEMI, - STATE(1340), 1, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + STATE(3860), 1, sym_block, - STATE(3618), 1, + STATE(4045), 1, sym_label, - STATE(2454), 2, + STATE(2948), 2, sym_line_comment, sym_block_comment, - [76641] = 8, + [90016] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(5075), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(5545), 1, - anon_sym_SEMI, - STATE(1346), 1, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + STATE(3868), 1, sym_block, - STATE(3618), 1, + STATE(4045), 1, sym_label, - STATE(2455), 2, + STATE(2949), 2, sym_line_comment, sym_block_comment, - [76667] = 8, + [90039] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(5027), 1, - anon_sym_LBRACE, - ACTIONS(5547), 1, - anon_sym_SEMI, - STATE(580), 1, - sym_block, - STATE(3615), 1, - sym_label, - STATE(2456), 2, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(6359), 1, + sym_super, + ACTIONS(6429), 1, + sym_identifier, + STATE(3523), 1, + sym_type_arguments, + STATE(2950), 2, sym_line_comment, sym_block_comment, - [76693] = 8, + [90062] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(5075), 1, - anon_sym_LBRACE, - ACTIONS(5549), 1, - anon_sym_SEMI, - STATE(1356), 1, - sym_block, - STATE(3618), 1, - sym_label, - STATE(2457), 2, + ACTIONS(6024), 1, + anon_sym_GT, + ACTIONS(6026), 1, + anon_sym_COMMA, + ACTIONS(6431), 1, + anon_sym_EQ, + STATE(3272), 1, + aux_sym_type_parameters_repeat1, + STATE(2951), 2, sym_line_comment, sym_block_comment, - [76719] = 8, + [90085] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(5075), 1, - anon_sym_LBRACE, - ACTIONS(5551), 1, - anon_sym_SEMI, - STATE(1360), 1, - sym_block, - STATE(3618), 1, - sym_label, - STATE(2458), 2, + ACTIONS(5608), 1, + anon_sym_PLUS, + STATE(2952), 2, sym_line_comment, sym_block_comment, - [76745] = 8, + ACTIONS(6433), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [90104] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(5075), 1, - anon_sym_LBRACE, - ACTIONS(5553), 1, - anon_sym_SEMI, - STATE(1364), 1, - sym_block, - STATE(3618), 1, - sym_label, - STATE(2459), 2, + ACTIONS(6435), 1, + anon_sym_COLON_COLON, + STATE(2953), 2, sym_line_comment, sym_block_comment, - [76771] = 4, + ACTIONS(5305), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [90123] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2460), 2, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(5347), 1, + anon_sym_for, + ACTIONS(6331), 1, + anon_sym_COLON_COLON, + STATE(2221), 1, + sym_type_arguments, + STATE(2954), 2, sym_line_comment, sym_block_comment, - ACTIONS(3651), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [76789] = 8, + [90146] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5908), 1, anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(5555), 1, - anon_sym_move, - STATE(1746), 1, - sym_block, - STATE(3620), 1, - sym_label, - STATE(2461), 2, + STATE(768), 1, + sym_enum_variant_list, + STATE(3742), 1, + sym_where_clause, + STATE(2955), 2, sym_line_comment, sym_block_comment, - [76815] = 4, + [90169] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2462), 2, + STATE(2956), 2, sym_line_comment, sym_block_comment, - ACTIONS(3521), 5, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(3699), 4, anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [76833] = 4, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + [90186] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2463), 2, + ACTIONS(6439), 1, + anon_sym_COMMA, + ACTIONS(6437), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(2957), 3, sym_line_comment, sym_block_comment, - ACTIONS(3627), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [76851] = 4, + aux_sym_slice_pattern_repeat1, + [90205] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2464), 2, + ACTIONS(6111), 1, + anon_sym_PIPE, + STATE(2958), 2, sym_line_comment, sym_block_comment, - ACTIONS(5557), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, + ACTIONS(6437), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_COMMA, - anon_sym_where, - [76869] = 8, + [90224] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(5027), 1, - anon_sym_LBRACE, - ACTIONS(5559), 1, - anon_sym_SEMI, - STATE(529), 1, - sym_block, - STATE(3615), 1, - sym_label, - STATE(2465), 2, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(6442), 1, + anon_sym_RPAREN, + ACTIONS(6444), 1, + anon_sym_COMMA, + STATE(3258), 1, + aux_sym_ordered_field_declaration_list_repeat1, + STATE(2959), 2, sym_line_comment, sym_block_comment, - [76895] = 8, + [90247] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2997), 1, - anon_sym_POUND, - ACTIONS(5561), 1, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(6446), 1, sym_identifier, - ACTIONS(5563), 1, - sym_integer_literal, - STATE(1061), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1405), 1, - sym_attribute_item, - STATE(2466), 2, + ACTIONS(6448), 1, + sym_super, + STATE(3478), 1, + sym_type_arguments, + STATE(2960), 2, sym_line_comment, sym_block_comment, - [76921] = 4, + [90270] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2467), 2, + ACTIONS(6111), 1, + anon_sym_PIPE, + ACTIONS(6203), 1, + anon_sym_RPAREN, + ACTIONS(6207), 1, + anon_sym_COMMA, + STATE(3463), 1, + aux_sym_slice_pattern_repeat1, + STATE(2961), 2, sym_line_comment, sym_block_comment, - ACTIONS(3655), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [76939] = 4, + [90293] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2468), 2, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(6446), 1, + sym_identifier, + ACTIONS(6448), 1, + sym_super, + STATE(3523), 1, + sym_type_arguments, + STATE(2962), 2, sym_line_comment, sym_block_comment, - ACTIONS(5565), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [76957] = 4, + [90316] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2469), 2, + ACTIONS(5608), 1, + anon_sym_PLUS, + STATE(2963), 2, sym_line_comment, sym_block_comment, - ACTIONS(5567), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, + ACTIONS(6450), 3, + anon_sym_RPAREN, + anon_sym_PIPE, anon_sym_COMMA, - anon_sym_where, - [76975] = 8, + [90335] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4005), 1, - anon_sym_LPAREN, - ACTIONS(4503), 1, + ACTIONS(5042), 1, anon_sym_LT2, - ACTIONS(4505), 1, - anon_sym_COLON_COLON, - STATE(1610), 1, - sym_parameters, - STATE(1953), 1, + ACTIONS(5846), 1, + sym_super, + ACTIONS(6421), 1, + sym_identifier, + STATE(3478), 1, sym_type_arguments, - STATE(2470), 2, + STATE(2964), 2, sym_line_comment, sym_block_comment, - [77001] = 4, + [90358] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2471), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5569), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(5473), 1, + anon_sym_LBRACE, + ACTIONS(5489), 1, anon_sym_where, - [77019] = 8, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5043), 1, - anon_sym_COLON, - ACTIONS(5337), 1, - anon_sym_GT, - ACTIONS(5339), 1, - anon_sym_COMMA, - STATE(2925), 1, - sym_trait_bounds, - STATE(2926), 1, - aux_sym_type_arguments_repeat1, - STATE(2472), 2, + STATE(1235), 1, + sym_declaration_list, + STATE(3492), 1, + sym_where_clause, + STATE(2965), 2, sym_line_comment, sym_block_comment, - [77045] = 4, + [90381] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2473), 2, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(6452), 1, + anon_sym_SEMI, + STATE(4118), 1, + sym_where_clause, + STATE(2966), 2, sym_line_comment, sym_block_comment, - ACTIONS(5571), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [77063] = 4, + [90404] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2474), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5573), 5, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(6454), 1, anon_sym_SEMI, - anon_sym_RBRACE, + ACTIONS(6456), 1, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [77081] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5575), 1, - anon_sym_RPAREN, - ACTIONS(5577), 1, - anon_sym_COMMA, - STATE(2927), 1, - aux_sym_parameters_repeat1, - ACTIONS(4507), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(2475), 2, + ACTIONS(6458), 1, + anon_sym_else, + STATE(2967), 2, sym_line_comment, sym_block_comment, - [77105] = 7, + [90427] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1503), 1, + ACTIONS(6111), 1, + anon_sym_PIPE, + ACTIONS(6460), 1, anon_sym_RPAREN, - ACTIONS(5579), 1, + ACTIONS(6462), 1, anon_sym_COMMA, - STATE(2932), 1, - aux_sym_parameters_repeat1, - ACTIONS(4507), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(2476), 2, + STATE(3467), 1, + aux_sym_slice_pattern_repeat1, + STATE(2968), 2, sym_line_comment, sym_block_comment, - [77129] = 6, + [90450] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5514), 1, - anon_sym_as, - ACTIONS(5581), 1, - anon_sym_COLON_COLON, - STATE(2477), 2, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(5846), 1, + sym_super, + ACTIONS(6421), 1, + sym_identifier, + STATE(3523), 1, + sym_type_arguments, + STATE(2969), 2, sym_line_comment, sym_block_comment, - ACTIONS(5510), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [77151] = 8, + [90473] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(6464), 1, + anon_sym_LPAREN, + ACTIONS(6466), 1, + anon_sym_LBRACK, + ACTIONS(6468), 1, anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(5039), 1, - anon_sym_PLUS, - STATE(1450), 1, - sym_block, - STATE(3569), 1, - sym_label, - STATE(2478), 2, + STATE(2915), 1, + sym_token_tree, + STATE(2970), 2, sym_line_comment, sym_block_comment, - [77177] = 4, + [90496] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2479), 2, + ACTIONS(5473), 1, + anon_sym_LBRACE, + ACTIONS(5489), 1, + anon_sym_where, + STATE(1260), 1, + sym_declaration_list, + STATE(3488), 1, + sym_where_clause, + STATE(2971), 2, sym_line_comment, sym_block_comment, - ACTIONS(5583), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [77195] = 4, + [90519] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2480), 2, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(6359), 1, + sym_super, + ACTIONS(6470), 1, + sym_identifier, + STATE(3478), 1, + sym_type_arguments, + STATE(2972), 2, sym_line_comment, sym_block_comment, - ACTIONS(5585), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [77213] = 8, + [90542] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5587), 1, - anon_sym_STAR_SLASH, - ACTIONS(5589), 1, - sym__outer_block_doc_comment_marker, - ACTIONS(5591), 1, - sym__inner_block_doc_comment_marker, - ACTIONS(5593), 1, - sym__block_comment_content, - STATE(3334), 1, - sym__block_doc_comment_marker, - STATE(2481), 2, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(6472), 1, + anon_sym_SEMI, + STATE(4124), 1, + sym_where_clause, + STATE(2973), 2, sym_line_comment, sym_block_comment, - [77239] = 4, + [90565] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2482), 2, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(6359), 1, + sym_super, + ACTIONS(6470), 1, + sym_identifier, + STATE(3523), 1, + sym_type_arguments, + STATE(2974), 2, sym_line_comment, sym_block_comment, - ACTIONS(3489), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [77257] = 4, + [90588] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2483), 2, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(6359), 1, + sym_super, + ACTIONS(6474), 1, + sym_identifier, + STATE(3478), 1, + sym_type_arguments, + STATE(2975), 2, sym_line_comment, sym_block_comment, - ACTIONS(5595), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [77275] = 8, + [90611] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(5027), 1, - anon_sym_LBRACE, - ACTIONS(5597), 1, - anon_sym_SEMI, - STATE(555), 1, - sym_block, - STATE(3615), 1, - sym_label, - STATE(2484), 2, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(6359), 1, + sym_super, + ACTIONS(6474), 1, + sym_identifier, + STATE(3523), 1, + sym_type_arguments, + STATE(2976), 2, sym_line_comment, sym_block_comment, - [77301] = 8, + [90634] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1229), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3291), 1, + ACTIONS(3733), 1, anon_sym_SQUOTE, - ACTIONS(5599), 1, - anon_sym_move, - STATE(458), 1, + STATE(1666), 1, sym_block, - STATE(3619), 1, + STATE(4045), 1, sym_label, - STATE(2485), 2, + STATE(2977), 2, sym_line_comment, sym_block_comment, - [77327] = 8, + [90657] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5043), 1, - anon_sym_COLON, - ACTIONS(5317), 1, - anon_sym_GT, - ACTIONS(5319), 1, - anon_sym_COMMA, - STATE(2826), 1, - aux_sym_type_parameters_repeat1, - STATE(2832), 1, - sym_trait_bounds, - STATE(2486), 2, + ACTIONS(4407), 1, + anon_sym_LPAREN, + ACTIONS(5042), 1, + anon_sym_LT2, + STATE(1853), 1, + sym_parameters, + STATE(2219), 1, + sym_type_arguments, + STATE(2978), 2, sym_line_comment, sym_block_comment, - [77353] = 8, + [90680] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(5027), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(5601), 1, - anon_sym_SEMI, - STATE(562), 1, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + STATE(1698), 1, sym_block, - STATE(3615), 1, + STATE(4045), 1, sym_label, - STATE(2487), 2, - sym_line_comment, - sym_block_comment, - [77379] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5605), 1, - anon_sym_COMMA, - ACTIONS(5603), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_SQUOTE, - STATE(2488), 3, + STATE(2979), 2, sym_line_comment, sym_block_comment, - aux_sym_where_clause_repeat1, - [77399] = 6, + [90703] = 6, ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5530), 1, - anon_sym_RBRACK, - ACTIONS(3321), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(4507), 2, - anon_sym_PIPE, - anon_sym_COMMA, - STATE(2489), 2, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6476), 1, + anon_sym_DQUOTE, + STATE(3035), 1, + aux_sym_string_literal_repeat1, + ACTIONS(6353), 2, + sym_string_content, + sym_escape_sequence, + STATE(2980), 2, sym_line_comment, sym_block_comment, - [77421] = 8, + [90724] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, + ACTIONS(5042), 1, anon_sym_LT2, - ACTIONS(4505), 1, - anon_sym_COLON_COLON, - ACTIONS(4632), 1, - anon_sym_COLON, - STATE(1953), 1, + ACTIONS(6357), 1, + sym_identifier, + ACTIONS(6359), 1, + sym_super, + STATE(3478), 1, sym_type_arguments, - STATE(2726), 1, - sym_trait_bounds, - STATE(2490), 2, + STATE(2981), 2, sym_line_comment, sym_block_comment, - [77447] = 5, + [90747] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4872), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(2491), 2, + ACTIONS(5054), 1, + anon_sym_DOT_DOT, + ACTIONS(5798), 1, + anon_sym_COLON_COLON, + ACTIONS(5056), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2982), 2, sym_line_comment, sym_block_comment, - ACTIONS(3809), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [77467] = 6, + [90768] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5610), 1, - anon_sym_COMMA, - STATE(2504), 1, - aux_sym_where_clause_repeat1, - STATE(2492), 2, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(5846), 1, + sym_super, + ACTIONS(6357), 1, + sym_identifier, + STATE(3478), 1, + sym_type_arguments, + STATE(2983), 2, sym_line_comment, sym_block_comment, - ACTIONS(5608), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_SQUOTE, - [77489] = 8, + [90791] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5482), 1, - anon_sym_PIPE, - ACTIONS(5612), 1, - anon_sym_SEMI, - ACTIONS(5614), 1, - anon_sym_COLON, - ACTIONS(5616), 1, - anon_sym_EQ, - ACTIONS(5618), 1, - anon_sym_else, - STATE(2493), 2, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(5846), 1, + sym_super, + ACTIONS(6357), 1, + sym_identifier, + STATE(3523), 1, + sym_type_arguments, + STATE(2984), 2, sym_line_comment, sym_block_comment, - [77515] = 8, + [90814] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(5027), 1, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5523), 1, anon_sym_LBRACE, - ACTIONS(5620), 1, - anon_sym_SEMI, STATE(753), 1, - sym_block, - STATE(3615), 1, - sym_label, - STATE(2494), 2, + sym_declaration_list, + STATE(3658), 1, + sym_where_clause, + STATE(2985), 2, sym_line_comment, sym_block_comment, - [77541] = 7, + [90837] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1501), 1, - anon_sym_RPAREN, - ACTIONS(5622), 1, - anon_sym_COMMA, - STATE(2897), 1, - aux_sym_parameters_repeat1, - ACTIONS(4507), 2, - anon_sym_COLON, - anon_sym_PIPE, - STATE(2495), 2, + ACTIONS(1601), 1, + anon_sym_LBRACE, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + STATE(2404), 1, + sym_block, + STATE(4107), 1, + sym_label, + STATE(2986), 2, sym_line_comment, sym_block_comment, - [77565] = 4, + [90860] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2496), 2, + ACTIONS(6478), 1, + anon_sym_COLON_COLON, + STATE(2987), 2, sym_line_comment, sym_block_comment, - ACTIONS(3473), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [77583] = 4, + ACTIONS(5305), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [90879] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2497), 2, + ACTIONS(1227), 1, + anon_sym_LBRACE, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + STATE(470), 1, + sym_block, + STATE(4116), 1, + sym_label, + STATE(2988), 2, sym_line_comment, sym_block_comment, - ACTIONS(3477), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [77601] = 4, + [90902] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2498), 2, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(6331), 1, + anon_sym_COLON_COLON, + ACTIONS(6480), 1, + anon_sym_for, + STATE(2221), 1, + sym_type_arguments, + STATE(2989), 2, sym_line_comment, sym_block_comment, - ACTIONS(3481), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [77619] = 7, + [90925] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4634), 1, - anon_sym_EQ, - ACTIONS(5043), 1, - anon_sym_COLON, - STATE(2809), 1, - sym_trait_bounds, - ACTIONS(5624), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(2499), 2, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(6331), 1, + anon_sym_COLON_COLON, + ACTIONS(6482), 1, + anon_sym_for, + STATE(2221), 1, + sym_type_arguments, + STATE(2990), 2, sym_line_comment, sym_block_comment, - [77643] = 6, + [90948] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5475), 1, - anon_sym_RBRACK, - ACTIONS(3809), 2, - anon_sym_SEMI, + ACTIONS(5608), 1, anon_sym_PLUS, - ACTIONS(4872), 2, - anon_sym_PIPE, + ACTIONS(6080), 1, + anon_sym_RPAREN, + ACTIONS(6082), 1, anon_sym_COMMA, - STATE(2500), 2, + STATE(3436), 1, + aux_sym_parameters_repeat1, + STATE(2991), 2, sym_line_comment, sym_block_comment, - [77665] = 7, + [90971] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5043), 1, + ACTIONS(5596), 1, anon_sym_COLON, - ACTIONS(5331), 1, - anon_sym_PLUS, - STATE(3116), 1, + STATE(3271), 1, sym_trait_bounds, - ACTIONS(5626), 2, + ACTIONS(6484), 2, anon_sym_GT, anon_sym_COMMA, - STATE(2501), 2, + STATE(2992), 2, sym_line_comment, sym_block_comment, - [77689] = 7, + [90992] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3093), 1, - anon_sym_PLUS, - ACTIONS(5043), 1, - anon_sym_COLON, - STATE(3116), 1, - sym_trait_bounds, - ACTIONS(5626), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(2502), 2, + ACTIONS(6486), 1, + anon_sym_COLON_COLON, + STATE(2993), 2, sym_line_comment, sym_block_comment, - [77713] = 8, + ACTIONS(5283), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [91011] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5043), 1, - anon_sym_COLON, - ACTIONS(5333), 1, - anon_sym_GT, - ACTIONS(5335), 1, - anon_sym_COMMA, - STATE(2973), 1, - sym_trait_bounds, - STATE(2983), 1, - aux_sym_type_arguments_repeat1, - STATE(2503), 2, + ACTIONS(407), 1, + anon_sym_LBRACE, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + STATE(1953), 1, + sym_block, + STATE(4117), 1, + sym_label, + STATE(2994), 2, sym_line_comment, sym_block_comment, - [77739] = 6, + [91034] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5628), 1, - anon_sym_COMMA, - STATE(2488), 1, - aux_sym_where_clause_repeat1, - STATE(2504), 2, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(6331), 1, + anon_sym_COLON_COLON, + ACTIONS(6488), 1, + anon_sym_for, + STATE(2221), 1, + sym_type_arguments, + STATE(2995), 2, sym_line_comment, sym_block_comment, - ACTIONS(3430), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_SQUOTE, - [77761] = 4, + [91057] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2505), 2, + ACTIONS(5042), 1, + anon_sym_LT2, + STATE(3478), 1, + sym_type_arguments, + ACTIONS(6359), 2, + sym_identifier, + sym_super, + STATE(2996), 2, sym_line_comment, sym_block_comment, - ACTIONS(5630), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [77779] = 4, + [91078] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2506), 2, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5517), 1, + anon_sym_LBRACE, + STATE(1330), 1, + sym_field_declaration_list, + STATE(3472), 1, + sym_where_clause, + STATE(2997), 2, sym_line_comment, sym_block_comment, - ACTIONS(5632), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [77797] = 8, + [91101] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(5027), 1, - anon_sym_LBRACE, - ACTIONS(5634), 1, - anon_sym_SEMI, - STATE(601), 1, - sym_block, - STATE(3615), 1, - sym_label, - STATE(2507), 2, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(6331), 1, + anon_sym_COLON_COLON, + ACTIONS(6490), 1, + anon_sym_for, + STATE(2221), 1, + sym_type_arguments, + STATE(2998), 2, sym_line_comment, sym_block_comment, - [77823] = 4, + [91124] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2508), 2, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5898), 1, + anon_sym_LBRACE, + STATE(1336), 1, + sym_enum_variant_list, + STATE(3508), 1, + sym_where_clause, + STATE(2999), 2, sym_line_comment, sym_block_comment, - ACTIONS(5636), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [77841] = 7, + [91147] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4517), 1, - anon_sym_DOT_DOT, - ACTIONS(5223), 1, - anon_sym_COLON, - ACTIONS(5239), 1, - anon_sym_COLON_COLON, - ACTIONS(4519), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2509), 2, + ACTIONS(5036), 1, + anon_sym_LPAREN, + ACTIONS(5042), 1, + anon_sym_LT2, + STATE(2219), 1, + sym_type_arguments, + STATE(2248), 1, + sym_parameters, + STATE(3000), 2, sym_line_comment, sym_block_comment, - [77865] = 7, + [91170] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4517), 1, + ACTIONS(5200), 1, anon_sym_DOT_DOT, - ACTIONS(5237), 1, - anon_sym_COLON, - ACTIONS(5239), 1, + ACTIONS(6492), 1, anon_sym_COLON_COLON, - ACTIONS(4519), 2, + ACTIONS(5202), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2510), 2, + STATE(3001), 2, sym_line_comment, sym_block_comment, - [77889] = 8, + [91191] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3291), 1, + ACTIONS(3733), 1, anon_sym_SQUOTE, - ACTIONS(5039), 1, - anon_sym_PLUS, - STATE(1480), 1, - sym_block, - STATE(3569), 1, + STATE(4045), 1, sym_label, - STATE(2511), 2, + STATE(4097), 1, + sym_block, + STATE(3002), 2, sym_line_comment, sym_block_comment, - [77915] = 8, + [91214] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3297), 1, - anon_sym_LPAREN, - ACTIONS(4503), 1, + ACTIONS(5042), 1, anon_sym_LT2, - ACTIONS(4505), 1, - anon_sym_COLON_COLON, - STATE(1118), 1, - sym_parameters, - STATE(1953), 1, + STATE(3523), 1, sym_type_arguments, - STATE(2512), 2, + ACTIONS(6359), 2, + sym_identifier, + sym_super, + STATE(3003), 2, sym_line_comment, sym_block_comment, - [77941] = 4, + [91235] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2513), 2, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(6494), 1, + anon_sym_RPAREN, + ACTIONS(6496), 1, + anon_sym_COMMA, + STATE(3398), 1, + aux_sym_tuple_type_repeat1, + STATE(3004), 2, sym_line_comment, sym_block_comment, - ACTIONS(3467), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [77959] = 7, + [91258] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5638), 1, - anon_sym_RPAREN, - ACTIONS(5640), 1, - anon_sym_COMMA, - STATE(3004), 1, - aux_sym_ordered_field_declaration_list_repeat1, - STATE(2514), 2, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(6359), 1, + sym_super, + ACTIONS(6395), 1, + sym_identifier, + STATE(3523), 1, + sym_type_arguments, + STATE(3005), 2, sym_line_comment, sym_block_comment, - [77982] = 6, + [91281] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - STATE(3158), 1, - sym_type_arguments, - ACTIONS(5642), 2, - sym_identifier, - sym_super, - STATE(2515), 2, + ACTIONS(5473), 1, + anon_sym_LBRACE, + ACTIONS(5489), 1, + anon_sym_where, + STATE(1350), 1, + sym_declaration_list, + STATE(3545), 1, + sym_where_clause, + STATE(3006), 2, sym_line_comment, sym_block_comment, - [78003] = 6, + [91304] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - STATE(3311), 1, - sym_type_arguments, - ACTIONS(5642), 2, - sym_identifier, - sym_super, - STATE(2516), 2, + ACTIONS(5036), 1, + anon_sym_LPAREN, + ACTIONS(5487), 1, + anon_sym_LT, + STATE(2506), 1, + sym_parameters, + STATE(3718), 1, + sym_type_parameters, + STATE(3007), 2, sym_line_comment, sym_block_comment, - [78024] = 7, + [91327] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5608), 1, anon_sym_PLUS, - ACTIONS(5644), 1, + ACTIONS(6498), 1, anon_sym_SEMI, - ACTIONS(5646), 1, - anon_sym_EQ, - ACTIONS(5648), 1, - anon_sym_else, - STATE(2517), 2, + STATE(4016), 1, + sym_where_clause, + STATE(3008), 2, sym_line_comment, sym_block_comment, - [78047] = 5, - ACTIONS(3), 1, + [91350] = 7, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5650), 1, - aux_sym_token_repetition_pattern_token1, - STATE(2518), 2, + ACTIONS(3747), 1, + anon_sym_LT2, + ACTIONS(3954), 1, + anon_sym_COLON_COLON, + ACTIONS(5407), 1, + anon_sym_BANG, + STATE(1437), 1, + sym_type_arguments, + STATE(3009), 2, sym_line_comment, sym_block_comment, - ACTIONS(5652), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [78066] = 7, + [91373] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - STATE(3524), 1, - sym_block, - STATE(3569), 1, - sym_label, - STATE(2519), 2, + ACTIONS(6500), 1, + anon_sym_in, + STATE(3010), 2, sym_line_comment, sym_block_comment, - [78089] = 6, + ACTIONS(6502), 3, + sym_self, + sym_super, + sym_crate, + [91392] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, + ACTIONS(5042), 1, anon_sym_LT2, - STATE(3158), 1, - sym_type_arguments, - ACTIONS(5654), 2, - sym_identifier, + ACTIONS(6359), 1, sym_super, - STATE(2520), 2, + ACTIONS(6395), 1, + sym_identifier, + STATE(3478), 1, + sym_type_arguments, + STATE(3011), 2, sym_line_comment, sym_block_comment, - [78110] = 7, + [91415] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4950), 1, + ACTIONS(6504), 1, + anon_sym_COLON, + STATE(3012), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5453), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [91434] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5473), 1, anon_sym_LBRACE, - STATE(626), 1, + ACTIONS(5489), 1, + anon_sym_where, + STATE(1370), 1, sym_declaration_list, - STATE(3268), 1, + STATE(3573), 1, sym_where_clause, - STATE(2521), 2, + STATE(3013), 2, + sym_line_comment, + sym_block_comment, + [91457] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + STATE(1707), 1, + sym_block, + STATE(4045), 1, + sym_label, + STATE(3014), 2, sym_line_comment, sym_block_comment, - [78133] = 7, + [91480] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, + ACTIONS(5489), 1, anon_sym_where, - ACTIONS(5039), 1, + ACTIONS(5608), 1, anon_sym_PLUS, - ACTIONS(5656), 1, + ACTIONS(6506), 1, anon_sym_SEMI, - STATE(3451), 1, + STATE(3907), 1, sym_where_clause, - STATE(2522), 2, + STATE(3015), 2, sym_line_comment, sym_block_comment, - [78156] = 7, + [91503] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4956), 1, + ACTIONS(5836), 1, + anon_sym_LPAREN, + ACTIONS(5838), 1, + anon_sym_LBRACK, + ACTIONS(5842), 1, anon_sym_LBRACE, - STATE(1306), 1, - sym_declaration_list, - STATE(3060), 1, - sym_where_clause, - STATE(2523), 2, + STATE(1706), 1, + sym_delim_token_tree, + STATE(3016), 2, sym_line_comment, sym_block_comment, - [78179] = 6, + [91526] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5658), 1, - anon_sym_DQUOTE, - STATE(2713), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5660), 2, - sym_string_content, - sym_escape_sequence, - STATE(2524), 2, + ACTIONS(6508), 1, + anon_sym_LBRACE, + ACTIONS(6510), 1, + anon_sym_for, + ACTIONS(6512), 1, + anon_sym_loop, + ACTIONS(6514), 1, + anon_sym_while, + STATE(3017), 2, sym_line_comment, sym_block_comment, - [78200] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [91549] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3733), 1, anon_sym_SQUOTE, - STATE(378), 1, + STATE(1702), 1, sym_block, - STATE(3355), 1, + STATE(4045), 1, sym_label, - STATE(2525), 2, + STATE(3018), 2, + sym_line_comment, + sym_block_comment, + [91572] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(6516), 1, + anon_sym_SEMI, + STATE(3986), 1, + sym_where_clause, + STATE(3019), 2, + sym_line_comment, + sym_block_comment, + [91595] = 7, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5523), 1, + anon_sym_LBRACE, + STATE(720), 1, + sym_declaration_list, + STATE(3648), 1, + sym_where_clause, + STATE(3020), 2, sym_line_comment, sym_block_comment, - [78223] = 7, + [91618] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3291), 1, + ACTIONS(3733), 1, anon_sym_SQUOTE, - STATE(3502), 1, + STATE(1497), 1, sym_block, - STATE(3569), 1, + STATE(4045), 1, sym_label, - STATE(2526), 2, + STATE(3021), 2, sym_line_comment, sym_block_comment, - [78246] = 7, + [91641] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(6111), 1, + anon_sym_PIPE, + ACTIONS(6518), 1, + anon_sym_RBRACK, + ACTIONS(6520), 1, + anon_sym_COMMA, + STATE(3381), 1, + aux_sym_slice_pattern_repeat1, + STATE(3022), 2, + sym_line_comment, + sym_block_comment, + [91664] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6522), 1, + sym_identifier, + STATE(3023), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(6524), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [91683] = 7, + ACTIONS(19), 1, anon_sym_LBRACE, - ACTIONS(3291), 1, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(3733), 1, anon_sym_SQUOTE, - STATE(3440), 1, + STATE(393), 1, sym_block, - STATE(3569), 1, + STATE(3944), 1, sym_label, - STATE(2527), 2, + STATE(3024), 2, sym_line_comment, sym_block_comment, - [78269] = 6, + [91706] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - STATE(3158), 1, - sym_type_arguments, - ACTIONS(5195), 2, - sym_identifier, - sym_super, - STATE(2528), 2, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(6526), 1, + anon_sym_SEMI, + ACTIONS(6528), 1, + anon_sym_EQ, + ACTIONS(6530), 1, + anon_sym_else, + STATE(3025), 2, + sym_line_comment, + sym_block_comment, + [91729] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6532), 1, + aux_sym_token_repetition_pattern_token1, + STATE(3026), 2, sym_line_comment, sym_block_comment, - [78290] = 6, + ACTIONS(6534), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [91748] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - STATE(3311), 1, - sym_type_arguments, - ACTIONS(5195), 2, - sym_identifier, - sym_super, - STATE(2529), 2, + STATE(3027), 2, sym_line_comment, sym_block_comment, - [78311] = 5, + ACTIONS(931), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + [91765] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5662), 1, - anon_sym_COLON, - STATE(2530), 2, + ACTIONS(6536), 1, + anon_sym_LBRACE, + ACTIONS(6538), 1, + anon_sym_for, + ACTIONS(6540), 1, + anon_sym_loop, + ACTIONS(6542), 1, + anon_sym_while, + STATE(3028), 2, sym_line_comment, sym_block_comment, - ACTIONS(4856), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [78330] = 7, + [91788] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - STATE(1420), 1, - sym_block, - STATE(3569), 1, - sym_label, - STATE(2531), 2, + ACTIONS(5036), 1, + anon_sym_LPAREN, + ACTIONS(5487), 1, + anon_sym_LT, + STATE(2505), 1, + sym_parameters, + STATE(3613), 1, + sym_type_parameters, + STATE(3029), 2, sym_line_comment, sym_block_comment, - [78353] = 5, + [91811] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, + ACTIONS(5900), 1, anon_sym_PLUS, - STATE(2532), 2, + STATE(3030), 2, sym_line_comment, sym_block_comment, - ACTIONS(5664), 3, - anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(6544), 3, + anon_sym_COLON, + anon_sym_GT, anon_sym_COMMA, - [78372] = 4, + [91830] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2533), 2, + ACTIONS(5054), 1, + anon_sym_DOT_DOT, + ACTIONS(5882), 1, + anon_sym_COLON_COLON, + ACTIONS(5056), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(3031), 2, sym_line_comment, sym_block_comment, - ACTIONS(1035), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - [78389] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [91851] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - STATE(396), 1, - sym_block, - STATE(3355), 1, - sym_label, - STATE(2534), 2, + ACTIONS(6111), 1, + anon_sym_PIPE, + ACTIONS(6546), 1, + anon_sym_RPAREN, + ACTIONS(6548), 1, + anon_sym_COMMA, + STATE(3448), 1, + aux_sym_tuple_pattern_repeat1, + STATE(3032), 2, sym_line_comment, sym_block_comment, - [78412] = 7, + [91874] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3291), 1, + ACTIONS(3733), 1, anon_sym_SQUOTE, - STATE(3431), 1, + STATE(1681), 1, sym_block, - STATE(3569), 1, + STATE(4045), 1, sym_label, - STATE(2535), 2, + STATE(3033), 2, sym_line_comment, sym_block_comment, - [78435] = 7, + [91897] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4696), 1, - anon_sym_GT, - ACTIONS(5469), 1, - anon_sym_COMMA, - ACTIONS(5666), 1, - anon_sym_EQ, - STATE(2843), 1, - aux_sym_type_parameters_repeat1, - STATE(2536), 2, + ACTIONS(5485), 1, + anon_sym_LBRACE, + ACTIONS(5489), 1, + anon_sym_where, + STATE(530), 1, + sym_field_declaration_list, + STATE(3600), 1, + sym_where_clause, + STATE(3034), 2, sym_line_comment, sym_block_comment, - [78458] = 6, + [91920] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4517), 1, - anon_sym_DOT_DOT, - ACTIONS(5239), 1, - anon_sym_COLON_COLON, - ACTIONS(4519), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2537), 2, + ACTIONS(6550), 1, + anon_sym_DQUOTE, + STATE(2925), 1, + aux_sym_string_literal_repeat1, + ACTIONS(6353), 2, + sym_string_content, + sym_escape_sequence, + STATE(3035), 2, sym_line_comment, sym_block_comment, - [78479] = 6, + [91941] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - STATE(3311), 1, - sym_type_arguments, - ACTIONS(5654), 2, - sym_identifier, - sym_super, - STATE(2538), 2, + ACTIONS(5044), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(6552), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3036), 2, sym_line_comment, sym_block_comment, - [78500] = 7, + [91960] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4702), 1, - anon_sym_GT, - ACTIONS(5473), 1, - anon_sym_COMMA, - ACTIONS(5666), 1, - anon_sym_EQ, - STATE(2947), 1, - aux_sym_type_parameters_repeat1, - STATE(2539), 2, + ACTIONS(5836), 1, + anon_sym_LPAREN, + ACTIONS(5838), 1, + anon_sym_LBRACK, + ACTIONS(5842), 1, + anon_sym_LBRACE, + STATE(1680), 1, + sym_delim_token_tree, + STATE(3037), 2, sym_line_comment, sym_block_comment, - [78523] = 7, + [91983] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5317), 1, - anon_sym_GT, - ACTIONS(5319), 1, - anon_sym_COMMA, - ACTIONS(5666), 1, - anon_sym_EQ, - STATE(2826), 1, - aux_sym_type_parameters_repeat1, - STATE(2540), 2, + ACTIONS(3747), 1, + anon_sym_LT2, + ACTIONS(5846), 1, + sym_super, + ACTIONS(6554), 1, + sym_identifier, + STATE(1813), 1, + sym_type_arguments, + STATE(3038), 2, sym_line_comment, sym_block_comment, - [78546] = 7, + [92006] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5668), 1, - anon_sym_SEMI, - ACTIONS(5670), 1, - anon_sym_EQ, - ACTIONS(5672), 1, - anon_sym_else, - STATE(2541), 2, + ACTIONS(6435), 1, + anon_sym_COLON_COLON, + STATE(3039), 2, sym_line_comment, sym_block_comment, - [78569] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + ACTIONS(5277), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [92025] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - STATE(382), 1, - sym_block, - STATE(3355), 1, - sym_label, - STATE(2542), 2, + ACTIONS(1491), 1, + anon_sym_RPAREN, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(6131), 1, + anon_sym_COMMA, + STATE(3380), 1, + aux_sym_parameters_repeat1, + STATE(3040), 2, sym_line_comment, sym_block_comment, - [78592] = 7, + [92048] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(5674), 1, + ACTIONS(6556), 1, anon_sym_COLON_COLON, - ACTIONS(5676), 1, - anon_sym_for, - STATE(1953), 1, - sym_type_arguments, - STATE(2543), 2, + STATE(3041), 2, sym_line_comment, sym_block_comment, - [78615] = 7, + ACTIONS(5277), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [92067] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1229), 1, - anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - STATE(463), 1, - sym_block, - STATE(3619), 1, - sym_label, - STATE(2544), 2, + ACTIONS(6478), 1, + anon_sym_COLON_COLON, + STATE(3042), 2, sym_line_comment, sym_block_comment, - [78638] = 7, + ACTIONS(5277), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [92086] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1229), 1, - anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - STATE(466), 1, - sym_block, - STATE(3619), 1, - sym_label, - STATE(2545), 2, + ACTIONS(6486), 1, + anon_sym_COLON_COLON, + STATE(3043), 2, sym_line_comment, sym_block_comment, - [78661] = 6, + ACTIONS(5339), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [92105] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5678), 1, - anon_sym_DQUOTE, - STATE(2564), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5660), 2, - sym_string_content, - sym_escape_sequence, - STATE(2546), 2, + ACTIONS(5596), 1, + anon_sym_COLON, + STATE(3271), 1, + sym_trait_bounds, + ACTIONS(6558), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(3044), 2, sym_line_comment, sym_block_comment, - [78682] = 7, + [92126] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4956), 1, - anon_sym_LBRACE, - STATE(1183), 1, - sym_declaration_list, - STATE(3157), 1, - sym_where_clause, - STATE(2547), 2, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(5596), 1, + anon_sym_COLON, + STATE(2219), 1, + sym_type_arguments, + STATE(2919), 1, + sym_trait_bounds, + STATE(3045), 2, sym_line_comment, sym_block_comment, - [78705] = 7, + [92149] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - ACTIONS(5075), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - STATE(2918), 1, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + STATE(1655), 1, sym_block, - STATE(3618), 1, + STATE(4045), 1, sym_label, - STATE(2548), 2, + STATE(3046), 2, sym_line_comment, sym_block_comment, - [78728] = 7, + [92172] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - STATE(1749), 1, - sym_block, - STATE(3620), 1, - sym_label, - STATE(2549), 2, + ACTIONS(3747), 1, + anon_sym_LT2, + ACTIONS(5846), 1, + sym_super, + ACTIONS(6554), 1, + sym_identifier, + STATE(1817), 1, + sym_type_arguments, + STATE(3047), 2, sym_line_comment, sym_block_comment, - [78751] = 7, + [92195] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5680), 1, - anon_sym_SEMI, - STATE(3442), 1, - sym_where_clause, - STATE(2550), 2, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + STATE(1693), 1, + sym_block, + STATE(4045), 1, + sym_label, + STATE(3048), 2, sym_line_comment, sym_block_comment, - [78774] = 7, + [92218] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4942), 1, - anon_sym_LBRACE, - ACTIONS(4946), 1, - anon_sym_where, - STATE(738), 1, - sym_field_declaration_list, - STATE(3134), 1, - sym_where_clause, - STATE(2551), 2, + STATE(3049), 2, sym_line_comment, sym_block_comment, - [78797] = 7, + ACTIONS(4817), 4, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + anon_sym_SQUOTE, + [92235] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3291), 1, + ACTIONS(3733), 1, anon_sym_SQUOTE, - STATE(1404), 1, + STATE(409), 1, sym_block, - STATE(3569), 1, + STATE(3944), 1, sym_label, - STATE(2552), 2, + STATE(3050), 2, sym_line_comment, sym_block_comment, - [78820] = 7, + [92258] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4011), 1, - anon_sym_LT2, - ACTIONS(4167), 1, - anon_sym_COLON_COLON, - ACTIONS(4834), 1, - anon_sym_BANG, - STATE(1615), 1, - sym_type_arguments, - STATE(2553), 2, + ACTIONS(6561), 1, + sym_identifier, + STATE(3051), 2, sym_line_comment, sym_block_comment, - [78843] = 7, + ACTIONS(6563), 3, + anon_sym_default, + anon_sym_gen, + anon_sym_union, + [92277] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, + ACTIONS(5489), 1, anon_sym_where, - ACTIONS(4956), 1, + ACTIONS(5908), 1, anon_sym_LBRACE, - STATE(1194), 1, - sym_declaration_list, - STATE(3169), 1, + STATE(546), 1, + sym_enum_variant_list, + STATE(3585), 1, sym_where_clause, - STATE(2554), 2, + STATE(3052), 2, sym_line_comment, sym_block_comment, - [78866] = 7, + [92300] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3291), 1, + ACTIONS(3733), 1, anon_sym_SQUOTE, - STATE(3445), 1, + STATE(3956), 1, sym_block, - STATE(3569), 1, + STATE(4045), 1, sym_label, - STATE(2555), 2, + STATE(3053), 2, sym_line_comment, sym_block_comment, - [78889] = 7, + [92323] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1229), 1, - anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - STATE(469), 1, - sym_block, - STATE(3619), 1, - sym_label, - STATE(2556), 2, + ACTIONS(5036), 1, + anon_sym_LPAREN, + ACTIONS(5487), 1, + anon_sym_LT, + STATE(2530), 1, + sym_parameters, + STATE(3659), 1, + sym_type_parameters, + STATE(3054), 2, sym_line_comment, sym_block_comment, - [78912] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [92346] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - STATE(383), 1, - sym_block, - STATE(3355), 1, - sym_label, - STATE(2557), 2, + ACTIONS(5251), 1, + anon_sym_GT, + ACTIONS(6150), 1, + anon_sym_COMMA, + ACTIONS(6431), 1, + anon_sym_EQ, + STATE(3417), 1, + aux_sym_type_parameters_repeat1, + STATE(3055), 2, sym_line_comment, sym_block_comment, - [78935] = 7, + [92369] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5682), 1, - anon_sym_LPAREN, - ACTIONS(5684), 1, - anon_sym_LBRACK, - ACTIONS(5686), 1, + ACTIONS(6565), 1, anon_sym_LBRACE, - STATE(1964), 1, - sym_delim_token_tree, - STATE(2558), 2, + ACTIONS(6567), 1, + anon_sym_for, + ACTIONS(6569), 1, + anon_sym_loop, + ACTIONS(6571), 1, + anon_sym_while, + STATE(3056), 2, sym_line_comment, sym_block_comment, - [78958] = 7, + [92392] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1229), 1, - anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - STATE(470), 1, - sym_block, - STATE(3619), 1, - sym_label, - STATE(2559), 2, + ACTIONS(3747), 1, + anon_sym_LT2, + ACTIONS(5846), 1, + sym_super, + ACTIONS(6573), 1, + sym_identifier, + STATE(1623), 1, + sym_type_arguments, + STATE(3057), 2, sym_line_comment, sym_block_comment, - [78981] = 7, + [92415] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1229), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3291), 1, + ACTIONS(3733), 1, anon_sym_SQUOTE, - STATE(452), 1, + STATE(3915), 1, sym_block, - STATE(3619), 1, + STATE(4045), 1, sym_label, - STATE(2560), 2, - sym_line_comment, - sym_block_comment, - [79004] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(5674), 1, - anon_sym_COLON_COLON, - ACTIONS(5688), 1, - anon_sym_for, - STATE(1953), 1, - sym_type_arguments, - STATE(2561), 2, + STATE(3058), 2, sym_line_comment, sym_block_comment, - [79027] = 7, + [92438] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1229), 1, + ACTIONS(6575), 1, anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - STATE(479), 1, - sym_block, - STATE(3619), 1, - sym_label, - STATE(2562), 2, + ACTIONS(6577), 1, + anon_sym_for, + ACTIONS(6579), 1, + anon_sym_loop, + ACTIONS(6581), 1, + anon_sym_while, + STATE(3059), 2, sym_line_comment, sym_block_comment, - [79050] = 7, + [92461] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(5285), 1, - anon_sym_LBRACE, - STATE(1199), 1, - sym_enum_variant_list, - STATE(3188), 1, - sym_where_clause, - STATE(2563), 2, + ACTIONS(6111), 1, + anon_sym_PIPE, + ACTIONS(6583), 1, + anon_sym_RPAREN, + ACTIONS(6585), 1, + anon_sym_COMMA, + STATE(3156), 1, + aux_sym_tuple_pattern_repeat1, + STATE(3060), 2, sym_line_comment, sym_block_comment, - [79073] = 6, + [92484] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5690), 1, - anon_sym_DQUOTE, - STATE(2734), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5660), 2, - sym_string_content, - sym_escape_sequence, - STATE(2564), 2, + ACTIONS(5054), 1, + anon_sym_DOT_DOT, + ACTIONS(5812), 1, + anon_sym_COLON_COLON, + ACTIONS(5056), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(3061), 2, sym_line_comment, sym_block_comment, - [79094] = 7, + [92505] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5682), 1, - anon_sym_LPAREN, - ACTIONS(5684), 1, - anon_sym_LBRACK, - ACTIONS(5686), 1, - anon_sym_LBRACE, - STATE(1969), 1, - sym_delim_token_tree, - STATE(2565), 2, + ACTIONS(6111), 1, + anon_sym_PIPE, + ACTIONS(6587), 1, + anon_sym_RBRACK, + ACTIONS(6589), 1, + anon_sym_COMMA, + STATE(3158), 1, + aux_sym_slice_pattern_repeat1, + STATE(3062), 2, sym_line_comment, sym_block_comment, - [79117] = 7, + [92528] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4011), 1, - anon_sym_LT2, - ACTIONS(5692), 1, - sym_identifier, - ACTIONS(5694), 1, - sym_super, - STATE(1563), 1, - sym_type_arguments, - STATE(2566), 2, + ACTIONS(5054), 1, + anon_sym_DOT_DOT, + ACTIONS(5888), 1, + anon_sym_COLON_COLON, + ACTIONS(5056), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(3063), 2, sym_line_comment, sym_block_comment, - [79140] = 7, + [92549] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4011), 1, - anon_sym_LT2, - ACTIONS(5692), 1, - sym_identifier, - ACTIONS(5694), 1, - sym_super, - STATE(1586), 1, - sym_type_arguments, - STATE(2567), 2, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + STATE(1712), 1, + sym_block, + STATE(4045), 1, + sym_label, + STATE(3064), 2, sym_line_comment, sym_block_comment, - [79163] = 7, + [92572] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(4742), 1, - anon_sym_for, - ACTIONS(5674), 1, - anon_sym_COLON_COLON, - STATE(1953), 1, - sym_type_arguments, - STATE(2568), 2, + ACTIONS(6591), 1, + anon_sym_LPAREN, + ACTIONS(6593), 1, + anon_sym_LBRACK, + ACTIONS(6595), 1, + anon_sym_LBRACE, + STATE(396), 1, + sym_delim_token_tree, + STATE(3065), 2, sym_line_comment, sym_block_comment, - [79186] = 7, + [92595] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, + ACTIONS(5042), 1, anon_sym_LT2, - ACTIONS(5195), 1, - sym_super, - ACTIONS(5696), 1, + ACTIONS(6337), 1, sym_identifier, - STATE(3158), 1, + ACTIONS(6359), 1, + sym_super, + STATE(3478), 1, sym_type_arguments, - STATE(2569), 2, + STATE(3066), 2, sym_line_comment, sym_block_comment, - [79209] = 7, + [92618] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(5195), 1, - sym_super, - ACTIONS(5696), 1, - sym_identifier, - STATE(3311), 1, - sym_type_arguments, - STATE(2570), 2, + ACTIONS(6227), 1, + anon_sym_COLON, + ACTIONS(6229), 1, + anon_sym_PIPE, + ACTIONS(6231), 1, + anon_sym_COMMA, + STATE(3283), 1, + aux_sym_closure_parameters_repeat1, + STATE(3067), 2, sym_line_comment, sym_block_comment, - [79232] = 7, + [92641] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5698), 1, - anon_sym_RPAREN, - ACTIONS(5700), 1, - anon_sym_COMMA, - STATE(2920), 1, - aux_sym_tuple_type_repeat1, - STATE(2571), 2, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5517), 1, + anon_sym_LBRACE, + STATE(1461), 1, + sym_field_declaration_list, + STATE(3695), 1, + sym_where_clause, + STATE(3068), 2, sym_line_comment, sym_block_comment, - [79255] = 6, + [92664] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5043), 1, - anon_sym_COLON, - STATE(2832), 1, - sym_trait_bounds, - ACTIONS(5702), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(2572), 2, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + STATE(4045), 1, + sym_label, + STATE(4094), 1, + sym_block, + STATE(3069), 2, sym_line_comment, sym_block_comment, - [79276] = 7, + [92687] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, + ACTIONS(5489), 1, anon_sym_where, - ACTIONS(4976), 1, + ACTIONS(5898), 1, anon_sym_LBRACE, - STATE(1205), 1, - sym_field_declaration_list, - STATE(3213), 1, + STATE(1468), 1, + sym_enum_variant_list, + STATE(3699), 1, sym_where_clause, - STATE(2573), 2, + STATE(3070), 2, sym_line_comment, sym_block_comment, - [79299] = 7, + [92710] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4005), 1, - anon_sym_LPAREN, - ACTIONS(4503), 1, + ACTIONS(5042), 1, anon_sym_LT2, - STATE(1611), 1, - sym_parameters, - STATE(1955), 1, + ACTIONS(6337), 1, + sym_identifier, + ACTIONS(6359), 1, + sym_super, + STATE(3523), 1, sym_type_arguments, - STATE(2574), 2, + STATE(3071), 2, sym_line_comment, sym_block_comment, - [79322] = 7, + [92733] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4497), 1, - anon_sym_LPAREN, - ACTIONS(4944), 1, - anon_sym_LT, - STATE(2196), 1, - sym_parameters, - STATE(3273), 1, - sym_type_parameters, - STATE(2575), 2, + ACTIONS(6556), 1, + anon_sym_COLON_COLON, + STATE(3072), 2, sym_line_comment, sym_block_comment, - [79345] = 7, + ACTIONS(5305), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [92752] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(5039), 1, + ACTIONS(5608), 1, anon_sym_PLUS, - ACTIONS(5704), 1, - anon_sym_SEMI, - STATE(3531), 1, - sym_where_clause, - STATE(2576), 2, + ACTIONS(6597), 1, + anon_sym_RPAREN, + ACTIONS(6599), 1, + anon_sym_COMMA, + STATE(3170), 1, + aux_sym_tuple_type_repeat1, + STATE(3073), 2, sym_line_comment, sym_block_comment, - [79368] = 7, + [92775] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1229), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3291), 1, + ACTIONS(3733), 1, anon_sym_SQUOTE, - STATE(460), 1, - sym_block, - STATE(3619), 1, + STATE(4045), 1, sym_label, - STATE(2577), 2, + STATE(4072), 1, + sym_block, + STATE(3074), 2, sym_line_comment, sym_block_comment, - [79391] = 5, + [92798] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5331), 1, - anon_sym_PLUS, - STATE(2578), 2, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + STATE(3822), 1, + sym_block, + STATE(4045), 1, + sym_label, + STATE(3075), 2, sym_line_comment, sym_block_comment, - ACTIONS(5706), 3, - anon_sym_COLON, - anon_sym_GT, - anon_sym_COMMA, - [79410] = 7, + [92821] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4942), 1, - anon_sym_LBRACE, - ACTIONS(4946), 1, - anon_sym_where, - STATE(632), 1, - sym_field_declaration_list, - STATE(3059), 1, - sym_where_clause, - STATE(2579), 2, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(5313), 1, + anon_sym_for, + ACTIONS(6331), 1, + anon_sym_COLON_COLON, + STATE(2221), 1, + sym_type_arguments, + STATE(3076), 2, sym_line_comment, sym_block_comment, - [79433] = 4, + [92844] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2580), 2, + ACTIONS(5473), 1, + anon_sym_LBRACE, + ACTIONS(5489), 1, + anon_sym_where, + STATE(1473), 1, + sym_declaration_list, + STATE(3715), 1, + sym_where_clause, + STATE(3077), 2, sym_line_comment, sym_block_comment, - ACTIONS(4299), 4, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_SQUOTE, - [79450] = 7, + [92867] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5708), 1, - anon_sym_LPAREN, - ACTIONS(5710), 1, - anon_sym_LBRACK, - ACTIONS(5712), 1, - anon_sym_LBRACE, - STATE(402), 1, - sym_delim_token_tree, - STATE(2581), 2, + ACTIONS(3747), 1, + anon_sym_LT2, + ACTIONS(5846), 1, + sym_super, + ACTIONS(6573), 1, + sym_identifier, + STATE(1650), 1, + sym_type_arguments, + STATE(3078), 2, sym_line_comment, sym_block_comment, - [79473] = 7, + [92890] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - STATE(1455), 1, - sym_block, - STATE(3569), 1, - sym_label, - STATE(2582), 2, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(6601), 1, + anon_sym_SEMI, + STATE(3829), 1, + sym_where_clause, + STATE(3079), 2, sym_line_comment, sym_block_comment, - [79496] = 7, + [92913] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4956), 1, + ACTIONS(5473), 1, anon_sym_LBRACE, - STATE(1135), 1, + ACTIONS(5489), 1, + anon_sym_where, + STATE(1487), 1, sym_declaration_list, - STATE(3227), 1, + STATE(3726), 1, sym_where_clause, - STATE(2583), 2, + STATE(3080), 2, sym_line_comment, sym_block_comment, - [79519] = 7, + [92936] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5575), 1, - anon_sym_RPAREN, - ACTIONS(5577), 1, - anon_sym_COMMA, - STATE(2927), 1, - aux_sym_parameters_repeat1, - STATE(2584), 2, + ACTIONS(6603), 1, + anon_sym_DQUOTE, + STATE(2925), 1, + aux_sym_string_literal_repeat1, + ACTIONS(6353), 2, + sym_string_content, + sym_escape_sequence, + STATE(3081), 2, sym_line_comment, sym_block_comment, - [79542] = 7, + [92957] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4497), 1, - anon_sym_LPAREN, - ACTIONS(4944), 1, - anon_sym_LT, - STATE(2223), 1, - sym_parameters, - STATE(3220), 1, - sym_type_parameters, - STATE(2585), 2, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(6605), 1, + anon_sym_SEMI, + ACTIONS(6607), 1, + anon_sym_EQ, + ACTIONS(6609), 1, + anon_sym_else, + STATE(3082), 2, sym_line_comment, sym_block_comment, - [79565] = 7, + [92980] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(5039), 1, + ACTIONS(5608), 1, anon_sym_PLUS, - ACTIONS(5714), 1, + ACTIONS(6611), 1, anon_sym_SEMI, - STATE(3576), 1, - sym_where_clause, - STATE(2586), 2, + ACTIONS(6613), 1, + anon_sym_EQ, + ACTIONS(6615), 1, + anon_sym_else, + STATE(3083), 2, sym_line_comment, sym_block_comment, - [79588] = 7, + [93003] = 7, ACTIONS(19), 1, anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, + ACTIONS(3733), 1, anon_sym_SQUOTE, - STATE(400), 1, + STATE(386), 1, sym_block, - STATE(3355), 1, + STATE(3944), 1, sym_label, - STATE(2587), 2, + STATE(3084), 2, sym_line_comment, sym_block_comment, - [79611] = 7, + [93026] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1229), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3291), 1, + ACTIONS(3733), 1, anon_sym_SQUOTE, - STATE(473), 1, + STATE(3927), 1, sym_block, - STATE(3619), 1, + STATE(4045), 1, sym_label, - STATE(2588), 2, - sym_line_comment, - sym_block_comment, - [79634] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5716), 1, - anon_sym_RPAREN, - ACTIONS(5718), 1, - anon_sym_COMMA, - STATE(2979), 1, - aux_sym_ordered_field_declaration_list_repeat1, - STATE(2589), 2, + STATE(3085), 2, sym_line_comment, sym_block_comment, - [79657] = 7, + [93049] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3291), 1, + ACTIONS(3733), 1, anon_sym_SQUOTE, - STATE(3437), 1, + STATE(3928), 1, sym_block, - STATE(3569), 1, + STATE(4045), 1, sym_label, - STATE(2590), 2, + STATE(3086), 2, sym_line_comment, sym_block_comment, - [79680] = 7, + [93072] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, + ACTIONS(3739), 1, + anon_sym_LPAREN, + ACTIONS(5042), 1, anon_sym_LT2, - ACTIONS(5654), 1, - sym_super, - ACTIONS(5720), 1, - sym_identifier, - STATE(3158), 1, + STATE(1620), 1, + sym_parameters, + STATE(2219), 1, sym_type_arguments, - STATE(2591), 2, + STATE(3087), 2, sym_line_comment, sym_block_comment, - [79703] = 7, + [93095] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1503), 1, - anon_sym_RPAREN, - ACTIONS(5039), 1, + ACTIONS(5608), 1, anon_sym_PLUS, - ACTIONS(5579), 1, + ACTIONS(6617), 1, + anon_sym_RPAREN, + ACTIONS(6619), 1, anon_sym_COMMA, - STATE(2932), 1, - aux_sym_parameters_repeat1, - STATE(2592), 2, + STATE(3395), 1, + aux_sym_tuple_type_repeat1, + STATE(3088), 2, sym_line_comment, sym_block_comment, - [79726] = 7, + [93118] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5447), 1, - anon_sym_COLON, - ACTIONS(5449), 1, - anon_sym_PIPE, - ACTIONS(5451), 1, + ACTIONS(5237), 1, + anon_sym_GT, + ACTIONS(6209), 1, anon_sym_COMMA, - STATE(3034), 1, - aux_sym_closure_parameters_repeat1, - STATE(2593), 2, + ACTIONS(6431), 1, + anon_sym_EQ, + STATE(3309), 1, + aux_sym_type_parameters_repeat1, + STATE(3089), 2, sym_line_comment, sym_block_comment, - [79749] = 5, + [93141] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5722), 1, - anon_sym_COLON_COLON, - STATE(2594), 2, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(6621), 1, + anon_sym_SEMI, + STATE(3934), 1, + sym_where_clause, + STATE(3090), 2, sym_line_comment, sym_block_comment, - ACTIONS(4764), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [79768] = 5, + [93164] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5724), 1, - sym_identifier, - STATE(2595), 2, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5523), 1, + anon_sym_LBRACE, + STATE(853), 1, + sym_declaration_list, + STATE(3564), 1, + sym_where_clause, + STATE(3091), 2, sym_line_comment, sym_block_comment, - ACTIONS(5726), 3, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [79787] = 7, + [93187] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5523), 1, anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - STATE(1748), 1, - sym_block, - STATE(3620), 1, - sym_label, - STATE(2596), 2, + STATE(651), 1, + sym_declaration_list, + STATE(3621), 1, + sym_where_clause, + STATE(3092), 2, sym_line_comment, sym_block_comment, - [79810] = 7, + [93210] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, + ACTIONS(4621), 1, anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - STATE(1750), 1, - sym_block, - STATE(3620), 1, - sym_label, - STATE(2597), 2, + STATE(3353), 1, + sym_use_list, + ACTIONS(6623), 2, + sym_identifier, + sym_super, + STATE(3093), 2, sym_line_comment, sym_block_comment, - [79833] = 6, - ACTIONS(103), 1, + [93231] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(5728), 1, - anon_sym_DQUOTE, - STATE(2606), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5660), 2, - sym_string_content, - sym_escape_sequence, - STATE(2598), 2, + ACTIONS(6625), 1, + aux_sym_token_repetition_pattern_token1, + STATE(3094), 2, sym_line_comment, sym_block_comment, - [79854] = 7, + ACTIONS(6627), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [93250] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1229), 1, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5898), 1, anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - STATE(465), 1, - sym_block, - STATE(3619), 1, - sym_label, - STATE(2599), 2, + STATE(1613), 1, + sym_enum_variant_list, + STATE(3575), 1, + sym_where_clause, + STATE(3095), 2, sym_line_comment, sym_block_comment, - [79877] = 7, + [93273] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5461), 1, - anon_sym_GT, - ACTIONS(5463), 1, - anon_sym_COMMA, - ACTIONS(5666), 1, - anon_sym_EQ, - STATE(2795), 1, - aux_sym_type_parameters_repeat1, - STATE(2600), 2, + STATE(3096), 2, sym_line_comment, sym_block_comment, - [79900] = 7, + ACTIONS(947), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + [93290] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3291), 1, + ACTIONS(3733), 1, anon_sym_SQUOTE, - STATE(1753), 1, + STATE(3969), 1, sym_block, - STATE(3620), 1, + STATE(4045), 1, sym_label, - STATE(2601), 2, - sym_line_comment, - sym_block_comment, - [79923] = 7, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5730), 1, - anon_sym_LPAREN, - ACTIONS(5732), 1, - anon_sym_LBRACK, - ACTIONS(5734), 1, - anon_sym_LBRACE, - STATE(1024), 1, - sym_delim_token_tree, - STATE(2602), 2, + STATE(3097), 2, sym_line_comment, sym_block_comment, - [79946] = 7, + [93313] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3291), 1, + ACTIONS(3733), 1, anon_sym_SQUOTE, - STATE(1756), 1, + STATE(3940), 1, sym_block, - STATE(3620), 1, + STATE(4045), 1, sym_label, - STATE(2603), 2, + STATE(3098), 2, sym_line_comment, sym_block_comment, - [79969] = 7, + [93336] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - STATE(1567), 1, - sym_block, - STATE(3620), 1, - sym_label, - STATE(2604), 2, + ACTIONS(6223), 1, + anon_sym_GT, + ACTIONS(6225), 1, + anon_sym_COMMA, + ACTIONS(6431), 1, + anon_sym_EQ, + STATE(3200), 1, + aux_sym_type_parameters_repeat1, + STATE(3099), 2, sym_line_comment, sym_block_comment, - [79992] = 7, + [93359] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3291), 1, + ACTIONS(3733), 1, anon_sym_SQUOTE, - STATE(1759), 1, + STATE(3982), 1, sym_block, - STATE(3620), 1, + STATE(4045), 1, sym_label, - STATE(2605), 2, + STATE(3100), 2, sym_line_comment, sym_block_comment, - [80015] = 6, + [93382] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5736), 1, - anon_sym_DQUOTE, - STATE(2734), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5660), 2, - sym_string_content, - sym_escape_sequence, - STATE(2606), 2, + ACTIONS(5042), 1, + anon_sym_LT2, + STATE(3523), 1, + sym_type_arguments, + ACTIONS(6448), 2, + sym_identifier, + sym_super, + STATE(3101), 2, sym_line_comment, sym_block_comment, - [80036] = 7, + [93403] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5730), 1, - anon_sym_LPAREN, - ACTIONS(5732), 1, - anon_sym_LBRACK, - ACTIONS(5734), 1, - anon_sym_LBRACE, - STATE(1026), 1, - sym_delim_token_tree, - STATE(2607), 2, + ACTIONS(6629), 1, + anon_sym_in, + STATE(3102), 2, sym_line_comment, sym_block_comment, - [80059] = 7, + ACTIONS(6631), 3, + sym_self, + sym_super, + sym_crate, + [93422] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(5195), 1, - sym_super, - ACTIONS(5720), 1, - sym_identifier, - STATE(3158), 1, - sym_type_arguments, - STATE(2608), 2, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + STATE(4045), 1, + sym_label, + STATE(4089), 1, + sym_block, + STATE(3103), 2, sym_line_comment, sym_block_comment, - [80082] = 7, + [93445] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, + ACTIONS(5042), 1, anon_sym_LT2, - ACTIONS(5195), 1, - sym_super, - ACTIONS(5720), 1, - sym_identifier, - STATE(3311), 1, + STATE(3478), 1, sym_type_arguments, - STATE(2609), 2, + ACTIONS(6448), 2, + sym_identifier, + sym_super, + STATE(3104), 2, sym_line_comment, sym_block_comment, - [80105] = 7, + [93466] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1499), 1, - anon_sym_RPAREN, - ACTIONS(5039), 1, + ACTIONS(5608), 1, anon_sym_PLUS, - ACTIONS(5486), 1, + ACTIONS(6291), 1, + anon_sym_RPAREN, + ACTIONS(6293), 1, anon_sym_COMMA, - STATE(2869), 1, + STATE(3293), 1, aux_sym_parameters_repeat1, - STATE(2610), 2, + STATE(3105), 2, sym_line_comment, sym_block_comment, - [80128] = 7, + [93489] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5738), 1, + ACTIONS(5036), 1, anon_sym_LPAREN, - ACTIONS(5740), 1, - anon_sym_LBRACK, - ACTIONS(5742), 1, - anon_sym_LBRACE, - STATE(2636), 1, - sym_token_tree, - STATE(2611), 2, + ACTIONS(5487), 1, + anon_sym_LT, + STATE(2497), 1, + sym_parameters, + STATE(3607), 1, + sym_type_parameters, + STATE(3106), 2, sym_line_comment, sym_block_comment, - [80151] = 5, + [93512] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4507), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5744), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2612), 2, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + STATE(339), 1, + sym_block, + STATE(3944), 1, + sym_label, + STATE(3107), 2, sym_line_comment, sym_block_comment, - [80170] = 7, + [93535] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3291), 1, + ACTIONS(3733), 1, anon_sym_SQUOTE, - STATE(1776), 1, + STATE(4039), 1, sym_block, - STATE(3620), 1, + STATE(4045), 1, sym_label, - STATE(2613), 2, + STATE(3108), 2, sym_line_comment, sym_block_comment, - [80193] = 5, + [93558] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5746), 1, - anon_sym_COLON_COLON, - STATE(2614), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4720), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [80212] = 7, - ACTIONS(19), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3291), 1, + ACTIONS(3733), 1, anon_sym_SQUOTE, - STATE(385), 1, - sym_block, - STATE(3355), 1, + STATE(4045), 1, sym_label, - STATE(2615), 2, + STATE(4050), 1, + sym_block, + STATE(3109), 2, sym_line_comment, sym_block_comment, - [80235] = 7, + [93581] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3297), 1, - anon_sym_LPAREN, - ACTIONS(4503), 1, - anon_sym_LT2, - STATE(1119), 1, - sym_parameters, - STATE(1955), 1, - sym_type_arguments, - STATE(2616), 2, + ACTIONS(5473), 1, + anon_sym_LBRACE, + ACTIONS(5489), 1, + anon_sym_where, + STATE(1587), 1, + sym_declaration_list, + STATE(3623), 1, + sym_where_clause, + STATE(3110), 2, sym_line_comment, sym_block_comment, - [80258] = 7, - ACTIONS(103), 1, + [93604] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - STATE(1782), 1, - sym_block, - STATE(3620), 1, - sym_label, - STATE(2617), 2, + ACTIONS(6633), 1, + aux_sym_token_repetition_pattern_token1, + STATE(3111), 2, sym_line_comment, sym_block_comment, - [80281] = 7, + ACTIONS(6635), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [93623] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5748), 1, + ACTIONS(6111), 1, + anon_sym_PIPE, + ACTIONS(6637), 1, anon_sym_RPAREN, - ACTIONS(5750), 1, + ACTIONS(6639), 1, anon_sym_COMMA, - STATE(2923), 1, - aux_sym_ordered_field_declaration_list_repeat1, - STATE(2618), 2, + STATE(3286), 1, + aux_sym_slice_pattern_repeat1, + STATE(3112), 2, sym_line_comment, sym_block_comment, - [80304] = 6, + [93646] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5752), 1, - anon_sym_DQUOTE, - STATE(2623), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5660), 2, - sym_string_content, - sym_escape_sequence, - STATE(2619), 2, + ACTIONS(6111), 1, + anon_sym_PIPE, + ACTIONS(6641), 1, + anon_sym_RPAREN, + ACTIONS(6643), 1, + anon_sym_COMMA, + STATE(3282), 1, + aux_sym_slice_pattern_repeat1, + STATE(3113), 2, sym_line_comment, sym_block_comment, - [80325] = 7, + [93669] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(407), 1, - anon_sym_LBRACE, - ACTIONS(3291), 1, + ACTIONS(3733), 1, anon_sym_SQUOTE, - STATE(1788), 1, + STATE(394), 1, sym_block, - STATE(3620), 1, + STATE(3944), 1, sym_label, - STATE(2620), 2, + STATE(3114), 2, sym_line_comment, sym_block_comment, - [80348] = 7, + [93692] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(5363), 1, + ACTIONS(343), 1, anon_sym_LBRACE, - STATE(594), 1, - sym_enum_variant_list, - STATE(3131), 1, - sym_where_clause, - STATE(2621), 2, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + STATE(3950), 1, + sym_block, + STATE(4045), 1, + sym_label, + STATE(3115), 2, sym_line_comment, sym_block_comment, - [80371] = 7, + [93715] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5754), 1, - anon_sym_LPAREN, - ACTIONS(5756), 1, - anon_sym_LBRACK, - ACTIONS(5758), 1, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5517), 1, anon_sym_LBRACE, - STATE(1792), 1, - sym_delim_token_tree, - STATE(2622), 2, + STATE(1581), 1, + sym_field_declaration_list, + STATE(3625), 1, + sym_where_clause, + STATE(3116), 2, sym_line_comment, sym_block_comment, - [80394] = 6, + [93738] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5760), 1, - anon_sym_DQUOTE, - STATE(2734), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5660), 2, - sym_string_content, - sym_escape_sequence, - STATE(2623), 2, + ACTIONS(5036), 1, + anon_sym_LPAREN, + ACTIONS(5487), 1, + anon_sym_LT, + STATE(2522), 1, + sym_parameters, + STATE(3731), 1, + sym_type_parameters, + STATE(3117), 2, sym_line_comment, sym_block_comment, - [80415] = 7, + [93761] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5754), 1, + ACTIONS(6591), 1, anon_sym_LPAREN, - ACTIONS(5756), 1, + ACTIONS(6593), 1, anon_sym_LBRACK, - ACTIONS(5758), 1, + ACTIONS(6595), 1, anon_sym_LBRACE, - STATE(1795), 1, + STATE(400), 1, sym_delim_token_tree, - STATE(2624), 2, + STATE(3118), 2, + sym_line_comment, + sym_block_comment, + [93784] = 5, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(6645), 1, + aux_sym_token_repetition_pattern_token1, + STATE(3119), 2, sym_line_comment, sym_block_comment, - [80438] = 7, + ACTIONS(6647), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [93803] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(5654), 1, - sym_super, - ACTIONS(5762), 1, - sym_identifier, - STATE(3158), 1, - sym_type_arguments, - STATE(2625), 2, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + STATE(383), 1, + sym_block, + STATE(3944), 1, + sym_label, + STATE(3120), 2, sym_line_comment, sym_block_comment, - [80461] = 7, + [93826] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(5654), 1, - sym_super, - ACTIONS(5762), 1, - sym_identifier, - STATE(3311), 1, - sym_type_arguments, - STATE(2626), 2, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(6649), 1, + anon_sym_RPAREN, + ACTIONS(6651), 1, + anon_sym_COMMA, + STATE(3413), 1, + aux_sym_ordered_field_declaration_list_repeat1, + STATE(3121), 2, sym_line_comment, sym_block_comment, - [80484] = 7, + [93849] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3291), 1, + ACTIONS(3733), 1, anon_sym_SQUOTE, - STATE(1422), 1, + STATE(1656), 1, sym_block, - STATE(3569), 1, + STATE(4045), 1, sym_label, - STATE(2627), 2, + STATE(3122), 2, sym_line_comment, sym_block_comment, - [80507] = 5, + [93872] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5764), 1, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(6331), 1, anon_sym_COLON_COLON, - STATE(2628), 2, + ACTIONS(6653), 1, + anon_sym_for, + STATE(2221), 1, + sym_type_arguments, + STATE(3123), 2, sym_line_comment, sym_block_comment, - ACTIONS(4720), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [80526] = 7, + [93895] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, ACTIONS(343), 1, anon_sym_LBRACE, - ACTIONS(3291), 1, + ACTIONS(3733), 1, anon_sym_SQUOTE, - STATE(1427), 1, - sym_block, - STATE(3569), 1, + STATE(4045), 1, sym_label, - STATE(2629), 2, + STATE(4113), 1, + sym_block, + STATE(3124), 2, sym_line_comment, sym_block_comment, - [80549] = 6, + [93918] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5766), 1, - anon_sym_DQUOTE, - STATE(2631), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5660), 2, - sym_string_content, - sym_escape_sequence, - STATE(2630), 2, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + STATE(4045), 1, + sym_label, + STATE(4108), 1, + sym_block, + STATE(3125), 2, sym_line_comment, sym_block_comment, - [80570] = 6, + [93941] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5768), 1, - anon_sym_DQUOTE, - STATE(2734), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5660), 2, - sym_string_content, - sym_escape_sequence, - STATE(2631), 2, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(6655), 1, + anon_sym_SEMI, + STATE(4022), 1, + sym_where_clause, + STATE(3126), 2, sym_line_comment, sym_block_comment, - [80591] = 5, + [93964] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5770), 1, - anon_sym_COLON_COLON, - STATE(2632), 2, + ACTIONS(343), 1, + anon_sym_LBRACE, + ACTIONS(3733), 1, + anon_sym_SQUOTE, + STATE(4045), 1, + sym_label, + STATE(4102), 1, + sym_block, + STATE(3127), 2, sym_line_comment, sym_block_comment, - ACTIONS(4720), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [80610] = 7, + [93987] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(5654), 1, - sym_super, - ACTIONS(5772), 1, - sym_identifier, - STATE(3158), 1, - sym_type_arguments, - STATE(2633), 2, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(5523), 1, + anon_sym_LBRACE, + STATE(521), 1, + sym_declaration_list, + STATE(3550), 1, + sym_where_clause, + STATE(3128), 2, sym_line_comment, sym_block_comment, - [80633] = 7, + [94010] = 7, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, + ACTIONS(5042), 1, anon_sym_LT2, - ACTIONS(5654), 1, - sym_super, - ACTIONS(5772), 1, - sym_identifier, - STATE(3311), 1, + ACTIONS(5066), 1, + anon_sym_BANG, + ACTIONS(5151), 1, + anon_sym_COLON_COLON, + STATE(2226), 1, sym_type_arguments, - STATE(2634), 2, + STATE(3129), 2, sym_line_comment, sym_block_comment, - [80656] = 6, + [94033] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5774), 1, - anon_sym_DQUOTE, - STATE(2702), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5660), 2, - sym_string_content, - sym_escape_sequence, - STATE(2635), 2, + ACTIONS(925), 1, + anon_sym_RPAREN, + ACTIONS(6657), 1, + anon_sym_COMMA, + STATE(2923), 1, + aux_sym_arguments_repeat1, + STATE(3130), 2, sym_line_comment, sym_block_comment, - [80677] = 4, + [94053] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2636), 2, + ACTIONS(6661), 1, + anon_sym_EQ, + ACTIONS(6659), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3131), 2, sym_line_comment, sym_block_comment, - ACTIONS(5776), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - [80694] = 7, + [94071] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - STATE(1426), 1, - sym_block, - STATE(3569), 1, - sym_label, - STATE(2637), 2, + STATE(3132), 2, sym_line_comment, sym_block_comment, - [80717] = 5, + ACTIONS(5387), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [94087] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5482), 1, - anon_sym_PIPE, - STATE(2638), 2, + STATE(3133), 2, sym_line_comment, sym_block_comment, - ACTIONS(5778), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [80736] = 7, + ACTIONS(5389), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [94103] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(5642), 1, - sym_super, - ACTIONS(5780), 1, - sym_identifier, - STATE(3158), 1, - sym_type_arguments, - STATE(2639), 2, + ACTIONS(6663), 1, + anon_sym_RBRACE, + ACTIONS(6665), 1, + anon_sym_COMMA, + STATE(3237), 1, + aux_sym_field_initializer_list_repeat1, + STATE(3134), 2, sym_line_comment, sym_block_comment, - [80759] = 7, + [94123] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(5642), 1, - sym_super, - ACTIONS(5780), 1, - sym_identifier, - STATE(3311), 1, - sym_type_arguments, - STATE(2640), 2, + ACTIONS(5473), 1, + anon_sym_LBRACE, + ACTIONS(6667), 1, + anon_sym_SEMI, + STATE(1571), 1, + sym_declaration_list, + STATE(3135), 2, sym_line_comment, sym_block_comment, - [80782] = 5, + [94143] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5782), 1, - anon_sym_COMMA, - ACTIONS(5778), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(2641), 3, + ACTIONS(6669), 1, + sym_identifier, + ACTIONS(6671), 1, + anon_sym_ref, + ACTIONS(6673), 1, + sym_mutable_specifier, + STATE(3136), 2, sym_line_comment, sym_block_comment, - aux_sym_slice_pattern_repeat1, - [80801] = 7, + [94163] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5785), 1, - anon_sym_SEMI, - STATE(3389), 1, - sym_where_clause, - STATE(2642), 2, + STATE(3137), 2, sym_line_comment, sym_block_comment, - [80824] = 7, + ACTIONS(5409), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [94179] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(5195), 1, - sym_super, - ACTIONS(5762), 1, - sym_identifier, - STATE(3158), 1, - sym_type_arguments, - STATE(2643), 2, + STATE(3138), 2, sym_line_comment, sym_block_comment, - [80847] = 7, + ACTIONS(5459), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [94195] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(5195), 1, - sym_super, - ACTIONS(5762), 1, - sym_identifier, - STATE(3311), 1, - sym_type_arguments, - STATE(2644), 2, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(6675), 1, + anon_sym_SEMI, + STATE(4019), 1, + sym_where_clause, + STATE(3139), 2, sym_line_comment, sym_block_comment, - [80870] = 7, + [94215] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(5654), 1, - sym_super, - ACTIONS(5787), 1, + ACTIONS(6677), 1, sym_identifier, - STATE(3158), 1, - sym_type_arguments, - STATE(2645), 2, + ACTIONS(6679), 1, + anon_sym_ref, + ACTIONS(6681), 1, + sym_mutable_specifier, + STATE(3140), 2, sym_line_comment, sym_block_comment, - [80893] = 7, + [94235] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4950), 1, - anon_sym_LBRACE, - STATE(725), 1, - sym_declaration_list, - STATE(3276), 1, - sym_where_clause, - STATE(2646), 2, + STATE(3141), 2, sym_line_comment, sym_block_comment, - [80916] = 7, + ACTIONS(5363), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [94251] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(5654), 1, - sym_super, - ACTIONS(5789), 1, - sym_identifier, - STATE(3158), 1, - sym_type_arguments, - STATE(2647), 2, + STATE(3142), 2, sym_line_comment, sym_block_comment, - [80939] = 7, + ACTIONS(5443), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [94267] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, + ACTIONS(5042), 1, anon_sym_LT2, - ACTIONS(5654), 1, - sym_super, - ACTIONS(5789), 1, - sym_identifier, - STATE(3311), 1, + ACTIONS(6683), 1, + anon_sym_for, + STATE(2219), 1, sym_type_arguments, - STATE(2648), 2, + STATE(3143), 2, sym_line_comment, sym_block_comment, - [80962] = 7, + [94287] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(5654), 1, - sym_super, - ACTIONS(5791), 1, - sym_identifier, - STATE(3158), 1, - sym_type_arguments, - STATE(2649), 2, + STATE(3144), 2, sym_line_comment, sym_block_comment, - [80985] = 7, + ACTIONS(5441), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [94303] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(5654), 1, - sym_super, - ACTIONS(5791), 1, - sym_identifier, - STATE(3311), 1, - sym_type_arguments, - STATE(2650), 2, + STATE(3145), 2, sym_line_comment, sym_block_comment, - [81008] = 7, + ACTIONS(5361), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [94319] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, + ACTIONS(5042), 1, anon_sym_LT2, - ACTIONS(5195), 1, - sym_super, - ACTIONS(5791), 1, - sym_identifier, - STATE(3158), 1, + ACTIONS(6685), 1, + anon_sym_for, + STATE(2219), 1, sym_type_arguments, - STATE(2651), 2, + STATE(3146), 2, sym_line_comment, sym_block_comment, - [81031] = 7, + [94339] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, + ACTIONS(5042), 1, anon_sym_LT2, - ACTIONS(5195), 1, - sym_super, - ACTIONS(5791), 1, - sym_identifier, - STATE(3311), 1, + ACTIONS(6687), 1, + anon_sym_for, + STATE(2219), 1, sym_type_arguments, - STATE(2652), 2, + STATE(3147), 2, sym_line_comment, sym_block_comment, - [81054] = 4, + [94359] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2653), 2, + ACTIONS(5487), 1, + anon_sym_LT, + ACTIONS(6689), 1, + anon_sym_EQ, + STATE(4099), 1, + sym_type_parameters, + STATE(3148), 2, sym_line_comment, sym_block_comment, - ACTIONS(3257), 4, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - [81071] = 7, + [94379] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1601), 1, - anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - STATE(2111), 1, - sym_block, - STATE(3611), 1, - sym_label, - STATE(2654), 2, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(6691), 1, + anon_sym_SEMI, + STATE(4037), 1, + sym_where_clause, + STATE(3149), 2, sym_line_comment, sym_block_comment, - [81094] = 7, + [94399] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3305), 1, - anon_sym_LT2, - ACTIONS(5195), 1, - sym_super, - ACTIONS(5793), 1, - sym_identifier, - STATE(1373), 1, - sym_type_arguments, - STATE(2655), 2, + STATE(3150), 2, sym_line_comment, sym_block_comment, - [81117] = 7, + ACTIONS(5365), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [94415] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1229), 1, - anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - STATE(464), 1, - sym_block, - STATE(3619), 1, - sym_label, - STATE(2656), 2, + STATE(3151), 2, sym_line_comment, sym_block_comment, - [81140] = 6, + ACTIONS(5391), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [94431] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4517), 1, - anon_sym_DOT_DOT, - ACTIONS(5225), 1, - anon_sym_COLON_COLON, - ACTIONS(4519), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2657), 2, + ACTIONS(6693), 1, + anon_sym_RBRACE, + ACTIONS(6695), 1, + anon_sym_COMMA, + STATE(3412), 1, + aux_sym_field_declaration_list_repeat1, + STATE(3152), 2, sym_line_comment, sym_block_comment, - [81161] = 7, + [94451] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4497), 1, - anon_sym_LPAREN, - ACTIONS(4944), 1, - anon_sym_LT, - STATE(2207), 1, - sym_parameters, - STATE(3323), 1, - sym_type_parameters, - STATE(2658), 2, + STATE(3153), 2, sym_line_comment, sym_block_comment, - [81184] = 7, + ACTIONS(5415), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [94467] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(4553), 1, - anon_sym_BANG, - ACTIONS(4587), 1, - anon_sym_COLON_COLON, - STATE(1952), 1, - sym_type_arguments, - STATE(2659), 2, + ACTIONS(963), 1, + anon_sym_RBRACK, + ACTIONS(4605), 1, + anon_sym_COMMA, + STATE(2923), 1, + aux_sym_arguments_repeat1, + STATE(3154), 2, sym_line_comment, sym_block_comment, - [81207] = 7, + [94487] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4497), 1, - anon_sym_LPAREN, - ACTIONS(4944), 1, - anon_sym_LT, - STATE(2211), 1, - sym_parameters, - STATE(3235), 1, - sym_type_parameters, - STATE(2660), 2, + STATE(3155), 2, sym_line_comment, sym_block_comment, - [81230] = 5, + ACTIONS(5393), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [94503] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_PLUS, - STATE(2661), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5795), 3, + ACTIONS(3403), 1, anon_sym_RPAREN, - anon_sym_PIPE, + ACTIONS(6697), 1, anon_sym_COMMA, - [81249] = 5, + STATE(3457), 1, + aux_sym_tuple_pattern_repeat1, + STATE(3156), 2, + sym_line_comment, + sym_block_comment, + [94523] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5797), 1, - anon_sym_in, - STATE(2662), 2, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(5513), 1, + anon_sym_for, + STATE(2219), 1, + sym_type_arguments, + STATE(3157), 2, sym_line_comment, sym_block_comment, - ACTIONS(5799), 3, - sym_self, - sym_super, - sym_crate, - [81268] = 7, + [94543] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5801), 1, - anon_sym_LBRACE, - ACTIONS(5803), 1, - anon_sym_for, - ACTIONS(5805), 1, - anon_sym_loop, - ACTIONS(5807), 1, - anon_sym_while, - STATE(2663), 2, + ACTIONS(3479), 1, + anon_sym_RBRACK, + ACTIONS(6699), 1, + anon_sym_COMMA, + STATE(2957), 1, + aux_sym_slice_pattern_repeat1, + STATE(3158), 2, sym_line_comment, sym_block_comment, - [81291] = 4, + [94563] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2664), 2, + STATE(3159), 2, sym_line_comment, sym_block_comment, - ACTIONS(5603), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SQUOTE, - [81308] = 6, + ACTIONS(5419), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [94579] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4664), 1, - anon_sym_DOT_DOT, - ACTIONS(5809), 1, - anon_sym_COLON_COLON, - ACTIONS(4666), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2665), 2, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(6701), 1, + anon_sym_for, + STATE(2219), 1, + sym_type_arguments, + STATE(3160), 2, sym_line_comment, sym_block_comment, - [81329] = 7, + [94599] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4950), 1, - anon_sym_LBRACE, - STATE(681), 1, - sym_declaration_list, - STATE(3284), 1, - sym_where_clause, - STATE(2666), 2, + STATE(3161), 2, sym_line_comment, sym_block_comment, - [81352] = 6, + ACTIONS(5427), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [94615] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5043), 1, - anon_sym_COLON, - STATE(2832), 1, - sym_trait_bounds, - ACTIONS(5811), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(2667), 2, + ACTIONS(5487), 1, + anon_sym_LT, + ACTIONS(5636), 1, + anon_sym_EQ, + STATE(4081), 1, + sym_type_parameters, + STATE(3162), 2, sym_line_comment, sym_block_comment, - [81373] = 7, + [94635] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3305), 1, - anon_sym_LT2, - ACTIONS(3525), 1, - anon_sym_COLON_COLON, - ACTIONS(4832), 1, - anon_sym_BANG, - STATE(1087), 1, - sym_type_arguments, - STATE(2668), 2, + STATE(3163), 2, sym_line_comment, sym_block_comment, - [81396] = 7, + ACTIONS(5383), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [94651] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5482), 1, - anon_sym_PIPE, - ACTIONS(5814), 1, - anon_sym_RPAREN, - ACTIONS(5816), 1, + ACTIONS(6703), 1, + anon_sym_RBRACE, + ACTIONS(6705), 1, anon_sym_COMMA, - STATE(2995), 1, - aux_sym_slice_pattern_repeat1, - STATE(2669), 2, + STATE(3284), 1, + aux_sym_struct_pattern_repeat1, + STATE(3164), 2, sym_line_comment, sym_block_comment, - [81419] = 7, + [94671] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5482), 1, - anon_sym_PIPE, - ACTIONS(5818), 1, - anon_sym_RBRACK, - ACTIONS(5820), 1, - anon_sym_COMMA, - STATE(2943), 1, - aux_sym_slice_pattern_repeat1, - STATE(2670), 2, + ACTIONS(3894), 1, + anon_sym_LBRACE, + ACTIONS(6707), 1, + anon_sym_COLON_COLON, + STATE(1661), 1, + sym_field_initializer_list, + STATE(3165), 2, sym_line_comment, sym_block_comment, - [81442] = 7, + [94691] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5478), 1, - anon_sym_RPAREN, - ACTIONS(5482), 1, - anon_sym_PIPE, - ACTIONS(5484), 1, - anon_sym_COMMA, - STATE(2987), 1, - aux_sym_slice_pattern_repeat1, - STATE(2671), 2, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(6709), 1, + anon_sym_SEMI, + STATE(3930), 1, + sym_where_clause, + STATE(3166), 2, sym_line_comment, sym_block_comment, - [81465] = 7, + [94711] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - STATE(3461), 1, - sym_block, - STATE(3569), 1, - sym_label, - STATE(2672), 2, - sym_line_comment, - sym_block_comment, - [81488] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5822), 1, - aux_sym_token_repetition_pattern_token1, - STATE(2673), 2, + STATE(3167), 2, sym_line_comment, sym_block_comment, - ACTIONS(5824), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [81507] = 7, + ACTIONS(5367), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [94727] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4497), 1, - anon_sym_LPAREN, - ACTIONS(4944), 1, - anon_sym_LT, - STATE(2216), 1, - sym_parameters, - STATE(3261), 1, - sym_type_parameters, - STATE(2674), 2, + ACTIONS(6711), 1, + anon_sym_RBRACE, + ACTIONS(6713), 1, + anon_sym_COMMA, + STATE(3288), 1, + aux_sym_struct_pattern_repeat1, + STATE(3168), 2, sym_line_comment, sym_block_comment, - [81530] = 4, + [94747] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2675), 2, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(5592), 1, + anon_sym_for, + STATE(2219), 1, + sym_type_arguments, + STATE(3169), 2, sym_line_comment, sym_block_comment, - ACTIONS(989), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - [81547] = 7, + [94767] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - STATE(1443), 1, - sym_block, - STATE(3569), 1, - sym_label, - STATE(2676), 2, + ACTIONS(3597), 1, + anon_sym_RPAREN, + ACTIONS(6715), 1, + anon_sym_COMMA, + STATE(3382), 1, + aux_sym_tuple_type_repeat1, + STATE(3170), 2, sym_line_comment, sym_block_comment, - [81570] = 7, + [94787] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5179), 1, - anon_sym_LPAREN, - ACTIONS(5181), 1, - anon_sym_LBRACK, - ACTIONS(5185), 1, - anon_sym_LBRACE, - STATE(1494), 1, - sym_delim_token_tree, - STATE(2677), 2, + STATE(3171), 2, sym_line_comment, sym_block_comment, - [81593] = 7, + ACTIONS(5395), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [94803] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, + ACTIONS(5608), 1, anon_sym_PLUS, - ACTIONS(5826), 1, + ACTIONS(6717), 1, anon_sym_SEMI, - ACTIONS(5828), 1, + ACTIONS(6719), 1, anon_sym_EQ, - ACTIONS(5830), 1, - anon_sym_else, - STATE(2678), 2, + STATE(3172), 2, sym_line_comment, sym_block_comment, - [81616] = 7, + [94823] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - STATE(1446), 1, - sym_block, - STATE(3569), 1, - sym_label, - STATE(2679), 2, + STATE(3173), 2, sym_line_comment, sym_block_comment, - [81639] = 7, + ACTIONS(5305), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [94839] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5832), 1, - anon_sym_SEMI, - ACTIONS(5834), 1, - anon_sym_EQ, - ACTIONS(5836), 1, - anon_sym_else, - STATE(2680), 2, + STATE(3174), 2, sym_line_comment, sym_block_comment, - [81662] = 7, + ACTIONS(5457), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [94855] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - STATE(1098), 1, - sym_block, - STATE(3569), 1, - sym_label, - STATE(2681), 2, + ACTIONS(6291), 1, + anon_sym_RPAREN, + ACTIONS(6293), 1, + anon_sym_COMMA, + STATE(3293), 1, + aux_sym_parameters_repeat1, + STATE(3175), 2, sym_line_comment, sym_block_comment, - [81685] = 7, + [94875] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, + ACTIONS(5489), 1, anon_sym_where, - ACTIONS(4976), 1, - anon_sym_LBRACE, - STATE(1141), 1, - sym_field_declaration_list, - STATE(3238), 1, + ACTIONS(6721), 1, + anon_sym_SEMI, + STATE(3937), 1, sym_where_clause, - STATE(2682), 2, + STATE(3176), 2, sym_line_comment, sym_block_comment, - [81708] = 5, + [94895] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5722), 1, - anon_sym_COLON_COLON, - STATE(2683), 2, + STATE(3177), 2, sym_line_comment, sym_block_comment, - ACTIONS(4802), 3, + ACTIONS(5429), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [81727] = 7, + [94911] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5838), 1, - anon_sym_LBRACE, - ACTIONS(5840), 1, - anon_sym_for, - ACTIONS(5842), 1, - anon_sym_loop, - ACTIONS(5844), 1, - anon_sym_while, - STATE(2684), 2, + STATE(3178), 2, sym_line_comment, sym_block_comment, - [81750] = 5, - ACTIONS(3), 1, + ACTIONS(5385), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [94927] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5846), 1, - aux_sym_token_repetition_pattern_token1, - STATE(2685), 2, + STATE(3179), 2, sym_line_comment, sym_block_comment, - ACTIONS(5848), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [81769] = 7, + ACTIONS(5455), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [94943] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5850), 1, - anon_sym_SEMI, - STATE(3465), 1, - sym_where_clause, - STATE(2686), 2, + STATE(3180), 2, sym_line_comment, sym_block_comment, - [81792] = 7, + ACTIONS(5277), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [94959] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, + ACTIONS(5042), 1, anon_sym_LT2, - ACTIONS(5674), 1, - anon_sym_COLON_COLON, - ACTIONS(5852), 1, + ACTIONS(5493), 1, anon_sym_for, - STATE(1953), 1, + STATE(2219), 1, sym_type_arguments, - STATE(2687), 2, + STATE(3181), 2, sym_line_comment, sym_block_comment, - [81815] = 7, + [94979] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(6723), 1, + anon_sym_LPAREN, + ACTIONS(6725), 1, + anon_sym_LBRACK, + ACTIONS(6727), 1, anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - STATE(3368), 1, - sym_block, - STATE(3569), 1, - sym_label, - STATE(2688), 2, + STATE(3182), 2, sym_line_comment, sym_block_comment, - [81838] = 5, + [94999] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4507), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5854), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2689), 2, + ACTIONS(6729), 1, + anon_sym_LPAREN, + ACTIONS(6731), 1, + anon_sym_LBRACK, + ACTIONS(6733), 1, + anon_sym_LBRACE, + STATE(3183), 2, sym_line_comment, sym_block_comment, - [81857] = 5, + [95019] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5856), 1, - anon_sym_COLON, - STATE(2690), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4856), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [81876] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5858), 1, - aux_sym_token_repetition_pattern_token1, - STATE(2691), 2, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(6735), 1, + anon_sym_SEMI, + ACTIONS(6737), 1, + anon_sym_EQ, + STATE(3184), 2, sym_line_comment, sym_block_comment, - ACTIONS(5860), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [81895] = 7, + [95039] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4956), 1, - anon_sym_LBRACE, - STATE(1242), 1, - sym_declaration_list, - STATE(3278), 1, - sym_where_clause, - STATE(2692), 2, + STATE(3185), 2, sym_line_comment, sym_block_comment, - [81918] = 7, + ACTIONS(5369), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [95055] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1501), 1, - anon_sym_RPAREN, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5622), 1, - anon_sym_COMMA, - STATE(2897), 1, - aux_sym_parameters_repeat1, - STATE(2693), 2, + STATE(3186), 2, sym_line_comment, sym_block_comment, - [81941] = 7, + ACTIONS(5371), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [95071] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4497), 1, - anon_sym_LPAREN, - ACTIONS(4944), 1, - anon_sym_LT, - STATE(2222), 1, - sym_parameters, - STATE(3275), 1, - sym_type_parameters, - STATE(2694), 2, + STATE(3187), 2, sym_line_comment, sym_block_comment, - [81964] = 7, + ACTIONS(5453), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [95087] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - STATE(1467), 1, - sym_block, - STATE(3569), 1, - sym_label, - STATE(2695), 2, + ACTIONS(6739), 1, + anon_sym_move, + STATE(222), 1, + sym_closure_parameters, + STATE(3188), 2, sym_line_comment, sym_block_comment, - [81987] = 7, + [95107] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - STATE(3447), 1, - sym_block, - STATE(3569), 1, - sym_label, - STATE(2696), 2, + ACTIONS(6741), 1, + anon_sym_RBRACE, + ACTIONS(6743), 1, + anon_sym_COMMA, + STATE(3299), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3189), 2, sym_line_comment, sym_block_comment, - [82010] = 7, + [95127] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(5473), 1, anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - STATE(3452), 1, - sym_block, - STATE(3569), 1, - sym_label, - STATE(2697), 2, + ACTIONS(6745), 1, + anon_sym_SEMI, + STATE(1600), 1, + sym_declaration_list, + STATE(3190), 2, sym_line_comment, sym_block_comment, - [82033] = 7, + [95147] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(5043), 1, - anon_sym_COLON, - STATE(1955), 1, - sym_type_arguments, - STATE(2725), 1, - sym_trait_bounds, - STATE(2698), 2, + ACTIONS(6223), 1, + anon_sym_GT, + ACTIONS(6225), 1, + anon_sym_COMMA, + STATE(3200), 1, + aux_sym_type_parameters_repeat1, + STATE(3191), 2, sym_line_comment, sym_block_comment, - [82056] = 5, + [95167] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5746), 1, - anon_sym_COLON_COLON, - STATE(2699), 2, + STATE(3192), 2, sym_line_comment, sym_block_comment, - ACTIONS(4734), 3, + ACTIONS(5445), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [82075] = 7, + [95183] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5482), 1, + ACTIONS(6747), 1, + anon_sym_EQ_GT, + ACTIONS(6749), 1, anon_sym_PIPE, - ACTIONS(5862), 1, - anon_sym_RPAREN, - ACTIONS(5864), 1, - anon_sym_COMMA, - STATE(2825), 1, - aux_sym_slice_pattern_repeat1, - STATE(2700), 2, + ACTIONS(6751), 1, + anon_sym_if, + STATE(3193), 2, sym_line_comment, sym_block_comment, - [82098] = 7, + [95203] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5866), 1, - anon_sym_SEMI, - STATE(3498), 1, - sym_where_clause, - STATE(2701), 2, + STATE(3194), 2, sym_line_comment, sym_block_comment, - [82121] = 6, + ACTIONS(5435), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [95219] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5868), 1, - anon_sym_DQUOTE, - STATE(2734), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5660), 2, - sym_string_content, - sym_escape_sequence, - STATE(2702), 2, + STATE(3195), 2, sym_line_comment, sym_block_comment, - [82142] = 7, + ACTIONS(5439), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [95235] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5179), 1, - anon_sym_LPAREN, - ACTIONS(5181), 1, - anon_sym_LBRACK, - ACTIONS(5185), 1, - anon_sym_LBRACE, - STATE(1475), 1, - sym_delim_token_tree, - STATE(2703), 2, + ACTIONS(6231), 1, + anon_sym_COMMA, + ACTIONS(6753), 1, + anon_sym_PIPE, + STATE(3283), 1, + aux_sym_closure_parameters_repeat1, + STATE(3196), 2, sym_line_comment, sym_block_comment, - [82165] = 7, + [95255] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(5417), 1, anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - STATE(3569), 1, - sym_label, - STATE(3590), 1, - sym_block, - STATE(2704), 2, + STATE(2219), 1, + sym_type_arguments, + STATE(3197), 2, sym_line_comment, sym_block_comment, - [82188] = 7, + [95275] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - STATE(3569), 1, - sym_label, - STATE(3592), 1, - sym_block, - STATE(2705), 2, + ACTIONS(5235), 1, + anon_sym_GT, + ACTIONS(6755), 1, + anon_sym_COMMA, + STATE(3420), 1, + aux_sym_type_parameters_repeat1, + STATE(3198), 2, sym_line_comment, sym_block_comment, - [82211] = 5, + [95295] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5331), 1, - anon_sym_PLUS, - STATE(2706), 2, + STATE(3199), 2, sym_line_comment, sym_block_comment, - ACTIONS(5870), 3, - anon_sym_COLON, + ACTIONS(5399), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [95311] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5237), 1, anon_sym_GT, + ACTIONS(6209), 1, anon_sym_COMMA, - [82230] = 7, + STATE(3420), 1, + aux_sym_type_parameters_repeat1, + STATE(3200), 2, + sym_line_comment, + sym_block_comment, + [95331] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(5523), 1, anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - STATE(3569), 1, - sym_label, - STATE(3591), 1, - sym_block, - STATE(2707), 2, + ACTIONS(6757), 1, + anon_sym_SEMI, + STATE(504), 1, + sym_declaration_list, + STATE(3201), 2, sym_line_comment, sym_block_comment, - [82253] = 7, + [95351] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3305), 1, - anon_sym_LT2, - ACTIONS(5195), 1, - sym_super, - ACTIONS(5872), 1, - sym_identifier, - STATE(1592), 1, - sym_type_arguments, - STATE(2708), 2, + ACTIONS(5237), 1, + anon_sym_GT, + ACTIONS(6209), 1, + anon_sym_COMMA, + STATE(3309), 1, + aux_sym_type_parameters_repeat1, + STATE(3202), 2, sym_line_comment, sym_block_comment, - [82276] = 5, + [95371] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5874), 1, - anon_sym_COMMA, - ACTIONS(4157), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(2709), 3, + STATE(3203), 2, sym_line_comment, sym_block_comment, - aux_sym_arguments_repeat1, - [82295] = 7, + ACTIONS(5401), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [95387] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - STATE(3569), 1, - sym_label, - STATE(3579), 1, - sym_block, - STATE(2710), 2, + STATE(3204), 2, sym_line_comment, sym_block_comment, - [82318] = 7, + ACTIONS(5433), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [95403] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4956), 1, + STATE(3205), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5044), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [95419] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5473), 1, anon_sym_LBRACE, - STATE(1256), 1, + ACTIONS(6759), 1, + anon_sym_SEMI, + STATE(1506), 1, sym_declaration_list, - STATE(3289), 1, - sym_where_clause, - STATE(2711), 2, + STATE(3206), 2, sym_line_comment, sym_block_comment, - [82341] = 5, + [95439] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5764), 1, - anon_sym_COLON_COLON, - STATE(2712), 2, + STATE(3207), 2, sym_line_comment, sym_block_comment, - ACTIONS(4734), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [82360] = 6, + ACTIONS(6761), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [95455] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5877), 1, - anon_sym_DQUOTE, - STATE(2734), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5660), 2, - sym_string_content, - sym_escape_sequence, - STATE(2713), 2, + STATE(3208), 2, sym_line_comment, sym_block_comment, - [82381] = 7, + ACTIONS(1001), 3, + anon_sym_COLON, + anon_sym_GT, + anon_sym_COMMA, + [95471] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3305), 1, - anon_sym_LT2, - ACTIONS(5195), 1, - sym_super, - ACTIONS(5872), 1, - sym_identifier, - STATE(1568), 1, - sym_type_arguments, - STATE(2714), 2, + ACTIONS(5900), 1, + anon_sym_PLUS, + ACTIONS(6763), 1, + anon_sym_GT, + ACTIONS(6765), 1, + anon_sym_as, + STATE(3209), 2, sym_line_comment, sym_block_comment, - [82404] = 7, + [95491] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, - anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - STATE(3533), 1, - sym_block, - STATE(3569), 1, - sym_label, - STATE(2715), 2, + STATE(3210), 2, sym_line_comment, sym_block_comment, - [82427] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + ACTIONS(6767), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [95507] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - STATE(398), 1, - sym_block, - STATE(3355), 1, - sym_label, - STATE(2716), 2, + ACTIONS(5523), 1, + anon_sym_LBRACE, + ACTIONS(6769), 1, + anon_sym_SEMI, + STATE(640), 1, + sym_declaration_list, + STATE(3211), 2, sym_line_comment, sym_block_comment, - [82450] = 6, + [95527] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4517), 1, - anon_sym_DOT_DOT, - ACTIONS(5231), 1, - anon_sym_COLON_COLON, - ACTIONS(4519), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2717), 2, + STATE(3212), 2, sym_line_comment, sym_block_comment, - [82471] = 5, + ACTIONS(6771), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [95543] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5770), 1, - anon_sym_COLON_COLON, - STATE(2718), 2, + ACTIONS(5523), 1, + anon_sym_LBRACE, + ACTIONS(6773), 1, + anon_sym_SEMI, + STATE(591), 1, + sym_declaration_list, + STATE(3213), 2, sym_line_comment, sym_block_comment, - ACTIONS(4734), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [82490] = 6, + [95563] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4175), 1, + ACTIONS(5523), 1, anon_sym_LBRACE, - STATE(2765), 1, - sym_use_list, - ACTIONS(5879), 2, - sym_identifier, - sym_super, - STATE(2719), 2, + ACTIONS(6775), 1, + anon_sym_SEMI, + STATE(594), 1, + sym_declaration_list, + STATE(3214), 2, sym_line_comment, sym_block_comment, - [82511] = 7, + [95583] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5881), 1, - anon_sym_LBRACE, - ACTIONS(5883), 1, - anon_sym_for, - ACTIONS(5885), 1, - anon_sym_loop, - ACTIONS(5887), 1, - anon_sym_while, - STATE(2720), 2, + STATE(3215), 2, sym_line_comment, sym_block_comment, - [82534] = 6, + ACTIONS(6777), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [95599] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5043), 1, - anon_sym_COLON, - STATE(3116), 1, - sym_trait_bounds, - ACTIONS(5626), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(2721), 2, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(6779), 1, + anon_sym_SEMI, + ACTIONS(6781), 1, + anon_sym_EQ, + STATE(3216), 2, sym_line_comment, sym_block_comment, - [82555] = 6, + [95619] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5043), 1, - anon_sym_COLON, - STATE(2832), 1, - sym_trait_bounds, - ACTIONS(5889), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(2722), 2, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(6783), 1, + anon_sym_COLON_COLON, + STATE(2226), 1, + sym_type_arguments, + STATE(3217), 2, sym_line_comment, sym_block_comment, - [82576] = 7, + [95639] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5482), 1, - anon_sym_PIPE, - ACTIONS(5891), 1, - anon_sym_RPAREN, - ACTIONS(5893), 1, - anon_sym_COMMA, - STATE(2828), 1, - aux_sym_slice_pattern_repeat1, - STATE(2723), 2, + ACTIONS(6785), 1, + anon_sym_AMP_AMP, + ACTIONS(4755), 2, + anon_sym_LBRACE, + anon_sym_SQUOTE, + STATE(3218), 2, sym_line_comment, sym_block_comment, - [82599] = 7, + [95657] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5482), 1, - anon_sym_PIPE, - ACTIONS(5895), 1, - anon_sym_RPAREN, - ACTIONS(5897), 1, + ACTIONS(6787), 1, + anon_sym_RBRACE, + ACTIONS(6789), 1, anon_sym_COMMA, - STATE(2868), 1, - aux_sym_tuple_pattern_repeat1, - STATE(2724), 2, + STATE(3321), 1, + aux_sym_field_declaration_list_repeat1, + STATE(3219), 2, sym_line_comment, sym_block_comment, - [82622] = 4, + [95677] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2725), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5899), 4, - anon_sym_SEMI, + ACTIONS(6785), 1, + anon_sym_AMP_AMP, + ACTIONS(6791), 2, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_SQUOTE, - [82639] = 4, + STATE(3220), 2, + sym_line_comment, + sym_block_comment, + [95695] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2726), 2, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(6793), 1, + anon_sym_SEMI, + STATE(3966), 1, + sym_where_clause, + STATE(3221), 2, sym_line_comment, sym_block_comment, - ACTIONS(5901), 4, + [95715] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(6795), 1, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SQUOTE, - [82656] = 7, + ACTIONS(6797), 1, + anon_sym_EQ, + STATE(3222), 2, + sym_line_comment, + sym_block_comment, + [95735] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4950), 1, + ACTIONS(5523), 1, anon_sym_LBRACE, - STATE(521), 1, + ACTIONS(6799), 1, + anon_sym_SEMI, + STATE(613), 1, sym_declaration_list, - STATE(3216), 1, - sym_where_clause, - STATE(2727), 2, + STATE(3223), 2, sym_line_comment, sym_block_comment, - [82679] = 7, + [95755] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5903), 1, - anon_sym_RPAREN, - ACTIONS(5905), 1, - anon_sym_COMMA, - STATE(2906), 1, - aux_sym_tuple_type_repeat1, - STATE(2728), 2, + ACTIONS(5523), 1, + anon_sym_LBRACE, + ACTIONS(6801), 1, + anon_sym_SEMI, + STATE(615), 1, + sym_declaration_list, + STATE(3224), 2, sym_line_comment, sym_block_comment, - [82702] = 6, + [95775] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4517), 1, - anon_sym_DOT_DOT, - ACTIONS(5259), 1, - anon_sym_COLON_COLON, - ACTIONS(4519), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2729), 2, + ACTIONS(4759), 1, + anon_sym_RBRACE, + ACTIONS(6803), 1, + anon_sym_COMMA, + STATE(3404), 1, + aux_sym_use_list_repeat1, + STATE(3225), 2, sym_line_comment, sym_block_comment, - [82723] = 7, + [95795] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5708), 1, - anon_sym_LPAREN, - ACTIONS(5710), 1, - anon_sym_LBRACK, - ACTIONS(5712), 1, + ACTIONS(5523), 1, anon_sym_LBRACE, - STATE(387), 1, - sym_delim_token_tree, - STATE(2730), 2, + ACTIONS(6805), 1, + anon_sym_SEMI, + STATE(622), 1, + sym_declaration_list, + STATE(3226), 2, sym_line_comment, sym_block_comment, - [82746] = 7, + [95815] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5907), 1, + ACTIONS(5523), 1, anon_sym_LBRACE, - ACTIONS(5909), 1, - anon_sym_for, - ACTIONS(5911), 1, - anon_sym_loop, - ACTIONS(5913), 1, - anon_sym_while, - STATE(2731), 2, + ACTIONS(6807), 1, + anon_sym_SEMI, + STATE(625), 1, + sym_declaration_list, + STATE(3227), 2, sym_line_comment, sym_block_comment, - [82769] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [95835] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - STATE(332), 1, - sym_block, - STATE(3355), 1, - sym_label, - STATE(2732), 2, + ACTIONS(5523), 1, + anon_sym_LBRACE, + ACTIONS(6809), 1, + anon_sym_SEMI, + STATE(552), 1, + sym_declaration_list, + STATE(3228), 2, sym_line_comment, sym_block_comment, - [82792] = 7, + [95855] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, + ACTIONS(5489), 1, anon_sym_where, - ACTIONS(5363), 1, - anon_sym_LBRACE, - STATE(731), 1, - sym_enum_variant_list, - STATE(3065), 1, + ACTIONS(6811), 1, + anon_sym_SEMI, + STATE(3842), 1, sym_where_clause, - STATE(2733), 2, + STATE(3229), 2, sym_line_comment, sym_block_comment, - [82815] = 5, + [95875] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5915), 1, - anon_sym_DQUOTE, - ACTIONS(5917), 2, - sym_string_content, - sym_escape_sequence, - STATE(2734), 3, + ACTIONS(5523), 1, + anon_sym_LBRACE, + ACTIONS(6813), 1, + anon_sym_SEMI, + STATE(637), 1, + sym_declaration_list, + STATE(3230), 2, sym_line_comment, sym_block_comment, - aux_sym_string_literal_repeat1, - [82834] = 5, + [95895] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5920), 1, - sym_identifier, - STATE(2735), 2, + STATE(3231), 2, sym_line_comment, sym_block_comment, - ACTIONS(5922), 3, - anon_sym_default, - anon_sym_gen, - anon_sym_union, - [82853] = 7, + ACTIONS(6815), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [95911] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(5285), 1, + ACTIONS(5473), 1, anon_sym_LBRACE, - STATE(1122), 1, - sym_enum_variant_list, - STATE(3108), 1, - sym_where_clause, - STATE(2736), 2, + ACTIONS(6817), 1, + anon_sym_SEMI, + STATE(1475), 1, + sym_declaration_list, + STATE(3232), 2, sym_line_comment, sym_block_comment, - [82876] = 7, + [95931] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5482), 1, - anon_sym_PIPE, - ACTIONS(5924), 1, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(6819), 2, anon_sym_RPAREN, - ACTIONS(5926), 1, anon_sym_COMMA, - STATE(2773), 1, - aux_sym_tuple_pattern_repeat1, - STATE(2737), 2, + STATE(3233), 2, sym_line_comment, sym_block_comment, - [82899] = 7, + [95949] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5482), 1, - anon_sym_PIPE, - ACTIONS(5928), 1, - anon_sym_RBRACK, - ACTIONS(5930), 1, - anon_sym_COMMA, - STATE(2775), 1, - aux_sym_slice_pattern_repeat1, - STATE(2738), 2, + STATE(3234), 2, sym_line_comment, sym_block_comment, - [82922] = 7, + ACTIONS(6821), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [95965] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(5654), 1, - sym_super, - ACTIONS(5720), 1, - sym_identifier, - STATE(3311), 1, - sym_type_arguments, - STATE(2739), 2, + STATE(3235), 2, sym_line_comment, sym_block_comment, - [82945] = 7, + ACTIONS(6823), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [95981] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(5654), 1, - sym_super, - ACTIONS(5696), 1, - sym_identifier, - STATE(3158), 1, - sym_type_arguments, - STATE(2740), 2, + STATE(3236), 2, sym_line_comment, sym_block_comment, - [82968] = 7, + ACTIONS(6825), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [95997] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4497), 1, - anon_sym_LPAREN, - ACTIONS(4503), 1, - anon_sym_LT2, - STATE(1955), 1, - sym_type_arguments, - STATE(1961), 1, - sym_parameters, - STATE(2741), 2, + ACTIONS(5411), 1, + anon_sym_RBRACE, + ACTIONS(6827), 1, + anon_sym_COMMA, + STATE(3403), 1, + aux_sym_field_initializer_list_repeat1, + STATE(3237), 2, sym_line_comment, sym_block_comment, - [82991] = 7, + [96017] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(4796), 1, - anon_sym_for, - ACTIONS(5674), 1, - anon_sym_COLON_COLON, - STATE(1953), 1, - sym_type_arguments, - STATE(2742), 2, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(6829), 1, + anon_sym_SEMI, + ACTIONS(6831), 1, + anon_sym_RBRACK, + STATE(3238), 2, sym_line_comment, sym_block_comment, - [83014] = 7, + [96037] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(4950), 1, - anon_sym_LBRACE, - STATE(714), 1, - sym_declaration_list, - STATE(3152), 1, - sym_where_clause, - STATE(2743), 2, + STATE(3239), 2, sym_line_comment, sym_block_comment, - [83037] = 7, + ACTIONS(6833), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [96053] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(5654), 1, - sym_super, - ACTIONS(5696), 1, - sym_identifier, - STATE(3311), 1, - sym_type_arguments, - STATE(2744), 2, + STATE(3240), 2, sym_line_comment, sym_block_comment, - [83060] = 7, + ACTIONS(6835), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [96069] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, + ACTIONS(5489), 1, anon_sym_where, - ACTIONS(4950), 1, - anon_sym_LBRACE, - STATE(624), 1, - sym_declaration_list, - STATE(3240), 1, + ACTIONS(6837), 1, + anon_sym_SEMI, + STATE(3867), 1, sym_where_clause, - STATE(2745), 2, + STATE(3241), 2, sym_line_comment, sym_block_comment, - [83083] = 7, + [96089] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5506), 1, - anon_sym_RPAREN, - ACTIONS(5508), 1, + ACTIONS(6111), 1, + anon_sym_PIPE, + ACTIONS(6839), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(3009), 1, - aux_sym_parameters_repeat1, - STATE(2746), 2, + STATE(3242), 2, sym_line_comment, sym_block_comment, - [83106] = 7, + [96107] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5932), 1, - anon_sym_RPAREN, - ACTIONS(5934), 1, - anon_sym_COMMA, - STATE(2779), 1, - aux_sym_tuple_type_repeat1, - STATE(2747), 2, + STATE(3243), 2, sym_line_comment, sym_block_comment, - [83129] = 7, + ACTIONS(6841), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [96123] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(5674), 1, - anon_sym_COLON_COLON, - ACTIONS(5936), 1, - anon_sym_for, - STATE(1953), 1, - sym_type_arguments, - STATE(2748), 2, + STATE(3244), 2, sym_line_comment, sym_block_comment, - [83152] = 7, + ACTIONS(6193), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [96139] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(5674), 1, - anon_sym_COLON_COLON, - ACTIONS(5938), 1, - anon_sym_for, - STATE(1953), 1, - sym_type_arguments, - STATE(2749), 2, + STATE(3245), 2, sym_line_comment, sym_block_comment, - [83175] = 7, + ACTIONS(6843), 3, + sym_string_content, + anon_sym_DQUOTE, + sym_escape_sequence, + [96155] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5940), 1, + ACTIONS(5523), 1, + anon_sym_LBRACE, + ACTIONS(6845), 1, anon_sym_SEMI, - STATE(3492), 1, - sym_where_clause, - STATE(2750), 2, + STATE(559), 1, + sym_declaration_list, + STATE(3246), 2, sym_line_comment, sym_block_comment, - [83198] = 7, + [96175] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3305), 1, - anon_sym_LT2, - ACTIONS(5195), 1, - sym_super, - ACTIONS(5793), 1, - sym_identifier, - STATE(1456), 1, - sym_type_arguments, - STATE(2751), 2, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(6847), 1, + anon_sym_SEMI, + ACTIONS(6849), 1, + anon_sym_EQ, + STATE(3247), 2, sym_line_comment, sym_block_comment, - [83221] = 7, + [96195] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, + ACTIONS(5042), 1, anon_sym_LT2, - ACTIONS(5674), 1, - anon_sym_COLON_COLON, - ACTIONS(5942), 1, + ACTIONS(6851), 1, anon_sym_for, - STATE(1953), 1, + STATE(2219), 1, sym_type_arguments, - STATE(2752), 2, + STATE(3248), 2, sym_line_comment, sym_block_comment, - [83244] = 5, + [96215] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5944), 1, - anon_sym_in, - STATE(2753), 2, + ACTIONS(955), 1, + anon_sym_RPAREN, + ACTIONS(4607), 1, + anon_sym_COMMA, + STATE(2923), 1, + aux_sym_arguments_repeat1, + STATE(3249), 2, sym_line_comment, sym_block_comment, - ACTIONS(5946), 3, - sym_self, - sym_super, - sym_crate, - [83263] = 7, + [96235] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5455), 1, - anon_sym_RPAREN, - ACTIONS(5457), 1, - anon_sym_COMMA, - STATE(2835), 1, - aux_sym_parameters_repeat1, - STATE(2754), 2, + STATE(3250), 2, sym_line_comment, sym_block_comment, - [83286] = 7, + ACTIONS(5381), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [96251] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(343), 1, + ACTIONS(5523), 1, anon_sym_LBRACE, - ACTIONS(3291), 1, - anon_sym_SQUOTE, - STATE(3488), 1, - sym_block, - STATE(3569), 1, - sym_label, - STATE(2755), 2, + ACTIONS(6853), 1, + anon_sym_SEMI, + STATE(682), 1, + sym_declaration_list, + STATE(3251), 2, sym_line_comment, sym_block_comment, - [83309] = 7, + [96271] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(5654), 1, - sym_super, - ACTIONS(5787), 1, - sym_identifier, - STATE(3311), 1, - sym_type_arguments, - STATE(2756), 2, + ACTIONS(5523), 1, + anon_sym_LBRACE, + ACTIONS(6855), 1, + anon_sym_SEMI, + STATE(680), 1, + sym_declaration_list, + STATE(3252), 2, sym_line_comment, sym_block_comment, - [83332] = 4, + [96291] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2757), 2, + ACTIONS(5437), 1, + anon_sym_RBRACE, + ACTIONS(6857), 1, + anon_sym_COMMA, + STATE(3403), 1, + aux_sym_field_initializer_list_repeat1, + STATE(3253), 2, sym_line_comment, sym_block_comment, - ACTIONS(4507), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83348] = 6, + [96311] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5948), 1, - anon_sym_RBRACE, - ACTIONS(5950), 1, - anon_sym_COMMA, - STATE(2808), 1, - aux_sym_field_initializer_list_repeat1, - STATE(2758), 2, + ACTIONS(5523), 1, + anon_sym_LBRACE, + ACTIONS(6859), 1, + anon_sym_SEMI, + STATE(691), 1, + sym_declaration_list, + STATE(3254), 2, sym_line_comment, sym_block_comment, - [83368] = 6, + [96331] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(5952), 1, - anon_sym_for, - STATE(1955), 1, - sym_type_arguments, - STATE(2759), 2, + ACTIONS(6861), 1, + sym_identifier, + ACTIONS(6863), 1, + anon_sym_ref, + ACTIONS(6865), 1, + sym_mutable_specifier, + STATE(3255), 2, sym_line_comment, sym_block_comment, - [83388] = 6, + [96351] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4956), 1, - anon_sym_LBRACE, - ACTIONS(5954), 1, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(6867), 1, anon_sym_SEMI, - STATE(1149), 1, - sym_declaration_list, - STATE(2760), 2, + STATE(3878), 1, + sym_where_clause, + STATE(3256), 2, sym_line_comment, sym_block_comment, - [83408] = 6, + [96371] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4950), 1, - anon_sym_LBRACE, - ACTIONS(5956), 1, - anon_sym_SEMI, - STATE(606), 1, - sym_declaration_list, - STATE(2761), 2, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(6869), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3257), 2, + sym_line_comment, + sym_block_comment, + [96389] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6871), 1, + anon_sym_RPAREN, + ACTIONS(6873), 1, + anon_sym_COMMA, + STATE(3314), 1, + aux_sym_ordered_field_declaration_list_repeat1, + STATE(3258), 2, + sym_line_comment, + sym_block_comment, + [96409] = 6, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6583), 1, + anon_sym_RPAREN, + ACTIONS(6585), 1, + anon_sym_COMMA, + STATE(3156), 1, + aux_sym_tuple_pattern_repeat1, + STATE(3259), 2, sym_line_comment, sym_block_comment, - [83428] = 6, + [96429] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4950), 1, + ACTIONS(5473), 1, anon_sym_LBRACE, - ACTIONS(5958), 1, + ACTIONS(6875), 1, anon_sym_SEMI, - STATE(755), 1, + STATE(1441), 1, sym_declaration_list, - STATE(2762), 2, + STATE(3260), 2, sym_line_comment, sym_block_comment, - [83448] = 4, + [96449] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2763), 2, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(6877), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3261), 2, sym_line_comment, sym_block_comment, - ACTIONS(5960), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [83464] = 6, + [96467] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(5962), 1, - anon_sym_for, - STATE(1955), 1, - sym_type_arguments, - STATE(2764), 2, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6881), 1, + anon_sym_COLON, + ACTIONS(6879), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3262), 2, sym_line_comment, sym_block_comment, - [83484] = 4, + [96485] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2765), 2, + ACTIONS(6883), 1, + sym_identifier, + ACTIONS(6885), 1, + anon_sym_await, + ACTIONS(6887), 1, + sym_integer_literal, + STATE(3263), 2, sym_line_comment, sym_block_comment, - ACTIONS(5964), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [83500] = 6, + [96505] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4950), 1, + ACTIONS(5523), 1, anon_sym_LBRACE, - ACTIONS(5966), 1, + ACTIONS(6889), 1, anon_sym_SEMI, - STATE(757), 1, + STATE(702), 1, sym_declaration_list, - STATE(2766), 2, + STATE(3264), 2, sym_line_comment, sym_block_comment, - [83520] = 5, + [96525] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5968), 2, + ACTIONS(5251), 1, anon_sym_GT, + ACTIONS(6150), 1, anon_sym_COMMA, - STATE(2767), 2, + STATE(3417), 1, + aux_sym_type_parameters_repeat1, + STATE(3265), 2, sym_line_comment, sym_block_comment, - [83538] = 6, + [96545] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5451), 1, - anon_sym_COMMA, - ACTIONS(5970), 1, - anon_sym_PIPE, - STATE(3034), 1, - aux_sym_closure_parameters_repeat1, - STATE(2768), 2, + ACTIONS(5523), 1, + anon_sym_LBRACE, + ACTIONS(6891), 1, + anon_sym_SEMI, + STATE(704), 1, + sym_declaration_list, + STATE(3266), 2, sym_line_comment, sym_block_comment, - [83558] = 5, + [96565] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5972), 1, - anon_sym_RBRACE, - ACTIONS(5974), 1, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(6552), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2769), 3, + STATE(3267), 2, sym_line_comment, sym_block_comment, - aux_sym_struct_pattern_repeat1, - [83576] = 4, + [96583] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2770), 2, + ACTIONS(5147), 1, + anon_sym_COLON_COLON, + ACTIONS(6893), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3268), 2, sym_line_comment, sym_block_comment, - ACTIONS(4826), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83592] = 6, + [96601] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(935), 1, + ACTIONS(967), 1, anon_sym_RBRACK, - ACTIONS(4149), 1, + ACTIONS(4557), 1, anon_sym_COMMA, - STATE(2709), 1, + STATE(2923), 1, aux_sym_arguments_repeat1, - STATE(2771), 2, + STATE(3269), 2, sym_line_comment, sym_block_comment, - [83612] = 4, + [96621] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2772), 2, + ACTIONS(6546), 1, + anon_sym_RPAREN, + ACTIONS(6548), 1, + anon_sym_COMMA, + STATE(3448), 1, + aux_sym_tuple_pattern_repeat1, + STATE(3270), 2, sym_line_comment, sym_block_comment, - ACTIONS(4836), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83628] = 6, + [96641] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2989), 1, - anon_sym_RPAREN, - ACTIONS(5977), 1, - anon_sym_COMMA, - STATE(2964), 1, - aux_sym_tuple_pattern_repeat1, - STATE(2773), 2, + STATE(3271), 2, sym_line_comment, sym_block_comment, - [83648] = 6, + ACTIONS(6895), 3, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + [96657] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, - anon_sym_LBRACE, - ACTIONS(5979), 1, - anon_sym_COLON_COLON, - STATE(1477), 1, - sym_field_initializer_list, - STATE(2774), 2, + ACTIONS(5251), 1, + anon_sym_GT, + ACTIONS(6150), 1, + anon_sym_COMMA, + STATE(3420), 1, + aux_sym_type_parameters_repeat1, + STATE(3272), 2, sym_line_comment, sym_block_comment, - [83668] = 6, + [96677] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3057), 1, - anon_sym_RBRACK, - ACTIONS(5981), 1, + ACTIONS(5255), 1, + anon_sym_GT, + ACTIONS(6897), 1, anon_sym_COMMA, - STATE(2641), 1, - aux_sym_slice_pattern_repeat1, - STATE(2775), 2, + STATE(3420), 1, + aux_sym_type_parameters_repeat1, + STATE(3273), 2, sym_line_comment, sym_block_comment, - [83688] = 6, + [96697] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5983), 1, - anon_sym_RBRACE, - ACTIONS(5985), 1, - anon_sym_COMMA, - STATE(2827), 1, - aux_sym_struct_pattern_repeat1, - STATE(2776), 2, + STATE(3274), 2, sym_line_comment, sym_block_comment, - [83708] = 6, + ACTIONS(6899), 3, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + [96713] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5987), 1, - anon_sym_RBRACE, - ACTIONS(5989), 1, + ACTIONS(927), 1, + anon_sym_RBRACK, + ACTIONS(6901), 1, anon_sym_COMMA, - STATE(2830), 1, - aux_sym_struct_pattern_repeat1, - STATE(2777), 2, + STATE(2923), 1, + aux_sym_arguments_repeat1, + STATE(3275), 2, sym_line_comment, sym_block_comment, - [83728] = 4, + [96733] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2778), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(5991), 3, - anon_sym_SEMI, + ACTIONS(6111), 1, + anon_sym_PIPE, + ACTIONS(6903), 2, anon_sym_RBRACE, anon_sym_COMMA, - [83744] = 6, + STATE(3276), 2, + sym_line_comment, + sym_block_comment, + [96751] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3185), 1, - anon_sym_RPAREN, - ACTIONS(5993), 1, + ACTIONS(901), 1, + anon_sym_RBRACK, + ACTIONS(4545), 1, anon_sym_COMMA, - STATE(3001), 1, - aux_sym_tuple_type_repeat1, - STATE(2779), 2, + STATE(2923), 1, + aux_sym_arguments_repeat1, + STATE(3277), 2, sym_line_comment, sym_block_comment, - [83764] = 6, + [96771] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4950), 1, - anon_sym_LBRACE, - ACTIONS(5995), 1, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(6905), 1, anon_sym_SEMI, - STATE(723), 1, - sym_declaration_list, - STATE(2780), 2, + STATE(3899), 1, + sym_where_clause, + STATE(3278), 2, sym_line_comment, sym_block_comment, - [83784] = 5, + [96791] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5666), 1, - anon_sym_EQ, - ACTIONS(5889), 2, + ACTIONS(1625), 1, anon_sym_GT, + ACTIONS(6907), 1, anon_sym_COMMA, - STATE(2781), 2, + STATE(3372), 1, + aux_sym_type_arguments_repeat1, + STATE(3279), 2, sym_line_comment, sym_block_comment, - [83802] = 6, + [96811] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5455), 1, - anon_sym_RPAREN, - ACTIONS(5457), 1, + ACTIONS(1625), 1, + anon_sym_GT, + ACTIONS(6907), 1, anon_sym_COMMA, - STATE(2835), 1, - aux_sym_parameters_repeat1, - STATE(2782), 2, + STATE(3359), 1, + aux_sym_type_arguments_repeat1, + STATE(3280), 2, sym_line_comment, sym_block_comment, - [83822] = 5, + [96831] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5997), 2, - anon_sym_GT, + ACTIONS(6080), 1, + anon_sym_RPAREN, + ACTIONS(6082), 1, anon_sym_COMMA, - STATE(2783), 2, + STATE(3436), 1, + aux_sym_parameters_repeat1, + STATE(3281), 2, sym_line_comment, sym_block_comment, - [83840] = 6, + [96851] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5999), 1, - anon_sym_SEMI, - ACTIONS(6001), 1, - anon_sym_EQ, - STATE(2784), 2, + ACTIONS(3477), 1, + anon_sym_RPAREN, + ACTIONS(6909), 1, + anon_sym_COMMA, + STATE(2957), 1, + aux_sym_slice_pattern_repeat1, + STATE(3282), 2, sym_line_comment, sym_block_comment, - [83860] = 4, + [96871] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2785), 2, + ACTIONS(6231), 1, + anon_sym_COMMA, + ACTIONS(6911), 1, + anon_sym_PIPE, + STATE(3421), 1, + aux_sym_closure_parameters_repeat1, + STATE(3283), 2, sym_line_comment, sym_block_comment, - ACTIONS(6003), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [83876] = 4, + [96891] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2786), 2, + ACTIONS(5780), 1, + anon_sym_RBRACE, + ACTIONS(6913), 1, + anon_sym_COMMA, + STATE(3355), 1, + aux_sym_struct_pattern_repeat1, + STATE(3284), 2, sym_line_comment, sym_block_comment, - ACTIONS(4896), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83892] = 6, + [96911] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6005), 1, - anon_sym_RBRACE, - ACTIONS(6007), 1, - anon_sym_COMMA, - STATE(2838), 1, - aux_sym_enum_variant_list_repeat2, - STATE(2787), 2, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(6915), 1, + anon_sym_SEMI, + ACTIONS(6917), 1, + anon_sym_EQ, + STATE(3285), 2, sym_line_comment, sym_block_comment, - [83912] = 5, + [96931] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6009), 1, - anon_sym_RBRACE, - ACTIONS(6011), 1, + ACTIONS(3467), 1, + anon_sym_RPAREN, + ACTIONS(6919), 1, anon_sym_COMMA, - STATE(2788), 3, + STATE(2957), 1, + aux_sym_slice_pattern_repeat1, + STATE(3286), 2, sym_line_comment, sym_block_comment, - aux_sym_field_initializer_list_repeat1, - [83930] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, + [96951] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6014), 1, - anon_sym_move, - STATE(243), 1, - sym_closure_parameters, - STATE(2789), 2, + ACTIONS(5523), 1, + anon_sym_LBRACE, + ACTIONS(6921), 1, + anon_sym_SEMI, + STATE(736), 1, + sym_declaration_list, + STATE(3287), 2, sym_line_comment, sym_block_comment, - [83950] = 6, + [96971] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(4846), 1, - anon_sym_LBRACE, - STATE(1955), 1, - sym_type_arguments, - STATE(2790), 2, + ACTIONS(5782), 1, + anon_sym_RBRACE, + ACTIONS(6923), 1, + anon_sym_COMMA, + STATE(3355), 1, + aux_sym_struct_pattern_repeat1, + STATE(3288), 2, sym_line_comment, sym_block_comment, - [83970] = 4, + [96991] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2791), 2, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(6925), 1, + anon_sym_SEMI, + STATE(3976), 1, + sym_where_clause, + STATE(3289), 2, sym_line_comment, sym_block_comment, - ACTIONS(4908), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83986] = 4, + [97011] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2792), 2, + ACTIONS(5132), 1, + anon_sym_COLON_COLON, + ACTIONS(5177), 1, + anon_sym_COLON, + STATE(2919), 1, + sym_trait_bounds, + STATE(3290), 2, sym_line_comment, sym_block_comment, - ACTIONS(4810), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [84002] = 6, + [97031] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4708), 1, - anon_sym_GT, - ACTIONS(6016), 1, - anon_sym_COMMA, - STATE(2913), 1, - aux_sym_type_parameters_repeat1, - STATE(2793), 2, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(6927), 1, + anon_sym_SEMI, + ACTIONS(6929), 1, + anon_sym_RBRACK, + STATE(3291), 2, sym_line_comment, sym_block_comment, - [84022] = 4, + [97051] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2794), 2, + ACTIONS(6931), 1, + sym_identifier, + ACTIONS(6933), 1, + anon_sym_await, + ACTIONS(6935), 1, + sym_integer_literal, + STATE(3292), 2, sym_line_comment, sym_block_comment, - ACTIONS(4816), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [84038] = 6, + [97071] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4696), 1, - anon_sym_GT, - ACTIONS(5469), 1, + ACTIONS(1491), 1, + anon_sym_RPAREN, + ACTIONS(6131), 1, anon_sym_COMMA, - STATE(2913), 1, - aux_sym_type_parameters_repeat1, - STATE(2795), 2, + STATE(3347), 1, + aux_sym_parameters_repeat1, + STATE(3293), 2, sym_line_comment, sym_block_comment, - [84058] = 6, + [97091] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4696), 1, - anon_sym_GT, - ACTIONS(5469), 1, - anon_sym_COMMA, - STATE(2843), 1, - aux_sym_type_parameters_repeat1, - STATE(2796), 2, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(6937), 1, + anon_sym_LBRACE, + STATE(2219), 1, + sym_type_arguments, + STATE(3294), 2, sym_line_comment, sym_block_comment, - [84078] = 6, + [97111] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(919), 1, - anon_sym_RBRACK, - ACTIONS(4165), 1, - anon_sym_COMMA, - STATE(2709), 1, - aux_sym_arguments_repeat1, - STATE(2797), 2, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(6939), 1, + anon_sym_for, + STATE(2219), 1, + sym_type_arguments, + STATE(3295), 2, sym_line_comment, sym_block_comment, - [84098] = 6, + [97131] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4950), 1, - anon_sym_LBRACE, - ACTIONS(6018), 1, - anon_sym_SEMI, - STATE(621), 1, - sym_declaration_list, - STATE(2798), 2, + ACTIONS(1491), 1, + anon_sym_RPAREN, + ACTIONS(6131), 1, + anon_sym_COMMA, + STATE(3380), 1, + aux_sym_parameters_repeat1, + STATE(3296), 2, sym_line_comment, sym_block_comment, - [84118] = 6, + [97151] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4956), 1, + ACTIONS(6941), 1, + anon_sym_LPAREN, + ACTIONS(6943), 1, + anon_sym_LBRACK, + ACTIONS(6945), 1, anon_sym_LBRACE, - ACTIONS(6020), 1, - anon_sym_SEMI, - STATE(1171), 1, - sym_declaration_list, - STATE(2799), 2, + STATE(3297), 2, sym_line_comment, sym_block_comment, - [84138] = 6, + [97171] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3093), 1, - anon_sym_PLUS, - ACTIONS(6022), 1, - sym_mutable_specifier, - ACTIONS(6024), 1, - sym_self, - STATE(2800), 2, + ACTIONS(6947), 1, + anon_sym_LPAREN, + ACTIONS(6949), 1, + anon_sym_LBRACK, + ACTIONS(6951), 1, + anon_sym_LBRACE, + STATE(3298), 2, sym_line_comment, sym_block_comment, - [84158] = 6, + [97191] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(6026), 1, - anon_sym_SEMI, - ACTIONS(6028), 1, - anon_sym_EQ, - STATE(2801), 2, + ACTIONS(5479), 1, + anon_sym_RBRACE, + ACTIONS(6953), 1, + anon_sym_COMMA, + STATE(3340), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3299), 2, sym_line_comment, sym_block_comment, - [84178] = 6, + [97211] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6030), 1, + ACTIONS(5479), 1, anon_sym_RBRACE, - ACTIONS(6032), 1, + ACTIONS(6953), 1, anon_sym_COMMA, - STATE(2848), 1, - aux_sym_field_declaration_list_repeat1, - STATE(2802), 2, + STATE(3383), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3300), 2, sym_line_comment, sym_block_comment, - [84198] = 6, + [97231] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(6034), 1, - anon_sym_SEMI, - STATE(3438), 1, - sym_where_clause, - STATE(2803), 2, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(5495), 1, + anon_sym_COLON_COLON, + STATE(2226), 1, + sym_type_arguments, + STATE(3301), 2, sym_line_comment, sym_block_comment, - [84218] = 4, + [97251] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2804), 2, + ACTIONS(5177), 1, + anon_sym_COLON, + ACTIONS(5495), 1, + anon_sym_COLON_COLON, + STATE(2919), 1, + sym_trait_bounds, + STATE(3302), 2, sym_line_comment, sym_block_comment, - ACTIONS(6036), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [84234] = 6, + [97271] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(6038), 1, - anon_sym_SEMI, - STATE(3460), 1, - sym_where_clause, - STATE(2805), 2, + ACTIONS(3894), 1, + anon_sym_LBRACE, + ACTIONS(6955), 1, + anon_sym_COLON_COLON, + STATE(1661), 1, + sym_field_initializer_list, + STATE(3303), 2, sym_line_comment, sym_block_comment, - [84254] = 6, + [97291] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4956), 1, + ACTIONS(5523), 1, anon_sym_LBRACE, - ACTIONS(6040), 1, + ACTIONS(6957), 1, anon_sym_SEMI, - STATE(1192), 1, + STATE(688), 1, sym_declaration_list, - STATE(2806), 2, + STATE(3304), 2, sym_line_comment, sym_block_comment, - [84274] = 5, + [97311] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5854), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2807), 2, + STATE(3305), 2, sym_line_comment, sym_block_comment, - [84292] = 6, + ACTIONS(6959), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [97327] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4886), 1, + ACTIONS(5475), 1, anon_sym_RBRACE, - ACTIONS(6042), 1, + ACTIONS(6961), 1, anon_sym_COMMA, - STATE(2788), 1, - aux_sym_field_initializer_list_repeat1, - STATE(2808), 2, + STATE(3307), 1, + aux_sym_field_declaration_list_repeat1, + STATE(3306), 2, sym_line_comment, sym_block_comment, - [84312] = 4, + [97347] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2809), 2, + ACTIONS(6963), 1, + anon_sym_RBRACE, + ACTIONS(6965), 1, + anon_sym_COMMA, + STATE(3307), 3, sym_line_comment, sym_block_comment, - ACTIONS(6044), 3, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - [84328] = 6, + aux_sym_field_declaration_list_repeat1, + [97365] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(6046), 1, - anon_sym_SEMI, - STATE(3571), 1, - sym_where_clause, - STATE(2810), 2, + ACTIONS(5253), 1, + anon_sym_GT, + ACTIONS(6968), 1, + anon_sym_COMMA, + STATE(3420), 1, + aux_sym_type_parameters_repeat1, + STATE(3308), 2, sym_line_comment, sym_block_comment, - [84348] = 6, + [97385] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4698), 1, + ACTIONS(5231), 1, anon_sym_GT, - ACTIONS(6048), 1, + ACTIONS(6970), 1, anon_sym_COMMA, - STATE(2913), 1, + STATE(3420), 1, aux_sym_type_parameters_repeat1, - STATE(2811), 2, + STATE(3309), 2, sym_line_comment, sym_block_comment, - [84368] = 6, + [97405] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4325), 1, - anon_sym_RBRACE, - ACTIONS(6050), 1, - anon_sym_COMMA, - STATE(3003), 1, - aux_sym_use_list_repeat1, - STATE(2812), 2, + ACTIONS(5473), 1, + anon_sym_LBRACE, + ACTIONS(6972), 1, + anon_sym_SEMI, + STATE(1394), 1, + sym_declaration_list, + STATE(3310), 2, sym_line_comment, sym_block_comment, - [84388] = 6, + [97425] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(949), 1, + ACTIONS(991), 1, anon_sym_RPAREN, - ACTIONS(4151), 1, + ACTIONS(4581), 1, anon_sym_COMMA, - STATE(2709), 1, + STATE(2923), 1, aux_sym_arguments_repeat1, - STATE(2813), 2, - sym_line_comment, - sym_block_comment, - [84408] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2814), 2, + STATE(3311), 2, sym_line_comment, sym_block_comment, - ACTIONS(997), 3, - anon_sym_COLON, - anon_sym_GT, - anon_sym_COMMA, - [84424] = 4, + [97445] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2815), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(6052), 3, - anon_sym_SEMI, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(6974), 2, anon_sym_RBRACE, anon_sym_COMMA, - [84440] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2816), 2, + STATE(3312), 2, sym_line_comment, sym_block_comment, - ACTIONS(6054), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [84456] = 4, + [97463] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2817), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(6056), 3, + ACTIONS(5473), 1, + anon_sym_LBRACE, + ACTIONS(6976), 1, anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [84472] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - STATE(2818), 2, + STATE(1387), 1, + sym_declaration_list, + STATE(3313), 2, sym_line_comment, sym_block_comment, - ACTIONS(6058), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [84488] = 4, + [97483] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2819), 2, + ACTIONS(6978), 1, + anon_sym_RPAREN, + ACTIONS(6980), 1, + anon_sym_COMMA, + STATE(3314), 3, sym_line_comment, sym_block_comment, - ACTIONS(6060), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [84504] = 4, + aux_sym_ordered_field_declaration_list_repeat1, + [97501] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2820), 2, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(6983), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3315), 2, sym_line_comment, sym_block_comment, - ACTIONS(6062), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [84520] = 6, + [97519] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(955), 1, - anon_sym_RBRACK, - ACTIONS(6064), 1, + ACTIONS(6985), 1, + anon_sym_RPAREN, + ACTIONS(6987), 1, anon_sym_COMMA, - STATE(2709), 1, - aux_sym_arguments_repeat1, - STATE(2821), 2, + STATE(3314), 1, + aux_sym_ordered_field_declaration_list_repeat1, + STATE(3316), 2, sym_line_comment, sym_block_comment, - [84540] = 6, + [97539] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4950), 1, - anon_sym_LBRACE, - ACTIONS(6066), 1, - anon_sym_SEMI, - STATE(531), 1, - sym_declaration_list, - STATE(2822), 2, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(5497), 1, + anon_sym_for, + STATE(2219), 1, + sym_type_arguments, + STATE(3317), 2, sym_line_comment, sym_block_comment, - [84560] = 6, + [97559] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1629), 1, - anon_sym_GT, - ACTIONS(6068), 1, - anon_sym_COMMA, - STATE(2863), 1, - aux_sym_type_arguments_repeat1, - STATE(2823), 2, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(6989), 1, + anon_sym_SEMI, + ACTIONS(6991), 1, + anon_sym_EQ, + STATE(3318), 2, sym_line_comment, sym_block_comment, - [84580] = 6, + [97579] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1629), 1, - anon_sym_GT, - ACTIONS(6068), 1, - anon_sym_COMMA, - STATE(3037), 1, - aux_sym_type_arguments_repeat1, - STATE(2824), 2, + ACTIONS(5473), 1, + anon_sym_LBRACE, + ACTIONS(6993), 1, + anon_sym_SEMI, + STATE(1514), 1, + sym_declaration_list, + STATE(3319), 2, sym_line_comment, sym_block_comment, - [84600] = 6, + [97599] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3067), 1, - anon_sym_RPAREN, - ACTIONS(6070), 1, + ACTIONS(6995), 1, + anon_sym_RBRACE, + ACTIONS(6997), 1, anon_sym_COMMA, - STATE(2641), 1, - aux_sym_slice_pattern_repeat1, - STATE(2825), 2, + STATE(3438), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3320), 2, sym_line_comment, sym_block_comment, - [84620] = 6, + [97619] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4702), 1, - anon_sym_GT, - ACTIONS(5473), 1, + ACTIONS(5546), 1, + anon_sym_RBRACE, + ACTIONS(6999), 1, anon_sym_COMMA, - STATE(2913), 1, - aux_sym_type_parameters_repeat1, - STATE(2826), 2, + STATE(3307), 1, + aux_sym_field_declaration_list_repeat1, + STATE(3321), 2, sym_line_comment, sym_block_comment, - [84640] = 6, + [97639] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5189), 1, + ACTIONS(5546), 1, anon_sym_RBRACE, - ACTIONS(6072), 1, + ACTIONS(6999), 1, anon_sym_COMMA, - STATE(2769), 1, - aux_sym_struct_pattern_repeat1, - STATE(2827), 2, + STATE(3400), 1, + aux_sym_field_declaration_list_repeat1, + STATE(3322), 2, sym_line_comment, sym_block_comment, - [84660] = 6, + [97659] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3073), 1, - anon_sym_RPAREN, - ACTIONS(6074), 1, - anon_sym_COMMA, - STATE(2641), 1, - aux_sym_slice_pattern_repeat1, - STATE(2828), 2, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(7001), 1, + anon_sym_SEMI, + ACTIONS(7003), 1, + anon_sym_EQ, + STATE(3323), 2, sym_line_comment, sym_block_comment, - [84680] = 6, + [97679] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6076), 1, + ACTIONS(6024), 1, anon_sym_GT, - ACTIONS(6078), 1, + ACTIONS(6026), 1, anon_sym_COMMA, - STATE(3018), 1, - aux_sym_for_lifetimes_repeat1, - STATE(2829), 2, + STATE(3272), 1, + aux_sym_type_parameters_repeat1, + STATE(3324), 2, sym_line_comment, sym_block_comment, - [84700] = 6, + [97699] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5191), 1, - anon_sym_RBRACE, - ACTIONS(6080), 1, - anon_sym_COMMA, - STATE(2769), 1, - aux_sym_struct_pattern_repeat1, - STATE(2830), 2, + ACTIONS(5523), 1, + anon_sym_LBRACE, + ACTIONS(7005), 1, + anon_sym_SEMI, + STATE(808), 1, + sym_declaration_list, + STATE(3325), 2, sym_line_comment, sym_block_comment, - [84720] = 6, + [97719] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6082), 1, - sym_identifier, - ACTIONS(6084), 1, - anon_sym_ref, - ACTIONS(6086), 1, - sym_mutable_specifier, - STATE(2831), 2, + ACTIONS(5523), 1, + anon_sym_LBRACE, + ACTIONS(7007), 1, + anon_sym_SEMI, + STATE(817), 1, + sym_declaration_list, + STATE(3326), 2, sym_line_comment, sym_block_comment, - [84740] = 4, + [97739] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2832), 2, + ACTIONS(5523), 1, + anon_sym_LBRACE, + ACTIONS(7009), 1, + anon_sym_SEMI, + STATE(819), 1, + sym_declaration_list, + STATE(3327), 2, sym_line_comment, sym_block_comment, - ACTIONS(6088), 3, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - [84756] = 6, + [97759] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4950), 1, + ACTIONS(5473), 1, anon_sym_LBRACE, - ACTIONS(6090), 1, + ACTIONS(7011), 1, anon_sym_SEMI, - STATE(533), 1, + STATE(1375), 1, sym_declaration_list, - STATE(2833), 2, + STATE(3328), 2, sym_line_comment, sym_block_comment, - [84776] = 6, + [97779] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4830), 1, - anon_sym_RBRACE, - ACTIONS(6092), 1, - anon_sym_COMMA, - STATE(2788), 1, - aux_sym_field_initializer_list_repeat1, - STATE(2834), 2, + ACTIONS(5523), 1, + anon_sym_LBRACE, + ACTIONS(7013), 1, + anon_sym_SEMI, + STATE(836), 1, + sym_declaration_list, + STATE(3329), 2, sym_line_comment, sym_block_comment, - [84796] = 6, + [97799] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1499), 1, - anon_sym_RPAREN, - ACTIONS(5486), 1, + ACTIONS(6431), 1, + anon_sym_EQ, + ACTIONS(6484), 2, + anon_sym_GT, anon_sym_COMMA, - STATE(2840), 1, - aux_sym_parameters_repeat1, - STATE(2835), 2, + STATE(3330), 2, sym_line_comment, sym_block_comment, - [84816] = 6, + [97817] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1499), 1, - anon_sym_RPAREN, - ACTIONS(5486), 1, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(7015), 2, + anon_sym_GT, anon_sym_COMMA, - STATE(2869), 1, - aux_sym_parameters_repeat1, - STATE(2836), 2, + STATE(3331), 2, sym_line_comment, sym_block_comment, - [84836] = 6, + [97835] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4702), 1, - anon_sym_GT, - ACTIONS(5473), 1, - anon_sym_COMMA, - STATE(2947), 1, - aux_sym_type_parameters_repeat1, - STATE(2837), 2, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(7017), 1, + anon_sym_SEMI, + STATE(4087), 1, + sym_where_clause, + STATE(3332), 2, sym_line_comment, sym_block_comment, - [84856] = 6, + [97855] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4980), 1, - anon_sym_RBRACE, - ACTIONS(6094), 1, - anon_sym_COMMA, - STATE(3015), 1, - aux_sym_enum_variant_list_repeat2, - STATE(2838), 2, + ACTIONS(5523), 1, + anon_sym_LBRACE, + ACTIONS(7019), 1, + anon_sym_SEMI, + STATE(834), 1, + sym_declaration_list, + STATE(3333), 2, sym_line_comment, sym_block_comment, - [84876] = 6, + [97875] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4980), 1, - anon_sym_RBRACE, - ACTIONS(6094), 1, - anon_sym_COMMA, - STATE(2871), 1, - aux_sym_enum_variant_list_repeat2, - STATE(2839), 2, + ACTIONS(5523), 1, + anon_sym_LBRACE, + ACTIONS(7021), 1, + anon_sym_SEMI, + STATE(840), 1, + sym_declaration_list, + STATE(3334), 2, sym_line_comment, sym_block_comment, - [84896] = 5, + [97895] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5854), 1, - anon_sym_RPAREN, - ACTIONS(6096), 1, + ACTIONS(5560), 1, + anon_sym_RBRACE, + ACTIONS(7023), 1, anon_sym_COMMA, - STATE(2840), 3, + STATE(3340), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3335), 2, sym_line_comment, sym_block_comment, - aux_sym_parameters_repeat1, - [84914] = 6, + [97915] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(6099), 1, - anon_sym_for, - STATE(1955), 1, - sym_type_arguments, - STATE(2841), 2, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(7025), 1, + anon_sym_SEMI, + ACTIONS(7027), 1, + anon_sym_EQ, + STATE(3336), 2, sym_line_comment, sym_block_comment, - [84934] = 6, + [97935] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4686), 1, - anon_sym_GT, - ACTIONS(6101), 1, - anon_sym_COMMA, - STATE(2913), 1, - aux_sym_type_parameters_repeat1, - STATE(2842), 2, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(7029), 1, + anon_sym_SEMI, + STATE(4125), 1, + sym_where_clause, + STATE(3337), 2, sym_line_comment, sym_block_comment, - [84954] = 6, + [97955] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4714), 1, - anon_sym_GT, - ACTIONS(6103), 1, + ACTIONS(7033), 1, + anon_sym_EQ, + ACTIONS(7031), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(2913), 1, - aux_sym_type_parameters_repeat1, - STATE(2843), 2, + STATE(3338), 2, sym_line_comment, sym_block_comment, - [84974] = 6, + [97973] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4956), 1, - anon_sym_LBRACE, - ACTIONS(6105), 1, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(7035), 1, anon_sym_SEMI, - STATE(1222), 1, - sym_declaration_list, - STATE(2844), 2, + STATE(4009), 1, + sym_where_clause, + STATE(3339), 2, sym_line_comment, sym_block_comment, - [84994] = 6, + [97993] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4956), 1, - anon_sym_LBRACE, - ACTIONS(6107), 1, - anon_sym_SEMI, - STATE(1228), 1, - sym_declaration_list, - STATE(2845), 2, + ACTIONS(7037), 1, + anon_sym_RBRACE, + ACTIONS(7039), 1, + anon_sym_COMMA, + STATE(3340), 3, sym_line_comment, sym_block_comment, - [85014] = 6, + aux_sym_enum_variant_list_repeat1, + [98011] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4950), 1, - anon_sym_LBRACE, - ACTIONS(6109), 1, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(7042), 1, anon_sym_SEMI, - STATE(689), 1, - sym_declaration_list, - STATE(2846), 2, + STATE(3933), 1, + sym_where_clause, + STATE(3341), 2, sym_line_comment, sym_block_comment, - [85034] = 6, + [98031] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(6111), 1, - anon_sym_SEMI, - ACTIONS(6113), 1, - anon_sym_EQ, - STATE(2847), 2, + ACTIONS(7044), 1, + anon_sym_GT, + ACTIONS(7046), 1, + anon_sym_COMMA, + STATE(3342), 3, sym_line_comment, sym_block_comment, - [85054] = 6, + aux_sym_for_lifetimes_repeat1, + [98049] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4982), 1, - anon_sym_RBRACE, - ACTIONS(6115), 1, - anon_sym_COMMA, - STATE(3020), 1, - aux_sym_field_declaration_list_repeat1, - STATE(2848), 2, + ACTIONS(3419), 1, + anon_sym_SQUOTE, + ACTIONS(7049), 1, + anon_sym_GT, + STATE(3686), 1, + sym_lifetime, + STATE(3343), 2, sym_line_comment, sym_block_comment, - [85074] = 6, + [98069] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4982), 1, - anon_sym_RBRACE, - ACTIONS(6115), 1, - anon_sym_COMMA, - STATE(2881), 1, - aux_sym_field_declaration_list_repeat1, - STATE(2849), 2, + ACTIONS(7051), 1, + anon_sym_move, + STATE(242), 1, + sym_closure_parameters, + STATE(3344), 2, sym_line_comment, sym_block_comment, - [85094] = 6, + [98089] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4956), 1, - anon_sym_LBRACE, - ACTIONS(6117), 1, - anon_sym_SEMI, - STATE(1239), 1, - sym_declaration_list, - STATE(2850), 2, + ACTIONS(1507), 1, + anon_sym_RPAREN, + ACTIONS(7053), 1, + anon_sym_COMMA, + STATE(3347), 1, + aux_sym_parameters_repeat1, + STATE(3345), 2, sym_line_comment, sym_block_comment, - [85114] = 6, + [98109] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, + ACTIONS(5608), 1, anon_sym_PLUS, - ACTIONS(6119), 1, + ACTIONS(7055), 1, anon_sym_SEMI, - ACTIONS(6121), 1, + ACTIONS(7057), 1, anon_sym_EQ, - STATE(2851), 2, + STATE(3346), 2, sym_line_comment, sym_block_comment, - [85134] = 4, + [98129] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2852), 2, + ACTIONS(6407), 1, + anon_sym_RPAREN, + ACTIONS(7059), 1, + anon_sym_COMMA, + STATE(3347), 3, + sym_line_comment, + sym_block_comment, + aux_sym_parameters_repeat1, + [98147] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + STATE(3348), 2, sym_line_comment, sym_block_comment, - ACTIONS(4906), 3, + ACTIONS(5397), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [85150] = 6, + [98163] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(6123), 1, - anon_sym_SEMI, - ACTIONS(6125), 1, - anon_sym_EQ, - STATE(2853), 2, + STATE(3349), 2, sym_line_comment, sym_block_comment, - [85170] = 6, + ACTIONS(7062), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [98179] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(6127), 1, - anon_sym_SEMI, - STATE(3497), 1, - sym_where_clause, - STATE(2854), 2, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(6407), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3350), 2, sym_line_comment, sym_block_comment, - [85190] = 4, + [98197] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2855), 2, + ACTIONS(7064), 1, + anon_sym_RBRACE, + ACTIONS(7066), 1, + anon_sym_COMMA, + STATE(3225), 1, + aux_sym_use_list_repeat1, + STATE(3351), 2, sym_line_comment, sym_block_comment, - ACTIONS(4812), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85206] = 5, + [98217] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6131), 1, - anon_sym_COLON, - ACTIONS(6129), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(2856), 2, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(7068), 1, + anon_sym_SEMI, + STATE(4091), 1, + sym_where_clause, + STATE(3352), 2, sym_line_comment, sym_block_comment, - [85224] = 6, + [98237] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6133), 1, - anon_sym_RBRACE, - ACTIONS(6135), 1, - anon_sym_COMMA, - STATE(2993), 1, - aux_sym_struct_pattern_repeat1, - STATE(2857), 2, + STATE(3353), 2, sym_line_comment, sym_block_comment, - [85244] = 6, + ACTIONS(7070), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [98253] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4950), 1, + ACTIONS(5473), 1, anon_sym_LBRACE, - ACTIONS(6137), 1, + ACTIONS(7072), 1, anon_sym_SEMI, - STATE(492), 1, + STATE(1338), 1, sym_declaration_list, - STATE(2858), 2, + STATE(3354), 2, sym_line_comment, sym_block_comment, - [85264] = 5, + [98273] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6141), 1, - anon_sym_COLON, - ACTIONS(6139), 2, + ACTIONS(7074), 1, anon_sym_RBRACE, + ACTIONS(7076), 1, anon_sym_COMMA, - STATE(2859), 2, + STATE(3355), 3, sym_line_comment, sym_block_comment, - [85282] = 6, + aux_sym_struct_pattern_repeat1, + [98291] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(957), 1, - anon_sym_RPAREN, - ACTIONS(6143), 1, + ACTIONS(6111), 1, + anon_sym_PIPE, + ACTIONS(7079), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(2709), 1, - aux_sym_arguments_repeat1, - STATE(2860), 2, + STATE(3356), 2, sym_line_comment, sym_block_comment, - [85302] = 6, + [98309] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(6145), 1, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(7081), 1, anon_sym_SEMI, - ACTIONS(6147), 1, - anon_sym_EQ, - STATE(2861), 2, + STATE(3807), 1, + sym_where_clause, + STATE(3357), 2, sym_line_comment, sym_block_comment, - [85322] = 4, + [98329] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2862), 2, + ACTIONS(7085), 1, + anon_sym_COLON, + ACTIONS(7083), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3358), 2, sym_line_comment, sym_block_comment, - ACTIONS(6149), 3, - anon_sym_SEMI, - anon_sym_RBRACE, + [98347] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(6257), 1, + anon_sym_GT, + ACTIONS(7087), 1, anon_sym_COMMA, - [85338] = 6, + STATE(3359), 3, + sym_line_comment, + sym_block_comment, + aux_sym_type_arguments_repeat1, + [98365] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1607), 1, + ACTIONS(1627), 1, anon_sym_GT, - ACTIONS(6151), 1, + ACTIONS(7090), 1, anon_sym_COMMA, - STATE(3037), 1, + STATE(3359), 1, aux_sym_type_arguments_repeat1, - STATE(2863), 2, + STATE(3360), 2, sym_line_comment, sym_block_comment, - [85358] = 4, + [98385] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2864), 2, + ACTIONS(5523), 1, + anon_sym_LBRACE, + ACTIONS(7092), 1, + anon_sym_SEMI, + STATE(569), 1, + sym_declaration_list, + STATE(3361), 2, sym_line_comment, sym_block_comment, - ACTIONS(4720), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85374] = 6, + [98405] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4688), 1, - anon_sym_GT, - ACTIONS(6153), 1, - anon_sym_COMMA, - STATE(2913), 1, - aux_sym_type_parameters_repeat1, - STATE(2865), 2, + ACTIONS(4413), 1, + anon_sym_LT2, + ACTIONS(5572), 1, + anon_sym_COLON_COLON, + STATE(1873), 1, + sym_type_arguments, + STATE(3362), 2, sym_line_comment, sym_block_comment, - [85394] = 6, + [98425] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5895), 1, + ACTIONS(5147), 1, + anon_sym_COLON_COLON, + ACTIONS(5928), 2, anon_sym_RPAREN, - ACTIONS(5897), 1, anon_sym_COMMA, - STATE(2868), 1, - aux_sym_tuple_pattern_repeat1, - STATE(2866), 2, + STATE(3363), 2, sym_line_comment, sym_block_comment, - [85414] = 6, + [98443] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4950), 1, - anon_sym_LBRACE, - ACTIONS(6155), 1, - anon_sym_SEMI, - STATE(494), 1, - sym_declaration_list, - STATE(2867), 2, + STATE(3364), 2, sym_line_comment, sym_block_comment, - [85434] = 6, + ACTIONS(7094), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [98459] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(2993), 1, - anon_sym_RPAREN, - ACTIONS(6157), 1, + ACTIONS(7098), 1, + anon_sym_COLON, + ACTIONS(7096), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(2964), 1, - aux_sym_tuple_pattern_repeat1, - STATE(2868), 2, + STATE(3365), 2, sym_line_comment, sym_block_comment, - [85454] = 6, + [98477] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1507), 1, - anon_sym_RPAREN, - ACTIONS(6159), 1, - anon_sym_COMMA, - STATE(2840), 1, - aux_sym_parameters_repeat1, - STATE(2869), 2, + ACTIONS(7100), 1, + anon_sym_move, + STATE(226), 1, + sym_closure_parameters, + STATE(3366), 2, sym_line_comment, sym_block_comment, - [85474] = 6, + [98497] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1031), 1, - anon_sym_RPAREN, - ACTIONS(6161), 1, - anon_sym_COMMA, - STATE(2709), 1, - aux_sym_arguments_repeat1, - STATE(2870), 2, + ACTIONS(5042), 1, + anon_sym_LT2, + ACTIONS(7102), 1, + anon_sym_for, + STATE(2219), 1, + sym_type_arguments, + STATE(3367), 2, sym_line_comment, sym_block_comment, - [85494] = 6, + [98517] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4984), 1, - anon_sym_RBRACE, - ACTIONS(6163), 1, - anon_sym_COMMA, - STATE(3015), 1, - aux_sym_enum_variant_list_repeat2, - STATE(2871), 2, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(7104), 1, + anon_sym_SEMI, + STATE(3872), 1, + sym_where_clause, + STATE(3368), 2, sym_line_comment, sym_block_comment, - [85514] = 4, + [98537] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2872), 2, + ACTIONS(1501), 1, + anon_sym_RPAREN, + ACTIONS(7106), 1, + anon_sym_COMMA, + STATE(3347), 1, + aux_sym_parameters_repeat1, + STATE(3369), 2, sym_line_comment, sym_block_comment, - ACTIONS(4904), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85530] = 4, + [98557] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2873), 2, + ACTIONS(1637), 1, + anon_sym_GT, + ACTIONS(7108), 1, + anon_sym_COMMA, + STATE(3359), 1, + aux_sym_type_arguments_repeat1, + STATE(3370), 2, sym_line_comment, sym_block_comment, - ACTIONS(4862), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85546] = 6, + [98577] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4956), 1, - anon_sym_LBRACE, - ACTIONS(6165), 1, - anon_sym_SEMI, - STATE(1271), 1, - sym_declaration_list, - STATE(2874), 2, + ACTIONS(7110), 1, + anon_sym_GT, + ACTIONS(7112), 1, + anon_sym_COMMA, + STATE(3456), 1, + aux_sym_for_lifetimes_repeat1, + STATE(3371), 2, sym_line_comment, sym_block_comment, - [85566] = 6, + [98597] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4956), 1, - anon_sym_LBRACE, - ACTIONS(6167), 1, - anon_sym_SEMI, - STATE(1273), 1, - sym_declaration_list, - STATE(2875), 2, + ACTIONS(1631), 1, + anon_sym_GT, + ACTIONS(7114), 1, + anon_sym_COMMA, + STATE(3359), 1, + aux_sym_type_arguments_repeat1, + STATE(3372), 2, sym_line_comment, sym_block_comment, - [85586] = 4, + [98617] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2876), 2, + ACTIONS(7116), 1, + sym_identifier, + ACTIONS(7118), 1, + anon_sym_ref, + ACTIONS(7120), 1, + sym_mutable_specifier, + STATE(3373), 2, sym_line_comment, sym_block_comment, - ACTIONS(4850), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85602] = 4, + [98637] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2877), 2, + ACTIONS(5287), 1, + anon_sym_COLON_COLON, + ACTIONS(5461), 1, + anon_sym_BANG, + ACTIONS(7122), 1, + sym_identifier, + STATE(3374), 2, sym_line_comment, sym_block_comment, - ACTIONS(4824), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85618] = 6, + [98657] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4956), 1, - anon_sym_LBRACE, - ACTIONS(6169), 1, - anon_sym_SEMI, - STATE(1279), 1, - sym_declaration_list, - STATE(2878), 2, + ACTIONS(1007), 1, + anon_sym_RPAREN, + ACTIONS(7124), 1, + anon_sym_COMMA, + STATE(2923), 1, + aux_sym_arguments_repeat1, + STATE(3375), 2, sym_line_comment, sym_block_comment, - [85638] = 6, + [98677] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4956), 1, - anon_sym_LBRACE, - ACTIONS(6171), 1, - anon_sym_SEMI, - STATE(1281), 1, - sym_declaration_list, - STATE(2879), 2, + ACTIONS(5487), 1, + anon_sym_LT, + ACTIONS(7126), 1, + anon_sym_EQ, + STATE(3913), 1, + sym_type_parameters, + STATE(3376), 2, sym_line_comment, sym_block_comment, - [85658] = 6, + [98697] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, + ACTIONS(3587), 1, anon_sym_PLUS, - ACTIONS(6173), 1, - anon_sym_SEMI, - ACTIONS(6175), 1, - anon_sym_EQ, - STATE(2880), 2, + ACTIONS(7128), 1, + sym_mutable_specifier, + ACTIONS(7130), 1, + sym_self, + STATE(3377), 2, sym_line_comment, sym_block_comment, - [85678] = 6, + [98717] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4986), 1, - anon_sym_RBRACE, - ACTIONS(6177), 1, + ACTIONS(1497), 1, + anon_sym_RPAREN, + ACTIONS(6317), 1, anon_sym_COMMA, - STATE(3020), 1, - aux_sym_field_declaration_list_repeat1, - STATE(2881), 2, + STATE(3369), 1, + aux_sym_parameters_repeat1, + STATE(3378), 2, sym_line_comment, sym_block_comment, - [85698] = 4, + [98737] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2882), 2, + ACTIONS(1497), 1, + anon_sym_RPAREN, + ACTIONS(6317), 1, + anon_sym_COMMA, + STATE(3347), 1, + aux_sym_parameters_repeat1, + STATE(3379), 2, sym_line_comment, sym_block_comment, - ACTIONS(4734), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85714] = 5, + [98757] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6179), 1, - anon_sym_AMP_AMP, - ACTIONS(4249), 2, - anon_sym_LBRACE, - anon_sym_SQUOTE, - STATE(2883), 2, + ACTIONS(1499), 1, + anon_sym_RPAREN, + ACTIONS(7132), 1, + anon_sym_COMMA, + STATE(3347), 1, + aux_sym_parameters_repeat1, + STATE(3380), 2, sym_line_comment, sym_block_comment, - [85732] = 4, + [98777] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2884), 2, + ACTIONS(3487), 1, + anon_sym_RBRACK, + ACTIONS(7134), 1, + anon_sym_COMMA, + STATE(2957), 1, + aux_sym_slice_pattern_repeat1, + STATE(3381), 2, sym_line_comment, sym_block_comment, - ACTIONS(4884), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85748] = 4, + [98797] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2885), 2, + ACTIONS(7136), 1, + anon_sym_RPAREN, + ACTIONS(7138), 1, + anon_sym_COMMA, + STATE(3382), 3, sym_line_comment, sym_block_comment, - ACTIONS(4840), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85764] = 4, + aux_sym_tuple_type_repeat1, + [98815] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2886), 2, + ACTIONS(5550), 1, + anon_sym_RBRACE, + ACTIONS(7141), 1, + anon_sym_COMMA, + STATE(3340), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3383), 2, sym_line_comment, sym_block_comment, - ACTIONS(4902), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [85780] = 5, + [98835] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6179), 1, - anon_sym_AMP_AMP, - ACTIONS(6181), 2, - anon_sym_LBRACE, - anon_sym_SQUOTE, - STATE(2887), 2, + ACTIONS(1607), 1, + anon_sym_GT, + ACTIONS(7143), 1, + anon_sym_COMMA, + STATE(3359), 1, + aux_sym_type_arguments_repeat1, + STATE(3384), 2, sym_line_comment, sym_block_comment, - [85798] = 6, + [98855] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(6183), 1, - anon_sym_SEMI, - STATE(3509), 1, - sym_where_clause, - STATE(2888), 2, + ACTIONS(1607), 1, + anon_sym_GT, + ACTIONS(7143), 1, + anon_sym_COMMA, + STATE(3370), 1, + aux_sym_type_arguments_repeat1, + STATE(3385), 2, sym_line_comment, sym_block_comment, - [85818] = 6, + [98875] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4956), 1, + ACTIONS(5473), 1, anon_sym_LBRACE, - ACTIONS(6185), 1, + ACTIONS(7145), 1, anon_sym_SEMI, - STATE(1318), 1, + STATE(1303), 1, sym_declaration_list, - STATE(2889), 2, + STATE(3386), 2, sym_line_comment, sym_block_comment, - [85838] = 6, + [98895] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4956), 1, + ACTIONS(5473), 1, anon_sym_LBRACE, - ACTIONS(6187), 1, + ACTIONS(7147), 1, anon_sym_SEMI, - STATE(1320), 1, + STATE(1300), 1, sym_declaration_list, - STATE(2890), 2, + STATE(3387), 2, sym_line_comment, sym_block_comment, - [85858] = 6, + [98915] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(6189), 1, + ACTIONS(5523), 1, + anon_sym_LBRACE, + ACTIONS(7149), 1, anon_sym_SEMI, - STATE(3527), 1, - sym_where_clause, - STATE(2891), 2, + STATE(825), 1, + sym_declaration_list, + STATE(3388), 2, sym_line_comment, sym_block_comment, - [85878] = 6, + [98935] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4956), 1, - anon_sym_LBRACE, - ACTIONS(6191), 1, - anon_sym_SEMI, - STATE(1326), 1, - sym_declaration_list, - STATE(2892), 2, + ACTIONS(5487), 1, + anon_sym_LT, + ACTIONS(5630), 1, + anon_sym_EQ, + STATE(3790), 1, + sym_type_parameters, + STATE(3389), 2, sym_line_comment, sym_block_comment, - [85898] = 6, + [98955] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4956), 1, - anon_sym_LBRACE, - ACTIONS(6193), 1, - anon_sym_SEMI, - STATE(1328), 1, - sym_declaration_list, - STATE(2893), 2, + ACTIONS(7151), 1, + anon_sym_move, + STATE(217), 1, + sym_closure_parameters, + STATE(3390), 2, sym_line_comment, sym_block_comment, - [85918] = 6, + [98975] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4956), 1, - anon_sym_LBRACE, - ACTIONS(6195), 1, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(7153), 1, anon_sym_SEMI, - STATE(1334), 1, - sym_declaration_list, - STATE(2894), 2, + STATE(3891), 1, + sym_where_clause, + STATE(3391), 2, sym_line_comment, sym_block_comment, - [85938] = 6, + [98995] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4956), 1, + ACTIONS(5473), 1, anon_sym_LBRACE, - ACTIONS(6197), 1, + ACTIONS(7155), 1, anon_sym_SEMI, - STATE(1336), 1, + STATE(1291), 1, sym_declaration_list, - STATE(2895), 2, + STATE(3392), 2, sym_line_comment, sym_block_comment, - [85958] = 6, + [99015] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(6199), 1, + ACTIONS(5473), 1, + anon_sym_LBRACE, + ACTIONS(7157), 1, anon_sym_SEMI, - ACTIONS(6201), 1, - anon_sym_EQ, - STATE(2896), 2, + STATE(1289), 1, + sym_declaration_list, + STATE(3393), 2, sym_line_comment, sym_block_comment, - [85978] = 6, + [99035] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1495), 1, + ACTIONS(6309), 1, anon_sym_RPAREN, - ACTIONS(6203), 1, + ACTIONS(6311), 1, anon_sym_COMMA, - STATE(2840), 1, + STATE(3379), 1, aux_sym_parameters_repeat1, - STATE(2897), 2, + STATE(3394), 2, sym_line_comment, sym_block_comment, - [85998] = 6, + [99055] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4956), 1, - anon_sym_LBRACE, - ACTIONS(6205), 1, - anon_sym_SEMI, - STATE(1352), 1, - sym_declaration_list, - STATE(2898), 2, + ACTIONS(3601), 1, + anon_sym_RPAREN, + ACTIONS(7159), 1, + anon_sym_COMMA, + STATE(3382), 1, + aux_sym_tuple_type_repeat1, + STATE(3395), 2, sym_line_comment, sym_block_comment, - [86018] = 6, + [99075] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4956), 1, - anon_sym_LBRACE, - ACTIONS(6207), 1, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(7161), 1, anon_sym_SEMI, - STATE(1354), 1, - sym_declaration_list, - STATE(2899), 2, + ACTIONS(7163), 1, + anon_sym_EQ, + STATE(3396), 2, sym_line_comment, sym_block_comment, - [86038] = 6, + [99095] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, + ACTIONS(5608), 1, anon_sym_PLUS, - ACTIONS(6209), 1, + ACTIONS(7165), 1, anon_sym_SEMI, - ACTIONS(6211), 1, + ACTIONS(7167), 1, anon_sym_EQ, - STATE(2900), 2, + STATE(3397), 2, sym_line_comment, sym_block_comment, - [86058] = 6, + [99115] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6213), 1, - anon_sym_RBRACE, - ACTIONS(6215), 1, + ACTIONS(3651), 1, + anon_sym_RPAREN, + ACTIONS(7169), 1, anon_sym_COMMA, - STATE(2998), 1, - aux_sym_struct_pattern_repeat1, - STATE(2901), 2, + STATE(3382), 1, + aux_sym_tuple_type_repeat1, + STATE(3398), 2, sym_line_comment, sym_block_comment, - [86078] = 5, + [99135] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6219), 1, - anon_sym_COLON, - ACTIONS(6217), 2, + ACTIONS(7171), 1, anon_sym_RBRACE, + ACTIONS(7173), 1, anon_sym_COMMA, - STATE(2902), 2, + STATE(3429), 1, + aux_sym_struct_pattern_repeat1, + STATE(3399), 2, sym_line_comment, sym_block_comment, - [86096] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, + [99155] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6221), 1, - anon_sym_move, - STATE(219), 1, - sym_closure_parameters, - STATE(2903), 2, + ACTIONS(5586), 1, + anon_sym_RBRACE, + ACTIONS(7175), 1, + anon_sym_COMMA, + STATE(3307), 1, + aux_sym_field_declaration_list_repeat1, + STATE(3400), 2, sym_line_comment, sym_block_comment, - [86116] = 6, + [99175] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, + ACTIONS(5608), 1, anon_sym_PLUS, - ACTIONS(6223), 1, + ACTIONS(7177), 1, anon_sym_SEMI, - ACTIONS(6225), 1, - anon_sym_RBRACK, - STATE(2904), 2, + ACTIONS(7179), 1, + anon_sym_EQ, + STATE(3401), 2, sym_line_comment, sym_block_comment, - [86136] = 6, + [99195] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6227), 1, - anon_sym_RBRACE, - ACTIONS(6229), 1, - anon_sym_COMMA, - STATE(2834), 1, - aux_sym_field_initializer_list_repeat1, - STATE(2905), 2, + ACTIONS(4471), 1, + anon_sym_LBRACE, + ACTIONS(7181), 1, + anon_sym_COLON_COLON, + STATE(2010), 1, + sym_field_initializer_list, + STATE(3402), 2, sym_line_comment, sym_block_comment, - [86156] = 6, + [99215] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3197), 1, - anon_sym_RPAREN, - ACTIONS(6231), 1, + ACTIONS(7183), 1, + anon_sym_RBRACE, + ACTIONS(7185), 1, anon_sym_COMMA, - STATE(3001), 1, - aux_sym_tuple_type_repeat1, - STATE(2906), 2, + STATE(3403), 3, sym_line_comment, sym_block_comment, - [86176] = 6, + aux_sym_field_initializer_list_repeat1, + [99233] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6233), 1, - anon_sym_EQ_GT, - ACTIONS(6235), 1, - anon_sym_PIPE, - ACTIONS(6237), 1, - anon_sym_if, - STATE(2907), 2, + ACTIONS(7188), 1, + anon_sym_RBRACE, + ACTIONS(7190), 1, + anon_sym_COMMA, + STATE(3404), 3, sym_line_comment, sym_block_comment, - [86196] = 6, + aux_sym_use_list_repeat1, + [99251] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4950), 1, - anon_sym_LBRACE, - ACTIONS(6239), 1, - anon_sym_SEMI, - STATE(583), 1, - sym_declaration_list, - STATE(2908), 2, + STATE(3405), 2, sym_line_comment, sym_block_comment, - [86216] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(6241), 2, - anon_sym_GT, + ACTIONS(7193), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(2909), 2, - sym_line_comment, - sym_block_comment, - [86234] = 4, + [99267] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2910), 2, + ACTIONS(3747), 1, + anon_sym_LT2, + ACTIONS(5477), 1, + anon_sym_COLON_COLON, + STATE(1437), 1, + sym_type_arguments, + STATE(3406), 2, sym_line_comment, sym_block_comment, - ACTIONS(5510), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [86250] = 6, + [99287] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(6243), 1, - anon_sym_SEMI, - STATE(3515), 1, - sym_where_clause, - STATE(2911), 2, + ACTIONS(7195), 1, + sym_identifier, + ACTIONS(7197), 1, + anon_sym_ref, + ACTIONS(7199), 1, + sym_mutable_specifier, + STATE(3407), 2, sym_line_comment, sym_block_comment, - [86270] = 6, + [99307] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, + ACTIONS(5608), 1, anon_sym_PLUS, - ACTIONS(6245), 1, + ACTIONS(7201), 1, anon_sym_SEMI, - ACTIONS(6247), 1, + ACTIONS(7203), 1, anon_sym_RBRACK, - STATE(2912), 2, + STATE(3408), 2, sym_line_comment, sym_block_comment, - [86290] = 5, + [99327] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5702), 1, - anon_sym_GT, - ACTIONS(6249), 1, - anon_sym_COMMA, - STATE(2913), 3, + ACTIONS(5523), 1, + anon_sym_LBRACE, + ACTIONS(7205), 1, + anon_sym_SEMI, + STATE(756), 1, + sym_declaration_list, + STATE(3409), 2, sym_line_comment, sym_block_comment, - aux_sym_type_parameters_repeat1, - [86308] = 6, + [99347] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3305), 1, + ACTIONS(5042), 1, anon_sym_LT2, - ACTIONS(4972), 1, - anon_sym_COLON_COLON, - STATE(1087), 1, + ACTIONS(7207), 1, + anon_sym_for, + STATE(2219), 1, sym_type_arguments, - STATE(2914), 2, + STATE(3410), 2, sym_line_comment, sym_block_comment, - [86328] = 4, + [99367] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2915), 2, + ACTIONS(5501), 1, + anon_sym_RBRACE, + ACTIONS(7209), 1, + anon_sym_COMMA, + STATE(3306), 1, + aux_sym_field_declaration_list_repeat1, + STATE(3411), 2, sym_line_comment, sym_block_comment, - ACTIONS(4872), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86344] = 5, + [99387] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(6252), 2, - anon_sym_RPAREN, + ACTIONS(5501), 1, + anon_sym_RBRACE, + ACTIONS(7209), 1, anon_sym_COMMA, - STATE(2916), 2, + STATE(3307), 1, + aux_sym_field_declaration_list_repeat1, + STATE(3412), 2, sym_line_comment, sym_block_comment, - [86362] = 6, + [99407] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(967), 1, + ACTIONS(7211), 1, anon_sym_RPAREN, - ACTIONS(4159), 1, + ACTIONS(7213), 1, anon_sym_COMMA, - STATE(2709), 1, - aux_sym_arguments_repeat1, - STATE(2917), 2, + STATE(3314), 1, + aux_sym_ordered_field_declaration_list_repeat1, + STATE(3413), 2, sym_line_comment, sym_block_comment, - [86382] = 4, + [99427] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2918), 2, + ACTIONS(5523), 1, + anon_sym_LBRACE, + ACTIONS(7215), 1, + anon_sym_SEMI, + STATE(718), 1, + sym_declaration_list, + STATE(3414), 2, sym_line_comment, sym_block_comment, - ACTIONS(1455), 3, - anon_sym_EQ_GT, + [99447] = 6, + ACTIONS(27), 1, anon_sym_PIPE, - anon_sym_if, - [86398] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2919), 2, + ACTIONS(7217), 1, + anon_sym_move, + STATE(236), 1, + sym_closure_parameters, + STATE(3415), 2, sym_line_comment, sym_block_comment, - ACTIONS(4808), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86414] = 6, + [99467] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3195), 1, - anon_sym_RPAREN, - ACTIONS(6254), 1, - anon_sym_COMMA, - STATE(3001), 1, - aux_sym_tuple_type_repeat1, - STATE(2920), 2, + ACTIONS(5523), 1, + anon_sym_LBRACE, + ACTIONS(7219), 1, + anon_sym_SEMI, + STATE(707), 1, + sym_declaration_list, + STATE(3416), 2, sym_line_comment, sym_block_comment, - [86434] = 6, + [99487] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4950), 1, - anon_sym_LBRACE, - ACTIONS(6256), 1, - anon_sym_SEMI, - STATE(570), 1, - sym_declaration_list, - STATE(2921), 2, + ACTIONS(5247), 1, + anon_sym_GT, + ACTIONS(7221), 1, + anon_sym_COMMA, + STATE(3420), 1, + aux_sym_type_parameters_repeat1, + STATE(3417), 2, sym_line_comment, sym_block_comment, - [86454] = 6, + [99507] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5575), 1, - anon_sym_RPAREN, - ACTIONS(5577), 1, + ACTIONS(5249), 1, + anon_sym_GT, + ACTIONS(7223), 1, anon_sym_COMMA, - STATE(2927), 1, - aux_sym_parameters_repeat1, - STATE(2922), 2, + STATE(3420), 1, + aux_sym_type_parameters_repeat1, + STATE(3418), 2, sym_line_comment, sym_block_comment, - [86474] = 6, + [99527] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6258), 1, - anon_sym_RPAREN, - ACTIONS(6260), 1, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(7225), 2, + anon_sym_GT, anon_sym_COMMA, - STATE(2997), 1, - aux_sym_ordered_field_declaration_list_repeat1, - STATE(2923), 2, + STATE(3419), 2, sym_line_comment, sym_block_comment, - [86494] = 6, + [99545] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(6262), 1, - anon_sym_SEMI, - STATE(3583), 1, - sym_where_clause, - STATE(2924), 2, + ACTIONS(6385), 1, + anon_sym_GT, + ACTIONS(7227), 1, + anon_sym_COMMA, + STATE(3420), 3, sym_line_comment, sym_block_comment, - [86514] = 6, + aux_sym_type_parameters_repeat1, + [99563] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1627), 1, - anon_sym_GT, - ACTIONS(6264), 1, + ACTIONS(7230), 1, + anon_sym_PIPE, + ACTIONS(7232), 1, anon_sym_COMMA, - STATE(2931), 1, - aux_sym_type_arguments_repeat1, - STATE(2925), 2, + STATE(3421), 3, sym_line_comment, sym_block_comment, - [86534] = 6, + aux_sym_closure_parameters_repeat1, + [99581] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1627), 1, + ACTIONS(6431), 1, + anon_sym_EQ, + ACTIONS(6385), 2, anon_sym_GT, - ACTIONS(6264), 1, anon_sym_COMMA, - STATE(3037), 1, - aux_sym_type_arguments_repeat1, - STATE(2926), 2, + STATE(3422), 2, sym_line_comment, sym_block_comment, - [86554] = 6, + [99599] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1503), 1, - anon_sym_RPAREN, - ACTIONS(5579), 1, - anon_sym_COMMA, - STATE(2840), 1, - aux_sym_parameters_repeat1, - STATE(2927), 2, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(7235), 1, + anon_sym_SEMI, + STATE(3819), 1, + sym_where_clause, + STATE(3423), 2, sym_line_comment, sym_block_comment, - [86574] = 6, + [99619] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1503), 1, - anon_sym_RPAREN, - ACTIONS(5579), 1, - anon_sym_COMMA, - STATE(2932), 1, - aux_sym_parameters_repeat1, - STATE(2928), 2, + ACTIONS(5473), 1, + anon_sym_LBRACE, + ACTIONS(7237), 1, + anon_sym_SEMI, + STATE(1245), 1, + sym_declaration_list, + STATE(3424), 2, sym_line_comment, sym_block_comment, - [86594] = 5, + [99639] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6266), 1, - anon_sym_GT, - ACTIONS(6268), 1, - anon_sym_COMMA, - STATE(2929), 3, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(7239), 1, + anon_sym_SEMI, + ACTIONS(7241), 1, + anon_sym_EQ, + STATE(3425), 2, sym_line_comment, sym_block_comment, - aux_sym_for_lifetimes_repeat1, - [86612] = 5, + [99659] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(6271), 2, + ACTIONS(7243), 1, anon_sym_RBRACE, + ACTIONS(7245), 1, anon_sym_COMMA, - STATE(2930), 2, + STATE(3253), 1, + aux_sym_field_initializer_list_repeat1, + STATE(3426), 2, sym_line_comment, sym_block_comment, - [86630] = 6, + [99679] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1635), 1, - anon_sym_GT, - ACTIONS(6273), 1, - anon_sym_COMMA, - STATE(3037), 1, - aux_sym_type_arguments_repeat1, - STATE(2931), 2, + ACTIONS(5473), 1, + anon_sym_LBRACE, + ACTIONS(7247), 1, + anon_sym_SEMI, + STATE(1426), 1, + sym_declaration_list, + STATE(3427), 2, sym_line_comment, sym_block_comment, - [86650] = 6, + [99699] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1509), 1, - anon_sym_RPAREN, - ACTIONS(6275), 1, - anon_sym_COMMA, - STATE(2840), 1, - aux_sym_parameters_repeat1, - STATE(2932), 2, + ACTIONS(5489), 1, + anon_sym_where, + ACTIONS(7249), 1, + anon_sym_SEMI, + STATE(4122), 1, + sym_where_clause, + STATE(3428), 2, sym_line_comment, sym_block_comment, - [86670] = 5, + [99719] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5482), 1, - anon_sym_PIPE, - ACTIONS(6277), 2, + ACTIONS(5760), 1, anon_sym_RBRACE, + ACTIONS(7251), 1, anon_sym_COMMA, - STATE(2933), 2, + STATE(3355), 1, + aux_sym_struct_pattern_repeat1, + STATE(3429), 2, sym_line_comment, sym_block_comment, - [86688] = 6, + [99739] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(6279), 1, + ACTIONS(5473), 1, + anon_sym_LBRACE, + ACTIONS(7253), 1, anon_sym_SEMI, - ACTIONS(6281), 1, - anon_sym_EQ, - STATE(2934), 2, + STATE(1419), 1, + sym_declaration_list, + STATE(3430), 2, sym_line_comment, sym_block_comment, - [86708] = 4, + [99759] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2935), 2, + ACTIONS(5473), 1, + anon_sym_LBRACE, + ACTIONS(7255), 1, + anon_sym_SEMI, + STATE(1302), 1, + sym_declaration_list, + STATE(3431), 2, sym_line_comment, sym_block_comment, - ACTIONS(4880), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86724] = 4, + [99779] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2936), 2, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(7136), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3432), 2, sym_line_comment, sym_block_comment, - ACTIONS(4848), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86740] = 6, + [99797] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(4960), 1, - anon_sym_for, - STATE(1955), 1, - sym_type_arguments, - STATE(2937), 2, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(7257), 1, + anon_sym_SEMI, + ACTIONS(7259), 1, + anon_sym_EQ, + STATE(3433), 2, sym_line_comment, sym_block_comment, - [86760] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, + [99817] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6283), 1, - anon_sym_move, - STATE(223), 1, - sym_closure_parameters, - STATE(2938), 2, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(7261), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(3434), 2, sym_line_comment, sym_block_comment, - [86780] = 6, + [99835] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(4952), 1, - anon_sym_COLON_COLON, - STATE(1952), 1, - sym_type_arguments, - STATE(2939), 2, + ACTIONS(6227), 1, + anon_sym_COLON, + ACTIONS(7230), 2, + anon_sym_PIPE, + anon_sym_COMMA, + STATE(3435), 2, sym_line_comment, sym_block_comment, - [86800] = 6, + [99853] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4950), 1, - anon_sym_LBRACE, - ACTIONS(6285), 1, - anon_sym_SEMI, - STATE(541), 1, - sym_declaration_list, - STATE(2940), 2, + ACTIONS(1495), 1, + anon_sym_RPAREN, + ACTIONS(6199), 1, + anon_sym_COMMA, + STATE(3347), 1, + aux_sym_parameters_repeat1, + STATE(3436), 2, sym_line_comment, sym_block_comment, - [86820] = 5, + [99873] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4612), 1, - anon_sym_COLON_COLON, - ACTIONS(6287), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2941), 2, + ACTIONS(5473), 1, + anon_sym_LBRACE, + ACTIONS(7263), 1, + anon_sym_SEMI, + STATE(1272), 1, + sym_declaration_list, + STATE(3437), 2, sym_line_comment, sym_block_comment, - [86838] = 4, + [99893] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2942), 2, + ACTIONS(5552), 1, + anon_sym_RBRACE, + ACTIONS(7265), 1, + anon_sym_COMMA, + STATE(3340), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3438), 2, sym_line_comment, sym_block_comment, - ACTIONS(4852), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86854] = 6, + [99913] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3071), 1, - anon_sym_RBRACK, - ACTIONS(6289), 1, + ACTIONS(7267), 1, + anon_sym_RBRACE, + ACTIONS(7269), 1, anon_sym_COMMA, - STATE(2641), 1, - aux_sym_slice_pattern_repeat1, - STATE(2943), 2, + STATE(3466), 1, + aux_sym_struct_pattern_repeat1, + STATE(3439), 2, sym_line_comment, sym_block_comment, - [86874] = 6, + [99933] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6291), 1, - sym_identifier, - ACTIONS(6293), 1, - anon_sym_ref, - ACTIONS(6295), 1, - sym_mutable_specifier, - STATE(2944), 2, + ACTIONS(7273), 1, + anon_sym_COLON, + ACTIONS(7271), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3440), 2, sym_line_comment, sym_block_comment, - [86894] = 5, + [99951] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(5744), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2945), 2, + ACTIONS(5473), 1, + anon_sym_LBRACE, + ACTIONS(7275), 1, + anon_sym_SEMI, + STATE(1593), 1, + sym_declaration_list, + STATE(3441), 2, sym_line_comment, sym_block_comment, - [86912] = 6, + [99971] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4011), 1, - anon_sym_LT2, - ACTIONS(4994), 1, - anon_sym_COLON_COLON, - STATE(1615), 1, - sym_type_arguments, - STATE(2946), 2, + ACTIONS(5473), 1, + anon_sym_LBRACE, + ACTIONS(7277), 1, + anon_sym_SEMI, + STATE(1589), 1, + sym_declaration_list, + STATE(3442), 2, sym_line_comment, sym_block_comment, - [86932] = 6, + [99991] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4690), 1, - anon_sym_GT, - ACTIONS(6297), 1, - anon_sym_COMMA, - STATE(2913), 1, - aux_sym_type_parameters_repeat1, - STATE(2947), 2, + ACTIONS(5473), 1, + anon_sym_LBRACE, + ACTIONS(7279), 1, + anon_sym_SEMI, + STATE(1225), 1, + sym_declaration_list, + STATE(3443), 2, sym_line_comment, sym_block_comment, - [86952] = 6, + [100011] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4950), 1, + ACTIONS(5473), 1, anon_sym_LBRACE, - ACTIONS(6299), 1, + ACTIONS(7281), 1, anon_sym_SEMI, - STATE(543), 1, + STATE(1223), 1, sym_declaration_list, - STATE(2948), 2, + STATE(3444), 2, sym_line_comment, sym_block_comment, - [86972] = 6, + [100031] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6301), 1, - anon_sym_RBRACE, - ACTIONS(6303), 1, - anon_sym_COMMA, - STATE(3022), 1, - aux_sym_field_declaration_list_repeat1, - STATE(2949), 2, + ACTIONS(3419), 1, + anon_sym_SQUOTE, + ACTIONS(7283), 1, + anon_sym_GT, + STATE(3686), 1, + sym_lifetime, + STATE(3445), 2, sym_line_comment, sym_block_comment, - [86992] = 6, + [100051] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4768), 1, - anon_sym_COLON_COLON, - ACTIONS(4888), 1, - anon_sym_BANG, - ACTIONS(6305), 1, - sym_identifier, - STATE(2950), 2, + ACTIONS(951), 1, + anon_sym_RBRACK, + ACTIONS(4571), 1, + anon_sym_COMMA, + STATE(2923), 1, + aux_sym_arguments_repeat1, + STATE(3446), 2, sym_line_comment, sym_block_comment, - [87012] = 6, + [100071] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(6307), 1, - anon_sym_SEMI, - ACTIONS(6309), 1, - anon_sym_EQ, - STATE(2951), 2, + STATE(3447), 2, sym_line_comment, sym_block_comment, - [87032] = 6, - ACTIONS(27), 1, + ACTIONS(1437), 3, + anon_sym_EQ_GT, anon_sym_PIPE, + anon_sym_if, + [100087] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6311), 1, - anon_sym_move, - STATE(233), 1, - sym_closure_parameters, - STATE(2952), 2, + ACTIONS(3407), 1, + anon_sym_RPAREN, + ACTIONS(7285), 1, + anon_sym_COMMA, + STATE(3457), 1, + aux_sym_tuple_pattern_repeat1, + STATE(3448), 2, sym_line_comment, sym_block_comment, - [87052] = 6, + [100107] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5317), 1, - anon_sym_GT, - ACTIONS(5319), 1, + ACTIONS(953), 1, + anon_sym_RBRACK, + ACTIONS(7287), 1, anon_sym_COMMA, - STATE(2826), 1, - aux_sym_type_parameters_repeat1, - STATE(2953), 2, + STATE(2923), 1, + aux_sym_arguments_repeat1, + STATE(3449), 2, sym_line_comment, sym_block_comment, - [87072] = 4, + [100127] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2954), 2, + ACTIONS(5473), 1, + anon_sym_LBRACE, + ACTIONS(7289), 1, + anon_sym_SEMI, + STATE(1215), 1, + sym_declaration_list, + STATE(3450), 2, sym_line_comment, sym_block_comment, - ACTIONS(6313), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [87088] = 6, + [100147] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4950), 1, + ACTIONS(5473), 1, anon_sym_LBRACE, - ACTIONS(6315), 1, + ACTIONS(7291), 1, anon_sym_SEMI, - STATE(549), 1, + STATE(1212), 1, sym_declaration_list, - STATE(2955), 2, + STATE(3451), 2, sym_line_comment, sym_block_comment, - [87108] = 6, + [100167] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4055), 1, - anon_sym_LBRACE, - ACTIONS(6317), 1, - anon_sym_COLON_COLON, - STATE(1696), 1, - sym_field_initializer_list, - STATE(2956), 2, + ACTIONS(5552), 1, + anon_sym_RBRACE, + ACTIONS(7265), 1, + anon_sym_COMMA, + STATE(3335), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3452), 2, sym_line_comment, sym_block_comment, - [87128] = 6, + [100187] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4950), 1, - anon_sym_LBRACE, - ACTIONS(6319), 1, - anon_sym_SEMI, - STATE(551), 1, - sym_declaration_list, - STATE(2957), 2, + ACTIONS(6111), 1, + anon_sym_PIPE, + ACTIONS(7293), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3453), 2, sym_line_comment, sym_block_comment, - [87148] = 6, + [100205] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6321), 1, - anon_sym_LPAREN, - ACTIONS(6323), 1, - anon_sym_LBRACK, - ACTIONS(6325), 1, + ACTIONS(5473), 1, anon_sym_LBRACE, - STATE(2958), 2, + ACTIONS(7295), 1, + anon_sym_SEMI, + STATE(1299), 1, + sym_declaration_list, + STATE(3454), 2, sym_line_comment, sym_block_comment, - [87168] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, + [100225] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6327), 1, - anon_sym_move, - STATE(234), 1, - sym_closure_parameters, - STATE(2959), 2, + ACTIONS(5473), 1, + anon_sym_LBRACE, + ACTIONS(7297), 1, + anon_sym_SEMI, + STATE(1315), 1, + sym_declaration_list, + STATE(3455), 2, sym_line_comment, sym_block_comment, - [87188] = 6, + [100245] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6329), 1, - sym_identifier, - ACTIONS(6331), 1, - anon_sym_await, - ACTIONS(6333), 1, - sym_integer_literal, - STATE(2960), 2, + ACTIONS(7283), 1, + anon_sym_GT, + ACTIONS(7299), 1, + anon_sym_COMMA, + STATE(3342), 1, + aux_sym_for_lifetimes_repeat1, + STATE(3456), 2, sym_line_comment, sym_block_comment, - [87208] = 6, + [100265] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(999), 1, - anon_sym_RBRACK, - ACTIONS(6335), 1, + ACTIONS(7293), 1, + anon_sym_RPAREN, + ACTIONS(7301), 1, anon_sym_COMMA, - STATE(2709), 1, - aux_sym_arguments_repeat1, - STATE(2961), 2, + STATE(3457), 3, sym_line_comment, sym_block_comment, - [87228] = 5, + aux_sym_tuple_pattern_repeat1, + [100283] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5482), 1, - anon_sym_PIPE, - ACTIONS(6337), 2, - anon_sym_RPAREN, + ACTIONS(1635), 1, + anon_sym_GT, + ACTIONS(7304), 1, anon_sym_COMMA, - STATE(2962), 2, + STATE(3360), 1, + aux_sym_type_arguments_repeat1, + STATE(3458), 2, sym_line_comment, sym_block_comment, - [87246] = 6, + [100303] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, + ACTIONS(5608), 1, anon_sym_PLUS, - ACTIONS(6339), 1, + ACTIONS(7306), 1, anon_sym_SEMI, - ACTIONS(6341), 1, + ACTIONS(7308), 1, anon_sym_EQ, - STATE(2963), 2, + STATE(3459), 2, sym_line_comment, sym_block_comment, - [87266] = 5, + [100323] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6337), 1, - anon_sym_RPAREN, - ACTIONS(6343), 1, - anon_sym_COMMA, - STATE(2964), 3, + ACTIONS(5473), 1, + anon_sym_LBRACE, + ACTIONS(7310), 1, + anon_sym_SEMI, + STATE(1544), 1, + sym_declaration_list, + STATE(3460), 2, sym_line_comment, sym_block_comment, - aux_sym_tuple_pattern_repeat1, - [87284] = 6, + [100343] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4950), 1, + ACTIONS(5473), 1, anon_sym_LBRACE, - ACTIONS(6346), 1, + ACTIONS(7312), 1, anon_sym_SEMI, - STATE(642), 1, + STATE(1540), 1, sym_declaration_list, - STATE(2965), 2, + STATE(3461), 2, sym_line_comment, sym_block_comment, - [87304] = 6, + [100363] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(6348), 1, - anon_sym_SEMI, - STATE(3403), 1, - sym_where_clause, - STATE(2966), 2, + ACTIONS(1635), 1, + anon_sym_GT, + ACTIONS(7304), 1, + anon_sym_COMMA, + STATE(3359), 1, + aux_sym_type_arguments_repeat1, + STATE(3462), 2, sym_line_comment, sym_block_comment, - [87324] = 6, + [100383] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4944), 1, - anon_sym_LT, - ACTIONS(6350), 1, - anon_sym_EQ, - STATE(3605), 1, - sym_type_parameters, - STATE(2967), 2, + ACTIONS(3491), 1, + anon_sym_RPAREN, + ACTIONS(7314), 1, + anon_sym_COMMA, + STATE(2957), 1, + aux_sym_slice_pattern_repeat1, + STATE(3463), 2, sym_line_comment, sym_block_comment, - [87344] = 4, + [100403] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2968), 2, + ACTIONS(1495), 1, + anon_sym_RPAREN, + ACTIONS(6199), 1, + anon_sym_COMMA, + STATE(3345), 1, + aux_sym_parameters_repeat1, + STATE(3464), 2, sym_line_comment, sym_block_comment, - ACTIONS(6352), 3, - sym_string_content, - anon_sym_DQUOTE, - sym_escape_sequence, - [87360] = 6, + [100423] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6354), 1, + ACTIONS(7318), 1, + anon_sym_COLON, + ACTIONS(7316), 2, anon_sym_RBRACE, - ACTIONS(6356), 1, anon_sym_COMMA, - STATE(3030), 1, - aux_sym_enum_variant_list_repeat2, - STATE(2969), 2, + STATE(3465), 2, sym_line_comment, sym_block_comment, - [87380] = 6, + [100441] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4950), 1, - anon_sym_LBRACE, - ACTIONS(6358), 1, - anon_sym_SEMI, - STATE(591), 1, - sym_declaration_list, - STATE(2970), 2, + ACTIONS(5806), 1, + anon_sym_RBRACE, + ACTIONS(7320), 1, + anon_sym_COMMA, + STATE(3355), 1, + aux_sym_struct_pattern_repeat1, + STATE(3466), 2, sym_line_comment, sym_block_comment, - [87400] = 6, + [100461] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(6360), 1, - anon_sym_SEMI, - STATE(3623), 1, - sym_where_clause, - STATE(2971), 2, + ACTIONS(3485), 1, + anon_sym_RPAREN, + ACTIONS(7322), 1, + anon_sym_COMMA, + STATE(2957), 1, + aux_sym_slice_pattern_repeat1, + STATE(3467), 2, sym_line_comment, sym_block_comment, - [87420] = 4, + [100481] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2972), 2, + ACTIONS(6623), 1, + sym_super, + ACTIONS(7324), 1, + sym_identifier, + STATE(3468), 2, sym_line_comment, sym_block_comment, - ACTIONS(4860), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [87436] = 6, + [100498] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1625), 1, - anon_sym_GT, - ACTIONS(6362), 1, - anon_sym_COMMA, - STATE(3033), 1, - aux_sym_type_arguments_repeat1, - STATE(2973), 2, + ACTIONS(7326), 1, + sym_identifier, + ACTIONS(7328), 1, + sym_super, + STATE(3469), 2, sym_line_comment, sym_block_comment, - [87456] = 6, + [100515] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, + ACTIONS(5517), 1, anon_sym_LBRACE, - ACTIONS(6364), 1, - anon_sym_COLON_COLON, - STATE(1477), 1, - sym_field_initializer_list, - STATE(2974), 2, + STATE(1239), 1, + sym_field_declaration_list, + STATE(3470), 2, sym_line_comment, sym_block_comment, - [87476] = 4, + [100532] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2975), 2, + ACTIONS(7330), 1, + anon_sym_SEMI, + ACTIONS(7332), 1, + anon_sym_RBRACE, + STATE(3471), 2, sym_line_comment, sym_block_comment, - ACTIONS(4820), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [87492] = 6, + [100549] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6366), 1, - anon_sym_LPAREN, - ACTIONS(6368), 1, - anon_sym_LBRACK, - ACTIONS(6370), 1, + ACTIONS(5517), 1, anon_sym_LBRACE, - STATE(2976), 2, + STATE(1237), 1, + sym_field_declaration_list, + STATE(3472), 2, sym_line_comment, sym_block_comment, - [87512] = 6, + [100566] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6372), 1, - anon_sym_LPAREN, - ACTIONS(6374), 1, - anon_sym_LBRACK, - ACTIONS(6376), 1, + ACTIONS(5473), 1, anon_sym_LBRACE, - STATE(2977), 2, + STATE(1236), 1, + sym_declaration_list, + STATE(3473), 2, sym_line_comment, sym_block_comment, - [87532] = 4, + [100583] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2978), 2, + ACTIONS(5485), 1, + anon_sym_LBRACE, + STATE(511), 1, + sym_field_declaration_list, + STATE(3474), 2, sym_line_comment, sym_block_comment, - ACTIONS(4838), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [87548] = 6, + [100600] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6378), 1, + ACTIONS(7330), 1, + anon_sym_SEMI, + ACTIONS(7334), 1, anon_sym_RPAREN, - ACTIONS(6380), 1, - anon_sym_COMMA, - STATE(2997), 1, - aux_sym_ordered_field_declaration_list_repeat1, - STATE(2979), 2, + STATE(3475), 2, sym_line_comment, sym_block_comment, - [87568] = 5, + [100617] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5447), 1, - anon_sym_COLON, - ACTIONS(6382), 2, + ACTIONS(7230), 2, anon_sym_PIPE, anon_sym_COMMA, - STATE(2980), 2, + STATE(3476), 2, sym_line_comment, sym_block_comment, - [87586] = 6, + [100632] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6384), 1, - anon_sym_LPAREN, - ACTIONS(6386), 1, - anon_sym_LBRACK, - ACTIONS(6388), 1, - anon_sym_LBRACE, - STATE(2981), 2, + ACTIONS(7330), 1, + anon_sym_SEMI, + ACTIONS(7334), 1, + anon_sym_RBRACK, + STATE(3477), 2, sym_line_comment, sym_block_comment, - [87606] = 6, + [100649] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(6390), 1, - anon_sym_LBRACE, - STATE(1955), 1, - sym_type_arguments, - STATE(2982), 2, + ACTIONS(4177), 2, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + STATE(3478), 2, sym_line_comment, sym_block_comment, - [87626] = 6, + [100664] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1625), 1, - anon_sym_GT, - ACTIONS(6362), 1, - anon_sym_COMMA, - STATE(3037), 1, - aux_sym_type_arguments_repeat1, - STATE(2983), 2, + ACTIONS(6623), 1, + sym_super, + ACTIONS(7336), 1, + sym_identifier, + STATE(3479), 2, sym_line_comment, sym_block_comment, - [87646] = 4, + [100681] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2984), 2, + ACTIONS(7330), 1, + anon_sym_SEMI, + ACTIONS(7338), 1, + anon_sym_RBRACE, + STATE(3480), 2, sym_line_comment, sym_block_comment, - ACTIONS(4828), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [87662] = 4, + [100698] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2985), 2, + ACTIONS(7340), 1, + sym_identifier, + ACTIONS(7342), 1, + sym_mutable_specifier, + STATE(3481), 2, sym_line_comment, sym_block_comment, - ACTIONS(4914), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [87678] = 4, + [100715] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2986), 2, + ACTIONS(7344), 1, + anon_sym_LBRACK, + ACTIONS(7346), 1, + anon_sym_BANG, + STATE(3482), 2, sym_line_comment, sym_block_comment, - ACTIONS(4882), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [87694] = 6, + [100732] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3063), 1, - anon_sym_RPAREN, - ACTIONS(6392), 1, - anon_sym_COMMA, - STATE(2641), 1, - aux_sym_slice_pattern_repeat1, - STATE(2987), 2, + ACTIONS(7348), 1, + sym_identifier, + ACTIONS(7350), 1, + sym_mutable_specifier, + STATE(3483), 2, sym_line_comment, sym_block_comment, - [87714] = 4, + [100749] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2988), 2, + ACTIONS(7352), 2, + sym_identifier, + sym_metavariable, + STATE(3484), 2, sym_line_comment, sym_block_comment, - ACTIONS(4822), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [87730] = 5, + [100764] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6382), 1, - anon_sym_PIPE, - ACTIONS(6394), 1, + ACTIONS(7293), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2989), 3, + STATE(3485), 2, sym_line_comment, sym_block_comment, - aux_sym_closure_parameters_repeat1, - [87748] = 5, + [100779] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(6397), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2990), 2, + ACTIONS(6669), 1, + sym_identifier, + ACTIONS(6673), 1, + sym_mutable_specifier, + STATE(3486), 2, sym_line_comment, sym_block_comment, - [87766] = 6, + [100796] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4956), 1, + ACTIONS(5523), 1, anon_sym_LBRACE, - ACTIONS(6399), 1, - anon_sym_SEMI, - STATE(1103), 1, + STATE(523), 1, sym_declaration_list, - STATE(2991), 2, + STATE(3487), 2, sym_line_comment, sym_block_comment, - [87786] = 5, + [100813] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6403), 1, - anon_sym_COLON, - ACTIONS(6401), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(2992), 2, + ACTIONS(5473), 1, + anon_sym_LBRACE, + STATE(1422), 1, + sym_declaration_list, + STATE(3488), 2, sym_line_comment, sym_block_comment, - [87804] = 6, + [100830] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5155), 1, - anon_sym_RBRACE, - ACTIONS(6405), 1, - anon_sym_COMMA, - STATE(2769), 1, - aux_sym_struct_pattern_repeat1, - STATE(2993), 2, + ACTIONS(7354), 1, + sym_identifier, + ACTIONS(7356), 1, + sym_mutable_specifier, + STATE(3489), 2, sym_line_comment, sym_block_comment, - [87824] = 6, + [100847] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5331), 1, - anon_sym_PLUS, - ACTIONS(6407), 1, - anon_sym_GT, - ACTIONS(6409), 1, - anon_sym_as, - STATE(2994), 2, + ACTIONS(6677), 1, + sym_identifier, + ACTIONS(6681), 1, + sym_mutable_specifier, + STATE(3490), 2, sym_line_comment, sym_block_comment, - [87844] = 6, + [100864] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3049), 1, - anon_sym_RPAREN, - ACTIONS(6411), 1, - anon_sym_COMMA, - STATE(2641), 1, - aux_sym_slice_pattern_repeat1, - STATE(2995), 2, + ACTIONS(7344), 1, + anon_sym_LBRACK, + ACTIONS(7358), 1, + anon_sym_BANG, + STATE(3491), 2, sym_line_comment, sym_block_comment, - [87864] = 4, + [100881] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(2996), 2, + ACTIONS(5473), 1, + anon_sym_LBRACE, + STATE(1553), 1, + sym_declaration_list, + STATE(3492), 2, sym_line_comment, sym_block_comment, - ACTIONS(6413), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [87880] = 5, + [100898] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6415), 1, - anon_sym_RPAREN, - ACTIONS(6417), 1, - anon_sym_COMMA, - STATE(2997), 3, + ACTIONS(5473), 1, + anon_sym_LBRACE, + STATE(1604), 1, + sym_declaration_list, + STATE(3493), 2, sym_line_comment, sym_block_comment, - aux_sym_ordered_field_declaration_list_repeat1, - [87898] = 6, + [100915] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5277), 1, - anon_sym_RBRACE, - ACTIONS(6420), 1, - anon_sym_COMMA, - STATE(2769), 1, - aux_sym_struct_pattern_repeat1, - STATE(2998), 2, + ACTIONS(6111), 1, + anon_sym_PIPE, + ACTIONS(7360), 1, + anon_sym_in, + STATE(3494), 2, sym_line_comment, sym_block_comment, - [87918] = 6, + [100932] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5506), 1, - anon_sym_RPAREN, - ACTIONS(5508), 1, - anon_sym_COMMA, - STATE(3009), 1, - aux_sym_parameters_repeat1, - STATE(2999), 2, + ACTIONS(6111), 1, + anon_sym_PIPE, + ACTIONS(7362), 1, + anon_sym_in, + STATE(3495), 2, sym_line_comment, sym_block_comment, - [87938] = 5, + [100949] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(6422), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3000), 2, + ACTIONS(6111), 1, + anon_sym_PIPE, + ACTIONS(7364), 1, + anon_sym_in, + STATE(3496), 2, sym_line_comment, sym_block_comment, - [87956] = 5, + [100966] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6422), 1, + ACTIONS(7366), 2, anon_sym_RPAREN, - ACTIONS(6424), 1, - anon_sym_COMMA, - STATE(3001), 3, - sym_line_comment, - sym_block_comment, - aux_sym_tuple_type_repeat1, - [87974] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(6427), 2, - anon_sym_RBRACE, anon_sym_COMMA, - STATE(3002), 2, + STATE(3497), 2, sym_line_comment, sym_block_comment, - [87992] = 5, + [100981] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6429), 1, + ACTIONS(5818), 1, anon_sym_RBRACE, - ACTIONS(6431), 1, - anon_sym_COMMA, - STATE(3003), 3, + ACTIONS(7330), 1, + anon_sym_SEMI, + STATE(3498), 2, sym_line_comment, sym_block_comment, - aux_sym_use_list_repeat1, - [88010] = 6, + [100998] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6434), 1, - anon_sym_RPAREN, - ACTIONS(6436), 1, - anon_sym_COMMA, - STATE(2997), 1, - aux_sym_ordered_field_declaration_list_repeat1, - STATE(3004), 2, + ACTIONS(6111), 1, + anon_sym_PIPE, + ACTIONS(7368), 1, + anon_sym_in, + STATE(3499), 2, sym_line_comment, sym_block_comment, - [88030] = 4, + [101015] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3005), 2, + ACTIONS(5523), 1, + anon_sym_LBRACE, + STATE(524), 1, + sym_declaration_list, + STATE(3500), 2, sym_line_comment, sym_block_comment, - ACTIONS(4814), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88046] = 4, + [101032] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3006), 2, + ACTIONS(5132), 1, + anon_sym_COLON_COLON, + ACTIONS(6683), 1, + anon_sym_for, + STATE(3501), 2, sym_line_comment, sym_block_comment, - ACTIONS(4856), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88062] = 5, + [101049] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5482), 1, - anon_sym_PIPE, - ACTIONS(6438), 2, - anon_sym_RBRACE, + ACTIONS(5808), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(3007), 2, + STATE(3502), 2, sym_line_comment, sym_block_comment, - [88080] = 4, + [101064] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3008), 2, + ACTIONS(5485), 1, + anon_sym_LBRACE, + STATE(525), 1, + sym_field_declaration_list, + STATE(3503), 2, sym_line_comment, sym_block_comment, - ACTIONS(4818), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88096] = 6, + [101081] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1501), 1, - anon_sym_RPAREN, - ACTIONS(5622), 1, - anon_sym_COMMA, - STATE(2840), 1, - aux_sym_parameters_repeat1, - STATE(3009), 2, + ACTIONS(5473), 1, + anon_sym_LBRACE, + STATE(1373), 1, + sym_declaration_list, + STATE(3504), 2, sym_line_comment, sym_block_comment, - [88116] = 6, + [101098] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6440), 1, - sym_identifier, - ACTIONS(6442), 1, - anon_sym_await, - ACTIONS(6444), 1, - sym_integer_literal, - STATE(3010), 2, + ACTIONS(5804), 1, + anon_sym_RBRACE, + ACTIONS(7330), 1, + anon_sym_SEMI, + STATE(3505), 2, sym_line_comment, sym_block_comment, - [88136] = 4, + [101115] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3011), 2, + ACTIONS(5132), 1, + anon_sym_COLON_COLON, + ACTIONS(6685), 1, + anon_sym_for, + STATE(3506), 2, sym_line_comment, sym_block_comment, - ACTIONS(4842), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [88152] = 6, + [101132] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1501), 1, - anon_sym_RPAREN, - ACTIONS(5622), 1, - anon_sym_COMMA, - STATE(2897), 1, - aux_sym_parameters_repeat1, - STATE(3012), 2, + ACTIONS(6215), 2, + sym_identifier, + sym_super, + STATE(3507), 2, sym_line_comment, sym_block_comment, - [88172] = 6, + [101147] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4632), 1, - anon_sym_COLON, - ACTIONS(4952), 1, - anon_sym_COLON_COLON, - STATE(2725), 1, - sym_trait_bounds, - STATE(3013), 2, + ACTIONS(5898), 1, + anon_sym_LBRACE, + STATE(1243), 1, + sym_enum_variant_list, + STATE(3508), 2, sym_line_comment, sym_block_comment, - [88192] = 5, + [101164] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5666), 1, - anon_sym_EQ, - ACTIONS(5702), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(3014), 2, + ACTIONS(6215), 1, + sym_super, + ACTIONS(7370), 1, + sym_identifier, + STATE(3509), 2, sym_line_comment, sym_block_comment, - [88210] = 5, + [101181] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6446), 1, - anon_sym_RBRACE, - ACTIONS(6448), 1, + ACTIONS(6385), 2, + anon_sym_GT, anon_sym_COMMA, - STATE(3015), 3, + STATE(3510), 2, sym_line_comment, sym_block_comment, - aux_sym_enum_variant_list_repeat2, - [88228] = 6, + [101196] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(921), 1, + ACTIONS(5820), 1, anon_sym_RBRACK, - ACTIONS(4069), 1, - anon_sym_COMMA, - STATE(2709), 1, - aux_sym_arguments_repeat1, - STATE(3016), 2, + ACTIONS(7330), 1, + anon_sym_SEMI, + STATE(3511), 2, sym_line_comment, sym_block_comment, - [88248] = 6, + [101213] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3011), 1, - anon_sym_SQUOTE, - ACTIONS(6451), 1, - anon_sym_GT, - STATE(3094), 1, - sym_lifetime, - STATE(3017), 2, + ACTIONS(5768), 1, + anon_sym_RBRACE, + ACTIONS(7330), 1, + anon_sym_SEMI, + STATE(3512), 2, sym_line_comment, sym_block_comment, - [88268] = 6, + [101230] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6451), 1, - anon_sym_GT, - ACTIONS(6453), 1, - anon_sym_COMMA, - STATE(2929), 1, - aux_sym_for_lifetimes_repeat1, - STATE(3018), 2, + ACTIONS(7372), 1, + sym_identifier, + ACTIONS(7374), 1, + sym_super, + STATE(3513), 2, sym_line_comment, sym_block_comment, - [88288] = 6, + [101247] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5924), 1, - anon_sym_RPAREN, - ACTIONS(5926), 1, - anon_sym_COMMA, - STATE(2773), 1, - aux_sym_tuple_pattern_repeat1, - STATE(3019), 2, + ACTIONS(5132), 1, + anon_sym_COLON_COLON, + ACTIONS(6687), 1, + anon_sym_for, + STATE(3514), 2, sym_line_comment, sym_block_comment, - [88308] = 5, + [101264] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6455), 1, - anon_sym_RBRACE, - ACTIONS(6457), 1, - anon_sym_COMMA, - STATE(3020), 3, + ACTIONS(5820), 1, + anon_sym_RPAREN, + ACTIONS(7330), 1, + anon_sym_SEMI, + STATE(3515), 2, sym_line_comment, sym_block_comment, - aux_sym_field_declaration_list_repeat1, - [88326] = 4, + [101281] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3021), 2, + ACTIONS(4143), 1, + anon_sym_COLON, + ACTIONS(5900), 1, + anon_sym_PLUS, + STATE(3516), 2, sym_line_comment, sym_block_comment, - ACTIONS(4806), 3, - anon_sym_EQ_GT, + [101298] = 5, + ACTIONS(27), 1, anon_sym_PIPE, - anon_sym_if, - [88342] = 6, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5011), 1, - anon_sym_RBRACE, - ACTIONS(6460), 1, - anon_sym_COMMA, - STATE(3020), 1, - aux_sym_field_declaration_list_repeat1, - STATE(3022), 2, + STATE(236), 1, + sym_closure_parameters, + STATE(3517), 2, sym_line_comment, sym_block_comment, - [88362] = 5, + [101315] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6464), 1, - anon_sym_EQ, - ACTIONS(6462), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3023), 2, + ACTIONS(7330), 1, + anon_sym_SEMI, + ACTIONS(7376), 1, + anon_sym_RBRACK, + STATE(3518), 2, sym_line_comment, sym_block_comment, - [88380] = 6, + [101332] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4916), 1, - anon_sym_RBRACE, - ACTIONS(6466), 1, - anon_sym_COMMA, - STATE(3020), 1, - aux_sym_field_declaration_list_repeat1, - STATE(3024), 2, + ACTIONS(7378), 2, + sym_identifier, + sym_metavariable, + STATE(3519), 2, sym_line_comment, sym_block_comment, - [88400] = 6, + [101347] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4922), 1, - anon_sym_RBRACE, - ACTIONS(6468), 1, - anon_sym_COMMA, - STATE(3015), 1, - aux_sym_enum_variant_list_repeat2, - STATE(3025), 2, + STATE(222), 1, + sym_closure_parameters, + STATE(3520), 2, sym_line_comment, sym_block_comment, - [88420] = 6, + [101364] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(6470), 1, + ACTIONS(7330), 1, anon_sym_SEMI, - ACTIONS(6472), 1, - anon_sym_RBRACK, - STATE(3026), 2, + ACTIONS(7376), 1, + anon_sym_RPAREN, + STATE(3521), 2, sym_line_comment, sym_block_comment, - [88440] = 6, + [101381] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5011), 1, - anon_sym_RBRACE, - ACTIONS(6460), 1, - anon_sym_COMMA, - STATE(3024), 1, - aux_sym_field_declaration_list_repeat1, - STATE(3027), 2, + ACTIONS(6111), 1, + anon_sym_PIPE, + ACTIONS(7380), 1, + anon_sym_in, + STATE(3522), 2, sym_line_comment, sym_block_comment, - [88460] = 4, + [101398] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3028), 2, + ACTIONS(4111), 2, + anon_sym_LPAREN, + anon_sym_COLON_COLON, + STATE(3523), 2, sym_line_comment, sym_block_comment, - ACTIONS(6474), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [88476] = 5, + [101413] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6478), 1, - anon_sym_EQ, - ACTIONS(6476), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3029), 2, + ACTIONS(5132), 1, + anon_sym_COLON_COLON, + ACTIONS(5513), 1, + anon_sym_for, + STATE(3524), 2, sym_line_comment, sym_block_comment, - [88494] = 6, + [101430] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5013), 1, - anon_sym_RBRACE, - ACTIONS(6480), 1, - anon_sym_COMMA, - STATE(3015), 1, - aux_sym_enum_variant_list_repeat2, - STATE(3030), 2, + ACTIONS(5132), 1, + anon_sym_COLON_COLON, + ACTIONS(5493), 1, + anon_sym_for, + STATE(3525), 2, sym_line_comment, sym_block_comment, - [88514] = 6, + [101447] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5013), 1, - anon_sym_RBRACE, - ACTIONS(6480), 1, - anon_sym_COMMA, - STATE(3025), 1, - aux_sym_enum_variant_list_repeat2, - STATE(3031), 2, + ACTIONS(5132), 1, + anon_sym_COLON_COLON, + ACTIONS(6701), 1, + anon_sym_for, + STATE(3526), 2, sym_line_comment, sym_block_comment, - [88534] = 6, + [101464] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(6482), 1, - anon_sym_COLON_COLON, - STATE(1952), 1, - sym_type_arguments, - STATE(3032), 2, + ACTIONS(7382), 1, + sym_identifier, + ACTIONS(7384), 1, + sym_super, + STATE(3527), 2, sym_line_comment, sym_block_comment, - [88554] = 6, + [101481] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(1633), 1, - anon_sym_GT, - ACTIONS(6484), 1, - anon_sym_COMMA, - STATE(3037), 1, - aux_sym_type_arguments_repeat1, - STATE(3033), 2, + ACTIONS(7386), 2, + anon_sym_const, + sym_mutable_specifier, + STATE(3528), 2, sym_line_comment, sym_block_comment, - [88574] = 6, + [101496] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5451), 1, - anon_sym_COMMA, - ACTIONS(6486), 1, - anon_sym_PIPE, - STATE(2989), 1, - aux_sym_closure_parameters_repeat1, - STATE(3034), 2, + ACTIONS(6623), 1, + sym_super, + ACTIONS(7388), 1, + sym_identifier, + STATE(3529), 2, sym_line_comment, sym_block_comment, - [88594] = 5, + [101513] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, - anon_sym_PLUS, - ACTIONS(6488), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3035), 2, + ACTIONS(5822), 1, + anon_sym_RBRACE, + ACTIONS(7330), 1, + anon_sym_SEMI, + STATE(3530), 2, sym_line_comment, sym_block_comment, - [88612] = 6, + [101530] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(6490), 1, - anon_sym_SEMI, - STATE(3391), 1, - sym_where_clause, - STATE(3036), 2, + ACTIONS(7390), 2, + anon_sym_const, + sym_mutable_specifier, + STATE(3531), 2, sym_line_comment, sym_block_comment, - [88632] = 5, + [101545] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5626), 1, - anon_sym_GT, - ACTIONS(6492), 1, - anon_sym_COMMA, - STATE(3037), 3, + ACTIONS(5517), 1, + anon_sym_LBRACE, + STATE(1582), 1, + sym_field_declaration_list, + STATE(3532), 2, sym_line_comment, sym_block_comment, - aux_sym_type_arguments_repeat1, - [88650] = 6, + [101562] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4595), 1, - anon_sym_COLON_COLON, - ACTIONS(4632), 1, - anon_sym_COLON, - STATE(2725), 1, - sym_trait_bounds, - STATE(3038), 2, + ACTIONS(6623), 2, + sym_identifier, + sym_super, + STATE(3533), 2, sym_line_comment, sym_block_comment, - [88670] = 5, + [101577] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4612), 1, - anon_sym_COLON_COLON, - ACTIONS(5401), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3039), 2, + ACTIONS(5824), 1, + anon_sym_RBRACK, + ACTIONS(7330), 1, + anon_sym_SEMI, + STATE(3534), 2, sym_line_comment, sym_block_comment, - [88688] = 6, + [101594] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5461), 1, - anon_sym_GT, - ACTIONS(5463), 1, - anon_sym_COMMA, - STATE(2795), 1, - aux_sym_type_parameters_repeat1, - STATE(3040), 2, + ACTIONS(4407), 1, + anon_sym_LPAREN, + STATE(1865), 1, + sym_parameters, + STATE(3535), 2, sym_line_comment, sym_block_comment, - [88708] = 6, + [101611] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4950), 1, - anon_sym_LBRACE, - ACTIONS(6495), 1, - anon_sym_SEMI, - STATE(744), 1, - sym_declaration_list, - STATE(3041), 2, + ACTIONS(7392), 2, + sym_identifier, + sym_metavariable, + STATE(3536), 2, sym_line_comment, sym_block_comment, - [88728] = 6, + [101626] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(5021), 1, - anon_sym_for, - STATE(1955), 1, - sym_type_arguments, - STATE(3042), 2, + ACTIONS(3894), 1, + anon_sym_LBRACE, + STATE(1661), 1, + sym_field_initializer_list, + STATE(3537), 2, sym_line_comment, sym_block_comment, - [88748] = 5, + [101643] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6499), 1, - anon_sym_COLON, - ACTIONS(6497), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3043), 2, + ACTIONS(5473), 1, + anon_sym_LBRACE, + STATE(1588), 1, + sym_declaration_list, + STATE(3538), 2, sym_line_comment, sym_block_comment, - [88766] = 4, + [101660] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(3044), 2, + ACTIONS(5132), 1, + anon_sym_COLON_COLON, + ACTIONS(5592), 1, + anon_sym_for, + STATE(3539), 2, sym_line_comment, sym_block_comment, - ACTIONS(6501), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [88782] = 6, + [101677] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4956), 1, - anon_sym_LBRACE, - ACTIONS(6503), 1, + ACTIONS(5824), 1, + anon_sym_RPAREN, + ACTIONS(7330), 1, anon_sym_SEMI, - STATE(1128), 1, - sym_declaration_list, - STATE(3045), 2, + STATE(3540), 2, sym_line_comment, sym_block_comment, - [88802] = 6, + [101694] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4944), 1, - anon_sym_LT, - ACTIONS(6505), 1, - anon_sym_EQ, - STATE(3602), 1, - sym_type_parameters, - STATE(3046), 2, + ACTIONS(5517), 1, + anon_sym_LBRACE, + STATE(1594), 1, + sym_field_declaration_list, + STATE(3541), 2, sym_line_comment, sym_block_comment, - [88822] = 6, + [101711] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6507), 1, - anon_sym_RBRACE, - ACTIONS(6509), 1, - anon_sym_COMMA, - STATE(2812), 1, - aux_sym_use_list_repeat1, - STATE(3047), 2, + ACTIONS(7394), 2, + sym_identifier, + sym_metavariable, + STATE(3542), 2, sym_line_comment, sym_block_comment, - [88842] = 6, + [101726] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(6511), 1, - anon_sym_for, - STATE(1955), 1, - sym_type_arguments, - STATE(3048), 2, + ACTIONS(5473), 1, + anon_sym_LBRACE, + STATE(1261), 1, + sym_declaration_list, + STATE(3543), 2, sym_line_comment, sym_block_comment, - [88862] = 6, + [101743] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4946), 1, - anon_sym_where, - ACTIONS(6513), 1, - anon_sym_SEMI, - STATE(3358), 1, - sym_where_clause, - STATE(3049), 2, + ACTIONS(6111), 1, + anon_sym_PIPE, + ACTIONS(7396), 1, + anon_sym_in, + STATE(3544), 2, sym_line_comment, sym_block_comment, - [88882] = 6, + [101760] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(6515), 1, - anon_sym_for, - STATE(1955), 1, - sym_type_arguments, - STATE(3050), 2, + ACTIONS(5473), 1, + anon_sym_LBRACE, + STATE(1262), 1, + sym_declaration_list, + STATE(3545), 2, sym_line_comment, sym_block_comment, - [88902] = 5, + [101777] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5482), 1, - anon_sym_PIPE, - ACTIONS(6517), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3051), 2, + ACTIONS(7398), 2, + sym_identifier, + sym_metavariable, + STATE(3546), 2, sym_line_comment, sym_block_comment, - [88920] = 6, + [101792] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4503), 1, - anon_sym_LT2, - ACTIONS(6519), 1, - anon_sym_for, - STATE(1955), 1, - sym_type_arguments, - STATE(3052), 2, + ACTIONS(7400), 1, + anon_sym_LBRACK, + ACTIONS(7402), 1, + anon_sym_BANG, + STATE(3547), 2, sym_line_comment, sym_block_comment, - [88940] = 6, + [101809] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6521), 1, - sym_identifier, - ACTIONS(6523), 1, - anon_sym_ref, - ACTIONS(6525), 1, - sym_mutable_specifier, - STATE(3053), 2, + STATE(228), 1, + sym_closure_parameters, + STATE(3548), 2, sym_line_comment, sym_block_comment, - [88960] = 6, + [101826] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4950), 1, - anon_sym_LBRACE, - ACTIONS(6527), 1, - anon_sym_SEMI, - STATE(568), 1, - sym_declaration_list, - STATE(3054), 2, + ACTIONS(7404), 1, + anon_sym_RPAREN, + ACTIONS(7406), 1, + anon_sym_COLON_COLON, + STATE(3549), 2, sym_line_comment, sym_block_comment, - [88980] = 6, + [101843] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(903), 1, - anon_sym_RBRACK, - ACTIONS(4077), 1, - anon_sym_COMMA, - STATE(2709), 1, - aux_sym_arguments_repeat1, - STATE(3055), 2, + ACTIONS(5523), 1, + anon_sym_LBRACE, + STATE(733), 1, + sym_declaration_list, + STATE(3550), 2, sym_line_comment, sym_block_comment, - [89000] = 6, + [101860] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3011), 1, - anon_sym_SQUOTE, - ACTIONS(6529), 1, - anon_sym_GT, - STATE(3094), 1, - sym_lifetime, - STATE(3056), 2, + ACTIONS(7408), 1, + anon_sym_LPAREN, + ACTIONS(7410), 1, + anon_sym_COLON_COLON, + STATE(3551), 2, sym_line_comment, sym_block_comment, - [89020] = 5, + [101877] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6531), 1, - sym_identifier, - ACTIONS(6533), 1, - sym_mutable_specifier, - STATE(3057), 2, + ACTIONS(7412), 1, + anon_sym_SEMI, + ACTIONS(7414), 1, + anon_sym_as, + STATE(3552), 2, sym_line_comment, sym_block_comment, - [89037] = 4, + [101894] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5972), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3058), 2, + ACTIONS(5132), 1, + anon_sym_COLON_COLON, + ACTIONS(7207), 1, + anon_sym_for, + STATE(3553), 2, sym_line_comment, sym_block_comment, - [89052] = 5, + [101911] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4942), 1, - anon_sym_LBRACE, - STATE(719), 1, - sym_field_declaration_list, - STATE(3059), 2, + ACTIONS(6339), 1, + sym_identifier, + ACTIONS(6341), 1, + sym_super, + STATE(3554), 2, sym_line_comment, sym_block_comment, - [89069] = 5, + [101928] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4956), 1, - anon_sym_LBRACE, - STATE(1344), 1, - sym_declaration_list, - STATE(3060), 2, + ACTIONS(6448), 2, + sym_identifier, + sym_super, + STATE(3555), 2, sym_line_comment, sym_block_comment, - [89086] = 5, + [101943] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5219), 1, - anon_sym_RBRACE, - ACTIONS(6535), 1, - anon_sym_SEMI, - STATE(3061), 2, + ACTIONS(7416), 1, + sym_identifier, + ACTIONS(7418), 1, + sym_super, + STATE(3556), 2, sym_line_comment, sym_block_comment, - [89103] = 5, + [101960] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6535), 1, - anon_sym_SEMI, - ACTIONS(6537), 1, - anon_sym_RBRACE, - STATE(3062), 2, + ACTIONS(6623), 1, + sym_super, + ACTIONS(7420), 1, + sym_identifier, + STATE(3557), 2, sym_line_comment, sym_block_comment, - [89120] = 5, + [101977] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6535), 1, - anon_sym_SEMI, - ACTIONS(6539), 1, - anon_sym_RBRACE, - STATE(3063), 2, + ACTIONS(7422), 2, + sym__block_comment_content, + anon_sym_STAR_SLASH, + STATE(3558), 2, sym_line_comment, sym_block_comment, - [89137] = 5, + [101992] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6541), 1, - anon_sym_LT, - STATE(1003), 1, - sym_type_parameters, - STATE(3064), 2, + ACTIONS(7370), 1, + sym_identifier, + ACTIONS(7424), 1, + sym_super, + STATE(3559), 2, sym_line_comment, sym_block_comment, - [89154] = 5, + [102009] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5363), 1, - anon_sym_LBRACE, - STATE(657), 1, - sym_enum_variant_list, - STATE(3065), 2, + ACTIONS(7426), 2, + sym__block_comment_content, + anon_sym_STAR_SLASH, + STATE(3560), 2, sym_line_comment, sym_block_comment, - [89171] = 5, + [102024] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5441), 1, + ACTIONS(5846), 1, sym_super, - ACTIONS(6543), 1, + ACTIONS(6337), 1, sym_identifier, - STATE(3066), 2, + STATE(3561), 2, sym_line_comment, sym_block_comment, - [89188] = 4, + [102041] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5195), 2, + ACTIONS(7428), 2, sym_identifier, sym_super, - STATE(3067), 2, + STATE(3562), 2, sym_line_comment, sym_block_comment, - [89203] = 5, + [102056] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6545), 1, + ACTIONS(7430), 1, sym_identifier, - ACTIONS(6547), 1, + ACTIONS(7432), 1, sym_super, - STATE(3068), 2, + STATE(3563), 2, sym_line_comment, sym_block_comment, - [89220] = 5, + [102073] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3297), 1, - anon_sym_LPAREN, - STATE(1159), 1, - sym_parameters, - STATE(3069), 2, + ACTIONS(5523), 1, + anon_sym_LBRACE, + STATE(763), 1, + sym_declaration_list, + STATE(3564), 2, + sym_line_comment, + sym_block_comment, + [102090] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5523), 1, + anon_sym_LBRACE, + STATE(765), 1, + sym_declaration_list, + STATE(3565), 2, sym_line_comment, sym_block_comment, - [89237] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [102107] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(219), 1, - sym_closure_parameters, - STATE(3070), 2, + ACTIONS(7408), 1, + anon_sym_LPAREN, + ACTIONS(7434), 1, + anon_sym_COLON_COLON, + STATE(3566), 2, sym_line_comment, sym_block_comment, - [89254] = 5, + [102124] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4950), 1, - anon_sym_LBRACE, - STATE(625), 1, - sym_declaration_list, - STATE(3071), 2, + ACTIONS(7436), 1, + anon_sym_STAR_SLASH, + ACTIONS(7438), 1, + sym__block_comment_content, + STATE(3567), 2, sym_line_comment, sym_block_comment, - [89271] = 4, + [102141] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5401), 2, + ACTIONS(7404), 1, anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3072), 2, + ACTIONS(7440), 1, + anon_sym_COLON_COLON, + STATE(3568), 2, sym_line_comment, sym_block_comment, - [89286] = 5, + [102158] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6549), 1, - sym_identifier, - ACTIONS(6551), 1, - sym_super, - STATE(3073), 2, + ACTIONS(7404), 1, + anon_sym_RPAREN, + ACTIONS(7442), 1, + anon_sym_COLON_COLON, + STATE(3569), 2, sym_line_comment, sym_block_comment, - [89303] = 5, + [102175] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6553), 1, - sym_identifier, - ACTIONS(6555), 1, - sym_super, - STATE(3074), 2, + ACTIONS(7444), 1, + anon_sym_RPAREN, + ACTIONS(7446), 1, + anon_sym_COLON_COLON, + STATE(3570), 2, sym_line_comment, sym_block_comment, - [89320] = 4, + [102192] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6557), 2, - anon_sym_const, - sym_mutable_specifier, - STATE(3075), 2, + ACTIONS(7448), 1, + anon_sym_LT, + STATE(990), 1, + sym_type_parameters, + STATE(3571), 2, sym_line_comment, sym_block_comment, - [89335] = 5, + [102209] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5879), 1, - sym_super, - ACTIONS(6559), 1, - sym_identifier, - STATE(3076), 2, + ACTIONS(4407), 1, + anon_sym_LPAREN, + STATE(1851), 1, + sym_parameters, + STATE(3572), 2, sym_line_comment, sym_block_comment, - [89352] = 5, + [102226] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4942), 1, + ACTIONS(5473), 1, anon_sym_LBRACE, - STATE(737), 1, - sym_field_declaration_list, - STATE(3077), 2, + STATE(1270), 1, + sym_declaration_list, + STATE(3573), 2, sym_line_comment, sym_block_comment, - [89369] = 4, + [102243] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6561), 2, - anon_sym_RPAREN, + ACTIONS(7188), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(3078), 2, + STATE(3574), 2, sym_line_comment, sym_block_comment, - [89384] = 4, + [102258] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5441), 2, - sym_identifier, - sym_super, - STATE(3079), 2, + ACTIONS(5898), 1, + anon_sym_LBRACE, + STATE(1524), 1, + sym_enum_variant_list, + STATE(3575), 2, sym_line_comment, sym_block_comment, - [89399] = 5, + [102275] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4005), 1, - anon_sym_LPAREN, - STATE(1625), 1, - sym_parameters, - STATE(3080), 2, + ACTIONS(6111), 1, + anon_sym_PIPE, + ACTIONS(7450), 1, + anon_sym_EQ, + STATE(3576), 2, sym_line_comment, sym_block_comment, - [89416] = 4, + [102292] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6563), 2, - sym_identifier, + ACTIONS(6215), 1, sym_super, - STATE(3081), 2, + ACTIONS(7452), 1, + sym_identifier, + STATE(3577), 2, sym_line_comment, sym_block_comment, - [89431] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [102309] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(230), 1, - sym_closure_parameters, - STATE(3082), 2, + ACTIONS(7454), 2, + anon_sym_const, + sym_mutable_specifier, + STATE(3578), 2, sym_line_comment, sym_block_comment, - [89448] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [102324] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(231), 1, - sym_closure_parameters, - STATE(3083), 2, + ACTIONS(7448), 1, + anon_sym_LT, + STATE(1196), 1, + sym_type_parameters, + STATE(3579), 2, sym_line_comment, sym_block_comment, - [89465] = 5, + [102341] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5441), 1, - sym_super, - ACTIONS(6565), 1, + ACTIONS(7456), 2, sym_identifier, - STATE(3084), 2, + sym_super, + STATE(3580), 2, sym_line_comment, sym_block_comment, - [89482] = 5, + [102356] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5692), 1, - sym_identifier, - ACTIONS(5694), 1, - sym_super, - STATE(3085), 2, + ACTIONS(7183), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3581), 2, sym_line_comment, sym_block_comment, - [89499] = 4, + [102371] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5642), 2, - sym_identifier, - sym_super, - STATE(3086), 2, + STATE(217), 1, + sym_closure_parameters, + STATE(3582), 2, sym_line_comment, sym_block_comment, - [89514] = 5, + [102388] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6567), 1, + ACTIONS(7458), 2, sym_identifier, - ACTIONS(6569), 1, - sym_super, - STATE(3087), 2, + sym_metavariable, + STATE(3583), 2, sym_line_comment, sym_block_comment, - [89531] = 4, + [102403] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6551), 2, - sym_identifier, - sym_super, - STATE(3088), 2, + ACTIONS(7460), 2, + sym_float_literal, + sym_integer_literal, + STATE(3584), 2, sym_line_comment, sym_block_comment, - [89546] = 5, + [102418] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6571), 1, - anon_sym_RPAREN, - ACTIONS(6573), 1, - anon_sym_COLON_COLON, - STATE(3089), 2, + ACTIONS(5908), 1, + anon_sym_LBRACE, + STATE(783), 1, + sym_enum_variant_list, + STATE(3585), 2, sym_line_comment, sym_block_comment, - [89563] = 5, + [102435] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6543), 1, + ACTIONS(7324), 1, sym_identifier, - ACTIONS(6575), 1, + ACTIONS(7462), 1, sym_super, - STATE(3090), 2, + STATE(3586), 2, sym_line_comment, sym_block_comment, - [89580] = 5, + [102452] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6577), 1, - anon_sym_RPAREN, - ACTIONS(6579), 1, + ACTIONS(7464), 1, + anon_sym_BANG, + ACTIONS(7466), 1, anon_sym_COLON_COLON, - STATE(3091), 2, + STATE(3587), 2, sym_line_comment, sym_block_comment, - [89597] = 5, + [102469] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5195), 1, - sym_super, - ACTIONS(5696), 1, - sym_identifier, - STATE(3092), 2, + ACTIONS(5898), 1, + anon_sym_LBRACE, + STATE(1614), 1, + sym_enum_variant_list, + STATE(3588), 2, sym_line_comment, sym_block_comment, - [89614] = 5, + [102486] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6551), 1, - sym_super, - ACTIONS(6581), 1, - sym_identifier, - STATE(3093), 2, + ACTIONS(7468), 1, + anon_sym_LPAREN, + ACTIONS(7470), 1, + anon_sym_COLON_COLON, + STATE(3589), 2, sym_line_comment, sym_block_comment, - [89631] = 4, + [102503] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6266), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(3094), 2, + ACTIONS(6215), 1, + sym_super, + ACTIONS(7472), 1, + sym_identifier, + STATE(3590), 2, sym_line_comment, sym_block_comment, - [89646] = 5, + [102520] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6577), 1, - anon_sym_RPAREN, - ACTIONS(6583), 1, + ACTIONS(7408), 1, + anon_sym_LPAREN, + ACTIONS(7474), 1, anon_sym_COLON_COLON, - STATE(3095), 2, + STATE(3591), 2, sym_line_comment, sym_block_comment, - [89663] = 4, + [102537] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6009), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3096), 2, + ACTIONS(4471), 1, + anon_sym_LBRACE, + STATE(2010), 1, + sym_field_initializer_list, + STATE(3592), 2, sym_line_comment, sym_block_comment, - [89678] = 5, + [102554] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5261), 1, - anon_sym_RBRACE, - ACTIONS(6535), 1, - anon_sym_SEMI, - STATE(3097), 2, + ACTIONS(7476), 2, + sym_identifier, + sym_metavariable, + STATE(3593), 2, sym_line_comment, sym_block_comment, - [89695] = 5, + [102569] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6585), 1, - anon_sym_SEMI, - ACTIONS(6587), 1, - anon_sym_as, - STATE(3098), 2, + ACTIONS(4407), 1, + anon_sym_LPAREN, + STATE(1867), 1, + sym_parameters, + STATE(3594), 2, sym_line_comment, sym_block_comment, - [89712] = 5, + [102586] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6577), 1, - anon_sym_RPAREN, - ACTIONS(6589), 1, - anon_sym_COLON_COLON, - STATE(3099), 2, + ACTIONS(5523), 1, + anon_sym_LBRACE, + STATE(503), 1, + sym_declaration_list, + STATE(3595), 2, sym_line_comment, sym_block_comment, - [89729] = 5, + [102603] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5165), 1, - anon_sym_RBRACK, - ACTIONS(6535), 1, - anon_sym_SEMI, - STATE(3100), 2, + ACTIONS(7478), 2, + anon_sym_const, + sym_mutable_specifier, + STATE(3596), 2, sym_line_comment, sym_block_comment, - [89746] = 5, + [102618] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6541), 1, - anon_sym_LT, - STATE(875), 1, - sym_type_parameters, - STATE(3101), 2, + ACTIONS(7480), 2, + sym_identifier, + sym_super, + STATE(3597), 2, sym_line_comment, sym_block_comment, - [89763] = 5, + [102633] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4005), 1, + ACTIONS(3739), 1, anon_sym_LPAREN, - STATE(1603), 1, + STATE(1617), 1, sym_parameters, - STATE(3102), 2, - sym_line_comment, - sym_block_comment, - [89780] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(3011), 1, - anon_sym_SQUOTE, - STATE(2829), 1, - sym_lifetime, - STATE(3103), 2, + STATE(3598), 2, sym_line_comment, sym_block_comment, - [89797] = 4, + [102650] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6591), 2, - sym_identifier, - sym_super, - STATE(3104), 2, + ACTIONS(5485), 1, + anon_sym_LBRACE, + STATE(794), 1, + sym_field_declaration_list, + STATE(3599), 2, sym_line_comment, sym_block_comment, - [89812] = 5, + [102667] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4942), 1, + ACTIONS(5485), 1, anon_sym_LBRACE, - STATE(631), 1, + STATE(796), 1, sym_field_declaration_list, - STATE(3105), 2, + STATE(3600), 2, sym_line_comment, sym_block_comment, - [89829] = 5, + [102684] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4950), 1, - anon_sym_LBRACE, - STATE(623), 1, - sym_declaration_list, - STATE(3106), 2, + ACTIONS(5036), 1, + anon_sym_LPAREN, + STATE(2232), 1, + sym_parameters, + STATE(3601), 2, sym_line_comment, sym_block_comment, - [89846] = 5, + [102701] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4595), 1, - anon_sym_COLON_COLON, - ACTIONS(4960), 1, - anon_sym_for, - STATE(3107), 2, + ACTIONS(7448), 1, + anon_sym_LT, + STATE(1113), 1, + sym_type_parameters, + STATE(3602), 2, sym_line_comment, sym_block_comment, - [89863] = 5, + [102718] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5285), 1, - anon_sym_LBRACE, - STATE(1163), 1, - sym_enum_variant_list, - STATE(3108), 2, + ACTIONS(7195), 1, + sym_identifier, + ACTIONS(7199), 1, + sym_mutable_specifier, + STATE(3603), 2, sym_line_comment, sym_block_comment, - [89880] = 5, + [102735] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6565), 1, - sym_identifier, - ACTIONS(6575), 1, - sym_super, - STATE(3109), 2, + ACTIONS(5523), 1, + anon_sym_LBRACE, + STATE(797), 1, + sym_declaration_list, + STATE(3604), 2, sym_line_comment, sym_block_comment, - [89897] = 5, + [102752] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4595), 1, - anon_sym_COLON_COLON, - ACTIONS(5952), 1, - anon_sym_for, - STATE(3110), 2, + ACTIONS(7482), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3605), 2, sym_line_comment, sym_block_comment, - [89914] = 5, + [102767] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5441), 1, - sym_super, - ACTIONS(6593), 1, - sym_identifier, - STATE(3111), 2, + ACTIONS(7446), 1, + anon_sym_COLON_COLON, + ACTIONS(7484), 1, + anon_sym_RPAREN, + STATE(3606), 2, sym_line_comment, sym_block_comment, - [89931] = 5, + [102784] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4005), 1, + ACTIONS(5036), 1, anon_sym_LPAREN, - STATE(1622), 1, + STATE(2546), 1, sym_parameters, - STATE(3112), 2, + STATE(3607), 2, sym_line_comment, sym_block_comment, - [89948] = 5, + [102801] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6082), 1, - sym_identifier, - ACTIONS(6086), 1, - sym_mutable_specifier, - STATE(3113), 2, + ACTIONS(5038), 1, + anon_sym_BANG, + ACTIONS(7486), 1, + anon_sym_COLON_COLON, + STATE(3608), 2, sym_line_comment, sym_block_comment, - [89965] = 5, + [102818] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5482), 1, - anon_sym_PIPE, - ACTIONS(6595), 1, - anon_sym_in, - STATE(3114), 2, + ACTIONS(7442), 1, + anon_sym_COLON_COLON, + ACTIONS(7488), 1, + anon_sym_RPAREN, + STATE(3609), 2, sym_line_comment, sym_block_comment, - [89982] = 4, + [102835] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6597), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3115), 2, + ACTIONS(5196), 1, + anon_sym_BANG, + ACTIONS(5281), 1, + anon_sym_COLON_COLON, + STATE(3610), 2, sym_line_comment, sym_block_comment, - [89997] = 4, + [102852] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6599), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(3116), 2, + ACTIONS(7440), 1, + anon_sym_COLON_COLON, + ACTIONS(7488), 1, + anon_sym_RPAREN, + STATE(3611), 2, sym_line_comment, sym_block_comment, - [90012] = 5, + [102869] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3817), 1, - anon_sym_COLON, - ACTIONS(5331), 1, - anon_sym_PLUS, - STATE(3117), 2, + ACTIONS(5196), 1, + anon_sym_BANG, + ACTIONS(5309), 1, + anon_sym_COLON_COLON, + STATE(3612), 2, sym_line_comment, sym_block_comment, - [90029] = 5, + [102886] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4942), 1, - anon_sym_LBRACE, - STATE(663), 1, - sym_field_declaration_list, - STATE(3118), 2, + ACTIONS(5036), 1, + anon_sym_LPAREN, + STATE(2537), 1, + sym_parameters, + STATE(3613), 2, sym_line_comment, sym_block_comment, - [90046] = 5, + [102903] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, - anon_sym_LBRACE, - STATE(1477), 1, - sym_field_initializer_list, - STATE(3119), 2, + ACTIONS(7406), 1, + anon_sym_COLON_COLON, + ACTIONS(7488), 1, + anon_sym_RPAREN, + STATE(3614), 2, sym_line_comment, sym_block_comment, - [90063] = 5, + [102920] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5482), 1, + ACTIONS(6111), 1, anon_sym_PIPE, - ACTIONS(6601), 1, + ACTIONS(7490), 1, anon_sym_in, - STATE(3120), 2, + STATE(3615), 2, sym_line_comment, sym_block_comment, - [90080] = 5, + [102937] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4499), 1, - anon_sym_BANG, - ACTIONS(6603), 1, - anon_sym_COLON_COLON, - STATE(3121), 2, + ACTIONS(5517), 1, + anon_sym_LBRACE, + STATE(1492), 1, + sym_field_declaration_list, + STATE(3616), 2, sym_line_comment, sym_block_comment, - [90097] = 4, + [102954] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6605), 2, - sym_identifier, + ACTIONS(6215), 1, sym_super, - STATE(3122), 2, - sym_line_comment, - sym_block_comment, - [90112] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(6607), 2, + ACTIONS(7492), 1, sym_identifier, - sym_metavariable, - STATE(3123), 2, + STATE(3617), 2, sym_line_comment, sym_block_comment, - [90127] = 5, + [102971] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6541), 1, - anon_sym_LT, - STATE(1053), 1, - sym_type_parameters, - STATE(3124), 2, + ACTIONS(7494), 2, + anon_sym_const, + sym_mutable_specifier, + STATE(3618), 2, sym_line_comment, sym_block_comment, - [90144] = 5, + [102986] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5441), 1, - sym_super, - ACTIONS(6609), 1, - sym_identifier, - STATE(3125), 2, + ACTIONS(6111), 1, + anon_sym_PIPE, + ACTIONS(6205), 1, + anon_sym_COLON, + STATE(3619), 2, sym_line_comment, sym_block_comment, - [90161] = 5, + [103003] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4595), 1, + ACTIONS(5287), 1, anon_sym_COLON_COLON, - ACTIONS(6099), 1, - anon_sym_for, - STATE(3126), 2, + ACTIONS(5461), 1, + anon_sym_BANG, + STATE(3620), 2, sym_line_comment, sym_block_comment, - [90178] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [103020] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(223), 1, - sym_closure_parameters, - STATE(3127), 2, + ACTIONS(5523), 1, + anon_sym_LBRACE, + STATE(604), 1, + sym_declaration_list, + STATE(3621), 2, sym_line_comment, sym_block_comment, - [90195] = 5, + [103037] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6605), 1, - sym_super, - ACTIONS(6611), 1, - sym_identifier, - STATE(3128), 2, + ACTIONS(5608), 1, + anon_sym_PLUS, + ACTIONS(7496), 1, + anon_sym_GT, + STATE(3622), 2, sym_line_comment, sym_block_comment, - [90212] = 5, + [103054] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3867), 1, - anon_sym_COLON, - ACTIONS(5331), 1, - anon_sym_PLUS, - STATE(3129), 2, + ACTIONS(5473), 1, + anon_sym_LBRACE, + STATE(1491), 1, + sym_declaration_list, + STATE(3623), 2, sym_line_comment, sym_block_comment, - [90229] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [103071] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(243), 1, - sym_closure_parameters, - STATE(3130), 2, + ACTIONS(5473), 1, + anon_sym_LBRACE, + STATE(1490), 1, + sym_declaration_list, + STATE(3624), 2, sym_line_comment, sym_block_comment, - [90246] = 5, + [103088] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5363), 1, + ACTIONS(5517), 1, anon_sym_LBRACE, - STATE(675), 1, - sym_enum_variant_list, - STATE(3131), 2, + STATE(1480), 1, + sym_field_declaration_list, + STATE(3625), 2, sym_line_comment, sym_block_comment, - [90263] = 4, + [103105] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6613), 2, - anon_sym_const, - sym_mutable_specifier, - STATE(3132), 2, + ACTIONS(6215), 1, + sym_super, + ACTIONS(7498), 1, + sym_identifier, + STATE(3626), 2, sym_line_comment, sym_block_comment, - [90278] = 5, + [103122] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5879), 1, - sym_super, - ACTIONS(6615), 1, - sym_identifier, - STATE(3133), 2, + ACTIONS(5036), 1, + anon_sym_LPAREN, + STATE(2235), 1, + sym_parameters, + STATE(3627), 2, sym_line_comment, sym_block_comment, - [90295] = 5, + [103139] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4942), 1, + ACTIONS(5473), 1, anon_sym_LBRACE, - STATE(666), 1, - sym_field_declaration_list, - STATE(3134), 2, + STATE(1474), 1, + sym_declaration_list, + STATE(3628), 2, sym_line_comment, sym_block_comment, - [90312] = 5, + [103156] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4768), 1, + ACTIONS(5132), 1, anon_sym_COLON_COLON, - ACTIONS(4888), 1, - anon_sym_BANG, - STATE(3135), 2, + ACTIONS(7102), 1, + anon_sym_for, + STATE(3629), 2, sym_line_comment, sym_block_comment, - [90329] = 5, + [103173] = 5, ACTIONS(27), 1, anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(227), 1, + STATE(226), 1, sym_closure_parameters, - STATE(3136), 2, + STATE(3630), 2, sym_line_comment, sym_block_comment, - [90346] = 4, + [103190] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5854), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3137), 2, + ACTIONS(5036), 1, + anon_sym_LPAREN, + STATE(2490), 1, + sym_parameters, + STATE(3631), 2, sym_line_comment, sym_block_comment, - [90361] = 4, + [103207] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5694), 2, - sym_identifier, - sym_super, - STATE(3138), 2, + ACTIONS(5908), 1, + anon_sym_LBRACE, + STATE(837), 1, + sym_enum_variant_list, + STATE(3632), 2, sym_line_comment, sym_block_comment, - [90376] = 5, + [103224] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6575), 1, - sym_super, - ACTIONS(6617), 1, + ACTIONS(6861), 1, sym_identifier, - STATE(3139), 2, - sym_line_comment, - sym_block_comment, - [90393] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5744), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3140), 2, + ACTIONS(6865), 1, + sym_mutable_specifier, + STATE(3633), 2, sym_line_comment, sym_block_comment, - [90408] = 5, + [103241] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5195), 1, - sym_super, - ACTIONS(5720), 1, - sym_identifier, - STATE(3141), 2, + STATE(216), 1, + sym_closure_parameters, + STATE(3634), 2, sym_line_comment, sym_block_comment, - [90425] = 5, + [103258] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6551), 1, - sym_super, - ACTIONS(6611), 1, - sym_identifier, - STATE(3142), 2, + ACTIONS(5898), 1, + anon_sym_LBRACE, + STATE(1469), 1, + sym_enum_variant_list, + STATE(3635), 2, sym_line_comment, sym_block_comment, - [90442] = 5, + [103275] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4497), 1, - anon_sym_LPAREN, - STATE(1965), 1, - sym_parameters, - STATE(3143), 2, + ACTIONS(7500), 1, + anon_sym_SEMI, + ACTIONS(7502), 1, + anon_sym_as, + STATE(3636), 2, sym_line_comment, sym_block_comment, - [90459] = 5, + [103292] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6535), 1, - anon_sym_SEMI, - ACTIONS(6619), 1, - anon_sym_RPAREN, - STATE(3144), 2, + ACTIONS(7424), 2, + sym_identifier, + sym_super, + STATE(3637), 2, sym_line_comment, sym_block_comment, - [90476] = 5, + [103307] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5165), 1, - anon_sym_RPAREN, - ACTIONS(6535), 1, - anon_sym_SEMI, - STATE(3145), 2, + ACTIONS(7504), 2, + anon_sym_const, + sym_mutable_specifier, + STATE(3638), 2, sym_line_comment, sym_block_comment, - [90493] = 5, + [103322] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6535), 1, - anon_sym_SEMI, - ACTIONS(6619), 1, - anon_sym_RBRACK, - STATE(3146), 2, + ACTIONS(7328), 2, + sym_identifier, + sym_super, + STATE(3639), 2, sym_line_comment, sym_block_comment, - [90510] = 5, + [103337] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6535), 1, - anon_sym_SEMI, - ACTIONS(6621), 1, - anon_sym_RBRACE, - STATE(3147), 2, + ACTIONS(5517), 1, + anon_sym_LBRACE, + STATE(1466), 1, + sym_field_declaration_list, + STATE(3640), 2, sym_line_comment, sym_block_comment, - [90527] = 5, + [103354] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5879), 1, + ACTIONS(7328), 1, sym_super, - ACTIONS(6623), 1, + ACTIONS(7430), 1, sym_identifier, - STATE(3148), 2, + STATE(3641), 2, sym_line_comment, sym_block_comment, - [90544] = 5, + [103371] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6625), 1, - sym_identifier, - ACTIONS(6627), 1, - sym_mutable_specifier, - STATE(3149), 2, + ACTIONS(5485), 1, + anon_sym_LBRACE, + STATE(841), 1, + sym_field_declaration_list, + STATE(3642), 2, sym_line_comment, sym_block_comment, - [90561] = 5, + [103388] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6535), 1, - anon_sym_SEMI, - ACTIONS(6629), 1, - anon_sym_RPAREN, - STATE(3150), 2, + ACTIONS(5517), 1, + anon_sym_LBRACE, + STATE(1463), 1, + sym_field_declaration_list, + STATE(3643), 2, sym_line_comment, sym_block_comment, - [90578] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [103405] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(233), 1, - sym_closure_parameters, - STATE(3151), 2, + ACTIONS(5485), 1, + anon_sym_LBRACE, + STATE(848), 1, + sym_field_declaration_list, + STATE(3644), 2, sym_line_comment, sym_block_comment, - [90595] = 5, + [103422] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4950), 1, + ACTIONS(5523), 1, anon_sym_LBRACE, - STATE(616), 1, + STATE(652), 1, sym_declaration_list, - STATE(3152), 2, + STATE(3645), 2, sym_line_comment, sym_block_comment, - [90612] = 5, + [103439] = 5, ACTIONS(27), 1, anon_sym_PIPE, ACTIONS(103), 1, @@ -184451,11399 +208022,12165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, STATE(234), 1, sym_closure_parameters, - STATE(3153), 2, + STATE(3646), 2, sym_line_comment, sym_block_comment, - [90629] = 5, + [103456] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6535), 1, + ACTIONS(7506), 1, anon_sym_SEMI, - ACTIONS(6629), 1, - anon_sym_RBRACK, - STATE(3154), 2, + ACTIONS(7508), 1, + anon_sym_as, + STATE(3647), 2, sym_line_comment, sym_block_comment, - [90646] = 5, + [103473] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6631), 1, - sym_identifier, - ACTIONS(6633), 1, - sym_super, - STATE(3155), 2, + ACTIONS(5523), 1, + anon_sym_LBRACE, + STATE(653), 1, + sym_declaration_list, + STATE(3648), 2, sym_line_comment, sym_block_comment, - [90663] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [103490] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(235), 1, - sym_closure_parameters, - STATE(3156), 2, + ACTIONS(7330), 1, + anon_sym_SEMI, + ACTIONS(7510), 1, + anon_sym_RBRACK, + STATE(3649), 2, sym_line_comment, sym_block_comment, - [90680] = 5, + [103507] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4956), 1, - anon_sym_LBRACE, - STATE(1234), 1, - sym_declaration_list, - STATE(3157), 2, + ACTIONS(6341), 2, + sym_identifier, + sym_super, + STATE(3650), 2, sym_line_comment, sym_block_comment, - [90697] = 4, + [103522] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3849), 2, - anon_sym_LPAREN, - anon_sym_COLON_COLON, - STATE(3158), 2, + ACTIONS(7330), 1, + anon_sym_SEMI, + ACTIONS(7510), 1, + anon_sym_RPAREN, + STATE(3651), 2, sym_line_comment, sym_block_comment, - [90712] = 5, + [103539] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6563), 1, + ACTIONS(7424), 1, sym_super, - ACTIONS(6635), 1, + ACTIONS(7512), 1, sym_identifier, - STATE(3159), 2, + STATE(3652), 2, sym_line_comment, sym_block_comment, - [90729] = 4, + [103556] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6637), 2, - anon_sym_const, - sym_mutable_specifier, - STATE(3160), 2, + ACTIONS(7330), 1, + anon_sym_SEMI, + ACTIONS(7514), 1, + anon_sym_RBRACK, + STATE(3653), 2, sym_line_comment, sym_block_comment, - [90744] = 5, + [103573] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5654), 1, + ACTIONS(5846), 1, sym_super, - ACTIONS(5762), 1, + ACTIONS(6395), 1, sym_identifier, - STATE(3161), 2, + STATE(3654), 2, sym_line_comment, sym_block_comment, - [90761] = 5, + [103590] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6605), 1, - sym_super, - ACTIONS(6639), 1, + ACTIONS(7326), 1, sym_identifier, - STATE(3162), 2, + ACTIONS(7432), 1, + sym_super, + STATE(3655), 2, sym_line_comment, sym_block_comment, - [90778] = 5, + [103607] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4055), 1, - anon_sym_LBRACE, - STATE(1696), 1, - sym_field_initializer_list, - STATE(3163), 2, + ACTIONS(7330), 1, + anon_sym_SEMI, + ACTIONS(7514), 1, + anon_sym_RPAREN, + STATE(3656), 2, sym_line_comment, sym_block_comment, - [90795] = 5, + [103624] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6535), 1, + ACTIONS(7516), 1, anon_sym_SEMI, - ACTIONS(6641), 1, - anon_sym_RBRACE, - STATE(3164), 2, + ACTIONS(7518), 1, + anon_sym_as, + STATE(3657), 2, sym_line_comment, sym_block_comment, - [90812] = 5, + [103641] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4660), 1, - anon_sym_BANG, - ACTIONS(4758), 1, - anon_sym_COLON_COLON, - STATE(3165), 2, + ACTIONS(5523), 1, + anon_sym_LBRACE, + STATE(670), 1, + sym_declaration_list, + STATE(3658), 2, sym_line_comment, sym_block_comment, - [90829] = 4, + [103658] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6429), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3166), 2, + ACTIONS(5036), 1, + anon_sym_LPAREN, + STATE(2545), 1, + sym_parameters, + STATE(3659), 2, sym_line_comment, sym_block_comment, - [90844] = 5, + [103675] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4660), 1, - anon_sym_BANG, - ACTIONS(4756), 1, - anon_sym_COLON_COLON, - STATE(3167), 2, + ACTIONS(5517), 1, + anon_sym_LBRACE, + STATE(1331), 1, + sym_field_declaration_list, + STATE(3660), 2, sym_line_comment, sym_block_comment, - [90861] = 5, + [103692] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4497), 1, - anon_sym_LPAREN, - STATE(1959), 1, - sym_parameters, - STATE(3168), 2, + ACTIONS(7520), 2, + sym_float_literal, + sym_integer_literal, + STATE(3661), 2, sym_line_comment, sym_block_comment, - [90878] = 5, + [103707] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4956), 1, - anon_sym_LBRACE, - STATE(1240), 1, - sym_declaration_list, - STATE(3169), 2, + ACTIONS(7432), 2, + sym_identifier, + sym_super, + STATE(3662), 2, sym_line_comment, sym_block_comment, - [90895] = 5, + [103722] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6633), 1, - sym_super, - ACTIONS(6643), 1, - sym_identifier, - STATE(3170), 2, + ACTIONS(5517), 1, + anon_sym_LBRACE, + STATE(1334), 1, + sym_field_declaration_list, + STATE(3663), 2, sym_line_comment, sym_block_comment, - [90912] = 4, + [103739] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6645), 2, - anon_sym_RPAREN, + ACTIONS(7074), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(3171), 2, + STATE(3664), 2, sym_line_comment, sym_block_comment, - [90927] = 5, + [103754] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6575), 1, - sym_super, - ACTIONS(6647), 1, - sym_identifier, - STATE(3172), 2, + ACTIONS(7522), 1, + anon_sym_SEMI, + ACTIONS(7524), 1, + anon_sym_as, + STATE(3665), 2, sym_line_comment, sym_block_comment, - [90944] = 5, + [103771] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5654), 1, - sym_super, - ACTIONS(5772), 1, + ACTIONS(7388), 1, sym_identifier, - STATE(3173), 2, - sym_line_comment, - sym_block_comment, - [90961] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(6605), 1, + ACTIONS(7462), 1, sym_super, - ACTIONS(6649), 1, - sym_identifier, - STATE(3174), 2, + STATE(3666), 2, sym_line_comment, sym_block_comment, - [90978] = 5, + [103788] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4956), 1, + ACTIONS(5898), 1, anon_sym_LBRACE, - STATE(1241), 1, - sym_declaration_list, - STATE(3175), 2, + STATE(1337), 1, + sym_enum_variant_list, + STATE(3667), 2, sym_line_comment, sym_block_comment, - [90995] = 5, + [103805] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4950), 1, - anon_sym_LBRACE, - STATE(673), 1, - sym_declaration_list, - STATE(3176), 2, + ACTIONS(5132), 1, + anon_sym_COLON_COLON, + ACTIONS(6851), 1, + anon_sym_for, + STATE(3668), 2, sym_line_comment, sym_block_comment, - [91012] = 4, + [103822] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6337), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3177), 2, + ACTIONS(3739), 1, + anon_sym_LPAREN, + STATE(1533), 1, + sym_parameters, + STATE(3669), 2, sym_line_comment, sym_block_comment, - [91027] = 5, + [103839] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6651), 1, - anon_sym_SEMI, - ACTIONS(6653), 1, - anon_sym_as, - STATE(3178), 2, + ACTIONS(6337), 1, + sym_identifier, + ACTIONS(6359), 1, + sym_super, + STATE(3670), 2, sym_line_comment, sym_block_comment, - [91044] = 5, + [103856] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6573), 1, - anon_sym_COLON_COLON, - ACTIONS(6655), 1, + ACTIONS(6407), 2, anon_sym_RPAREN, - STATE(3179), 2, + anon_sym_COMMA, + STATE(3671), 2, sym_line_comment, sym_block_comment, - [91061] = 5, + [103871] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6579), 1, - anon_sym_COLON_COLON, - ACTIONS(6657), 1, - anon_sym_RPAREN, - STATE(3180), 2, + ACTIONS(7526), 2, + anon_sym_const, + sym_mutable_specifier, + STATE(3672), 2, sym_line_comment, sym_block_comment, - [91078] = 5, + [103886] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5441), 1, + ACTIONS(5846), 1, sym_super, - ACTIONS(6659), 1, + ACTIONS(6573), 1, sym_identifier, - STATE(3181), 2, + STATE(3673), 2, sym_line_comment, sym_block_comment, - [91095] = 5, + [103903] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6661), 1, + ACTIONS(7528), 2, sym_identifier, - ACTIONS(6663), 1, - sym_super, - STATE(3182), 2, + sym_metavariable, + STATE(3674), 2, sym_line_comment, sym_block_comment, - [91112] = 5, + [103918] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6575), 1, + ACTIONS(7424), 1, sym_super, - ACTIONS(6665), 1, + ACTIONS(7472), 1, sym_identifier, - STATE(3183), 2, + STATE(3675), 2, sym_line_comment, sym_block_comment, - [91129] = 4, + [103935] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6667), 2, - anon_sym_const, - sym_mutable_specifier, - STATE(3184), 2, + ACTIONS(7530), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3676), 2, sym_line_comment, sym_block_comment, - [91144] = 5, + [103950] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5642), 1, + ACTIONS(6215), 1, sym_super, - ACTIONS(5780), 1, + ACTIONS(7532), 1, sym_identifier, - STATE(3185), 2, + STATE(3677), 2, sym_line_comment, sym_block_comment, - [91161] = 5, + [103967] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6591), 1, - sym_super, - ACTIONS(6669), 1, - sym_identifier, - STATE(3186), 2, + STATE(242), 1, + sym_closure_parameters, + STATE(3678), 2, sym_line_comment, sym_block_comment, - [91178] = 5, + [103984] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3011), 1, - anon_sym_SQUOTE, - STATE(3094), 1, - sym_lifetime, - STATE(3187), 2, + ACTIONS(5846), 2, + sym_identifier, + sym_super, + STATE(3679), 2, sym_line_comment, sym_block_comment, - [91195] = 5, + [103999] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5285), 1, - anon_sym_LBRACE, - STATE(1249), 1, - sym_enum_variant_list, - STATE(3188), 2, + ACTIONS(5886), 1, + anon_sym_RBRACK, + ACTIONS(7330), 1, + anon_sym_SEMI, + STATE(3680), 2, sym_line_comment, sym_block_comment, - [91212] = 4, + [104016] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6671), 2, - sym_float_literal, - sym_integer_literal, - STATE(3189), 2, + ACTIONS(5886), 1, + anon_sym_RPAREN, + ACTIONS(7330), 1, + anon_sym_SEMI, + STATE(3681), 2, sym_line_comment, sym_block_comment, - [91227] = 5, + [104033] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5879), 1, - sym_super, - ACTIONS(6631), 1, - sym_identifier, - STATE(3190), 2, + ACTIONS(5884), 1, + anon_sym_RBRACK, + ACTIONS(7330), 1, + anon_sym_SEMI, + STATE(3682), 2, sym_line_comment, sym_block_comment, - [91244] = 5, + [104050] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6575), 1, - sym_super, - ACTIONS(6609), 1, - sym_identifier, - STATE(3191), 2, + ACTIONS(5928), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3683), 2, sym_line_comment, sym_block_comment, - [91261] = 5, + [104065] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6559), 1, - sym_identifier, - ACTIONS(6633), 1, - sym_super, - STATE(3192), 2, + ACTIONS(7534), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3684), 2, sym_line_comment, sym_block_comment, - [91278] = 5, + [104080] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5195), 1, + ACTIONS(7462), 1, sym_super, - ACTIONS(5762), 1, + ACTIONS(7536), 1, sym_identifier, - STATE(3193), 2, + STATE(3685), 2, sym_line_comment, sym_block_comment, - [91295] = 5, + [104097] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6551), 1, - sym_super, - ACTIONS(6639), 1, - sym_identifier, - STATE(3194), 2, + ACTIONS(7044), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(3686), 2, sym_line_comment, sym_block_comment, - [91312] = 5, + [104112] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6583), 1, - anon_sym_COLON_COLON, - ACTIONS(6657), 1, - anon_sym_RPAREN, - STATE(3195), 2, + STATE(240), 1, + sym_closure_parameters, + STATE(3687), 2, sym_line_comment, sym_block_comment, - [91329] = 5, + [104129] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6633), 1, - sym_super, - ACTIONS(6673), 1, - sym_identifier, - STATE(3196), 2, + ACTIONS(3739), 1, + anon_sym_LPAREN, + STATE(1453), 1, + sym_parameters, + STATE(3688), 2, sym_line_comment, sym_block_comment, - [91346] = 5, + [104146] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4976), 1, + ACTIONS(5473), 1, anon_sym_LBRACE, - STATE(1252), 1, - sym_field_declaration_list, - STATE(3197), 2, - sym_line_comment, - sym_block_comment, - [91363] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5654), 1, - sym_super, - ACTIONS(5787), 1, - sym_identifier, - STATE(3198), 2, - sym_line_comment, - sym_block_comment, - [91380] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(6605), 1, - sym_super, - ACTIONS(6675), 1, - sym_identifier, - STATE(3199), 2, + STATE(1351), 1, + sym_declaration_list, + STATE(3689), 2, sym_line_comment, sym_block_comment, - [91397] = 4, + [104163] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6677), 2, - anon_sym_const, - sym_mutable_specifier, - STATE(3200), 2, + ACTIONS(5485), 1, + anon_sym_LBRACE, + STATE(873), 1, + sym_field_declaration_list, + STATE(3690), 2, sym_line_comment, sym_block_comment, - [91412] = 5, + [104180] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6633), 1, + ACTIONS(7428), 1, sym_super, - ACTIONS(6679), 1, + ACTIONS(7538), 1, sym_identifier, - STATE(3201), 2, + STATE(3691), 2, sym_line_comment, sym_block_comment, - [91429] = 5, + [104197] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6589), 1, - anon_sym_COLON_COLON, - ACTIONS(6657), 1, - anon_sym_RPAREN, - STATE(3202), 2, + ACTIONS(7037), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3692), 2, sym_line_comment, sym_block_comment, - [91446] = 5, + [104212] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5654), 1, + ACTIONS(6359), 1, sym_super, - ACTIONS(5789), 1, + ACTIONS(6421), 1, sym_identifier, - STATE(3203), 2, + STATE(3693), 2, sym_line_comment, sym_block_comment, - [91463] = 5, + [104229] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6605), 1, + ACTIONS(7328), 1, sym_super, - ACTIONS(6681), 1, + ACTIONS(7540), 1, sym_identifier, - STATE(3204), 2, + STATE(3694), 2, sym_line_comment, sym_block_comment, - [91480] = 5, + [104246] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4942), 1, + ACTIONS(5517), 1, anon_sym_LBRACE, - STATE(711), 1, + STATE(1352), 1, sym_field_declaration_list, - STATE(3205), 2, + STATE(3695), 2, sym_line_comment, sym_block_comment, - [91497] = 5, + [104263] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6633), 1, - sym_super, - ACTIONS(6683), 1, - sym_identifier, - STATE(3206), 2, + ACTIONS(5517), 1, + anon_sym_LBRACE, + STATE(1355), 1, + sym_field_declaration_list, + STATE(3696), 2, sym_line_comment, sym_block_comment, - [91514] = 5, + [104280] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5654), 1, - sym_super, - ACTIONS(5791), 1, - sym_identifier, - STATE(3207), 2, + ACTIONS(5884), 1, + anon_sym_RPAREN, + ACTIONS(7330), 1, + anon_sym_SEMI, + STATE(3697), 2, sym_line_comment, sym_block_comment, - [91531] = 5, + [104297] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6605), 1, + ACTIONS(7432), 1, sym_super, - ACTIONS(6685), 1, + ACTIONS(7542), 1, sym_identifier, - STATE(3208), 2, + STATE(3698), 2, sym_line_comment, sym_block_comment, - [91548] = 5, + [104314] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5879), 1, - sym_super, - ACTIONS(6683), 1, - sym_identifier, - STATE(3209), 2, + ACTIONS(5898), 1, + anon_sym_LBRACE, + STATE(1359), 1, + sym_enum_variant_list, + STATE(3699), 2, sym_line_comment, sym_block_comment, - [91565] = 5, + [104331] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3297), 1, + ACTIONS(5036), 1, anon_sym_LPAREN, - STATE(1092), 1, + STATE(2515), 1, sym_parameters, - STATE(3210), 2, + STATE(3700), 2, sym_line_comment, sym_block_comment, - [91582] = 5, + [104348] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5195), 1, - sym_super, - ACTIONS(5791), 1, - sym_identifier, - STATE(3211), 2, + ACTIONS(5523), 1, + anon_sym_LBRACE, + STATE(860), 1, + sym_declaration_list, + STATE(3701), 2, sym_line_comment, sym_block_comment, - [91599] = 5, + [104365] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6551), 1, - sym_super, - ACTIONS(6685), 1, - sym_identifier, - STATE(3212), 2, + ACTIONS(4335), 1, + anon_sym_COLON, + ACTIONS(5900), 1, + anon_sym_PLUS, + STATE(3702), 2, sym_line_comment, sym_block_comment, - [91616] = 5, + [104382] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4976), 1, + ACTIONS(5485), 1, anon_sym_LBRACE, - STATE(1254), 1, + STATE(852), 1, sym_field_declaration_list, - STATE(3213), 2, - sym_line_comment, - sym_block_comment, - [91633] = 4, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(6382), 2, - anon_sym_PIPE, - anon_sym_COMMA, - STATE(3214), 2, + STATE(3703), 2, sym_line_comment, sym_block_comment, - [91648] = 5, + [104399] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5654), 1, - sym_super, - ACTIONS(5720), 1, - sym_identifier, - STATE(3215), 2, + ACTIONS(3747), 1, + anon_sym_LT2, + STATE(1679), 1, + sym_type_arguments, + STATE(3704), 2, sym_line_comment, sym_block_comment, - [91665] = 5, + [104416] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4950), 1, - anon_sym_LBRACE, - STATE(560), 1, - sym_declaration_list, - STATE(3216), 2, + ACTIONS(7544), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3705), 2, sym_line_comment, sym_block_comment, - [91682] = 5, + [104431] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4956), 1, - anon_sym_LBRACE, - STATE(1255), 1, - sym_declaration_list, - STATE(3217), 2, + ACTIONS(3419), 1, + anon_sym_SQUOTE, + STATE(3686), 1, + sym_lifetime, + STATE(3706), 2, sym_line_comment, sym_block_comment, - [91699] = 4, + [104448] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6687), 2, - sym_identifier, - sym_metavariable, - STATE(3218), 2, + ACTIONS(7546), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3707), 2, sym_line_comment, sym_block_comment, - [91714] = 5, + [104463] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5167), 1, - anon_sym_RBRACK, - ACTIONS(6535), 1, + ACTIONS(7330), 1, anon_sym_SEMI, - STATE(3219), 2, - sym_line_comment, - sym_block_comment, - [91731] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4497), 1, - anon_sym_LPAREN, - STATE(2248), 1, - sym_parameters, - STATE(3220), 2, + ACTIONS(7548), 1, + anon_sym_RBRACE, + STATE(3708), 2, sym_line_comment, sym_block_comment, - [91748] = 5, + [104480] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6689), 1, - anon_sym_LPAREN, - ACTIONS(6691), 1, - anon_sym_COLON_COLON, - STATE(3221), 2, + ACTIONS(6552), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3709), 2, sym_line_comment, sym_block_comment, - [91765] = 4, + [104495] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6693), 2, - anon_sym_const, - sym_mutable_specifier, - STATE(3222), 2, + ACTIONS(6484), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(3710), 2, sym_line_comment, sym_block_comment, - [91780] = 5, + [104510] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5209), 1, - anon_sym_RBRACE, - ACTIONS(6535), 1, - anon_sym_SEMI, - STATE(3223), 2, + ACTIONS(7462), 1, + sym_super, + ACTIONS(7550), 1, + sym_identifier, + STATE(3711), 2, sym_line_comment, sym_block_comment, - [91797] = 5, + [104527] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6695), 1, - anon_sym_BANG, - ACTIONS(6697), 1, - anon_sym_COLON_COLON, - STATE(3224), 2, + ACTIONS(4755), 1, + anon_sym_EQ_GT, + ACTIONS(7552), 1, + anon_sym_AMP_AMP, + STATE(3712), 2, sym_line_comment, sym_block_comment, - [91814] = 5, + [104544] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4976), 1, + ACTIONS(5473), 1, anon_sym_LBRACE, - STATE(1180), 1, - sym_field_declaration_list, - STATE(3225), 2, + STATE(1371), 1, + sym_declaration_list, + STATE(3713), 2, sym_line_comment, sym_block_comment, - [91831] = 5, + [104561] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4249), 1, - anon_sym_EQ_GT, - ACTIONS(6699), 1, - anon_sym_AMP_AMP, - STATE(3226), 2, + ACTIONS(7424), 1, + sym_super, + ACTIONS(7554), 1, + sym_identifier, + STATE(3714), 2, sym_line_comment, sym_block_comment, - [91848] = 5, + [104578] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4956), 1, + ACTIONS(5473), 1, anon_sym_LBRACE, - STATE(1181), 1, + STATE(1372), 1, sym_declaration_list, - STATE(3227), 2, + STATE(3715), 2, sym_line_comment, sym_block_comment, - [91865] = 5, + [104595] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6181), 1, - anon_sym_EQ_GT, - ACTIONS(6699), 1, - anon_sym_AMP_AMP, - STATE(3228), 2, + ACTIONS(6359), 1, + sym_super, + ACTIONS(6429), 1, + sym_identifier, + STATE(3716), 2, sym_line_comment, sym_block_comment, - [91882] = 5, + [104612] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4956), 1, - anon_sym_LBRACE, - STATE(1182), 1, - sym_declaration_list, - STATE(3229), 2, + ACTIONS(7328), 1, + sym_super, + ACTIONS(7556), 1, + sym_identifier, + STATE(3717), 2, sym_line_comment, sym_block_comment, - [91899] = 4, + [104629] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6701), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3230), 2, + ACTIONS(5036), 1, + anon_sym_LPAREN, + STATE(2500), 1, + sym_parameters, + STATE(3718), 2, sym_line_comment, sym_block_comment, - [91914] = 5, + [104646] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5363), 1, - anon_sym_LBRACE, - STATE(730), 1, - sym_enum_variant_list, - STATE(3231), 2, + ACTIONS(6791), 1, + anon_sym_EQ_GT, + ACTIONS(7552), 1, + anon_sym_AMP_AMP, + STATE(3719), 2, sym_line_comment, sym_block_comment, - [91931] = 5, + [104663] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6703), 1, + ACTIONS(7330), 1, anon_sym_SEMI, - ACTIONS(6705), 1, - anon_sym_as, - STATE(3232), 2, + ACTIONS(7558), 1, + anon_sym_RBRACE, + STATE(3720), 2, sym_line_comment, sym_block_comment, - [91948] = 4, + [104680] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6446), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3233), 2, + ACTIONS(4219), 1, + anon_sym_COLON, + ACTIONS(5900), 1, + anon_sym_PLUS, + STATE(3721), 2, sym_line_comment, sym_block_comment, - [91963] = 5, + [104697] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6541), 1, + ACTIONS(7448), 1, anon_sym_LT, - STATE(1055), 1, + STATE(1203), 1, sym_type_parameters, - STATE(3234), 2, + STATE(3722), 2, sym_line_comment, sym_block_comment, - [91980] = 5, + [104714] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4497), 1, - anon_sym_LPAREN, - STATE(2215), 1, - sym_parameters, - STATE(3235), 2, + ACTIONS(5908), 1, + anon_sym_LBRACE, + STATE(506), 1, + sym_enum_variant_list, + STATE(3723), 2, sym_line_comment, sym_block_comment, - [91997] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [104731] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - STATE(242), 1, - sym_closure_parameters, - STATE(3236), 2, + ACTIONS(7560), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(3724), 2, sym_line_comment, sym_block_comment, - [92014] = 5, + [104746] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5441), 1, - sym_super, - ACTIONS(6707), 1, - sym_identifier, - STATE(3237), 2, + ACTIONS(5036), 1, + anon_sym_LPAREN, + STATE(2536), 1, + sym_parameters, + STATE(3725), 2, sym_line_comment, sym_block_comment, - [92031] = 5, + [104763] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4976), 1, + ACTIONS(5473), 1, anon_sym_LBRACE, - STATE(1188), 1, - sym_field_declaration_list, - STATE(3238), 2, - sym_line_comment, - sym_block_comment, - [92048] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(5482), 1, - anon_sym_PIPE, - ACTIONS(6709), 1, - anon_sym_EQ, - STATE(3239), 2, + STATE(1380), 1, + sym_declaration_list, + STATE(3726), 2, sym_line_comment, sym_block_comment, - [92065] = 5, + [104780] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4950), 1, + ACTIONS(5523), 1, anon_sym_LBRACE, - STATE(511), 1, + STATE(724), 1, sym_declaration_list, - STATE(3240), 2, + STATE(3727), 2, sym_line_comment, sym_block_comment, - [92082] = 4, + [104797] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5879), 2, - sym_identifier, - sym_super, - STATE(3241), 2, + ACTIONS(5132), 1, + anon_sym_COLON_COLON, + ACTIONS(5497), 1, + anon_sym_for, + STATE(3728), 2, sym_line_comment, sym_block_comment, - [92097] = 5, + [104814] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(4956), 1, - anon_sym_LBRACE, - STATE(1193), 1, - sym_declaration_list, - STATE(3242), 2, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7424), 1, + sym_super, + ACTIONS(7532), 1, + sym_identifier, + STATE(3729), 2, sym_line_comment, sym_block_comment, - [92114] = 5, + [104831] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5227), 1, - anon_sym_RPAREN, - ACTIONS(6535), 1, - anon_sym_SEMI, - STATE(3243), 2, + ACTIONS(6111), 1, + anon_sym_PIPE, + ACTIONS(7562), 1, + anon_sym_EQ, + STATE(3730), 2, sym_line_comment, sym_block_comment, - [92131] = 5, + [104848] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5227), 1, - anon_sym_RBRACK, - ACTIONS(6535), 1, - anon_sym_SEMI, - STATE(3244), 2, + ACTIONS(5036), 1, + anon_sym_LPAREN, + STATE(2541), 1, + sym_parameters, + STATE(3731), 2, sym_line_comment, sym_block_comment, - [92148] = 5, + [104865] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5229), 1, - anon_sym_RPAREN, - ACTIONS(6535), 1, - anon_sym_SEMI, - STATE(3245), 2, + ACTIONS(7480), 1, + sym_super, + ACTIONS(7564), 1, + sym_identifier, + STATE(3732), 2, sym_line_comment, sym_block_comment, - [92165] = 4, + [104882] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6455), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(3246), 2, + ACTIONS(5485), 1, + anon_sym_LBRACE, + STATE(725), 1, + sym_field_declaration_list, + STATE(3733), 2, sym_line_comment, sym_block_comment, - [92180] = 5, + [104899] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5229), 1, - anon_sym_RBRACK, - ACTIONS(6535), 1, - anon_sym_SEMI, - STATE(3247), 2, + ACTIONS(7424), 1, + sym_super, + ACTIONS(7566), 1, + sym_identifier, + STATE(3734), 2, sym_line_comment, sym_block_comment, - [92197] = 4, + [104916] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6711), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3248), 2, + ACTIONS(5485), 1, + anon_sym_LBRACE, + STATE(727), 1, + sym_field_declaration_list, + STATE(3735), 2, sym_line_comment, sym_block_comment, - [92212] = 5, + [104933] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5195), 1, - sym_super, - ACTIONS(5872), 1, + ACTIONS(6446), 1, sym_identifier, - STATE(3249), 2, + ACTIONS(6448), 1, + sym_super, + STATE(3736), 2, sym_line_comment, sym_block_comment, - [92229] = 4, + [104950] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6633), 2, - sym_identifier, + ACTIONS(7456), 1, sym_super, - STATE(3250), 2, + ACTIONS(7568), 1, + sym_identifier, + STATE(3737), 2, sym_line_comment, sym_block_comment, - [92244] = 4, + [104967] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5654), 2, - sym_identifier, - sym_super, - STATE(3251), 2, + ACTIONS(6111), 1, + anon_sym_PIPE, + ACTIONS(7570), 1, + anon_sym_in, + STATE(3738), 2, sym_line_comment, sym_block_comment, - [92259] = 5, + [104984] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3305), 1, - anon_sym_LT2, - STATE(1395), 1, - sym_type_arguments, - STATE(3252), 2, + ACTIONS(5908), 1, + anon_sym_LBRACE, + STATE(767), 1, + sym_enum_variant_list, + STATE(3739), 2, sym_line_comment, sym_block_comment, - [92276] = 5, + [105001] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6551), 1, + ACTIONS(6359), 1, sym_super, - ACTIONS(6713), 1, + ACTIONS(6395), 1, sym_identifier, - STATE(3253), 2, + STATE(3740), 2, sym_line_comment, sym_block_comment, - [92293] = 4, + [105018] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6715), 2, - sym__block_comment_content, - anon_sym_STAR_SLASH, - STATE(3254), 2, + ACTIONS(6963), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(3741), 2, sym_line_comment, sym_block_comment, - [92308] = 5, + [105033] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5363), 1, + ACTIONS(5908), 1, anon_sym_LBRACE, - STATE(593), 1, + STATE(585), 1, sym_enum_variant_list, - STATE(3255), 2, + STATE(3742), 2, sym_line_comment, sym_block_comment, - [92325] = 5, + [105050] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5480), 1, - anon_sym_COLON, - ACTIONS(5482), 1, - anon_sym_PIPE, - STATE(3256), 2, + ACTIONS(6623), 1, + sym_super, + ACTIONS(7536), 1, + sym_identifier, + STATE(3743), 2, sym_line_comment, sym_block_comment, - [92342] = 5, + [105067] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5285), 1, - anon_sym_LBRACE, - STATE(1198), 1, - sym_enum_variant_list, - STATE(3257), 2, + ACTIONS(7424), 1, + sym_super, + ACTIONS(7498), 1, + sym_identifier, + STATE(3744), 2, sym_line_comment, sym_block_comment, - [92359] = 4, + [105084] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6717), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3258), 2, + STATE(225), 1, + sym_closure_parameters, + STATE(3745), 2, sym_line_comment, sym_block_comment, - [92374] = 5, + [105101] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4011), 1, - anon_sym_LT2, - STATE(1861), 1, - sym_type_arguments, - STATE(3259), 2, + ACTIONS(5846), 1, + sym_super, + ACTIONS(6421), 1, + sym_identifier, + STATE(3746), 2, sym_line_comment, sym_block_comment, - [92391] = 5, + [105118] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3697), 1, - anon_sym_COLON, - ACTIONS(5331), 1, - anon_sym_PLUS, - STATE(3260), 2, + ACTIONS(7432), 1, + sym_super, + ACTIONS(7540), 1, + sym_identifier, + STATE(3747), 2, sym_line_comment, sym_block_comment, - [92408] = 5, + [105135] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4497), 1, - anon_sym_LPAREN, - STATE(2221), 1, - sym_parameters, - STATE(3261), 2, + ACTIONS(5908), 1, + anon_sym_LBRACE, + STATE(734), 1, + sym_enum_variant_list, + STATE(3748), 2, sym_line_comment, sym_block_comment, - [92425] = 5, + [105152] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3701), 1, - anon_sym_COLON, - ACTIONS(5331), 1, - anon_sym_PLUS, - STATE(3262), 2, + ACTIONS(7462), 1, + sym_super, + ACTIONS(7572), 1, + sym_identifier, + STATE(3749), 2, sym_line_comment, sym_block_comment, - [92442] = 5, + [105169] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4595), 1, - anon_sym_COLON_COLON, - ACTIONS(5962), 1, - anon_sym_for, - STATE(3263), 2, + ACTIONS(4413), 1, + anon_sym_LT2, + STATE(2100), 1, + sym_type_arguments, + STATE(3750), 2, sym_line_comment, sym_block_comment, - [92459] = 5, + [105186] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6535), 1, - anon_sym_SEMI, - ACTIONS(6719), 1, - anon_sym_RPAREN, - STATE(3264), 2, + ACTIONS(6359), 1, + sym_super, + ACTIONS(6470), 1, + sym_identifier, + STATE(3751), 2, sym_line_comment, sym_block_comment, - [92476] = 5, + [105203] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6535), 1, - anon_sym_SEMI, - ACTIONS(6719), 1, - anon_sym_RBRACK, - STATE(3265), 2, + ACTIONS(7328), 1, + sym_super, + ACTIONS(7574), 1, + sym_identifier, + STATE(3752), 2, sym_line_comment, sym_block_comment, - [92493] = 5, + [105220] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6535), 1, - anon_sym_SEMI, - ACTIONS(6721), 1, - anon_sym_RPAREN, - STATE(3266), 2, + ACTIONS(5523), 1, + anon_sym_LBRACE, + STATE(770), 1, + sym_declaration_list, + STATE(3753), 2, sym_line_comment, sym_block_comment, - [92510] = 5, + [105237] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6535), 1, - anon_sym_SEMI, - ACTIONS(6721), 1, - anon_sym_RBRACK, - STATE(3267), 2, + ACTIONS(7462), 1, + sym_super, + ACTIONS(7576), 1, + sym_identifier, + STATE(3754), 2, sym_line_comment, sym_block_comment, - [92527] = 5, + [105254] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4950), 1, - anon_sym_LBRACE, - STATE(712), 1, - sym_declaration_list, - STATE(3268), 2, + ACTIONS(4135), 1, + anon_sym_COLON, + ACTIONS(5900), 1, + anon_sym_PLUS, + STATE(3755), 2, sym_line_comment, sym_block_comment, - [92544] = 4, + [105271] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5235), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(3269), 2, + ACTIONS(6359), 1, + sym_super, + ACTIONS(6474), 1, + sym_identifier, + STATE(3756), 2, sym_line_comment, sym_block_comment, - [92559] = 4, + [105288] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5702), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(3270), 2, + ACTIONS(7328), 1, + sym_super, + ACTIONS(7578), 1, + sym_identifier, + STATE(3757), 2, sym_line_comment, sym_block_comment, - [92574] = 5, + [105305] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5039), 1, + ACTIONS(4139), 1, + anon_sym_COLON, + ACTIONS(5900), 1, anon_sym_PLUS, - ACTIONS(6723), 1, - anon_sym_GT, - STATE(3271), 2, + STATE(3758), 2, sym_line_comment, sym_block_comment, - [92591] = 5, + [105322] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6615), 1, - sym_identifier, - ACTIONS(6633), 1, + ACTIONS(7462), 1, sym_super, - STATE(3272), 2, + ACTIONS(7580), 1, + sym_identifier, + STATE(3759), 2, sym_line_comment, sym_block_comment, - [92608] = 5, + [105339] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4497), 1, - anon_sym_LPAREN, - STATE(2197), 1, - sym_parameters, - STATE(3273), 2, + ACTIONS(7582), 1, + anon_sym_SEMI, + ACTIONS(7584), 1, + anon_sym_as, + STATE(3760), 2, sym_line_comment, sym_block_comment, - [92625] = 5, + [105356] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4497), 1, - anon_sym_LPAREN, - STATE(1981), 1, - sym_parameters, - STATE(3274), 2, + ACTIONS(6357), 1, + sym_identifier, + ACTIONS(6359), 1, + sym_super, + STATE(3761), 2, sym_line_comment, sym_block_comment, - [92642] = 5, + [105373] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4497), 1, - anon_sym_LPAREN, - STATE(2251), 1, - sym_parameters, - STATE(3275), 2, + ACTIONS(7328), 1, + sym_super, + ACTIONS(7586), 1, + sym_identifier, + STATE(3762), 2, sym_line_comment, sym_block_comment, - [92659] = 5, + [105390] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4950), 1, - anon_sym_LBRACE, - STATE(622), 1, - sym_declaration_list, - STATE(3276), 2, + ACTIONS(7588), 1, + anon_sym_BANG, + ACTIONS(7590), 1, + anon_sym_COLON_COLON, + STATE(3763), 2, sym_line_comment, sym_block_comment, - [92676] = 5, + [105407] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4976), 1, - anon_sym_LBRACE, - STATE(1201), 1, - sym_field_declaration_list, - STATE(3277), 2, + ACTIONS(6623), 1, + sym_super, + ACTIONS(7580), 1, + sym_identifier, + STATE(3764), 2, sym_line_comment, sym_block_comment, - [92693] = 5, + [105424] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4956), 1, - anon_sym_LBRACE, - STATE(1296), 1, - sym_declaration_list, - STATE(3278), 2, + ACTIONS(5596), 1, + anon_sym_COLON, + STATE(2919), 1, + sym_trait_bounds, + STATE(3765), 2, sym_line_comment, sym_block_comment, - [92710] = 4, + [105441] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6725), 2, - anon_sym_const, - sym_mutable_specifier, - STATE(3279), 2, + ACTIONS(5846), 1, + sym_super, + ACTIONS(6357), 1, + sym_identifier, + STATE(3766), 2, sym_line_comment, sym_block_comment, - [92725] = 5, + [105458] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6575), 1, + ACTIONS(7432), 1, sym_super, - ACTIONS(6593), 1, + ACTIONS(7586), 1, sym_identifier, - STATE(3280), 2, + STATE(3767), 2, sym_line_comment, sym_block_comment, - [92742] = 5, + [105475] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4950), 1, + ACTIONS(5523), 1, anon_sym_LBRACE, - STATE(713), 1, + STATE(755), 1, sym_declaration_list, - STATE(3281), 2, + STATE(3768), 2, sym_line_comment, sym_block_comment, - [92759] = 5, + [105492] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4944), 1, - anon_sym_LT, - STATE(867), 1, - sym_type_parameters, - STATE(3282), 2, + ACTIONS(7592), 2, + anon_sym_const, + sym_mutable_specifier, + STATE(3769), 2, sym_line_comment, sym_block_comment, - [92776] = 5, + [105507] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5654), 1, + ACTIONS(5485), 1, + anon_sym_LBRACE, + STATE(538), 1, + sym_field_declaration_list, + STATE(3770), 2, + sym_line_comment, + sym_block_comment, + [105524] = 5, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7432), 1, sym_super, - ACTIONS(5696), 1, + ACTIONS(7594), 1, sym_identifier, - STATE(3283), 2, + STATE(3771), 2, sym_line_comment, sym_block_comment, - [92793] = 5, + [105541] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4950), 1, + ACTIONS(5523), 1, anon_sym_LBRACE, - STATE(519), 1, + STATE(754), 1, sym_declaration_list, - STATE(3284), 2, + STATE(3772), 2, sym_line_comment, sym_block_comment, - [92810] = 5, + [105558] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6581), 1, + ACTIONS(7462), 2, sym_identifier, - ACTIONS(6605), 1, sym_super, - STATE(3285), 2, + STATE(3773), 2, sym_line_comment, sym_block_comment, - [92827] = 5, + [105573] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6727), 1, - anon_sym_LBRACK, - ACTIONS(6729), 1, - anon_sym_BANG, - STATE(3286), 2, + ACTIONS(3419), 1, + anon_sym_SQUOTE, + STATE(3371), 1, + sym_lifetime, + STATE(3774), 2, sym_line_comment, sym_block_comment, - [92844] = 5, + [105590] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6731), 1, + ACTIONS(7408), 1, anon_sym_LPAREN, - ACTIONS(6733), 1, - anon_sym_COLON_COLON, - STATE(3287), 2, - sym_line_comment, - sym_block_comment, - [92861] = 5, - ACTIONS(103), 1, - anon_sym_SLASH_SLASH, - ACTIONS(105), 1, - anon_sym_SLASH_STAR, - ACTIONS(6735), 1, - anon_sym_BANG, - ACTIONS(6737), 1, + ACTIONS(7596), 1, anon_sym_COLON_COLON, - STATE(3288), 2, + STATE(3775), 2, sym_line_comment, sym_block_comment, - [92878] = 5, + [105607] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4956), 1, - anon_sym_LBRACE, - STATE(1304), 1, - sym_declaration_list, - STATE(3289), 2, + ACTIONS(6359), 2, + sym_identifier, + sym_super, + STATE(3776), 2, sym_line_comment, sym_block_comment, - [92895] = 5, + [105622] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4956), 1, - anon_sym_LBRACE, - STATE(1305), 1, - sym_declaration_list, - STATE(3290), 2, + ACTIONS(7448), 1, + anon_sym_LT, + STATE(1198), 1, + sym_type_parameters, + STATE(3777), 2, sym_line_comment, sym_block_comment, - [92912] = 5, + [105639] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6541), 1, + ACTIONS(5487), 1, anon_sym_LT, - STATE(1051), 1, + STATE(1115), 1, sym_type_parameters, - STATE(3291), 2, + STATE(3778), 2, sym_line_comment, sym_block_comment, - [92929] = 5, + [105656] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4976), 1, - anon_sym_LBRACE, - STATE(1204), 1, - sym_field_declaration_list, - STATE(3292), 2, + ACTIONS(5846), 1, + sym_super, + ACTIONS(6554), 1, + sym_identifier, + STATE(3779), 2, sym_line_comment, sym_block_comment, - [92946] = 5, + [105673] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5043), 1, - anon_sym_COLON, - STATE(2725), 1, - sym_trait_bounds, - STATE(3293), 2, + ACTIONS(5485), 1, + anon_sym_LBRACE, + STATE(531), 1, + sym_field_declaration_list, + STATE(3780), 2, sym_line_comment, sym_block_comment, - [92963] = 5, + [105690] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4950), 1, - anon_sym_LBRACE, - STATE(520), 1, - sym_declaration_list, - STATE(3294), 2, + ACTIONS(5132), 1, + anon_sym_COLON_COLON, + ACTIONS(6939), 1, + anon_sym_for, + STATE(3781), 2, sym_line_comment, sym_block_comment, - [92980] = 5, + [105707] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6541), 1, + ACTIONS(7448), 1, anon_sym_LT, - STATE(891), 1, + STATE(1010), 1, sym_type_parameters, - STATE(3295), 2, + STATE(3782), 2, sym_line_comment, sym_block_comment, - [92997] = 4, + [105724] = 5, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6739), 2, - sym__block_comment_content, - anon_sym_STAR_SLASH, - STATE(3296), 2, + ACTIONS(5036), 1, + anon_sym_LPAREN, + STATE(2239), 1, + sym_parameters, + STATE(3783), 2, sym_line_comment, sym_block_comment, - [93012] = 5, + [105741] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3297), 1, - anon_sym_LPAREN, - STATE(1117), 1, - sym_parameters, - STATE(3297), 2, + ACTIONS(7598), 1, + anon_sym_RBRACK, + STATE(3784), 2, sym_line_comment, sym_block_comment, - [93029] = 5, + [105755] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5879), 1, - sym_super, - ACTIONS(6741), 1, + ACTIONS(7600), 1, sym_identifier, - STATE(3298), 2, + STATE(3785), 2, sym_line_comment, sym_block_comment, - [93046] = 5, + [105769] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5195), 1, - sym_super, - ACTIONS(5793), 1, - sym_identifier, - STATE(3299), 2, + ACTIONS(5175), 1, + anon_sym_COLON_COLON, + STATE(3786), 2, sym_line_comment, sym_block_comment, - [93063] = 5, + [105783] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5167), 1, - anon_sym_RPAREN, - ACTIONS(6535), 1, - anon_sym_SEMI, - STATE(3300), 2, + ACTIONS(7602), 1, + anon_sym_fn, + STATE(3787), 2, sym_line_comment, sym_block_comment, - [93080] = 5, + [105797] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6689), 1, - anon_sym_LPAREN, - ACTIONS(6743), 1, - anon_sym_COLON_COLON, - STATE(3301), 2, + ACTIONS(5078), 1, + anon_sym_fn, + STATE(3788), 2, sym_line_comment, sym_block_comment, - [93097] = 5, + [105811] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6745), 1, - anon_sym_SEMI, - ACTIONS(6747), 1, - anon_sym_as, - STATE(3302), 2, + ACTIONS(7604), 1, + sym_identifier, + STATE(3789), 2, sym_line_comment, sym_block_comment, - [93114] = 4, + [105825] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6663), 2, - sym_identifier, - sym_super, - STATE(3303), 2, + ACTIONS(6054), 1, + anon_sym_EQ, + STATE(3790), 2, sym_line_comment, sym_block_comment, - [93129] = 5, + [105839] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6689), 1, - anon_sym_LPAREN, - ACTIONS(6749), 1, - anon_sym_COLON_COLON, - STATE(3304), 2, + ACTIONS(7606), 1, + sym_identifier, + STATE(3791), 2, sym_line_comment, sym_block_comment, - [93146] = 4, + [105853] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6751), 2, + ACTIONS(7608), 1, sym_identifier, - sym_metavariable, - STATE(3305), 2, + STATE(3792), 2, sym_line_comment, sym_block_comment, - [93161] = 5, + [105867] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6753), 1, - anon_sym_LBRACK, - ACTIONS(6755), 1, - anon_sym_BANG, - STATE(3306), 2, + ACTIONS(5495), 1, + anon_sym_COLON_COLON, + STATE(3793), 2, sym_line_comment, sym_block_comment, - [93178] = 4, + [105881] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6757), 2, + ACTIONS(7610), 1, sym_identifier, - sym_metavariable, - STATE(3307), 2, + STATE(3794), 2, sym_line_comment, sym_block_comment, - [93193] = 5, + [105895] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5482), 1, - anon_sym_PIPE, - ACTIONS(6759), 1, - anon_sym_in, - STATE(3308), 2, + ACTIONS(5147), 1, + anon_sym_COLON_COLON, + STATE(3795), 2, sym_line_comment, sym_block_comment, - [93210] = 5, + [105909] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5285), 1, - anon_sym_LBRACE, - STATE(1121), 1, - sym_enum_variant_list, - STATE(3309), 2, + ACTIONS(7612), 1, + anon_sym_SEMI, + STATE(3796), 2, sym_line_comment, sym_block_comment, - [93227] = 4, + [105923] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5889), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(3310), 2, + ACTIONS(7614), 1, + anon_sym_SEMI, + STATE(3797), 2, sym_line_comment, sym_block_comment, - [93242] = 4, + [105937] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3669), 2, - anon_sym_LPAREN, - anon_sym_COLON_COLON, - STATE(3311), 2, + ACTIONS(7616), 1, + sym_identifier, + STATE(3798), 2, sym_line_comment, sym_block_comment, - [93257] = 4, + [105951] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6761), 2, - sym_identifier, - sym_metavariable, - STATE(3312), 2, + ACTIONS(7618), 1, + anon_sym_COLON_COLON, + STATE(3799), 2, sym_line_comment, sym_block_comment, - [93272] = 5, + [105965] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5482), 1, - anon_sym_PIPE, - ACTIONS(6763), 1, - anon_sym_EQ, - STATE(3313), 2, + ACTIONS(7620), 1, + sym_raw_string_literal_content, + STATE(3800), 2, sym_line_comment, sym_block_comment, - [93289] = 5, + [105979] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4942), 1, - anon_sym_LBRACE, - STATE(733), 1, - sym_field_declaration_list, - STATE(3314), 2, + ACTIONS(7622), 1, + anon_sym_fn, + STATE(3801), 2, sym_line_comment, sym_block_comment, - [93306] = 4, + [105993] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6575), 2, - sym_identifier, - sym_super, - STATE(3315), 2, + ACTIONS(7624), 1, + anon_sym_SEMI, + STATE(3802), 2, sym_line_comment, sym_block_comment, - [93321] = 5, + [106007] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4595), 1, + ACTIONS(7626), 1, anon_sym_COLON_COLON, - ACTIONS(5021), 1, - anon_sym_for, - STATE(3316), 2, + STATE(3803), 2, sym_line_comment, sym_block_comment, - [93338] = 5, + [106021] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4976), 1, - anon_sym_LBRACE, - STATE(1140), 1, - sym_field_declaration_list, - STATE(3317), 2, + ACTIONS(6583), 1, + anon_sym_RPAREN, + STATE(3804), 2, sym_line_comment, sym_block_comment, - [93355] = 4, + [106035] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6765), 2, - sym_identifier, - sym_metavariable, - STATE(3318), 2, + ACTIONS(7628), 1, + anon_sym_SEMI, + STATE(3805), 2, sym_line_comment, sym_block_comment, - [93370] = 5, + [106049] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4595), 1, - anon_sym_COLON_COLON, - ACTIONS(6511), 1, - anon_sym_for, - STATE(3319), 2, + ACTIONS(7630), 1, + sym_identifier, + STATE(3806), 2, sym_line_comment, sym_block_comment, - [93387] = 5, + [106063] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4942), 1, - anon_sym_LBRACE, - STATE(611), 1, - sym_field_declaration_list, - STATE(3320), 2, + ACTIONS(7632), 1, + anon_sym_SEMI, + STATE(3807), 2, sym_line_comment, sym_block_comment, - [93404] = 5, + [106077] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4595), 1, - anon_sym_COLON_COLON, - ACTIONS(6515), 1, - anon_sym_for, - STATE(3321), 2, + ACTIONS(7634), 1, + sym_identifier, + STATE(3808), 2, sym_line_comment, sym_block_comment, - [93421] = 5, + [106091] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5253), 1, - anon_sym_RBRACE, - ACTIONS(6535), 1, - anon_sym_SEMI, - STATE(3322), 2, + ACTIONS(7636), 1, + anon_sym_RBRACK, + STATE(3809), 2, sym_line_comment, sym_block_comment, - [93438] = 5, + [106105] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4497), 1, - anon_sym_LPAREN, - STATE(2234), 1, - sym_parameters, - STATE(3323), 2, + ACTIONS(7638), 1, + anon_sym_COLON, + STATE(3810), 2, sym_line_comment, sym_block_comment, - [93455] = 5, + [106119] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4976), 1, + ACTIONS(6565), 1, anon_sym_LBRACE, - STATE(1131), 1, - sym_field_declaration_list, - STATE(3324), 2, + STATE(3811), 2, sym_line_comment, sym_block_comment, - [93472] = 5, + [106133] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3765), 1, - anon_sym_COLON, - ACTIONS(5331), 1, - anon_sym_PLUS, - STATE(3325), 2, + ACTIONS(7640), 1, + sym_identifier, + STATE(3812), 2, sym_line_comment, sym_block_comment, - [93489] = 5, + [106147] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5482), 1, - anon_sym_PIPE, - ACTIONS(6767), 1, - anon_sym_in, - STATE(3326), 2, + ACTIONS(7642), 1, + anon_sym_COLON_COLON, + STATE(3813), 2, sym_line_comment, sym_block_comment, - [93506] = 5, + [106161] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4956), 1, - anon_sym_LBRACE, - STATE(1134), 1, - sym_declaration_list, - STATE(3327), 2, + ACTIONS(7644), 1, + sym_identifier, + STATE(3814), 2, sym_line_comment, sym_block_comment, - [93523] = 5, + [106175] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4595), 1, - anon_sym_COLON_COLON, - ACTIONS(6519), 1, - anon_sym_for, - STATE(3328), 2, + ACTIONS(7646), 1, + sym_identifier, + STATE(3815), 2, sym_line_comment, sym_block_comment, - [93540] = 5, + [106189] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6769), 1, - anon_sym_LBRACK, - ACTIONS(6771), 1, - anon_sym_BANG, - STATE(3329), 2, + ACTIONS(7648), 1, + sym_identifier, + STATE(3816), 2, sym_line_comment, sym_block_comment, - [93557] = 5, + [106203] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5482), 1, - anon_sym_PIPE, - ACTIONS(6773), 1, - anon_sym_in, - STATE(3330), 2, + ACTIONS(7650), 1, + sym_identifier, + STATE(3817), 2, sym_line_comment, sym_block_comment, - [93574] = 5, + [106217] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5482), 1, - anon_sym_PIPE, - ACTIONS(6775), 1, - anon_sym_in, - STATE(3331), 2, + ACTIONS(7652), 1, + sym_identifier, + STATE(3818), 2, sym_line_comment, sym_block_comment, - [93591] = 5, + [106231] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5482), 1, - anon_sym_PIPE, - ACTIONS(6777), 1, - anon_sym_in, - STATE(3332), 2, + ACTIONS(7654), 1, + anon_sym_SEMI, + STATE(3819), 2, sym_line_comment, sym_block_comment, - [93608] = 5, + [106245] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5482), 1, - anon_sym_PIPE, - ACTIONS(6779), 1, - anon_sym_in, - STATE(3333), 2, + ACTIONS(7656), 1, + sym_identifier, + STATE(3820), 2, sym_line_comment, sym_block_comment, - [93625] = 5, + [106259] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6781), 1, - anon_sym_STAR_SLASH, - ACTIONS(6783), 1, - sym__block_comment_content, - STATE(3334), 2, + ACTIONS(7658), 1, + sym_identifier, + STATE(3821), 2, sym_line_comment, sym_block_comment, - [93642] = 5, + [106273] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6521), 1, - sym_identifier, - ACTIONS(6525), 1, - sym_mutable_specifier, - STATE(3335), 2, + ACTIONS(7660), 1, + anon_sym_SEMI, + STATE(3822), 2, sym_line_comment, sym_block_comment, - [93659] = 4, + [106287] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6785), 2, - sym_float_literal, - sym_integer_literal, - STATE(3336), 2, + ACTIONS(7662), 1, + anon_sym_RBRACE, + STATE(3823), 2, sym_line_comment, sym_block_comment, - [93674] = 5, + [106301] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6689), 1, - anon_sym_LPAREN, - ACTIONS(6787), 1, - anon_sym_COLON_COLON, - STATE(3337), 2, + ACTIONS(7664), 1, + sym_identifier, + STATE(3824), 2, sym_line_comment, sym_block_comment, - [93691] = 5, + [106315] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6789), 1, - sym_identifier, - ACTIONS(6791), 1, - sym_mutable_specifier, - STATE(3338), 2, + ACTIONS(7666), 1, + sym_raw_string_literal_content, + STATE(3825), 2, sym_line_comment, sym_block_comment, - [93708] = 5, + [106329] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4950), 1, - anon_sym_LBRACE, - STATE(724), 1, - sym_declaration_list, - STATE(3339), 2, + ACTIONS(7668), 1, + sym_identifier, + STATE(3826), 2, sym_line_comment, sym_block_comment, - [93725] = 4, + [106343] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6793), 2, - anon_sym_const, - sym_mutable_specifier, - STATE(3340), 2, + ACTIONS(7670), 1, + anon_sym_EQ_GT, + STATE(3827), 2, sym_line_comment, sym_block_comment, - [93740] = 4, + [106357] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6795), 1, - anon_sym_fn, - STATE(3341), 2, + ACTIONS(7672), 1, + anon_sym_LPAREN, + STATE(3828), 2, sym_line_comment, sym_block_comment, - [93754] = 4, + [106371] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6797), 1, - anon_sym_RBRACE, - STATE(3342), 2, + ACTIONS(7674), 1, + anon_sym_SEMI, + STATE(3829), 2, sym_line_comment, sym_block_comment, - [93768] = 4, + [106385] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6799), 1, - sym_identifier, - STATE(3343), 2, + ACTIONS(6518), 1, + anon_sym_RBRACK, + STATE(3830), 2, sym_line_comment, sym_block_comment, - [93782] = 4, + [106399] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6801), 1, - sym_identifier, - STATE(3344), 2, + ACTIONS(7676), 1, + anon_sym_EQ_GT, + STATE(3831), 2, sym_line_comment, sym_block_comment, - [93796] = 4, + [106413] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6803), 1, - sym_identifier, - STATE(3345), 2, + ACTIONS(7678), 1, + anon_sym_COLON, + STATE(3832), 2, sym_line_comment, sym_block_comment, - [93810] = 4, + [106427] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6805), 1, - sym_identifier, - STATE(3346), 2, + ACTIONS(6546), 1, + anon_sym_RPAREN, + STATE(3833), 2, sym_line_comment, sym_block_comment, - [93824] = 4, + [106441] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6807), 1, - anon_sym_SEMI, - STATE(3347), 2, + ACTIONS(5477), 1, + anon_sym_COLON_COLON, + STATE(3834), 2, sym_line_comment, sym_block_comment, - [93838] = 4, + [106455] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3103), 1, - anon_sym_PLUS, - STATE(3348), 2, + ACTIONS(7680), 1, + anon_sym_SEMI, + STATE(3835), 2, sym_line_comment, sym_block_comment, - [93852] = 4, + [106469] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6809), 1, - sym_identifier, - STATE(3349), 2, + ACTIONS(7682), 1, + anon_sym_COLON_COLON, + STATE(3836), 2, sym_line_comment, sym_block_comment, - [93866] = 4, + [106483] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6811), 1, - sym_identifier, - STATE(3350), 2, + ACTIONS(7684), 1, + anon_sym_fn, + STATE(3837), 2, sym_line_comment, sym_block_comment, - [93880] = 4, + [106497] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4061), 1, - anon_sym_COLON_COLON, - STATE(3351), 2, + ACTIONS(967), 1, + anon_sym_RBRACK, + STATE(3838), 2, sym_line_comment, sym_block_comment, - [93894] = 4, + [106511] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6813), 1, - anon_sym_EQ_GT, - STATE(3352), 2, + ACTIONS(6508), 1, + anon_sym_LBRACE, + STATE(3839), 2, sym_line_comment, sym_block_comment, - [93908] = 4, + [106525] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4630), 1, - anon_sym_COLON_COLON, - STATE(3353), 2, + ACTIONS(7686), 1, + anon_sym_SEMI, + STATE(3840), 2, sym_line_comment, sym_block_comment, - [93922] = 4, + [106539] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5862), 1, - anon_sym_RPAREN, - STATE(3354), 2, + ACTIONS(7558), 1, + anon_sym_SEMI, + STATE(3841), 2, sym_line_comment, sym_block_comment, - [93936] = 4, + [106553] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6815), 1, - anon_sym_COLON, - STATE(3355), 2, + ACTIONS(7688), 1, + anon_sym_SEMI, + STATE(3842), 2, sym_line_comment, sym_block_comment, - [93950] = 4, + [106567] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6030), 1, - anon_sym_RBRACE, - STATE(3356), 2, + ACTIONS(7690), 1, + anon_sym_RPAREN, + STATE(3843), 2, sym_line_comment, sym_block_comment, - [93964] = 4, + [106581] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6817), 1, - anon_sym_COLON, - STATE(3357), 2, + ACTIONS(7692), 1, + sym__raw_string_literal_end, + STATE(3844), 2, sym_line_comment, sym_block_comment, - [93978] = 4, + [106595] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6819), 1, + ACTIONS(7694), 1, anon_sym_SEMI, - STATE(3358), 2, + STATE(3845), 2, sym_line_comment, sym_block_comment, - [93992] = 4, + [106609] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5983), 1, - anon_sym_RBRACE, - STATE(3359), 2, + ACTIONS(7696), 1, + sym_identifier, + STATE(3846), 2, sym_line_comment, sym_block_comment, - [94006] = 4, + [106623] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6821), 1, - anon_sym_RBRACK, - STATE(3360), 2, + ACTIONS(7698), 1, + anon_sym_COLON, + STATE(3847), 2, sym_line_comment, sym_block_comment, - [94020] = 4, + [106637] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4612), 1, - anon_sym_COLON_COLON, - STATE(3361), 2, + ACTIONS(6663), 1, + anon_sym_RBRACE, + STATE(3848), 2, sym_line_comment, sym_block_comment, - [94034] = 4, + [106651] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6823), 1, - sym_identifier, - STATE(3362), 2, + ACTIONS(7548), 1, + anon_sym_SEMI, + STATE(3849), 2, sym_line_comment, sym_block_comment, - [94048] = 4, + [106665] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6825), 1, - sym_identifier, - STATE(3363), 2, + ACTIONS(7700), 1, + anon_sym_STAR_SLASH, + STATE(3850), 2, sym_line_comment, sym_block_comment, - [94062] = 4, + [106679] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6827), 1, - sym_identifier, - STATE(3364), 2, + ACTIONS(7702), 1, + sym_raw_string_literal_content, + STATE(3851), 2, sym_line_comment, sym_block_comment, - [94076] = 4, + [106693] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6829), 1, + ACTIONS(7338), 1, anon_sym_SEMI, - STATE(3365), 2, + STATE(3852), 2, sym_line_comment, sym_block_comment, - [94090] = 4, + [106707] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6831), 1, + ACTIONS(7704), 1, sym_identifier, - STATE(3366), 2, + STATE(3853), 2, sym_line_comment, sym_block_comment, - [94104] = 4, + [106721] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6833), 1, - anon_sym_fn, - STATE(3367), 2, + ACTIONS(7706), 1, + sym_identifier, + STATE(3854), 2, sym_line_comment, sym_block_comment, - [94118] = 4, + [106735] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6835), 1, - anon_sym_SEMI, - STATE(3368), 2, + ACTIONS(901), 1, + anon_sym_RBRACK, + STATE(3855), 2, sym_line_comment, sym_block_comment, - [94132] = 4, + [106749] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6837), 1, - anon_sym_COLON_COLON, - STATE(3369), 2, + ACTIONS(7708), 1, + sym_identifier, + STATE(3856), 2, sym_line_comment, sym_block_comment, - [94146] = 4, + [106763] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6839), 1, - anon_sym_RBRACK, - STATE(3370), 2, + ACTIONS(7710), 1, + sym_identifier, + STATE(3857), 2, sym_line_comment, sym_block_comment, - [94160] = 4, + [106777] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6841), 1, + ACTIONS(7712), 1, anon_sym_SEMI, - STATE(3371), 2, + STATE(3858), 2, sym_line_comment, sym_block_comment, - [94174] = 4, + [106791] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5838), 1, - anon_sym_LBRACE, - STATE(3372), 2, + ACTIONS(6995), 1, + anon_sym_RBRACE, + STATE(3859), 2, sym_line_comment, sym_block_comment, - [94188] = 4, + [106805] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6843), 1, - anon_sym_COLON, - STATE(3373), 2, + ACTIONS(7714), 1, + anon_sym_SEMI, + STATE(3860), 2, sym_line_comment, sym_block_comment, - [94202] = 4, + [106819] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6845), 1, - anon_sym_RBRACE, - STATE(3374), 2, + ACTIONS(3521), 1, + anon_sym_PLUS, + STATE(3861), 2, sym_line_comment, sym_block_comment, - [94216] = 4, + [106833] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6847), 1, + ACTIONS(7716), 1, sym_identifier, - STATE(3375), 2, + STATE(3862), 2, sym_line_comment, sym_block_comment, - [94230] = 4, + [106847] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6621), 1, - anon_sym_SEMI, - STATE(3376), 2, + ACTIONS(7718), 1, + sym_identifier, + STATE(3863), 2, sym_line_comment, sym_block_comment, - [94244] = 4, + [106861] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6849), 1, + ACTIONS(7720), 1, sym_identifier, - STATE(3377), 2, + STATE(3864), 2, sym_line_comment, sym_block_comment, - [94258] = 4, + [106875] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6851), 1, + ACTIONS(7722), 1, sym_identifier, - STATE(3378), 2, + STATE(3865), 2, sym_line_comment, sym_block_comment, - [94272] = 4, + [106889] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6853), 1, - anon_sym_COLON_COLON, - STATE(3379), 2, + ACTIONS(7724), 1, + anon_sym_SEMI, + STATE(3866), 2, sym_line_comment, sym_block_comment, - [94286] = 4, + [106903] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6855), 1, - sym_identifier, - STATE(3380), 2, + ACTIONS(7726), 1, + anon_sym_SEMI, + STATE(3867), 2, sym_line_comment, sym_block_comment, - [94300] = 4, + [106917] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6857), 1, - sym_identifier, - STATE(3381), 2, + ACTIONS(7728), 1, + anon_sym_SEMI, + STATE(3868), 2, sym_line_comment, sym_block_comment, - [94314] = 4, + [106931] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6859), 1, + ACTIONS(7730), 1, sym_identifier, - STATE(3382), 2, + STATE(3869), 2, sym_line_comment, sym_block_comment, - [94328] = 4, + [106945] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6861), 1, - sym_identifier, - STATE(3383), 2, + ACTIONS(7732), 1, + anon_sym_EQ_GT, + STATE(3870), 2, sym_line_comment, sym_block_comment, - [94342] = 4, + [106959] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6863), 1, - sym_identifier, - STATE(3384), 2, + ACTIONS(7734), 1, + anon_sym_RBRACK, + STATE(3871), 2, sym_line_comment, sym_block_comment, - [94356] = 4, + [106973] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6005), 1, - anon_sym_RBRACE, - STATE(3385), 2, + ACTIONS(7736), 1, + anon_sym_SEMI, + STATE(3872), 2, sym_line_comment, sym_block_comment, - [94370] = 4, + [106987] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6865), 1, - anon_sym_fn, - STATE(3386), 2, + ACTIONS(7738), 1, + sym__raw_string_literal_end, + STATE(3873), 2, sym_line_comment, sym_block_comment, - [94384] = 4, + [107001] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6867), 1, - sym_identifier, - STATE(3387), 2, + ACTIONS(7740), 1, + anon_sym_SEMI, + STATE(3874), 2, sym_line_comment, sym_block_comment, - [94398] = 4, + [107015] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(985), 1, - anon_sym_EQ_GT, - STATE(3388), 2, + ACTIONS(7742), 1, + anon_sym_RPAREN, + STATE(3875), 2, sym_line_comment, sym_block_comment, - [94412] = 4, + [107029] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6869), 1, - anon_sym_SEMI, - STATE(3389), 2, + ACTIONS(7744), 1, + anon_sym_COLON, + STATE(3876), 2, sym_line_comment, sym_block_comment, - [94426] = 4, + [107043] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6871), 1, - anon_sym_COLON, - STATE(3390), 2, + ACTIONS(7746), 1, + anon_sym_SEMI, + STATE(3877), 2, sym_line_comment, sym_block_comment, - [94440] = 4, + [107057] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6873), 1, + ACTIONS(7748), 1, anon_sym_SEMI, - STATE(3391), 2, + STATE(3878), 2, sym_line_comment, sym_block_comment, - [94454] = 4, + [107071] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6301), 1, - anon_sym_RBRACE, - STATE(3392), 2, + ACTIONS(6587), 1, + anon_sym_RBRACK, + STATE(3879), 2, sym_line_comment, sym_block_comment, - [94468] = 4, + [107085] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6875), 1, - anon_sym_RBRACK, - STATE(3393), 2, + ACTIONS(7750), 1, + sym_identifier, + STATE(3880), 2, sym_line_comment, sym_block_comment, - [94482] = 4, + [107099] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3145), 1, - anon_sym_PLUS, - STATE(3394), 2, + ACTIONS(7752), 1, + sym_identifier, + STATE(3881), 2, sym_line_comment, sym_block_comment, - [94496] = 4, + [107113] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6877), 1, - sym__line_doc_content, - STATE(3395), 2, + ACTIONS(7754), 1, + sym_identifier, + STATE(3882), 2, sym_line_comment, sym_block_comment, - [94510] = 4, + [107127] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6879), 1, - anon_sym_COLON, - STATE(3396), 2, + ACTIONS(7064), 1, + anon_sym_RBRACE, + STATE(3883), 2, sym_line_comment, sym_block_comment, - [94524] = 4, + [107141] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4972), 1, - anon_sym_COLON_COLON, - STATE(3397), 2, + ACTIONS(7756), 1, + sym_identifier, + STATE(3884), 2, sym_line_comment, sym_block_comment, - [94538] = 4, + [107155] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6881), 1, - anon_sym_COLON, - STATE(3398), 2, + ACTIONS(7758), 1, + sym_identifier, + STATE(3885), 2, sym_line_comment, sym_block_comment, - [94552] = 4, + [107169] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6883), 1, - anon_sym_COLON_COLON, - STATE(3399), 2, + ACTIONS(7760), 1, + anon_sym_SEMI, + STATE(3886), 2, sym_line_comment, sym_block_comment, - [94566] = 4, + [107183] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6885), 1, - anon_sym_fn, - STATE(3400), 2, + ACTIONS(7762), 1, + anon_sym_RBRACE, + STATE(3887), 2, sym_line_comment, sym_block_comment, - [94580] = 4, + [107197] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6887), 1, + ACTIONS(7764), 1, anon_sym_SEMI, - STATE(3401), 2, + STATE(3888), 2, sym_line_comment, sym_block_comment, - [94594] = 4, + [107211] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5801), 1, - anon_sym_LBRACE, - STATE(3402), 2, + ACTIONS(7766), 1, + anon_sym_COLON, + STATE(3889), 2, sym_line_comment, sym_block_comment, - [94608] = 4, + [107225] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6889), 1, - anon_sym_SEMI, - STATE(3403), 2, + ACTIONS(7768), 1, + anon_sym_RBRACE, + STATE(3890), 2, sym_line_comment, sym_block_comment, - [94622] = 4, + [107239] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6535), 1, + ACTIONS(7770), 1, anon_sym_SEMI, - STATE(3404), 2, + STATE(3891), 2, sym_line_comment, sym_block_comment, - [94636] = 4, + [107253] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6133), 1, - anon_sym_RBRACE, - STATE(3405), 2, + ACTIONS(7772), 1, + sym_identifier, + STATE(3892), 2, sym_line_comment, sym_block_comment, - [94650] = 4, + [107267] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6891), 1, - anon_sym_RBRACE, - STATE(3406), 2, + ACTIONS(7774), 1, + sym_identifier, + STATE(3893), 2, sym_line_comment, sym_block_comment, - [94664] = 4, + [107281] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6893), 1, + ACTIONS(7776), 1, sym_identifier, - STATE(3407), 2, + STATE(3894), 2, sym_line_comment, sym_block_comment, - [94678] = 4, + [107295] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6895), 1, - anon_sym_SEMI, - STATE(3408), 2, + ACTIONS(7778), 1, + sym_identifier, + STATE(3895), 2, sym_line_comment, sym_block_comment, - [94692] = 4, + [107309] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6897), 1, - anon_sym_RPAREN, - STATE(3409), 2, + ACTIONS(7780), 1, + anon_sym_RBRACK, + STATE(3896), 2, sym_line_comment, sym_block_comment, - [94706] = 4, + [107323] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5891), 1, - anon_sym_RPAREN, - STATE(3410), 2, + ACTIONS(7782), 1, + anon_sym_SEMI, + STATE(3897), 2, sym_line_comment, sym_block_comment, - [94720] = 4, + [107337] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6899), 1, - sym_identifier, - STATE(3411), 2, + ACTIONS(7784), 1, + anon_sym_RBRACK, + STATE(3898), 2, sym_line_comment, sym_block_comment, - [94734] = 4, + [107351] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6641), 1, + ACTIONS(7786), 1, anon_sym_SEMI, - STATE(3412), 2, + STATE(3899), 2, sym_line_comment, sym_block_comment, - [94748] = 4, + [107365] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6901), 1, - anon_sym_SEMI, - STATE(3413), 2, + ACTIONS(7788), 1, + anon_sym_COLON_COLON, + STATE(3900), 2, sym_line_comment, sym_block_comment, - [94762] = 4, + [107379] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5818), 1, - anon_sym_RBRACK, - STATE(3414), 2, + ACTIONS(7790), 1, + sym_identifier, + STATE(3901), 2, sym_line_comment, sym_block_comment, - [94776] = 4, + [107393] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6903), 1, + ACTIONS(7792), 1, sym_identifier, - STATE(3415), 2, + STATE(3902), 2, sym_line_comment, sym_block_comment, - [94790] = 4, + [107407] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6905), 1, - anon_sym_RBRACE, - STATE(3416), 2, + ACTIONS(7794), 1, + anon_sym_SEMI, + STATE(3903), 2, sym_line_comment, sym_block_comment, - [94804] = 4, + [107421] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4131), 1, - anon_sym_RPAREN, - STATE(3417), 2, + ACTIONS(7330), 1, + anon_sym_SEMI, + STATE(3904), 2, sym_line_comment, sym_block_comment, - [94818] = 4, + [107435] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6907), 1, - sym_identifier, - STATE(3418), 2, + ACTIONS(7243), 1, + anon_sym_RBRACE, + STATE(3905), 2, sym_line_comment, sym_block_comment, - [94832] = 4, + [107449] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6909), 1, - sym_identifier, - STATE(3419), 2, + ACTIONS(7796), 1, + anon_sym_SEMI, + STATE(3906), 2, sym_line_comment, sym_block_comment, - [94846] = 4, + [107463] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6911), 1, - sym_identifier, - STATE(3420), 2, + ACTIONS(7798), 1, + anon_sym_SEMI, + STATE(3907), 2, sym_line_comment, sym_block_comment, - [94860] = 4, + [107477] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6913), 1, + ACTIONS(7800), 1, sym_identifier, - STATE(3421), 2, + STATE(3908), 2, sym_line_comment, sym_block_comment, - [94874] = 4, + [107491] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6915), 1, + ACTIONS(7802), 1, anon_sym_SEMI, - STATE(3422), 2, + STATE(3909), 2, sym_line_comment, sym_block_comment, - [94888] = 4, + [107505] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6917), 1, - anon_sym_COLON_COLON, - STATE(3423), 2, + ACTIONS(961), 1, + anon_sym_EQ_GT, + STATE(3910), 2, sym_line_comment, sym_block_comment, - [94902] = 4, + [107519] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6919), 1, - anon_sym_COLON, - STATE(3424), 2, + ACTIONS(4569), 1, + anon_sym_COLON_COLON, + STATE(3911), 2, sym_line_comment, sym_block_comment, - [94916] = 4, + [107533] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6921), 1, - anon_sym_RBRACK, - STATE(3425), 2, + ACTIONS(7804), 1, + anon_sym_SEMI, + STATE(3912), 2, sym_line_comment, sym_block_comment, - [94930] = 4, + [107547] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5895), 1, - anon_sym_RPAREN, - STATE(3426), 2, + ACTIONS(7806), 1, + anon_sym_EQ, + STATE(3913), 2, sym_line_comment, sym_block_comment, - [94944] = 4, + [107561] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4595), 1, - anon_sym_COLON_COLON, - STATE(3427), 2, + ACTIONS(7808), 1, + anon_sym_RBRACK, + STATE(3914), 2, sym_line_comment, sym_block_comment, - [94958] = 4, + [107575] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6923), 1, - sym__raw_string_literal_end, - STATE(3428), 2, + ACTIONS(7810), 1, + anon_sym_SEMI, + STATE(3915), 2, sym_line_comment, sym_block_comment, - [94972] = 4, + [107589] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6925), 1, + ACTIONS(7812), 1, sym_identifier, - STATE(3429), 2, + STATE(3916), 2, sym_line_comment, sym_block_comment, - [94986] = 4, + [107603] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6927), 1, + ACTIONS(7814), 1, sym_identifier, - STATE(3430), 2, + STATE(3917), 2, sym_line_comment, sym_block_comment, - [95000] = 4, + [107617] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6929), 1, + ACTIONS(7816), 1, anon_sym_SEMI, - STATE(3431), 2, + STATE(3918), 2, sym_line_comment, sym_block_comment, - [95014] = 4, + [107631] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6931), 1, - anon_sym_RPAREN, - STATE(3432), 2, + ACTIONS(7818), 1, + anon_sym_COLON, + STATE(3919), 2, sym_line_comment, sym_block_comment, - [95028] = 4, + [107645] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6933), 1, + ACTIONS(7820), 1, sym_identifier, - STATE(3433), 2, + STATE(3920), 2, sym_line_comment, sym_block_comment, - [95042] = 4, + [107659] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6935), 1, + ACTIONS(7822), 1, sym_identifier, - STATE(3434), 2, + STATE(3921), 2, sym_line_comment, sym_block_comment, - [95056] = 4, + [107673] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6937), 1, - sym_identifier, - STATE(3435), 2, + ACTIONS(7824), 1, + sym__raw_string_literal_end, + STATE(3922), 2, sym_line_comment, sym_block_comment, - [95070] = 4, + [107687] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5987), 1, - anon_sym_RBRACE, - STATE(3436), 2, + ACTIONS(7826), 1, + sym_identifier, + STATE(3923), 2, sym_line_comment, sym_block_comment, - [95084] = 4, + [107701] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6939), 1, + ACTIONS(7828), 1, anon_sym_SEMI, - STATE(3437), 2, + STATE(3924), 2, sym_line_comment, sym_block_comment, - [95098] = 4, + [107715] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6941), 1, + ACTIONS(7830), 1, + sym_identifier, + STATE(3925), 2, + sym_line_comment, + sym_block_comment, + [107729] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7832), 1, anon_sym_SEMI, - STATE(3438), 2, + STATE(3926), 2, sym_line_comment, sym_block_comment, - [95112] = 4, + [107743] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5575), 1, - anon_sym_RPAREN, - STATE(3439), 2, + ACTIONS(7834), 1, + anon_sym_SEMI, + STATE(3927), 2, sym_line_comment, sym_block_comment, - [95126] = 4, + [107757] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6943), 1, + ACTIONS(7836), 1, anon_sym_SEMI, - STATE(3440), 2, + STATE(3928), 2, sym_line_comment, sym_block_comment, - [95140] = 4, + [107771] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6945), 1, + ACTIONS(7838), 1, anon_sym_SEMI, - STATE(3441), 2, + STATE(3929), 2, sym_line_comment, sym_block_comment, - [95154] = 4, + [107785] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6947), 1, + ACTIONS(7840), 1, anon_sym_SEMI, - STATE(3442), 2, + STATE(3930), 2, sym_line_comment, sym_block_comment, - [95168] = 4, + [107799] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4952), 1, + ACTIONS(6783), 1, anon_sym_COLON_COLON, - STATE(3443), 2, + STATE(3931), 2, sym_line_comment, sym_block_comment, - [95182] = 4, + [107813] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6949), 1, - anon_sym_EQ_GT, - STATE(3444), 2, + ACTIONS(5287), 1, + anon_sym_COLON_COLON, + STATE(3932), 2, sym_line_comment, sym_block_comment, - [95196] = 4, + [107827] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6951), 1, + ACTIONS(7842), 1, anon_sym_SEMI, - STATE(3445), 2, + STATE(3933), 2, + sym_line_comment, + sym_block_comment, + [107841] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7844), 1, + anon_sym_SEMI, + STATE(3934), 2, sym_line_comment, sym_block_comment, - [95210] = 4, + [107855] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5814), 1, + ACTIONS(7846), 1, anon_sym_RPAREN, - STATE(3446), 2, + STATE(3935), 2, sym_line_comment, sym_block_comment, - [95224] = 4, + [107869] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6953), 1, - anon_sym_SEMI, - STATE(3447), 2, + ACTIONS(7848), 1, + anon_sym_RBRACE, + STATE(3936), 2, sym_line_comment, sym_block_comment, - [95238] = 4, + [107883] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6955), 1, - anon_sym_RBRACK, - STATE(3448), 2, + ACTIONS(7850), 1, + anon_sym_SEMI, + STATE(3937), 2, sym_line_comment, sym_block_comment, - [95252] = 4, + [107897] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6957), 1, - anon_sym_RBRACK, - STATE(3449), 2, + ACTIONS(6787), 1, + anon_sym_RBRACE, + STATE(3938), 2, sym_line_comment, sym_block_comment, - [95266] = 4, + [107911] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6959), 1, + ACTIONS(7852), 1, sym_identifier, - STATE(3450), 2, + STATE(3939), 2, sym_line_comment, sym_block_comment, - [95280] = 4, + [107925] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6961), 1, + ACTIONS(7854), 1, anon_sym_SEMI, - STATE(3451), 2, + STATE(3940), 2, sym_line_comment, sym_block_comment, - [95294] = 4, + [107939] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6963), 1, - anon_sym_SEMI, - STATE(3452), 2, + ACTIONS(7856), 1, + anon_sym_RPAREN, + STATE(3941), 2, sym_line_comment, sym_block_comment, - [95308] = 4, + [107953] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6965), 1, + ACTIONS(744), 1, anon_sym_RBRACK, - STATE(3453), 2, + STATE(3942), 2, sym_line_comment, sym_block_comment, - [95322] = 4, + [107967] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6967), 1, - sym_identifier, - STATE(3454), 2, + ACTIONS(7858), 1, + anon_sym_COLON, + STATE(3943), 2, sym_line_comment, sym_block_comment, - [95336] = 4, + [107981] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5506), 1, - anon_sym_RPAREN, - STATE(3455), 2, + ACTIONS(7860), 1, + anon_sym_COLON, + STATE(3944), 2, sym_line_comment, sym_block_comment, - [95350] = 4, + [107995] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6969), 1, - sym__raw_string_literal_end, - STATE(3456), 2, + ACTIONS(7862), 1, + anon_sym_COLON, + STATE(3945), 2, sym_line_comment, sym_block_comment, - [95364] = 4, + [108009] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6971), 1, - ts_builtin_sym_end, - STATE(3457), 2, + ACTIONS(7864), 1, + anon_sym_LBRACK, + STATE(3946), 2, sym_line_comment, sym_block_comment, - [95378] = 4, - ACTIONS(3), 1, + [108023] = 4, + ACTIONS(103), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6973), 1, - aux_sym_line_comment_token2, - STATE(3458), 2, + ACTIONS(7866), 1, + sym_identifier, + STATE(3947), 2, sym_line_comment, sym_block_comment, - [95392] = 4, + [108037] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6975), 1, - sym_self, - STATE(3459), 2, + ACTIONS(7868), 1, + sym_identifier, + STATE(3948), 2, sym_line_comment, sym_block_comment, - [95406] = 4, + [108051] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6977), 1, - anon_sym_SEMI, - STATE(3460), 2, + ACTIONS(7870), 1, + sym_identifier, + STATE(3949), 2, sym_line_comment, sym_block_comment, - [95420] = 4, + [108065] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6979), 1, + ACTIONS(7872), 1, anon_sym_SEMI, - STATE(3461), 2, + STATE(3950), 2, sym_line_comment, sym_block_comment, - [95434] = 4, + [108079] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6981), 1, + ACTIONS(7874), 1, anon_sym_COLON_COLON, - STATE(3462), 2, + STATE(3951), 2, sym_line_comment, sym_block_comment, - [95448] = 4, + [108093] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6769), 1, - anon_sym_LBRACK, - STATE(3463), 2, + ACTIONS(3587), 1, + anon_sym_PLUS, + STATE(3952), 2, sym_line_comment, sym_block_comment, - [95462] = 4, + [108107] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5253), 1, - anon_sym_SEMI, - STATE(3464), 2, + ACTIONS(6763), 1, + anon_sym_GT, + STATE(3953), 2, sym_line_comment, sym_block_comment, - [95476] = 4, + [108121] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6983), 1, + ACTIONS(7876), 1, anon_sym_SEMI, - STATE(3465), 2, + STATE(3954), 2, sym_line_comment, sym_block_comment, - [95490] = 4, + [108135] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6985), 1, + ACTIONS(7878), 1, anon_sym_RBRACE, - STATE(3466), 2, + STATE(3955), 2, sym_line_comment, sym_block_comment, - [95504] = 4, + [108149] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(921), 1, - anon_sym_RBRACK, - STATE(3467), 2, + ACTIONS(7880), 1, + anon_sym_SEMI, + STATE(3956), 2, sym_line_comment, sym_block_comment, - [95518] = 4, + [108163] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6407), 1, - anon_sym_GT, - STATE(3468), 2, + ACTIONS(7882), 1, + anon_sym_fn, + STATE(3957), 2, sym_line_comment, sym_block_comment, - [95532] = 4, + [108177] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6987), 1, + ACTIONS(7884), 1, sym__raw_string_literal_end, - STATE(3469), 2, + STATE(3958), 2, sym_line_comment, sym_block_comment, - [95546] = 4, + [108191] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6989), 1, - anon_sym_LPAREN, - STATE(3470), 2, + ACTIONS(7886), 1, + anon_sym_LT, + STATE(3959), 2, sym_line_comment, sym_block_comment, - [95560] = 4, + [108205] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5924), 1, - anon_sym_RPAREN, - STATE(3471), 2, + ACTIONS(7888), 1, + anon_sym_RBRACE, + STATE(3960), 2, sym_line_comment, sym_block_comment, - [95574] = 4, + [108219] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6991), 1, + ACTIONS(7890), 1, sym_identifier, - STATE(3472), 2, + STATE(3961), 2, sym_line_comment, sym_block_comment, - [95588] = 4, + [108233] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6993), 1, + ACTIONS(7892), 1, + anon_sym_SEMI, + STATE(3962), 2, + sym_line_comment, + sym_block_comment, + [108247] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7894), 1, sym_identifier, - STATE(3473), 2, + STATE(3963), 2, sym_line_comment, sym_block_comment, - [95602] = 4, + [108261] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6995), 1, - sym__raw_string_literal_end, - STATE(3474), 2, + ACTIONS(7896), 1, + anon_sym_COLON, + STATE(3964), 2, sym_line_comment, sym_block_comment, - [95616] = 4, + [108275] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6997), 1, + ACTIONS(7898), 1, anon_sym_COLON_COLON, - STATE(3475), 2, + STATE(3965), 2, sym_line_comment, sym_block_comment, - [95630] = 4, + [108289] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6999), 1, - anon_sym_COLON, - STATE(3476), 2, + ACTIONS(7900), 1, + anon_sym_SEMI, + STATE(3966), 2, sym_line_comment, sym_block_comment, - [95644] = 4, + [108303] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5928), 1, + ACTIONS(7902), 1, anon_sym_RBRACK, - STATE(3477), 2, + STATE(3967), 2, sym_line_comment, sym_block_comment, - [95658] = 4, + [108317] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7001), 1, - sym__line_doc_content, - STATE(3478), 2, + ACTIONS(7904), 1, + anon_sym_SEMI, + STATE(3968), 2, sym_line_comment, sym_block_comment, - [95672] = 4, + [108331] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7003), 1, - anon_sym_STAR_SLASH, - STATE(3479), 2, + ACTIONS(7906), 1, + anon_sym_SEMI, + STATE(3969), 2, sym_line_comment, sym_block_comment, - [95686] = 4, + [108345] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7005), 1, - anon_sym_COLON, - STATE(3480), 2, + ACTIONS(4637), 1, + anon_sym_COLON_COLON, + STATE(3970), 2, sym_line_comment, sym_block_comment, - [95700] = 4, + [108359] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7007), 1, - sym_identifier, - STATE(3481), 2, + ACTIONS(6556), 1, + anon_sym_COLON_COLON, + STATE(3971), 2, sym_line_comment, sym_block_comment, - [95714] = 4, + [108373] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7009), 1, - anon_sym_COLON, - STATE(3482), 2, + ACTIONS(5132), 1, + anon_sym_COLON_COLON, + STATE(3972), 2, sym_line_comment, sym_block_comment, - [95728] = 4, + [108387] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6354), 1, - anon_sym_RBRACE, - STATE(3483), 2, + ACTIONS(5812), 1, + anon_sym_COLON_COLON, + STATE(3973), 2, sym_line_comment, sym_block_comment, - [95742] = 4, + [108401] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(979), 1, - anon_sym_EQ_GT, - STATE(3484), 2, + ACTIONS(6309), 1, + anon_sym_RPAREN, + STATE(3974), 2, + sym_line_comment, + sym_block_comment, + [108415] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7908), 1, + anon_sym_COLON_COLON, + STATE(3975), 2, sym_line_comment, sym_block_comment, - [95756] = 4, + [108429] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5219), 1, + ACTIONS(7910), 1, anon_sym_SEMI, - STATE(3485), 2, + STATE(3976), 2, sym_line_comment, sym_block_comment, - [95770] = 4, + [108443] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(750), 1, - anon_sym_RBRACK, - STATE(3486), 2, + ACTIONS(7912), 1, + anon_sym_RBRACE, + STATE(3977), 2, sym_line_comment, sym_block_comment, - [95784] = 4, + [108457] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7011), 1, - anon_sym_EQ_GT, - STATE(3487), 2, + ACTIONS(4573), 1, + anon_sym_RPAREN, + STATE(3978), 2, sym_line_comment, sym_block_comment, - [95798] = 4, + [108471] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7013), 1, + ACTIONS(7914), 1, + anon_sym_fn, + STATE(3979), 2, + sym_line_comment, + sym_block_comment, + [108485] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7916), 1, + sym__line_doc_content, + STATE(3980), 2, + sym_line_comment, + sym_block_comment, + [108499] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7918), 1, + anon_sym_COLON_COLON, + STATE(3981), 2, + sym_line_comment, + sym_block_comment, + [108513] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7920), 1, anon_sym_SEMI, - STATE(3488), 2, + STATE(3982), 2, sym_line_comment, sym_block_comment, - [95812] = 4, + [108527] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7015), 1, - sym_identifier, - STATE(3489), 2, + ACTIONS(7922), 1, + anon_sym_COLON, + STATE(3983), 2, sym_line_comment, sym_block_comment, - [95826] = 4, + [108541] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7017), 1, - sym_raw_string_literal_content, - STATE(3490), 2, + ACTIONS(7924), 1, + anon_sym_COLON_COLON, + STATE(3984), 2, sym_line_comment, sym_block_comment, - [95840] = 4, + [108555] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7019), 1, - anon_sym_LPAREN, - STATE(3491), 2, + ACTIONS(7926), 1, + anon_sym_EQ_GT, + STATE(3985), 2, sym_line_comment, sym_block_comment, - [95854] = 4, + [108569] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7021), 1, + ACTIONS(7928), 1, anon_sym_SEMI, - STATE(3492), 2, + STATE(3986), 2, sym_line_comment, sym_block_comment, - [95868] = 4, + [108583] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7023), 1, - anon_sym_SEMI, - STATE(3493), 2, + ACTIONS(5572), 1, + anon_sym_COLON_COLON, + STATE(3987), 2, sym_line_comment, sym_block_comment, - [95882] = 4, + [108597] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4195), 1, - anon_sym_COLON_COLON, - STATE(3494), 2, + ACTIONS(7930), 1, + anon_sym_SEMI, + STATE(3988), 2, sym_line_comment, sym_block_comment, - [95896] = 4, + [108611] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5764), 1, + ACTIONS(7932), 1, anon_sym_COLON_COLON, - STATE(3495), 2, + STATE(3989), 2, sym_line_comment, sym_block_comment, - [95910] = 4, + [108625] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4037), 1, - sym_identifier, - STATE(3496), 2, + ACTIONS(7934), 1, + anon_sym_fn, + STATE(3990), 2, sym_line_comment, sym_block_comment, - [95924] = 4, + [108639] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7025), 1, - anon_sym_SEMI, - STATE(3497), 2, + ACTIONS(1017), 1, + anon_sym_EQ_GT, + STATE(3991), 2, sym_line_comment, sym_block_comment, - [95938] = 4, + [108653] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7027), 1, - anon_sym_SEMI, - STATE(3498), 2, + ACTIONS(7936), 1, + anon_sym_LBRACE, + STATE(3992), 2, sym_line_comment, sym_block_comment, - [95952] = 4, + [108667] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7029), 1, - anon_sym_COLON_COLON, - STATE(3499), 2, + ACTIONS(7938), 1, + sym_identifier, + STATE(3993), 2, sym_line_comment, sym_block_comment, - [95966] = 4, + [108681] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5261), 1, - anon_sym_SEMI, - STATE(3500), 2, + ACTIONS(750), 1, + anon_sym_RBRACK, + STATE(3994), 2, sym_line_comment, sym_block_comment, - [95980] = 4, + [108695] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5948), 1, - anon_sym_RBRACE, - STATE(3501), 2, + ACTIONS(7940), 1, + sym_identifier, + STATE(3995), 2, sym_line_comment, sym_block_comment, - [95994] = 4, + [108709] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7031), 1, - anon_sym_SEMI, - STATE(3502), 2, + ACTIONS(7942), 1, + anon_sym_RBRACK, + STATE(3996), 2, sym_line_comment, sym_block_comment, - [96008] = 4, + [108723] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7033), 1, - anon_sym_RBRACK, - STATE(3503), 2, + ACTIONS(6741), 1, + anon_sym_RBRACE, + STATE(3997), 2, sym_line_comment, sym_block_comment, - [96022] = 4, + [108737] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7035), 1, + ACTIONS(7944), 1, sym_identifier, - STATE(3504), 2, + STATE(3998), 2, sym_line_comment, sym_block_comment, - [96036] = 4, + [108751] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7037), 1, - anon_sym_COLON_COLON, - STATE(3505), 2, + ACTIONS(7171), 1, + anon_sym_RBRACE, + STATE(3999), 2, sym_line_comment, sym_block_comment, - [96050] = 4, + [108765] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7039), 1, - anon_sym_RBRACE, - STATE(3506), 2, + ACTIONS(7400), 1, + anon_sym_LBRACK, + STATE(4000), 2, sym_line_comment, sym_block_comment, - [96064] = 4, + [108779] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5209), 1, - anon_sym_SEMI, - STATE(3507), 2, + ACTIONS(7946), 1, + sym_raw_string_literal_content, + STATE(4001), 2, sym_line_comment, sym_block_comment, - [96078] = 4, + [108793] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7041), 1, - anon_sym_COLON_COLON, - STATE(3508), 2, + ACTIONS(7948), 1, + sym_identifier, + STATE(4002), 2, sym_line_comment, sym_block_comment, - [96092] = 4, + [108807] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7043), 1, - anon_sym_SEMI, - STATE(3509), 2, + ACTIONS(7950), 1, + anon_sym_RBRACK, + STATE(4003), 2, sym_line_comment, sym_block_comment, - [96106] = 4, + [108821] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7045), 1, - anon_sym_SEMI, - STATE(3510), 2, + ACTIONS(7952), 1, + sym__raw_string_literal_end, + STATE(4004), 2, sym_line_comment, sym_block_comment, - [96120] = 4, + [108835] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4994), 1, + ACTIONS(7954), 1, anon_sym_COLON_COLON, - STATE(3511), 2, + STATE(4005), 2, sym_line_comment, sym_block_comment, - [96134] = 4, + [108849] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7047), 1, - anon_sym_SEMI, - STATE(3512), 2, + ACTIONS(7956), 1, + sym_identifier, + STATE(4006), 2, sym_line_comment, sym_block_comment, - [96148] = 4, + [108863] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7049), 1, - anon_sym_COLON_COLON, - STATE(3513), 2, + ACTIONS(7958), 1, + anon_sym_RPAREN, + STATE(4007), 2, sym_line_comment, sym_block_comment, - [96162] = 4, + [108877] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7051), 1, - anon_sym_fn, - STATE(3514), 2, + ACTIONS(7960), 1, + anon_sym_COLON_COLON, + STATE(4008), 2, sym_line_comment, sym_block_comment, - [96176] = 4, + [108891] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7053), 1, + ACTIONS(7962), 1, anon_sym_SEMI, - STATE(3515), 2, + STATE(4009), 2, sym_line_comment, sym_block_comment, - [96190] = 4, + [108905] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7055), 1, - anon_sym_LBRACE, - STATE(3516), 2, + ACTIONS(7964), 1, + sym_identifier, + STATE(4010), 2, sym_line_comment, sym_block_comment, - [96204] = 4, + [108919] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6583), 1, + ACTIONS(7966), 1, anon_sym_COLON_COLON, - STATE(3517), 2, + STATE(4011), 2, sym_line_comment, sym_block_comment, - [96218] = 4, + [108933] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7057), 1, - sym__line_doc_content, - STATE(3518), 2, + ACTIONS(7968), 1, + anon_sym_STAR_SLASH, + STATE(4012), 2, sym_line_comment, sym_block_comment, - [96232] = 4, + [108947] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6482), 1, - anon_sym_COLON_COLON, - STATE(3519), 2, + ACTIONS(7970), 1, + sym_identifier, + STATE(4013), 2, sym_line_comment, sym_block_comment, - [96246] = 4, + [108961] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7059), 1, - anon_sym_fn, - STATE(3520), 2, + ACTIONS(7972), 1, + anon_sym_COLON_COLON, + STATE(4014), 2, sym_line_comment, sym_block_comment, - [96260] = 4, + [108975] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7061), 1, - anon_sym_SEMI, - STATE(3521), 2, + ACTIONS(7974), 1, + anon_sym_LBRACE, + STATE(4015), 2, sym_line_comment, sym_block_comment, - [96274] = 4, + [108989] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7063), 1, + ACTIONS(7976), 1, anon_sym_SEMI, - STATE(3522), 2, + STATE(4016), 2, sym_line_comment, sym_block_comment, - [96288] = 4, + [109003] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7065), 1, + ACTIONS(7978), 1, sym_identifier, - STATE(3523), 2, + STATE(4017), 2, + sym_line_comment, + sym_block_comment, + [109017] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(7980), 1, + sym__line_doc_content, + STATE(4018), 2, sym_line_comment, sym_block_comment, - [96302] = 4, + [109031] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7067), 1, + ACTIONS(7982), 1, anon_sym_SEMI, - STATE(3524), 2, + STATE(4019), 2, sym_line_comment, sym_block_comment, - [96316] = 4, + [109045] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7069), 1, + ACTIONS(7984), 1, sym_raw_string_literal_content, - STATE(3525), 2, + STATE(4020), 2, sym_line_comment, sym_block_comment, - [96330] = 4, + [109059] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7071), 1, - sym__raw_string_literal_end, - STATE(3526), 2, + ACTIONS(3956), 1, + anon_sym_COLON_COLON, + STATE(4021), 2, sym_line_comment, sym_block_comment, - [96344] = 4, + [109073] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7073), 1, + ACTIONS(7986), 1, anon_sym_SEMI, - STATE(3527), 2, + STATE(4022), 2, sym_line_comment, sym_block_comment, - [96358] = 4, + [109087] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4145), 1, - anon_sym_RPAREN, - STATE(3528), 2, + ACTIONS(7988), 1, + anon_sym_COLON_COLON, + STATE(4023), 2, sym_line_comment, sym_block_comment, - [96372] = 4, + [109101] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7075), 1, - anon_sym_COLON_COLON, - STATE(3529), 2, + ACTIONS(7990), 1, + anon_sym_LBRACE, + STATE(4024), 2, sym_line_comment, sym_block_comment, - [96386] = 4, + [109115] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7077), 1, - anon_sym_RBRACE, - STATE(3530), 2, + ACTIONS(7992), 1, + sym_raw_string_literal_content, + STATE(4025), 2, sym_line_comment, sym_block_comment, - [96400] = 4, + [109129] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7079), 1, - anon_sym_SEMI, - STATE(3531), 2, + ACTIONS(5798), 1, + anon_sym_COLON_COLON, + STATE(4026), 2, sym_line_comment, sym_block_comment, - [96414] = 4, + [109143] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7081), 1, + ACTIONS(7994), 1, anon_sym_COLON_COLON, - STATE(3532), 2, + STATE(4027), 2, sym_line_comment, sym_block_comment, - [96428] = 4, + [109157] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7083), 1, - anon_sym_SEMI, - STATE(3533), 2, + ACTIONS(6575), 1, + anon_sym_LBRACE, + STATE(4028), 2, sym_line_comment, sym_block_comment, - [96442] = 4, + [109171] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7085), 1, - anon_sym_RBRACE, - STATE(3534), 2, + ACTIONS(6492), 1, + anon_sym_COLON_COLON, + STATE(4029), 2, sym_line_comment, sym_block_comment, - [96456] = 4, + [109185] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7087), 1, + ACTIONS(7996), 1, anon_sym_COLON_COLON, - STATE(3535), 2, + STATE(4030), 2, sym_line_comment, sym_block_comment, - [96470] = 4, + [109199] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7089), 1, - anon_sym_EQ_GT, - STATE(3536), 2, + ACTIONS(6536), 1, + anon_sym_LBRACE, + STATE(4031), 2, sym_line_comment, sym_block_comment, - [96484] = 4, + [109213] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3963), 1, + ACTIONS(7998), 1, anon_sym_COLON_COLON, - STATE(3537), 2, + STATE(4032), 2, sym_line_comment, sym_block_comment, - [96498] = 4, + [109227] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7091), 1, + ACTIONS(5888), 1, anon_sym_COLON_COLON, - STATE(3538), 2, + STATE(4033), 2, sym_line_comment, sym_block_comment, - [96512] = 4, + [109241] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7093), 1, - anon_sym_LBRACE, - STATE(3539), 2, + ACTIONS(5882), 1, + anon_sym_COLON_COLON, + STATE(4034), 2, sym_line_comment, sym_block_comment, - [96526] = 4, + [109255] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7095), 1, - anon_sym_STAR_SLASH, - STATE(3540), 2, + ACTIONS(4611), 1, + anon_sym_COLON_COLON, + STATE(4035), 2, sym_line_comment, sym_block_comment, - [96540] = 4, + [109269] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7097), 1, - anon_sym_RBRACK, - STATE(3541), 2, + ACTIONS(8000), 1, + anon_sym_COLON_COLON, + STATE(4036), 2, sym_line_comment, sym_block_comment, - [96554] = 4, + [109283] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7099), 1, + ACTIONS(8002), 1, anon_sym_SEMI, - STATE(3542), 2, + STATE(4037), 2, sym_line_comment, sym_block_comment, - [96568] = 4, + [109297] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7101), 1, - sym_raw_string_literal_content, - STATE(3543), 2, + ACTIONS(8004), 1, + anon_sym_fn, + STATE(4038), 2, sym_line_comment, sym_block_comment, - [96582] = 4, + [109311] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3527), 1, - anon_sym_COLON_COLON, - STATE(3544), 2, + ACTIONS(8006), 1, + anon_sym_SEMI, + STATE(4039), 2, sym_line_comment, sym_block_comment, - [96596] = 4, + [109325] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4768), 1, - anon_sym_COLON_COLON, - STATE(3545), 2, + ACTIONS(8008), 1, + sym__line_doc_content, + STATE(4040), 2, sym_line_comment, sym_block_comment, - [96610] = 4, + [109339] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7103), 1, - anon_sym_COLON_COLON, - STATE(3546), 2, + ACTIONS(8010), 1, + anon_sym_COLON, + STATE(4041), 2, sym_line_comment, sym_block_comment, - [96624] = 4, + [109353] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7105), 1, - sym_identifier, - STATE(3547), 2, + ACTIONS(7344), 1, + anon_sym_LBRACK, + STATE(4042), 2, sym_line_comment, sym_block_comment, - [96638] = 4, + [109367] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7107), 1, - anon_sym_LBRACE, - STATE(3548), 2, + ACTIONS(8012), 1, + sym__line_doc_content, + STATE(4043), 2, sym_line_comment, sym_block_comment, - [96652] = 4, + [109381] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7109), 1, - sym_raw_string_literal_content, - STATE(3549), 2, + ACTIONS(8014), 1, + anon_sym_LBRACK, + STATE(4044), 2, sym_line_comment, sym_block_comment, - [96666] = 4, + [109395] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5225), 1, - anon_sym_COLON_COLON, - STATE(3550), 2, + ACTIONS(8016), 1, + anon_sym_COLON, + STATE(4045), 2, sym_line_comment, sym_block_comment, - [96680] = 4, + [109409] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7111), 1, - anon_sym_COLON_COLON, - STATE(3551), 2, + ACTIONS(8018), 1, + anon_sym_COLON, + STATE(4046), 2, sym_line_comment, sym_block_comment, - [96694] = 4, + [109423] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5881), 1, - anon_sym_LBRACE, - STATE(3552), 2, + ACTIONS(8020), 1, + anon_sym_COLON, + STATE(4047), 2, sym_line_comment, sym_block_comment, - [96708] = 4, + [109437] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5809), 1, - anon_sym_COLON_COLON, - STATE(3553), 2, + ACTIONS(8022), 1, + sym__line_doc_content, + STATE(4048), 2, sym_line_comment, sym_block_comment, - [96722] = 4, + [109451] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7113), 1, - anon_sym_COLON_COLON, - STATE(3554), 2, + ACTIONS(8024), 1, + anon_sym_COLON, + STATE(4049), 2, sym_line_comment, sym_block_comment, - [96736] = 4, + [109465] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5907), 1, - anon_sym_LBRACE, - STATE(3555), 2, + ACTIONS(8026), 1, + anon_sym_SEMI, + STATE(4050), 2, sym_line_comment, sym_block_comment, - [96750] = 4, + [109479] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7115), 1, - anon_sym_COLON_COLON, - STATE(3556), 2, + ACTIONS(8028), 1, + anon_sym_COLON, + STATE(4051), 2, sym_line_comment, sym_block_comment, - [96764] = 4, + [109493] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5231), 1, - anon_sym_COLON_COLON, - STATE(3557), 2, + ACTIONS(5822), 1, + anon_sym_SEMI, + STATE(4052), 2, sym_line_comment, sym_block_comment, - [96778] = 4, + [109507] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5259), 1, - anon_sym_COLON_COLON, - STATE(3558), 2, + ACTIONS(6291), 1, + anon_sym_RPAREN, + STATE(4053), 2, + sym_line_comment, + sym_block_comment, + [109521] = 4, + ACTIONS(3), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5), 1, + anon_sym_SLASH_STAR, + ACTIONS(8030), 1, + aux_sym_line_comment_token2, + STATE(4054), 2, sym_line_comment, sym_block_comment, - [96792] = 4, + [109535] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4191), 1, - anon_sym_COLON_COLON, - STATE(3559), 2, + ACTIONS(8032), 1, + anon_sym_COLON, + STATE(4055), 2, sym_line_comment, sym_block_comment, - [96806] = 4, + [109549] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7117), 1, - anon_sym_COLON_COLON, - STATE(3560), 2, + ACTIONS(8034), 1, + anon_sym_LPAREN, + STATE(4056), 2, sym_line_comment, sym_block_comment, - [96820] = 4, + [109563] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7119), 1, - anon_sym_RPAREN, - STATE(3561), 2, + ACTIONS(3557), 1, + anon_sym_PLUS, + STATE(4057), 2, sym_line_comment, sym_block_comment, - [96834] = 4, + [109577] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7121), 1, - sym__line_doc_content, - STATE(3562), 2, + ACTIONS(8036), 1, + anon_sym_EQ_GT, + STATE(4058), 2, sym_line_comment, sym_block_comment, - [96848] = 4, + [109591] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7123), 1, - sym_raw_string_literal_content, - STATE(3563), 2, + ACTIONS(8038), 1, + sym_identifier, + STATE(4059), 2, sym_line_comment, sym_block_comment, - [96862] = 4, + [109605] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7125), 1, - anon_sym_fn, - STATE(3564), 2, + ACTIONS(8040), 1, + anon_sym_SEMI, + STATE(4060), 2, sym_line_comment, sym_block_comment, - [96876] = 4, + [109619] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7127), 1, - anon_sym_COLON, - STATE(3565), 2, + ACTIONS(6711), 1, + anon_sym_RBRACE, + STATE(4061), 2, sym_line_comment, sym_block_comment, - [96890] = 4, + [109633] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7129), 1, - anon_sym_LBRACK, - STATE(3566), 2, + ACTIONS(8042), 1, + anon_sym_COLON, + STATE(4062), 2, sym_line_comment, sym_block_comment, - [96904] = 4, + [109647] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7131), 1, - anon_sym_SEMI, - STATE(3567), 2, + ACTIONS(7440), 1, + anon_sym_COLON_COLON, + STATE(4063), 2, sym_line_comment, sym_block_comment, - [96918] = 4, + [109661] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7133), 1, - anon_sym_LBRACK, - STATE(3568), 2, + ACTIONS(6637), 1, + anon_sym_RPAREN, + STATE(4064), 2, sym_line_comment, sym_block_comment, - [96932] = 4, + [109675] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7135), 1, - anon_sym_COLON, - STATE(3569), 2, + ACTIONS(4980), 1, + anon_sym_fn, + STATE(4065), 2, sym_line_comment, sym_block_comment, - [96946] = 4, + [109689] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7137), 1, + ACTIONS(8044), 1, anon_sym_COLON, - STATE(3570), 2, + STATE(4066), 2, sym_line_comment, sym_block_comment, - [96960] = 4, + [109703] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7139), 1, - anon_sym_SEMI, - STATE(3571), 2, + ACTIONS(6703), 1, + anon_sym_RBRACE, + STATE(4067), 2, sym_line_comment, sym_block_comment, - [96974] = 4, + [109717] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5478), 1, - anon_sym_RPAREN, - STATE(3572), 2, + ACTIONS(8046), 1, + anon_sym_EQ_GT, + STATE(4068), 2, sym_line_comment, sym_block_comment, - [96988] = 4, + [109731] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7141), 1, + ACTIONS(8048), 1, sym_identifier, - STATE(3573), 2, + STATE(4069), 2, sym_line_comment, sym_block_comment, - [97002] = 4, + [109745] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7143), 1, - anon_sym_LT, - STATE(3574), 2, + ACTIONS(8050), 1, + ts_builtin_sym_end, + STATE(4070), 2, sym_line_comment, sym_block_comment, - [97016] = 4, + [109759] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7145), 1, - anon_sym_COLON, - STATE(3575), 2, + ACTIONS(8052), 1, + anon_sym_RBRACE, + STATE(4071), 2, sym_line_comment, sym_block_comment, - [97030] = 4, + [109773] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7147), 1, + ACTIONS(8054), 1, anon_sym_SEMI, - STATE(3576), 2, + STATE(4072), 2, sym_line_comment, sym_block_comment, - [97044] = 4, + [109787] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7149), 1, - anon_sym_COLON, - STATE(3577), 2, + ACTIONS(6641), 1, + anon_sym_RPAREN, + STATE(4073), 2, sym_line_comment, sym_block_comment, - [97058] = 4, + [109801] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7151), 1, - sym_identifier, - STATE(3578), 2, + ACTIONS(8056), 1, + anon_sym_COLON, + STATE(4074), 2, sym_line_comment, sym_block_comment, - [97072] = 4, + [109815] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7153), 1, + ACTIONS(5818), 1, anon_sym_SEMI, - STATE(3579), 2, + STATE(4075), 2, sym_line_comment, sym_block_comment, - [97086] = 4, + [109829] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6537), 1, + ACTIONS(8058), 1, anon_sym_SEMI, - STATE(3580), 2, + STATE(4076), 2, sym_line_comment, sym_block_comment, - [97100] = 4, + [109843] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7155), 1, - anon_sym_RBRACK, - STATE(3581), 2, + ACTIONS(8060), 1, + sym_identifier, + STATE(4077), 2, sym_line_comment, sym_block_comment, - [97114] = 4, + [109857] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7157), 1, - sym_identifier, - STATE(3582), 2, + ACTIONS(4395), 1, + anon_sym_COLON_COLON, + STATE(4078), 2, sym_line_comment, sym_block_comment, - [97128] = 4, + [109871] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7159), 1, - anon_sym_SEMI, - STATE(3583), 2, + ACTIONS(8062), 1, + anon_sym_RPAREN, + STATE(4079), 2, sym_line_comment, sym_block_comment, - [97142] = 4, + [109885] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6227), 1, + ACTIONS(6693), 1, anon_sym_RBRACE, - STATE(3584), 2, + STATE(4080), 2, sym_line_comment, sym_block_comment, - [97156] = 4, + [109899] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7161), 1, - anon_sym_COLON, - STATE(3585), 2, + ACTIONS(6002), 1, + anon_sym_EQ, + STATE(4081), 2, sym_line_comment, sym_block_comment, - [97170] = 4, + [109913] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7163), 1, - sym_identifier, - STATE(3586), 2, + ACTIONS(7332), 1, + anon_sym_SEMI, + STATE(4082), 2, sym_line_comment, sym_block_comment, - [97184] = 4, + [109927] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6507), 1, - anon_sym_RBRACE, - STATE(3587), 2, + ACTIONS(8064), 1, + anon_sym_COLON, + STATE(4083), 2, sym_line_comment, sym_block_comment, - [97198] = 4, + [109941] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7165), 1, - anon_sym_RPAREN, - STATE(3588), 2, + ACTIONS(8066), 1, + sym_identifier, + STATE(4084), 2, sym_line_comment, sym_block_comment, - [97212] = 4, + [109955] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7167), 1, + ACTIONS(8068), 1, + sym__raw_string_literal_end, + STATE(4085), 2, + sym_line_comment, + sym_block_comment, + [109969] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(8070), 1, anon_sym_COLON, - STATE(3589), 2, + STATE(4086), 2, sym_line_comment, sym_block_comment, - [97226] = 4, + [109983] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7169), 1, + ACTIONS(8072), 1, anon_sym_SEMI, - STATE(3590), 2, + STATE(4087), 2, sym_line_comment, sym_block_comment, - [97240] = 4, + [109997] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7171), 1, - anon_sym_SEMI, - STATE(3591), 2, + ACTIONS(6460), 1, + anon_sym_RPAREN, + STATE(4088), 2, sym_line_comment, sym_block_comment, - [97254] = 4, + [110011] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7173), 1, + ACTIONS(8074), 1, anon_sym_SEMI, - STATE(3592), 2, + STATE(4089), 2, sym_line_comment, sym_block_comment, - [97268] = 4, + [110025] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7175), 1, - sym__raw_string_literal_end, - STATE(3593), 2, + ACTIONS(8076), 1, + sym_identifier, + STATE(4090), 2, sym_line_comment, sym_block_comment, - [97282] = 4, + [110039] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5455), 1, - anon_sym_RPAREN, - STATE(3594), 2, + ACTIONS(8078), 1, + anon_sym_SEMI, + STATE(4091), 2, sym_line_comment, sym_block_comment, - [97296] = 4, + [110053] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7177), 1, + ACTIONS(8080), 1, anon_sym_COLON, - STATE(3595), 2, + STATE(4092), 2, sym_line_comment, sym_block_comment, - [97310] = 4, + [110067] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7179), 1, - anon_sym_EQ_GT, - STATE(3596), 2, + ACTIONS(6080), 1, + anon_sym_RPAREN, + STATE(4093), 2, sym_line_comment, sym_block_comment, - [97324] = 4, + [110081] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7181), 1, - sym_identifier, - STATE(3597), 2, + ACTIONS(8082), 1, + anon_sym_SEMI, + STATE(4094), 2, sym_line_comment, sym_block_comment, - [97338] = 4, + [110095] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7183), 1, - anon_sym_COLON, - STATE(3598), 2, + ACTIONS(5768), 1, + anon_sym_SEMI, + STATE(4095), 2, sym_line_comment, sym_block_comment, - [97352] = 4, + [110109] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(5239), 1, - anon_sym_COLON_COLON, - STATE(3599), 2, + ACTIONS(8084), 1, + sym_identifier, + STATE(4096), 2, sym_line_comment, sym_block_comment, - [97366] = 4, + [110123] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7185), 1, - anon_sym_COLON, - STATE(3600), 2, + ACTIONS(8086), 1, + anon_sym_SEMI, + STATE(4097), 2, sym_line_comment, sym_block_comment, - [97380] = 4, + [110137] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7187), 1, - anon_sym_LBRACK, - STATE(3601), 2, + ACTIONS(8088), 1, + sym_identifier, + STATE(4098), 2, sym_line_comment, sym_block_comment, - [97394] = 4, + [110151] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7189), 1, + ACTIONS(8090), 1, anon_sym_EQ, - STATE(3602), 2, + STATE(4099), 2, sym_line_comment, sym_block_comment, - [97408] = 4, + [110165] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7191), 1, - sym_identifier, - STATE(3603), 2, + ACTIONS(8092), 1, + anon_sym_SEMI, + STATE(4100), 2, sym_line_comment, sym_block_comment, - [97422] = 4, + [110179] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7193), 1, - sym_identifier, - STATE(3604), 2, + ACTIONS(8094), 1, + sym_self, + STATE(4101), 2, sym_line_comment, sym_block_comment, - [97436] = 4, + [110193] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7195), 1, - anon_sym_EQ, - STATE(3605), 2, + ACTIONS(8096), 1, + anon_sym_SEMI, + STATE(4102), 2, sym_line_comment, sym_block_comment, - [97450] = 4, + [110207] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7197), 1, + ACTIONS(8098), 1, anon_sym_COLON, - STATE(3606), 2, + STATE(4103), 2, sym_line_comment, sym_block_comment, - [97464] = 4, + [110221] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4529), 1, - anon_sym_fn, - STATE(3607), 2, + ACTIONS(8100), 1, + anon_sym_COLON, + STATE(4104), 2, sym_line_comment, sym_block_comment, - [97478] = 4, + [110235] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7199), 1, - anon_sym_COLON, - STATE(3608), 2, + ACTIONS(8102), 1, + anon_sym_LBRACK, + STATE(4105), 2, sym_line_comment, sym_block_comment, - [97492] = 4, + [110249] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7201), 1, + ACTIONS(8104), 1, anon_sym_LBRACK, - STATE(3609), 2, + STATE(4106), 2, sym_line_comment, sym_block_comment, - [97506] = 4, + [110263] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7203), 1, - anon_sym_LBRACK, - STATE(3610), 2, + ACTIONS(8106), 1, + anon_sym_COLON, + STATE(4107), 2, sym_line_comment, sym_block_comment, - [97520] = 4, + [110277] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7205), 1, - anon_sym_COLON, - STATE(3611), 2, + ACTIONS(8108), 1, + anon_sym_SEMI, + STATE(4108), 2, sym_line_comment, sym_block_comment, - [97534] = 4, + [110291] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7207), 1, + ACTIONS(8110), 1, sym_identifier, - STATE(3612), 2, + STATE(4109), 2, sym_line_comment, sym_block_comment, - [97548] = 4, + [110305] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7209), 1, - anon_sym_RPAREN, - STATE(3613), 2, + ACTIONS(8112), 1, + anon_sym_COLON, + STATE(4110), 2, sym_line_comment, sym_block_comment, - [97562] = 4, + [110319] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7211), 1, - anon_sym_COLON, - STATE(3614), 2, + ACTIONS(8114), 1, + anon_sym_LBRACK, + STATE(4111), 2, sym_line_comment, sym_block_comment, - [97576] = 4, + [110333] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7213), 1, + ACTIONS(8116), 1, anon_sym_COLON, - STATE(3615), 2, + STATE(4112), 2, sym_line_comment, sym_block_comment, - [97590] = 4, + [110347] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7215), 1, - anon_sym_EQ_GT, - STATE(3616), 2, + ACTIONS(8118), 1, + anon_sym_SEMI, + STATE(4113), 2, sym_line_comment, sym_block_comment, - [97604] = 4, + [110361] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7217), 1, - sym_identifier, - STATE(3617), 2, + ACTIONS(8120), 1, + anon_sym_SEMI, + STATE(4114), 2, sym_line_comment, sym_block_comment, - [97618] = 4, + [110375] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7219), 1, + ACTIONS(8122), 1, anon_sym_COLON, - STATE(3618), 2, + STATE(4115), 2, sym_line_comment, sym_block_comment, - [97632] = 4, + [110389] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7221), 1, + ACTIONS(8124), 1, anon_sym_COLON, - STATE(3619), 2, + STATE(4116), 2, sym_line_comment, sym_block_comment, - [97646] = 4, + [110403] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7223), 1, + ACTIONS(8126), 1, anon_sym_COLON, - STATE(3620), 2, + STATE(4117), 2, sym_line_comment, sym_block_comment, - [97660] = 4, + [110417] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6539), 1, + ACTIONS(8128), 1, anon_sym_SEMI, - STATE(3621), 2, + STATE(4118), 2, sym_line_comment, sym_block_comment, - [97674] = 4, + [110431] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(4565), 1, + ACTIONS(8130), 1, + sym_identifier, + STATE(4119), 2, + sym_line_comment, + sym_block_comment, + [110445] = 4, + ACTIONS(103), 1, + anon_sym_SLASH_SLASH, + ACTIONS(105), 1, + anon_sym_SLASH_STAR, + ACTIONS(5012), 1, anon_sym_fn, - STATE(3622), 2, + STATE(4120), 2, sym_line_comment, sym_block_comment, - [97688] = 4, + [110459] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7225), 1, + ACTIONS(5804), 1, anon_sym_SEMI, - STATE(3623), 2, + STATE(4121), 2, sym_line_comment, sym_block_comment, - [97702] = 4, + [110473] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(772), 1, - anon_sym_RBRACK, - STATE(3624), 2, + ACTIONS(8132), 1, + anon_sym_SEMI, + STATE(4122), 2, sym_line_comment, sym_block_comment, - [97716] = 4, + [110487] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7227), 1, + ACTIONS(8134), 1, sym_identifier, - STATE(3625), 2, + STATE(4123), 2, sym_line_comment, sym_block_comment, - [97730] = 4, + [110501] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7229), 1, - sym_identifier, - STATE(3626), 2, + ACTIONS(8136), 1, + anon_sym_SEMI, + STATE(4124), 2, sym_line_comment, sym_block_comment, - [97744] = 4, + [110515] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7231), 1, - anon_sym_RPAREN, - STATE(3627), 2, + ACTIONS(8138), 1, + anon_sym_SEMI, + STATE(4125), 2, sym_line_comment, sym_block_comment, - [97758] = 4, + [110529] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7233), 1, + ACTIONS(8140), 1, sym_identifier, - STATE(3628), 2, + STATE(4126), 2, sym_line_comment, sym_block_comment, - [97772] = 4, + [110543] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7235), 1, + ACTIONS(5108), 1, anon_sym_fn, - STATE(3629), 2, + STATE(4127), 2, sym_line_comment, sym_block_comment, - [97786] = 4, + [110557] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7237), 1, - sym_raw_string_literal_content, - STATE(3630), 2, + ACTIONS(8142), 1, + sym_identifier, + STATE(4128), 2, sym_line_comment, sym_block_comment, - [97800] = 4, + [110571] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7239), 1, + ACTIONS(8144), 1, sym_identifier, - STATE(3631), 2, + STATE(4129), 2, sym_line_comment, sym_block_comment, - [97814] = 4, + [110585] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7241), 1, - sym_identifier, - STATE(3632), 2, + ACTIONS(8146), 1, + anon_sym_SEMI, + STATE(4130), 2, sym_line_comment, sym_block_comment, - [97828] = 4, + [110599] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7243), 1, - sym_identifier, - STATE(3633), 2, + ACTIONS(6203), 1, + anon_sym_RPAREN, + STATE(4131), 2, sym_line_comment, sym_block_comment, - [97842] = 4, + [110613] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7245), 1, - sym_identifier, - STATE(3634), 2, + ACTIONS(7267), 1, + anon_sym_RBRACE, + STATE(4132), 2, sym_line_comment, sym_block_comment, - [97856] = 4, + [110627] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(3093), 1, - anon_sym_PLUS, - STATE(3635), 2, + ACTIONS(4591), 1, + anon_sym_RPAREN, + STATE(4133), 2, sym_line_comment, sym_block_comment, - [97870] = 4, + [110641] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7247), 1, - sym_identifier, - STATE(3636), 2, + ACTIONS(8148), 1, + anon_sym_SEMI, + STATE(4134), 2, sym_line_comment, sym_block_comment, - [97884] = 4, + [110655] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(903), 1, - anon_sym_RBRACK, - STATE(3637), 2, + ACTIONS(8150), 1, + sym_identifier, + STATE(4135), 2, sym_line_comment, sym_block_comment, - [97898] = 4, + [110669] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7249), 1, - sym__line_doc_content, - STATE(3638), 2, + ACTIONS(8152), 1, + anon_sym_fn, + STATE(4136), 2, sym_line_comment, sym_block_comment, - [97912] = 4, + [110683] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(6213), 1, - anon_sym_RBRACE, - STATE(3639), 2, + ACTIONS(8154), 1, + sym_identifier, + STATE(4137), 2, sym_line_comment, sym_block_comment, - [97926] = 4, + [110697] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7251), 1, - anon_sym_SEMI, - STATE(3640), 2, + ACTIONS(8156), 1, + sym_identifier, + STATE(4138), 2, sym_line_comment, sym_block_comment, - [97940] = 4, + [110711] = 4, ACTIONS(103), 1, anon_sym_SLASH_SLASH, ACTIONS(105), 1, anon_sym_SLASH_STAR, - ACTIONS(7253), 1, - anon_sym_COLON_COLON, - STATE(3641), 2, + ACTIONS(8158), 1, + sym_identifier, + STATE(4139), 2, sym_line_comment, sym_block_comment, - [97954] = 1, - ACTIONS(7255), 1, + [110725] = 1, + ACTIONS(8160), 1, ts_builtin_sym_end, - [97958] = 1, - ACTIONS(7257), 1, + [110729] = 1, + ACTIONS(8162), 1, ts_builtin_sym_end, - [97962] = 1, - ACTIONS(7259), 1, + [110733] = 1, + ACTIONS(8164), 1, ts_builtin_sym_end, - [97966] = 1, - ACTIONS(7261), 1, + [110737] = 1, + ACTIONS(8166), 1, ts_builtin_sym_end, - [97970] = 1, - ACTIONS(7263), 1, + [110741] = 1, + ACTIONS(8168), 1, ts_builtin_sym_end, - [97974] = 1, - ACTIONS(7265), 1, + [110745] = 1, + ACTIONS(8170), 1, ts_builtin_sym_end, - [97978] = 1, - ACTIONS(7267), 1, + [110749] = 1, + ACTIONS(8172), 1, ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(1014)] = 0, - [SMALL_STATE(1015)] = 75, - [SMALL_STATE(1016)] = 146, - [SMALL_STATE(1017)] = 216, - [SMALL_STATE(1018)] = 316, - [SMALL_STATE(1019)] = 416, - [SMALL_STATE(1020)] = 495, - [SMALL_STATE(1021)] = 572, - [SMALL_STATE(1022)] = 636, - [SMALL_STATE(1023)] = 710, - [SMALL_STATE(1024)] = 774, - [SMALL_STATE(1025)] = 838, - [SMALL_STATE(1026)] = 902, - [SMALL_STATE(1027)] = 966, - [SMALL_STATE(1028)] = 1030, - [SMALL_STATE(1029)] = 1104, - [SMALL_STATE(1030)] = 1168, - [SMALL_STATE(1031)] = 1242, - [SMALL_STATE(1032)] = 1306, - [SMALL_STATE(1033)] = 1370, - [SMALL_STATE(1034)] = 1433, - [SMALL_STATE(1035)] = 1504, - [SMALL_STATE(1036)] = 1567, - [SMALL_STATE(1037)] = 1638, - [SMALL_STATE(1038)] = 1701, - [SMALL_STATE(1039)] = 1768, - [SMALL_STATE(1040)] = 1831, - [SMALL_STATE(1041)] = 1902, - [SMALL_STATE(1042)] = 1969, - [SMALL_STATE(1043)] = 2036, - [SMALL_STATE(1044)] = 2107, - [SMALL_STATE(1045)] = 2170, - [SMALL_STATE(1046)] = 2237, - [SMALL_STATE(1047)] = 2304, - [SMALL_STATE(1048)] = 2410, - [SMALL_STATE(1049)] = 2516, - [SMALL_STATE(1050)] = 2578, - [SMALL_STATE(1051)] = 2640, - [SMALL_STATE(1052)] = 2746, - [SMALL_STATE(1053)] = 2846, - [SMALL_STATE(1054)] = 2952, - [SMALL_STATE(1055)] = 3014, - [SMALL_STATE(1056)] = 3120, - [SMALL_STATE(1057)] = 3220, - [SMALL_STATE(1058)] = 3290, - [SMALL_STATE(1059)] = 3396, - [SMALL_STATE(1060)] = 3464, - [SMALL_STATE(1061)] = 3526, - [SMALL_STATE(1062)] = 3592, - [SMALL_STATE(1063)] = 3667, - [SMALL_STATE(1064)] = 3728, - [SMALL_STATE(1065)] = 3791, - [SMALL_STATE(1066)] = 3852, - [SMALL_STATE(1067)] = 3913, - [SMALL_STATE(1068)] = 3974, - [SMALL_STATE(1069)] = 4035, - [SMALL_STATE(1070)] = 4096, - [SMALL_STATE(1071)] = 4159, - [SMALL_STATE(1072)] = 4222, - [SMALL_STATE(1073)] = 4283, - [SMALL_STATE(1074)] = 4346, - [SMALL_STATE(1075)] = 4409, - [SMALL_STATE(1076)] = 4470, - [SMALL_STATE(1077)] = 4531, - [SMALL_STATE(1078)] = 4592, - [SMALL_STATE(1079)] = 4655, - [SMALL_STATE(1080)] = 4716, - [SMALL_STATE(1081)] = 4777, - [SMALL_STATE(1082)] = 4840, - [SMALL_STATE(1083)] = 4903, - [SMALL_STATE(1084)] = 4966, - [SMALL_STATE(1085)] = 5027, - [SMALL_STATE(1086)] = 5088, - [SMALL_STATE(1087)] = 5181, - [SMALL_STATE(1088)] = 5242, - [SMALL_STATE(1089)] = 5335, - [SMALL_STATE(1090)] = 5396, - [SMALL_STATE(1091)] = 5457, - [SMALL_STATE(1092)] = 5518, - [SMALL_STATE(1093)] = 5581, - [SMALL_STATE(1094)] = 5644, - [SMALL_STATE(1095)] = 5707, - [SMALL_STATE(1096)] = 5770, - [SMALL_STATE(1097)] = 5833, - [SMALL_STATE(1098)] = 5894, - [SMALL_STATE(1099)] = 5959, - [SMALL_STATE(1100)] = 6020, - [SMALL_STATE(1101)] = 6081, - [SMALL_STATE(1102)] = 6142, - [SMALL_STATE(1103)] = 6203, - [SMALL_STATE(1104)] = 6264, - [SMALL_STATE(1105)] = 6325, - [SMALL_STATE(1106)] = 6386, - [SMALL_STATE(1107)] = 6447, - [SMALL_STATE(1108)] = 6508, - [SMALL_STATE(1109)] = 6569, - [SMALL_STATE(1110)] = 6630, - [SMALL_STATE(1111)] = 6691, - [SMALL_STATE(1112)] = 6752, - [SMALL_STATE(1113)] = 6813, - [SMALL_STATE(1114)] = 6874, - [SMALL_STATE(1115)] = 6935, - [SMALL_STATE(1116)] = 6996, - [SMALL_STATE(1117)] = 7057, - [SMALL_STATE(1118)] = 7120, - [SMALL_STATE(1119)] = 7183, - [SMALL_STATE(1120)] = 7246, - [SMALL_STATE(1121)] = 7307, - [SMALL_STATE(1122)] = 7368, - [SMALL_STATE(1123)] = 7429, - [SMALL_STATE(1124)] = 7490, - [SMALL_STATE(1125)] = 7551, - [SMALL_STATE(1126)] = 7612, - [SMALL_STATE(1127)] = 7673, - [SMALL_STATE(1128)] = 7734, - [SMALL_STATE(1129)] = 7795, - [SMALL_STATE(1130)] = 7856, - [SMALL_STATE(1131)] = 7917, - [SMALL_STATE(1132)] = 7978, - [SMALL_STATE(1133)] = 8039, - [SMALL_STATE(1134)] = 8100, - [SMALL_STATE(1135)] = 8161, - [SMALL_STATE(1136)] = 8222, - [SMALL_STATE(1137)] = 8283, - [SMALL_STATE(1138)] = 8344, - [SMALL_STATE(1139)] = 8405, - [SMALL_STATE(1140)] = 8466, - [SMALL_STATE(1141)] = 8527, - [SMALL_STATE(1142)] = 8588, - [SMALL_STATE(1143)] = 8649, - [SMALL_STATE(1144)] = 8710, - [SMALL_STATE(1145)] = 8771, - [SMALL_STATE(1146)] = 8832, - [SMALL_STATE(1147)] = 8893, - [SMALL_STATE(1148)] = 8954, - [SMALL_STATE(1149)] = 9015, - [SMALL_STATE(1150)] = 9076, - [SMALL_STATE(1151)] = 9137, - [SMALL_STATE(1152)] = 9198, - [SMALL_STATE(1153)] = 9259, - [SMALL_STATE(1154)] = 9320, - [SMALL_STATE(1155)] = 9381, - [SMALL_STATE(1156)] = 9442, - [SMALL_STATE(1157)] = 9503, - [SMALL_STATE(1158)] = 9564, - [SMALL_STATE(1159)] = 9627, - [SMALL_STATE(1160)] = 9690, - [SMALL_STATE(1161)] = 9751, - [SMALL_STATE(1162)] = 9812, - [SMALL_STATE(1163)] = 9873, - [SMALL_STATE(1164)] = 9934, - [SMALL_STATE(1165)] = 9995, - [SMALL_STATE(1166)] = 10056, - [SMALL_STATE(1167)] = 10117, - [SMALL_STATE(1168)] = 10178, - [SMALL_STATE(1169)] = 10239, - [SMALL_STATE(1170)] = 10300, - [SMALL_STATE(1171)] = 10361, - [SMALL_STATE(1172)] = 10422, - [SMALL_STATE(1173)] = 10483, - [SMALL_STATE(1174)] = 10544, - [SMALL_STATE(1175)] = 10605, - [SMALL_STATE(1176)] = 10666, - [SMALL_STATE(1177)] = 10727, - [SMALL_STATE(1178)] = 10788, - [SMALL_STATE(1179)] = 10849, - [SMALL_STATE(1180)] = 10910, - [SMALL_STATE(1181)] = 10971, - [SMALL_STATE(1182)] = 11032, - [SMALL_STATE(1183)] = 11093, - [SMALL_STATE(1184)] = 11154, - [SMALL_STATE(1185)] = 11215, - [SMALL_STATE(1186)] = 11276, - [SMALL_STATE(1187)] = 11337, - [SMALL_STATE(1188)] = 11398, - [SMALL_STATE(1189)] = 11459, - [SMALL_STATE(1190)] = 11520, - [SMALL_STATE(1191)] = 11581, - [SMALL_STATE(1192)] = 11642, - [SMALL_STATE(1193)] = 11703, - [SMALL_STATE(1194)] = 11764, - [SMALL_STATE(1195)] = 11825, - [SMALL_STATE(1196)] = 11886, - [SMALL_STATE(1197)] = 11947, - [SMALL_STATE(1198)] = 12008, - [SMALL_STATE(1199)] = 12069, - [SMALL_STATE(1200)] = 12130, - [SMALL_STATE(1201)] = 12191, - [SMALL_STATE(1202)] = 12252, - [SMALL_STATE(1203)] = 12313, - [SMALL_STATE(1204)] = 12374, - [SMALL_STATE(1205)] = 12435, - [SMALL_STATE(1206)] = 12496, - [SMALL_STATE(1207)] = 12557, - [SMALL_STATE(1208)] = 12618, - [SMALL_STATE(1209)] = 12679, - [SMALL_STATE(1210)] = 12740, - [SMALL_STATE(1211)] = 12801, - [SMALL_STATE(1212)] = 12862, - [SMALL_STATE(1213)] = 12923, - [SMALL_STATE(1214)] = 12984, - [SMALL_STATE(1215)] = 13045, - [SMALL_STATE(1216)] = 13106, - [SMALL_STATE(1217)] = 13167, - [SMALL_STATE(1218)] = 13228, - [SMALL_STATE(1219)] = 13289, - [SMALL_STATE(1220)] = 13350, - [SMALL_STATE(1221)] = 13411, - [SMALL_STATE(1222)] = 13472, - [SMALL_STATE(1223)] = 13533, - [SMALL_STATE(1224)] = 13594, - [SMALL_STATE(1225)] = 13655, - [SMALL_STATE(1226)] = 13716, - [SMALL_STATE(1227)] = 13777, - [SMALL_STATE(1228)] = 13838, - [SMALL_STATE(1229)] = 13899, - [SMALL_STATE(1230)] = 13960, - [SMALL_STATE(1231)] = 14021, - [SMALL_STATE(1232)] = 14082, - [SMALL_STATE(1233)] = 14143, - [SMALL_STATE(1234)] = 14204, - [SMALL_STATE(1235)] = 14265, - [SMALL_STATE(1236)] = 14326, - [SMALL_STATE(1237)] = 14387, - [SMALL_STATE(1238)] = 14448, - [SMALL_STATE(1239)] = 14509, - [SMALL_STATE(1240)] = 14570, - [SMALL_STATE(1241)] = 14631, - [SMALL_STATE(1242)] = 14692, - [SMALL_STATE(1243)] = 14753, - [SMALL_STATE(1244)] = 14814, - [SMALL_STATE(1245)] = 14875, - [SMALL_STATE(1246)] = 14936, - [SMALL_STATE(1247)] = 14997, - [SMALL_STATE(1248)] = 15058, - [SMALL_STATE(1249)] = 15119, - [SMALL_STATE(1250)] = 15180, - [SMALL_STATE(1251)] = 15241, - [SMALL_STATE(1252)] = 15302, - [SMALL_STATE(1253)] = 15363, - [SMALL_STATE(1254)] = 15424, - [SMALL_STATE(1255)] = 15485, - [SMALL_STATE(1256)] = 15546, - [SMALL_STATE(1257)] = 15607, - [SMALL_STATE(1258)] = 15668, - [SMALL_STATE(1259)] = 15729, - [SMALL_STATE(1260)] = 15790, - [SMALL_STATE(1261)] = 15851, - [SMALL_STATE(1262)] = 15912, - [SMALL_STATE(1263)] = 15973, - [SMALL_STATE(1264)] = 16034, - [SMALL_STATE(1265)] = 16095, - [SMALL_STATE(1266)] = 16156, - [SMALL_STATE(1267)] = 16217, - [SMALL_STATE(1268)] = 16278, - [SMALL_STATE(1269)] = 16339, - [SMALL_STATE(1270)] = 16400, - [SMALL_STATE(1271)] = 16461, - [SMALL_STATE(1272)] = 16522, - [SMALL_STATE(1273)] = 16583, - [SMALL_STATE(1274)] = 16644, - [SMALL_STATE(1275)] = 16705, - [SMALL_STATE(1276)] = 16766, - [SMALL_STATE(1277)] = 16827, - [SMALL_STATE(1278)] = 16888, - [SMALL_STATE(1279)] = 16949, - [SMALL_STATE(1280)] = 17010, - [SMALL_STATE(1281)] = 17071, - [SMALL_STATE(1282)] = 17132, - [SMALL_STATE(1283)] = 17193, - [SMALL_STATE(1284)] = 17254, - [SMALL_STATE(1285)] = 17315, - [SMALL_STATE(1286)] = 17376, - [SMALL_STATE(1287)] = 17437, - [SMALL_STATE(1288)] = 17498, - [SMALL_STATE(1289)] = 17559, - [SMALL_STATE(1290)] = 17620, - [SMALL_STATE(1291)] = 17681, - [SMALL_STATE(1292)] = 17742, - [SMALL_STATE(1293)] = 17803, - [SMALL_STATE(1294)] = 17864, - [SMALL_STATE(1295)] = 17925, - [SMALL_STATE(1296)] = 17986, - [SMALL_STATE(1297)] = 18047, - [SMALL_STATE(1298)] = 18108, - [SMALL_STATE(1299)] = 18169, - [SMALL_STATE(1300)] = 18230, - [SMALL_STATE(1301)] = 18291, - [SMALL_STATE(1302)] = 18352, - [SMALL_STATE(1303)] = 18413, - [SMALL_STATE(1304)] = 18474, - [SMALL_STATE(1305)] = 18535, - [SMALL_STATE(1306)] = 18596, - [SMALL_STATE(1307)] = 18657, - [SMALL_STATE(1308)] = 18718, - [SMALL_STATE(1309)] = 18779, - [SMALL_STATE(1310)] = 18840, - [SMALL_STATE(1311)] = 18901, - [SMALL_STATE(1312)] = 18962, - [SMALL_STATE(1313)] = 19023, - [SMALL_STATE(1314)] = 19084, - [SMALL_STATE(1315)] = 19145, - [SMALL_STATE(1316)] = 19206, - [SMALL_STATE(1317)] = 19267, - [SMALL_STATE(1318)] = 19328, - [SMALL_STATE(1319)] = 19389, - [SMALL_STATE(1320)] = 19450, - [SMALL_STATE(1321)] = 19511, - [SMALL_STATE(1322)] = 19572, - [SMALL_STATE(1323)] = 19633, - [SMALL_STATE(1324)] = 19694, - [SMALL_STATE(1325)] = 19755, - [SMALL_STATE(1326)] = 19816, - [SMALL_STATE(1327)] = 19877, - [SMALL_STATE(1328)] = 19938, - [SMALL_STATE(1329)] = 19999, - [SMALL_STATE(1330)] = 20060, - [SMALL_STATE(1331)] = 20121, - [SMALL_STATE(1332)] = 20182, - [SMALL_STATE(1333)] = 20243, - [SMALL_STATE(1334)] = 20304, - [SMALL_STATE(1335)] = 20365, - [SMALL_STATE(1336)] = 20426, - [SMALL_STATE(1337)] = 20487, - [SMALL_STATE(1338)] = 20548, - [SMALL_STATE(1339)] = 20609, - [SMALL_STATE(1340)] = 20670, - [SMALL_STATE(1341)] = 20731, - [SMALL_STATE(1342)] = 20792, - [SMALL_STATE(1343)] = 20853, - [SMALL_STATE(1344)] = 20914, - [SMALL_STATE(1345)] = 20975, - [SMALL_STATE(1346)] = 21036, - [SMALL_STATE(1347)] = 21097, - [SMALL_STATE(1348)] = 21158, - [SMALL_STATE(1349)] = 21219, - [SMALL_STATE(1350)] = 21280, - [SMALL_STATE(1351)] = 21341, - [SMALL_STATE(1352)] = 21402, - [SMALL_STATE(1353)] = 21463, - [SMALL_STATE(1354)] = 21524, - [SMALL_STATE(1355)] = 21585, - [SMALL_STATE(1356)] = 21646, - [SMALL_STATE(1357)] = 21707, - [SMALL_STATE(1358)] = 21768, - [SMALL_STATE(1359)] = 21829, - [SMALL_STATE(1360)] = 21890, - [SMALL_STATE(1361)] = 21951, - [SMALL_STATE(1362)] = 22012, - [SMALL_STATE(1363)] = 22073, - [SMALL_STATE(1364)] = 22134, - [SMALL_STATE(1365)] = 22195, - [SMALL_STATE(1366)] = 22260, - [SMALL_STATE(1367)] = 22321, - [SMALL_STATE(1368)] = 22382, - [SMALL_STATE(1369)] = 22443, - [SMALL_STATE(1370)] = 22508, - [SMALL_STATE(1371)] = 22583, - [SMALL_STATE(1372)] = 22646, - [SMALL_STATE(1373)] = 22707, - [SMALL_STATE(1374)] = 22769, - [SMALL_STATE(1375)] = 22829, - [SMALL_STATE(1376)] = 22889, - [SMALL_STATE(1377)] = 22949, - [SMALL_STATE(1378)] = 23017, - [SMALL_STATE(1379)] = 23077, - [SMALL_STATE(1380)] = 23137, - [SMALL_STATE(1381)] = 23197, - [SMALL_STATE(1382)] = 23257, - [SMALL_STATE(1383)] = 23317, - [SMALL_STATE(1384)] = 23377, - [SMALL_STATE(1385)] = 23437, - [SMALL_STATE(1386)] = 23497, - [SMALL_STATE(1387)] = 23557, - [SMALL_STATE(1388)] = 23617, - [SMALL_STATE(1389)] = 23677, - [SMALL_STATE(1390)] = 23737, - [SMALL_STATE(1391)] = 23797, - [SMALL_STATE(1392)] = 23857, - [SMALL_STATE(1393)] = 23917, - [SMALL_STATE(1394)] = 23977, - [SMALL_STATE(1395)] = 24043, - [SMALL_STATE(1396)] = 24103, - [SMALL_STATE(1397)] = 24163, - [SMALL_STATE(1398)] = 24223, - [SMALL_STATE(1399)] = 24283, - [SMALL_STATE(1400)] = 24343, - [SMALL_STATE(1401)] = 24403, - [SMALL_STATE(1402)] = 24463, - [SMALL_STATE(1403)] = 24529, - [SMALL_STATE(1404)] = 24589, - [SMALL_STATE(1405)] = 24649, - [SMALL_STATE(1406)] = 24709, - [SMALL_STATE(1407)] = 24769, - [SMALL_STATE(1408)] = 24829, - [SMALL_STATE(1409)] = 24889, - [SMALL_STATE(1410)] = 24949, - [SMALL_STATE(1411)] = 25009, - [SMALL_STATE(1412)] = 25069, - [SMALL_STATE(1413)] = 25129, - [SMALL_STATE(1414)] = 25189, - [SMALL_STATE(1415)] = 25249, - [SMALL_STATE(1416)] = 25309, - [SMALL_STATE(1417)] = 25369, - [SMALL_STATE(1418)] = 25429, - [SMALL_STATE(1419)] = 25495, - [SMALL_STATE(1420)] = 25555, - [SMALL_STATE(1421)] = 25615, - [SMALL_STATE(1422)] = 25675, - [SMALL_STATE(1423)] = 25735, - [SMALL_STATE(1424)] = 25795, - [SMALL_STATE(1425)] = 25855, - [SMALL_STATE(1426)] = 25915, - [SMALL_STATE(1427)] = 25975, - [SMALL_STATE(1428)] = 26035, - [SMALL_STATE(1429)] = 26131, - [SMALL_STATE(1430)] = 26191, - [SMALL_STATE(1431)] = 26251, - [SMALL_STATE(1432)] = 26317, - [SMALL_STATE(1433)] = 26377, - [SMALL_STATE(1434)] = 26437, - [SMALL_STATE(1435)] = 26497, - [SMALL_STATE(1436)] = 26557, - [SMALL_STATE(1437)] = 26617, - [SMALL_STATE(1438)] = 26677, - [SMALL_STATE(1439)] = 26737, - [SMALL_STATE(1440)] = 26797, - [SMALL_STATE(1441)] = 26857, - [SMALL_STATE(1442)] = 26917, - [SMALL_STATE(1443)] = 26977, - [SMALL_STATE(1444)] = 27037, - [SMALL_STATE(1445)] = 27097, - [SMALL_STATE(1446)] = 27157, - [SMALL_STATE(1447)] = 27217, - [SMALL_STATE(1448)] = 27277, - [SMALL_STATE(1449)] = 27373, - [SMALL_STATE(1450)] = 27433, - [SMALL_STATE(1451)] = 27493, - [SMALL_STATE(1452)] = 27553, - [SMALL_STATE(1453)] = 27613, - [SMALL_STATE(1454)] = 27677, - [SMALL_STATE(1455)] = 27737, - [SMALL_STATE(1456)] = 27797, - [SMALL_STATE(1457)] = 27859, - [SMALL_STATE(1458)] = 27919, - [SMALL_STATE(1459)] = 27979, - [SMALL_STATE(1460)] = 28039, - [SMALL_STATE(1461)] = 28099, - [SMALL_STATE(1462)] = 28159, - [SMALL_STATE(1463)] = 28219, - [SMALL_STATE(1464)] = 28279, - [SMALL_STATE(1465)] = 28339, - [SMALL_STATE(1466)] = 28413, - [SMALL_STATE(1467)] = 28473, - [SMALL_STATE(1468)] = 28533, - [SMALL_STATE(1469)] = 28593, - [SMALL_STATE(1470)] = 28653, - [SMALL_STATE(1471)] = 28713, - [SMALL_STATE(1472)] = 28773, - [SMALL_STATE(1473)] = 28833, - [SMALL_STATE(1474)] = 28893, - [SMALL_STATE(1475)] = 28953, - [SMALL_STATE(1476)] = 29013, - [SMALL_STATE(1477)] = 29073, - [SMALL_STATE(1478)] = 29133, - [SMALL_STATE(1479)] = 29193, - [SMALL_STATE(1480)] = 29253, - [SMALL_STATE(1481)] = 29313, - [SMALL_STATE(1482)] = 29373, - [SMALL_STATE(1483)] = 29433, - [SMALL_STATE(1484)] = 29493, - [SMALL_STATE(1485)] = 29553, - [SMALL_STATE(1486)] = 29613, - [SMALL_STATE(1487)] = 29673, - [SMALL_STATE(1488)] = 29737, - [SMALL_STATE(1489)] = 29797, - [SMALL_STATE(1490)] = 29857, - [SMALL_STATE(1491)] = 29917, - [SMALL_STATE(1492)] = 29977, - [SMALL_STATE(1493)] = 30037, - [SMALL_STATE(1494)] = 30097, - [SMALL_STATE(1495)] = 30157, - [SMALL_STATE(1496)] = 30256, - [SMALL_STATE(1497)] = 30317, - [SMALL_STATE(1498)] = 30386, - [SMALL_STATE(1499)] = 30485, - [SMALL_STATE(1500)] = 30556, - [SMALL_STATE(1501)] = 30655, - [SMALL_STATE(1502)] = 30716, - [SMALL_STATE(1503)] = 30808, - [SMALL_STATE(1504)] = 30898, - [SMALL_STATE(1505)] = 30984, - [SMALL_STATE(1506)] = 31068, - [SMALL_STATE(1507)] = 31138, - [SMALL_STATE(1508)] = 31228, - [SMALL_STATE(1509)] = 31318, - [SMALL_STATE(1510)] = 31404, - [SMALL_STATE(1511)] = 31482, - [SMALL_STATE(1512)] = 31568, - [SMALL_STATE(1513)] = 31638, - [SMALL_STATE(1514)] = 31706, - [SMALL_STATE(1515)] = 31796, - [SMALL_STATE(1516)] = 31862, - [SMALL_STATE(1517)] = 31948, - [SMALL_STATE(1518)] = 32038, - [SMALL_STATE(1519)] = 32130, - [SMALL_STATE(1520)] = 32220, - [SMALL_STATE(1521)] = 32306, - [SMALL_STATE(1522)] = 32380, - [SMALL_STATE(1523)] = 32452, - [SMALL_STATE(1524)] = 32538, - [SMALL_STATE(1525)] = 32614, - [SMALL_STATE(1526)] = 32696, - [SMALL_STATE(1527)] = 32788, - [SMALL_STATE(1528)] = 32851, - [SMALL_STATE(1529)] = 32918, - [SMALL_STATE(1530)] = 32975, - [SMALL_STATE(1531)] = 33042, - [SMALL_STATE(1532)] = 33099, - [SMALL_STATE(1533)] = 33158, - [SMALL_STATE(1534)] = 33215, - [SMALL_STATE(1535)] = 33272, - [SMALL_STATE(1536)] = 33329, - [SMALL_STATE(1537)] = 33396, - [SMALL_STATE(1538)] = 33455, - [SMALL_STATE(1539)] = 33518, - [SMALL_STATE(1540)] = 33583, - [SMALL_STATE(1541)] = 33647, - [SMALL_STATE(1542)] = 33703, - [SMALL_STATE(1543)] = 33761, - [SMALL_STATE(1544)] = 33821, - [SMALL_STATE(1545)] = 33881, - [SMALL_STATE(1546)] = 33941, - [SMALL_STATE(1547)] = 34001, - [SMALL_STATE(1548)] = 34057, - [SMALL_STATE(1549)] = 34121, - [SMALL_STATE(1550)] = 34177, - [SMALL_STATE(1551)] = 34235, - [SMALL_STATE(1552)] = 34293, - [SMALL_STATE(1553)] = 34353, - [SMALL_STATE(1554)] = 34411, - [SMALL_STATE(1555)] = 34467, - [SMALL_STATE(1556)] = 34527, - [SMALL_STATE(1557)] = 34591, - [SMALL_STATE(1558)] = 34655, - [SMALL_STATE(1559)] = 34715, - [SMALL_STATE(1560)] = 34772, - [SMALL_STATE(1561)] = 34867, - [SMALL_STATE(1562)] = 34962, - [SMALL_STATE(1563)] = 35057, - [SMALL_STATE(1564)] = 35114, - [SMALL_STATE(1565)] = 35209, - [SMALL_STATE(1566)] = 35298, - [SMALL_STATE(1567)] = 35393, - [SMALL_STATE(1568)] = 35452, - [SMALL_STATE(1569)] = 35509, - [SMALL_STATE(1570)] = 35564, - [SMALL_STATE(1571)] = 35623, - [SMALL_STATE(1572)] = 35678, - [SMALL_STATE(1573)] = 35773, - [SMALL_STATE(1574)] = 35832, - [SMALL_STATE(1575)] = 35927, - [SMALL_STATE(1576)] = 35986, - [SMALL_STATE(1577)] = 36081, - [SMALL_STATE(1578)] = 36176, - [SMALL_STATE(1579)] = 36231, - [SMALL_STATE(1580)] = 36326, - [SMALL_STATE(1581)] = 36383, - [SMALL_STATE(1582)] = 36478, - [SMALL_STATE(1583)] = 36535, - [SMALL_STATE(1584)] = 36590, - [SMALL_STATE(1585)] = 36679, - [SMALL_STATE(1586)] = 36734, - [SMALL_STATE(1587)] = 36791, - [SMALL_STATE(1588)] = 36846, - [SMALL_STATE(1589)] = 36901, - [SMALL_STATE(1590)] = 36996, - [SMALL_STATE(1591)] = 37051, - [SMALL_STATE(1592)] = 37140, - [SMALL_STATE(1593)] = 37197, - [SMALL_STATE(1594)] = 37269, - [SMALL_STATE(1595)] = 37323, - [SMALL_STATE(1596)] = 37405, - [SMALL_STATE(1597)] = 37483, - [SMALL_STATE(1598)] = 37539, - [SMALL_STATE(1599)] = 37593, - [SMALL_STATE(1600)] = 37685, - [SMALL_STATE(1601)] = 37759, - [SMALL_STATE(1602)] = 37813, - [SMALL_STATE(1603)] = 37867, - [SMALL_STATE(1604)] = 37923, - [SMALL_STATE(1605)] = 38011, - [SMALL_STATE(1606)] = 38091, - [SMALL_STATE(1607)] = 38173, - [SMALL_STATE(1608)] = 38259, - [SMALL_STATE(1609)] = 38345, - [SMALL_STATE(1610)] = 38431, - [SMALL_STATE(1611)] = 38487, - [SMALL_STATE(1612)] = 38543, - [SMALL_STATE(1613)] = 38597, - [SMALL_STATE(1614)] = 38689, - [SMALL_STATE(1615)] = 38781, - [SMALL_STATE(1616)] = 38835, - [SMALL_STATE(1617)] = 38889, - [SMALL_STATE(1618)] = 38981, - [SMALL_STATE(1619)] = 39035, - [SMALL_STATE(1620)] = 39091, - [SMALL_STATE(1621)] = 39145, - [SMALL_STATE(1622)] = 39231, - [SMALL_STATE(1623)] = 39287, - [SMALL_STATE(1624)] = 39375, - [SMALL_STATE(1625)] = 39467, - [SMALL_STATE(1626)] = 39523, - [SMALL_STATE(1627)] = 39581, - [SMALL_STATE(1628)] = 39647, - [SMALL_STATE(1629)] = 39703, - [SMALL_STATE(1630)] = 39757, - [SMALL_STATE(1631)] = 39849, - [SMALL_STATE(1632)] = 39935, - [SMALL_STATE(1633)] = 40021, - [SMALL_STATE(1634)] = 40077, - [SMALL_STATE(1635)] = 40131, - [SMALL_STATE(1636)] = 40187, - [SMALL_STATE(1637)] = 40241, - [SMALL_STATE(1638)] = 40297, - [SMALL_STATE(1639)] = 40385, - [SMALL_STATE(1640)] = 40449, - [SMALL_STATE(1641)] = 40519, - [SMALL_STATE(1642)] = 40607, - [SMALL_STATE(1643)] = 40663, - [SMALL_STATE(1644)] = 40743, - [SMALL_STATE(1645)] = 40799, - [SMALL_STATE(1646)] = 40867, - [SMALL_STATE(1647)] = 40923, - [SMALL_STATE(1648)] = 40979, - [SMALL_STATE(1649)] = 41033, - [SMALL_STATE(1650)] = 41089, - [SMALL_STATE(1651)] = 41143, - [SMALL_STATE(1652)] = 41197, - [SMALL_STATE(1653)] = 41251, - [SMALL_STATE(1654)] = 41339, - [SMALL_STATE(1655)] = 41428, - [SMALL_STATE(1656)] = 41481, - [SMALL_STATE(1657)] = 41570, - [SMALL_STATE(1658)] = 41629, - [SMALL_STATE(1659)] = 41718, - [SMALL_STATE(1660)] = 41771, - [SMALL_STATE(1661)] = 41824, - [SMALL_STATE(1662)] = 41877, - [SMALL_STATE(1663)] = 41964, - [SMALL_STATE(1664)] = 42017, - [SMALL_STATE(1665)] = 42070, - [SMALL_STATE(1666)] = 42159, - [SMALL_STATE(1667)] = 42212, - [SMALL_STATE(1668)] = 42265, - [SMALL_STATE(1669)] = 42318, - [SMALL_STATE(1670)] = 42371, - [SMALL_STATE(1671)] = 42424, - [SMALL_STATE(1672)] = 42477, - [SMALL_STATE(1673)] = 42530, - [SMALL_STATE(1674)] = 42583, - [SMALL_STATE(1675)] = 42636, - [SMALL_STATE(1676)] = 42689, - [SMALL_STATE(1677)] = 42748, - [SMALL_STATE(1678)] = 42807, - [SMALL_STATE(1679)] = 42896, - [SMALL_STATE(1680)] = 42985, - [SMALL_STATE(1681)] = 43066, - [SMALL_STATE(1682)] = 43151, - [SMALL_STATE(1683)] = 43204, - [SMALL_STATE(1684)] = 43257, - [SMALL_STATE(1685)] = 43310, - [SMALL_STATE(1686)] = 43395, - [SMALL_STATE(1687)] = 43480, - [SMALL_STATE(1688)] = 43567, - [SMALL_STATE(1689)] = 43654, - [SMALL_STATE(1690)] = 43707, - [SMALL_STATE(1691)] = 43796, - [SMALL_STATE(1692)] = 43849, - [SMALL_STATE(1693)] = 43902, - [SMALL_STATE(1694)] = 43955, - [SMALL_STATE(1695)] = 44008, - [SMALL_STATE(1696)] = 44095, - [SMALL_STATE(1697)] = 44148, - [SMALL_STATE(1698)] = 44201, - [SMALL_STATE(1699)] = 44254, - [SMALL_STATE(1700)] = 44307, - [SMALL_STATE(1701)] = 44360, - [SMALL_STATE(1702)] = 44413, - [SMALL_STATE(1703)] = 44502, - [SMALL_STATE(1704)] = 44587, - [SMALL_STATE(1705)] = 44674, - [SMALL_STATE(1706)] = 44761, - [SMALL_STATE(1707)] = 44814, - [SMALL_STATE(1708)] = 44867, - [SMALL_STATE(1709)] = 44930, - [SMALL_STATE(1710)] = 44999, - [SMALL_STATE(1711)] = 45066, - [SMALL_STATE(1712)] = 45137, - [SMALL_STATE(1713)] = 45214, - [SMALL_STATE(1714)] = 45293, - [SMALL_STATE(1715)] = 45358, - [SMALL_STATE(1716)] = 45443, - [SMALL_STATE(1717)] = 45528, - [SMALL_STATE(1718)] = 45601, - [SMALL_STATE(1719)] = 45682, - [SMALL_STATE(1720)] = 45735, - [SMALL_STATE(1721)] = 45788, - [SMALL_STATE(1722)] = 45841, - [SMALL_STATE(1723)] = 45894, - [SMALL_STATE(1724)] = 45947, - [SMALL_STATE(1725)] = 46000, - [SMALL_STATE(1726)] = 46059, - [SMALL_STATE(1727)] = 46146, - [SMALL_STATE(1728)] = 46199, - [SMALL_STATE(1729)] = 46252, - [SMALL_STATE(1730)] = 46305, - [SMALL_STATE(1731)] = 46358, - [SMALL_STATE(1732)] = 46411, - [SMALL_STATE(1733)] = 46488, - [SMALL_STATE(1734)] = 46541, - [SMALL_STATE(1735)] = 46594, - [SMALL_STATE(1736)] = 46647, - [SMALL_STATE(1737)] = 46700, - [SMALL_STATE(1738)] = 46753, - [SMALL_STATE(1739)] = 46806, - [SMALL_STATE(1740)] = 46859, - [SMALL_STATE(1741)] = 46946, - [SMALL_STATE(1742)] = 46999, - [SMALL_STATE(1743)] = 47084, - [SMALL_STATE(1744)] = 47137, - [SMALL_STATE(1745)] = 47190, - [SMALL_STATE(1746)] = 47243, - [SMALL_STATE(1747)] = 47296, - [SMALL_STATE(1748)] = 47349, - [SMALL_STATE(1749)] = 47402, - [SMALL_STATE(1750)] = 47455, - [SMALL_STATE(1751)] = 47508, - [SMALL_STATE(1752)] = 47595, - [SMALL_STATE(1753)] = 47648, - [SMALL_STATE(1754)] = 47701, - [SMALL_STATE(1755)] = 47786, - [SMALL_STATE(1756)] = 47873, - [SMALL_STATE(1757)] = 47926, - [SMALL_STATE(1758)] = 47979, - [SMALL_STATE(1759)] = 48066, - [SMALL_STATE(1760)] = 48119, - [SMALL_STATE(1761)] = 48182, - [SMALL_STATE(1762)] = 48251, - [SMALL_STATE(1763)] = 48318, - [SMALL_STATE(1764)] = 48389, - [SMALL_STATE(1765)] = 48466, - [SMALL_STATE(1766)] = 48545, - [SMALL_STATE(1767)] = 48610, - [SMALL_STATE(1768)] = 48695, - [SMALL_STATE(1769)] = 48780, - [SMALL_STATE(1770)] = 48853, - [SMALL_STATE(1771)] = 48906, - [SMALL_STATE(1772)] = 48959, - [SMALL_STATE(1773)] = 49012, - [SMALL_STATE(1774)] = 49065, - [SMALL_STATE(1775)] = 49118, - [SMALL_STATE(1776)] = 49205, - [SMALL_STATE(1777)] = 49258, - [SMALL_STATE(1778)] = 49311, - [SMALL_STATE(1779)] = 49364, - [SMALL_STATE(1780)] = 49417, - [SMALL_STATE(1781)] = 49470, - [SMALL_STATE(1782)] = 49523, - [SMALL_STATE(1783)] = 49576, - [SMALL_STATE(1784)] = 49629, - [SMALL_STATE(1785)] = 49718, - [SMALL_STATE(1786)] = 49771, - [SMALL_STATE(1787)] = 49824, - [SMALL_STATE(1788)] = 49877, - [SMALL_STATE(1789)] = 49930, - [SMALL_STATE(1790)] = 49983, - [SMALL_STATE(1791)] = 50070, - [SMALL_STATE(1792)] = 50123, - [SMALL_STATE(1793)] = 50176, - [SMALL_STATE(1794)] = 50263, - [SMALL_STATE(1795)] = 50316, - [SMALL_STATE(1796)] = 50369, - [SMALL_STATE(1797)] = 50456, - [SMALL_STATE(1798)] = 50509, - [SMALL_STATE(1799)] = 50562, - [SMALL_STATE(1800)] = 50651, - [SMALL_STATE(1801)] = 50738, - [SMALL_STATE(1802)] = 50827, - [SMALL_STATE(1803)] = 50914, - [SMALL_STATE(1804)] = 50967, - [SMALL_STATE(1805)] = 51056, - [SMALL_STATE(1806)] = 51109, - [SMALL_STATE(1807)] = 51198, - [SMALL_STATE(1808)] = 51287, - [SMALL_STATE(1809)] = 51376, - [SMALL_STATE(1810)] = 51429, - [SMALL_STATE(1811)] = 51518, - [SMALL_STATE(1812)] = 51595, - [SMALL_STATE(1813)] = 51684, - [SMALL_STATE(1814)] = 51773, - [SMALL_STATE(1815)] = 51862, - [SMALL_STATE(1816)] = 51951, - [SMALL_STATE(1817)] = 52038, - [SMALL_STATE(1818)] = 52127, - [SMALL_STATE(1819)] = 52216, - [SMALL_STATE(1820)] = 52305, - [SMALL_STATE(1821)] = 52394, - [SMALL_STATE(1822)] = 52447, - [SMALL_STATE(1823)] = 52536, - [SMALL_STATE(1824)] = 52625, - [SMALL_STATE(1825)] = 52706, - [SMALL_STATE(1826)] = 52791, - [SMALL_STATE(1827)] = 52880, - [SMALL_STATE(1828)] = 52965, - [SMALL_STATE(1829)] = 53050, - [SMALL_STATE(1830)] = 53139, - [SMALL_STATE(1831)] = 53192, - [SMALL_STATE(1832)] = 53281, - [SMALL_STATE(1833)] = 53370, - [SMALL_STATE(1834)] = 53459, - [SMALL_STATE(1835)] = 53548, - [SMALL_STATE(1836)] = 53601, - [SMALL_STATE(1837)] = 53662, - [SMALL_STATE(1838)] = 53751, - [SMALL_STATE(1839)] = 53840, - [SMALL_STATE(1840)] = 53929, - [SMALL_STATE(1841)] = 54018, - [SMALL_STATE(1842)] = 54107, - [SMALL_STATE(1843)] = 54196, - [SMALL_STATE(1844)] = 54285, - [SMALL_STATE(1845)] = 54374, - [SMALL_STATE(1846)] = 54463, - [SMALL_STATE(1847)] = 54552, - [SMALL_STATE(1848)] = 54641, - [SMALL_STATE(1849)] = 54730, - [SMALL_STATE(1850)] = 54819, - [SMALL_STATE(1851)] = 54908, - [SMALL_STATE(1852)] = 54997, - [SMALL_STATE(1853)] = 55086, - [SMALL_STATE(1854)] = 55175, - [SMALL_STATE(1855)] = 55264, - [SMALL_STATE(1856)] = 55351, - [SMALL_STATE(1857)] = 55404, - [SMALL_STATE(1858)] = 55457, - [SMALL_STATE(1859)] = 55510, - [SMALL_STATE(1860)] = 55563, - [SMALL_STATE(1861)] = 55616, - [SMALL_STATE(1862)] = 55669, - [SMALL_STATE(1863)] = 55754, - [SMALL_STATE(1864)] = 55835, - [SMALL_STATE(1865)] = 55921, - [SMALL_STATE(1866)] = 56007, - [SMALL_STATE(1867)] = 56091, - [SMALL_STATE(1868)] = 56175, - [SMALL_STATE(1869)] = 56261, - [SMALL_STATE(1870)] = 56347, - [SMALL_STATE(1871)] = 56421, - [SMALL_STATE(1872)] = 56507, - [SMALL_STATE(1873)] = 56593, - [SMALL_STATE(1874)] = 56679, - [SMALL_STATE(1875)] = 56765, - [SMALL_STATE(1876)] = 56851, - [SMALL_STATE(1877)] = 56937, - [SMALL_STATE(1878)] = 57023, - [SMALL_STATE(1879)] = 57097, - [SMALL_STATE(1880)] = 57183, - [SMALL_STATE(1881)] = 57269, - [SMALL_STATE(1882)] = 57355, - [SMALL_STATE(1883)] = 57441, - [SMALL_STATE(1884)] = 57527, - [SMALL_STATE(1885)] = 57613, - [SMALL_STATE(1886)] = 57699, - [SMALL_STATE(1887)] = 57785, - [SMALL_STATE(1888)] = 57871, - [SMALL_STATE(1889)] = 57957, - [SMALL_STATE(1890)] = 58043, - [SMALL_STATE(1891)] = 58129, - [SMALL_STATE(1892)] = 58203, - [SMALL_STATE(1893)] = 58289, - [SMALL_STATE(1894)] = 58363, - [SMALL_STATE(1895)] = 58449, - [SMALL_STATE(1896)] = 58535, - [SMALL_STATE(1897)] = 58621, - [SMALL_STATE(1898)] = 58707, - [SMALL_STATE(1899)] = 58781, - [SMALL_STATE(1900)] = 58867, - [SMALL_STATE(1901)] = 58953, - [SMALL_STATE(1902)] = 59028, - [SMALL_STATE(1903)] = 59103, - [SMALL_STATE(1904)] = 59178, - [SMALL_STATE(1905)] = 59253, - [SMALL_STATE(1906)] = 59328, - [SMALL_STATE(1907)] = 59403, - [SMALL_STATE(1908)] = 59478, - [SMALL_STATE(1909)] = 59553, - [SMALL_STATE(1910)] = 59600, - [SMALL_STATE(1911)] = 59647, - [SMALL_STATE(1912)] = 59694, - [SMALL_STATE(1913)] = 59756, - [SMALL_STATE(1914)] = 59818, - [SMALL_STATE(1915)] = 59880, - [SMALL_STATE(1916)] = 59942, - [SMALL_STATE(1917)] = 60004, - [SMALL_STATE(1918)] = 60066, - [SMALL_STATE(1919)] = 60128, - [SMALL_STATE(1920)] = 60190, - [SMALL_STATE(1921)] = 60249, - [SMALL_STATE(1922)] = 60308, - [SMALL_STATE(1923)] = 60356, - [SMALL_STATE(1924)] = 60392, - [SMALL_STATE(1925)] = 60428, - [SMALL_STATE(1926)] = 60465, - [SMALL_STATE(1927)] = 60510, - [SMALL_STATE(1928)] = 60555, - [SMALL_STATE(1929)] = 60592, - [SMALL_STATE(1930)] = 60637, - [SMALL_STATE(1931)] = 60674, - [SMALL_STATE(1932)] = 60727, - [SMALL_STATE(1933)] = 60764, - [SMALL_STATE(1934)] = 60804, - [SMALL_STATE(1935)] = 60840, - [SMALL_STATE(1936)] = 60880, - [SMALL_STATE(1937)] = 60920, - [SMALL_STATE(1938)] = 60956, - [SMALL_STATE(1939)] = 60996, - [SMALL_STATE(1940)] = 61032, - [SMALL_STATE(1941)] = 61068, - [SMALL_STATE(1942)] = 61101, - [SMALL_STATE(1943)] = 61134, - [SMALL_STATE(1944)] = 61167, - [SMALL_STATE(1945)] = 61200, - [SMALL_STATE(1946)] = 61233, - [SMALL_STATE(1947)] = 61266, - [SMALL_STATE(1948)] = 61299, - [SMALL_STATE(1949)] = 61330, - [SMALL_STATE(1950)] = 61363, - [SMALL_STATE(1951)] = 61423, - [SMALL_STATE(1952)] = 61467, - [SMALL_STATE(1953)] = 61499, - [SMALL_STATE(1954)] = 61531, - [SMALL_STATE(1955)] = 61591, - [SMALL_STATE(1956)] = 61623, - [SMALL_STATE(1957)] = 61669, - [SMALL_STATE(1958)] = 61702, - [SMALL_STATE(1959)] = 61731, - [SMALL_STATE(1960)] = 61762, - [SMALL_STATE(1961)] = 61793, - [SMALL_STATE(1962)] = 61824, - [SMALL_STATE(1963)] = 61857, - [SMALL_STATE(1964)] = 61898, - [SMALL_STATE(1965)] = 61927, - [SMALL_STATE(1966)] = 61958, - [SMALL_STATE(1967)] = 61991, - [SMALL_STATE(1968)] = 62044, - [SMALL_STATE(1969)] = 62099, - [SMALL_STATE(1970)] = 62128, - [SMALL_STATE(1971)] = 62161, - [SMALL_STATE(1972)] = 62190, - [SMALL_STATE(1973)] = 62221, - [SMALL_STATE(1974)] = 62250, - [SMALL_STATE(1975)] = 62303, - [SMALL_STATE(1976)] = 62334, - [SMALL_STATE(1977)] = 62363, - [SMALL_STATE(1978)] = 62392, - [SMALL_STATE(1979)] = 62425, - [SMALL_STATE(1980)] = 62454, - [SMALL_STATE(1981)] = 62487, - [SMALL_STATE(1982)] = 62518, - [SMALL_STATE(1983)] = 62549, - [SMALL_STATE(1984)] = 62592, - [SMALL_STATE(1985)] = 62621, - [SMALL_STATE(1986)] = 62649, - [SMALL_STATE(1987)] = 62677, - [SMALL_STATE(1988)] = 62705, - [SMALL_STATE(1989)] = 62735, - [SMALL_STATE(1990)] = 62763, - [SMALL_STATE(1991)] = 62807, - [SMALL_STATE(1992)] = 62835, - [SMALL_STATE(1993)] = 62863, - [SMALL_STATE(1994)] = 62891, - [SMALL_STATE(1995)] = 62919, - [SMALL_STATE(1996)] = 62947, - [SMALL_STATE(1997)] = 62975, - [SMALL_STATE(1998)] = 63003, - [SMALL_STATE(1999)] = 63031, - [SMALL_STATE(2000)] = 63059, - [SMALL_STATE(2001)] = 63087, - [SMALL_STATE(2002)] = 63115, - [SMALL_STATE(2003)] = 63143, - [SMALL_STATE(2004)] = 63171, - [SMALL_STATE(2005)] = 63199, - [SMALL_STATE(2006)] = 63227, - [SMALL_STATE(2007)] = 63255, - [SMALL_STATE(2008)] = 63283, - [SMALL_STATE(2009)] = 63311, - [SMALL_STATE(2010)] = 63339, - [SMALL_STATE(2011)] = 63367, - [SMALL_STATE(2012)] = 63395, - [SMALL_STATE(2013)] = 63423, - [SMALL_STATE(2014)] = 63453, - [SMALL_STATE(2015)] = 63481, - [SMALL_STATE(2016)] = 63509, - [SMALL_STATE(2017)] = 63537, - [SMALL_STATE(2018)] = 63572, - [SMALL_STATE(2019)] = 63623, - [SMALL_STATE(2020)] = 63652, - [SMALL_STATE(2021)] = 63681, - [SMALL_STATE(2022)] = 63712, - [SMALL_STATE(2023)] = 63744, - [SMALL_STATE(2024)] = 63776, - [SMALL_STATE(2025)] = 63808, - [SMALL_STATE(2026)] = 63838, - [SMALL_STATE(2027)] = 63870, - [SMALL_STATE(2028)] = 63902, - [SMALL_STATE(2029)] = 63934, - [SMALL_STATE(2030)] = 63966, - [SMALL_STATE(2031)] = 63998, - [SMALL_STATE(2032)] = 64030, - [SMALL_STATE(2033)] = 64074, - [SMALL_STATE(2034)] = 64106, - [SMALL_STATE(2035)] = 64134, - [SMALL_STATE(2036)] = 64166, - [SMALL_STATE(2037)] = 64198, - [SMALL_STATE(2038)] = 64226, - [SMALL_STATE(2039)] = 64271, - [SMALL_STATE(2040)] = 64316, - [SMALL_STATE(2041)] = 64361, - [SMALL_STATE(2042)] = 64406, - [SMALL_STATE(2043)] = 64443, - [SMALL_STATE(2044)] = 64488, - [SMALL_STATE(2045)] = 64533, - [SMALL_STATE(2046)] = 64578, - [SMALL_STATE(2047)] = 64623, - [SMALL_STATE(2048)] = 64668, - [SMALL_STATE(2049)] = 64713, - [SMALL_STATE(2050)] = 64758, - [SMALL_STATE(2051)] = 64803, - [SMALL_STATE(2052)] = 64848, - [SMALL_STATE(2053)] = 64893, - [SMALL_STATE(2054)] = 64938, - [SMALL_STATE(2055)] = 64976, - [SMALL_STATE(2056)] = 65014, - [SMALL_STATE(2057)] = 65042, - [SMALL_STATE(2058)] = 65072, - [SMALL_STATE(2059)] = 65106, - [SMALL_STATE(2060)] = 65148, - [SMALL_STATE(2061)] = 65176, - [SMALL_STATE(2062)] = 65218, - [SMALL_STATE(2063)] = 65256, - [SMALL_STATE(2064)] = 65296, - [SMALL_STATE(2065)] = 65320, - [SMALL_STATE(2066)] = 65344, - [SMALL_STATE(2067)] = 65372, - [SMALL_STATE(2068)] = 65400, - [SMALL_STATE(2069)] = 65428, - [SMALL_STATE(2070)] = 65456, - [SMALL_STATE(2071)] = 65498, - [SMALL_STATE(2072)] = 65540, - [SMALL_STATE(2073)] = 65570, - [SMALL_STATE(2074)] = 65612, - [SMALL_STATE(2075)] = 65640, - [SMALL_STATE(2076)] = 65682, - [SMALL_STATE(2077)] = 65710, - [SMALL_STATE(2078)] = 65752, - [SMALL_STATE(2079)] = 65776, - [SMALL_STATE(2080)] = 65804, - [SMALL_STATE(2081)] = 65832, - [SMALL_STATE(2082)] = 65866, - [SMALL_STATE(2083)] = 65906, - [SMALL_STATE(2084)] = 65934, - [SMALL_STATE(2085)] = 65972, - [SMALL_STATE(2086)] = 66012, - [SMALL_STATE(2087)] = 66050, - [SMALL_STATE(2088)] = 66074, - [SMALL_STATE(2089)] = 66104, - [SMALL_STATE(2090)] = 66134, - [SMALL_STATE(2091)] = 66172, - [SMALL_STATE(2092)] = 66210, - [SMALL_STATE(2093)] = 66248, - [SMALL_STATE(2094)] = 66272, - [SMALL_STATE(2095)] = 66310, - [SMALL_STATE(2096)] = 66338, - [SMALL_STATE(2097)] = 66361, - [SMALL_STATE(2098)] = 66392, - [SMALL_STATE(2099)] = 66415, - [SMALL_STATE(2100)] = 66438, - [SMALL_STATE(2101)] = 66461, - [SMALL_STATE(2102)] = 66484, - [SMALL_STATE(2103)] = 66507, - [SMALL_STATE(2104)] = 66530, - [SMALL_STATE(2105)] = 66553, - [SMALL_STATE(2106)] = 66576, - [SMALL_STATE(2107)] = 66599, - [SMALL_STATE(2108)] = 66622, - [SMALL_STATE(2109)] = 66645, - [SMALL_STATE(2110)] = 66682, - [SMALL_STATE(2111)] = 66713, - [SMALL_STATE(2112)] = 66736, - [SMALL_STATE(2113)] = 66767, - [SMALL_STATE(2114)] = 66790, - [SMALL_STATE(2115)] = 66813, - [SMALL_STATE(2116)] = 66836, - [SMALL_STATE(2117)] = 66859, - [SMALL_STATE(2118)] = 66896, - [SMALL_STATE(2119)] = 66929, - [SMALL_STATE(2120)] = 66952, - [SMALL_STATE(2121)] = 66975, - [SMALL_STATE(2122)] = 66998, - [SMALL_STATE(2123)] = 67021, - [SMALL_STATE(2124)] = 67058, - [SMALL_STATE(2125)] = 67081, - [SMALL_STATE(2126)] = 67116, - [SMALL_STATE(2127)] = 67139, - [SMALL_STATE(2128)] = 67170, - [SMALL_STATE(2129)] = 67193, - [SMALL_STATE(2130)] = 67216, - [SMALL_STATE(2131)] = 67257, - [SMALL_STATE(2132)] = 67280, - [SMALL_STATE(2133)] = 67315, - [SMALL_STATE(2134)] = 67356, - [SMALL_STATE(2135)] = 67379, - [SMALL_STATE(2136)] = 67402, - [SMALL_STATE(2137)] = 67425, - [SMALL_STATE(2138)] = 67448, - [SMALL_STATE(2139)] = 67485, - [SMALL_STATE(2140)] = 67520, - [SMALL_STATE(2141)] = 67543, - [SMALL_STATE(2142)] = 67584, - [SMALL_STATE(2143)] = 67607, - [SMALL_STATE(2144)] = 67630, - [SMALL_STATE(2145)] = 67653, - [SMALL_STATE(2146)] = 67676, - [SMALL_STATE(2147)] = 67717, - [SMALL_STATE(2148)] = 67740, - [SMALL_STATE(2149)] = 67778, - [SMALL_STATE(2150)] = 67804, - [SMALL_STATE(2151)] = 67842, - [SMALL_STATE(2152)] = 67874, - [SMALL_STATE(2153)] = 67906, - [SMALL_STATE(2154)] = 67938, - [SMALL_STATE(2155)] = 67962, - [SMALL_STATE(2156)] = 67994, - [SMALL_STATE(2157)] = 68028, - [SMALL_STATE(2158)] = 68066, - [SMALL_STATE(2159)] = 68090, - [SMALL_STATE(2160)] = 68114, - [SMALL_STATE(2161)] = 68142, - [SMALL_STATE(2162)] = 68166, - [SMALL_STATE(2163)] = 68190, - [SMALL_STATE(2164)] = 68224, - [SMALL_STATE(2165)] = 68252, - [SMALL_STATE(2166)] = 68280, - [SMALL_STATE(2167)] = 68306, - [SMALL_STATE(2168)] = 68338, - [SMALL_STATE(2169)] = 68370, - [SMALL_STATE(2170)] = 68396, - [SMALL_STATE(2171)] = 68424, - [SMALL_STATE(2172)] = 68450, - [SMALL_STATE(2173)] = 68488, - [SMALL_STATE(2174)] = 68516, - [SMALL_STATE(2175)] = 68554, - [SMALL_STATE(2176)] = 68586, - [SMALL_STATE(2177)] = 68624, - [SMALL_STATE(2178)] = 68656, - [SMALL_STATE(2179)] = 68694, - [SMALL_STATE(2180)] = 68732, - [SMALL_STATE(2181)] = 68770, - [SMALL_STATE(2182)] = 68798, - [SMALL_STATE(2183)] = 68836, - [SMALL_STATE(2184)] = 68874, - [SMALL_STATE(2185)] = 68902, - [SMALL_STATE(2186)] = 68940, - [SMALL_STATE(2187)] = 68972, - [SMALL_STATE(2188)] = 69010, - [SMALL_STATE(2189)] = 69046, - [SMALL_STATE(2190)] = 69084, - [SMALL_STATE(2191)] = 69122, - [SMALL_STATE(2192)] = 69154, - [SMALL_STATE(2193)] = 69186, - [SMALL_STATE(2194)] = 69218, - [SMALL_STATE(2195)] = 69250, - [SMALL_STATE(2196)] = 69288, - [SMALL_STATE(2197)] = 69323, - [SMALL_STATE(2198)] = 69358, - [SMALL_STATE(2199)] = 69393, - [SMALL_STATE(2200)] = 69414, - [SMALL_STATE(2201)] = 69449, - [SMALL_STATE(2202)] = 69484, - [SMALL_STATE(2203)] = 69519, - [SMALL_STATE(2204)] = 69554, - [SMALL_STATE(2205)] = 69589, - [SMALL_STATE(2206)] = 69624, - [SMALL_STATE(2207)] = 69657, - [SMALL_STATE(2208)] = 69692, - [SMALL_STATE(2209)] = 69727, - [SMALL_STATE(2210)] = 69760, - [SMALL_STATE(2211)] = 69793, - [SMALL_STATE(2212)] = 69828, - [SMALL_STATE(2213)] = 69863, - [SMALL_STATE(2214)] = 69898, - [SMALL_STATE(2215)] = 69933, - [SMALL_STATE(2216)] = 69968, - [SMALL_STATE(2217)] = 70003, - [SMALL_STATE(2218)] = 70038, - [SMALL_STATE(2219)] = 70073, - [SMALL_STATE(2220)] = 70094, - [SMALL_STATE(2221)] = 70115, - [SMALL_STATE(2222)] = 70150, - [SMALL_STATE(2223)] = 70185, - [SMALL_STATE(2224)] = 70220, - [SMALL_STATE(2225)] = 70241, - [SMALL_STATE(2226)] = 70276, - [SMALL_STATE(2227)] = 70311, - [SMALL_STATE(2228)] = 70332, - [SMALL_STATE(2229)] = 70353, - [SMALL_STATE(2230)] = 70388, - [SMALL_STATE(2231)] = 70423, - [SMALL_STATE(2232)] = 70458, - [SMALL_STATE(2233)] = 70493, - [SMALL_STATE(2234)] = 70518, - [SMALL_STATE(2235)] = 70553, - [SMALL_STATE(2236)] = 70588, - [SMALL_STATE(2237)] = 70613, - [SMALL_STATE(2238)] = 70648, - [SMALL_STATE(2239)] = 70673, - [SMALL_STATE(2240)] = 70702, - [SMALL_STATE(2241)] = 70737, - [SMALL_STATE(2242)] = 70772, - [SMALL_STATE(2243)] = 70805, - [SMALL_STATE(2244)] = 70840, - [SMALL_STATE(2245)] = 70875, - [SMALL_STATE(2246)] = 70902, - [SMALL_STATE(2247)] = 70937, - [SMALL_STATE(2248)] = 70970, - [SMALL_STATE(2249)] = 71005, - [SMALL_STATE(2250)] = 71040, - [SMALL_STATE(2251)] = 71075, - [SMALL_STATE(2252)] = 71110, - [SMALL_STATE(2253)] = 71140, - [SMALL_STATE(2254)] = 71172, - [SMALL_STATE(2255)] = 71204, - [SMALL_STATE(2256)] = 71236, - [SMALL_STATE(2257)] = 71258, - [SMALL_STATE(2258)] = 71290, - [SMALL_STATE(2259)] = 71312, - [SMALL_STATE(2260)] = 71344, - [SMALL_STATE(2261)] = 71376, - [SMALL_STATE(2262)] = 71408, - [SMALL_STATE(2263)] = 71438, - [SMALL_STATE(2264)] = 71468, - [SMALL_STATE(2265)] = 71500, - [SMALL_STATE(2266)] = 71522, - [SMALL_STATE(2267)] = 71552, - [SMALL_STATE(2268)] = 71584, - [SMALL_STATE(2269)] = 71616, - [SMALL_STATE(2270)] = 71646, - [SMALL_STATE(2271)] = 71674, - [SMALL_STATE(2272)] = 71706, - [SMALL_STATE(2273)] = 71738, - [SMALL_STATE(2274)] = 71770, - [SMALL_STATE(2275)] = 71802, - [SMALL_STATE(2276)] = 71834, - [SMALL_STATE(2277)] = 71866, - [SMALL_STATE(2278)] = 71898, - [SMALL_STATE(2279)] = 71930, - [SMALL_STATE(2280)] = 71960, - [SMALL_STATE(2281)] = 71988, - [SMALL_STATE(2282)] = 72020, - [SMALL_STATE(2283)] = 72052, - [SMALL_STATE(2284)] = 72084, - [SMALL_STATE(2285)] = 72116, - [SMALL_STATE(2286)] = 72144, - [SMALL_STATE(2287)] = 72170, - [SMALL_STATE(2288)] = 72196, - [SMALL_STATE(2289)] = 72218, - [SMALL_STATE(2290)] = 72246, - [SMALL_STATE(2291)] = 72276, - [SMALL_STATE(2292)] = 72306, - [SMALL_STATE(2293)] = 72338, - [SMALL_STATE(2294)] = 72370, - [SMALL_STATE(2295)] = 72402, - [SMALL_STATE(2296)] = 72434, - [SMALL_STATE(2297)] = 72466, - [SMALL_STATE(2298)] = 72498, - [SMALL_STATE(2299)] = 72530, - [SMALL_STATE(2300)] = 72558, - [SMALL_STATE(2301)] = 72584, - [SMALL_STATE(2302)] = 72616, - [SMALL_STATE(2303)] = 72646, - [SMALL_STATE(2304)] = 72678, - [SMALL_STATE(2305)] = 72700, - [SMALL_STATE(2306)] = 72732, - [SMALL_STATE(2307)] = 72764, - [SMALL_STATE(2308)] = 72790, - [SMALL_STATE(2309)] = 72812, - [SMALL_STATE(2310)] = 72842, - [SMALL_STATE(2311)] = 72871, - [SMALL_STATE(2312)] = 72900, - [SMALL_STATE(2313)] = 72929, - [SMALL_STATE(2314)] = 72958, - [SMALL_STATE(2315)] = 72987, - [SMALL_STATE(2316)] = 73010, - [SMALL_STATE(2317)] = 73039, - [SMALL_STATE(2318)] = 73068, - [SMALL_STATE(2319)] = 73097, - [SMALL_STATE(2320)] = 73126, - [SMALL_STATE(2321)] = 73155, - [SMALL_STATE(2322)] = 73176, - [SMALL_STATE(2323)] = 73205, - [SMALL_STATE(2324)] = 73234, - [SMALL_STATE(2325)] = 73263, - [SMALL_STATE(2326)] = 73292, - [SMALL_STATE(2327)] = 73321, - [SMALL_STATE(2328)] = 73350, - [SMALL_STATE(2329)] = 73379, - [SMALL_STATE(2330)] = 73402, - [SMALL_STATE(2331)] = 73425, - [SMALL_STATE(2332)] = 73454, - [SMALL_STATE(2333)] = 73483, - [SMALL_STATE(2334)] = 73506, - [SMALL_STATE(2335)] = 73533, - [SMALL_STATE(2336)] = 73560, - [SMALL_STATE(2337)] = 73583, - [SMALL_STATE(2338)] = 73612, - [SMALL_STATE(2339)] = 73641, - [SMALL_STATE(2340)] = 73670, - [SMALL_STATE(2341)] = 73699, - [SMALL_STATE(2342)] = 73728, - [SMALL_STATE(2343)] = 73755, - [SMALL_STATE(2344)] = 73784, - [SMALL_STATE(2345)] = 73813, - [SMALL_STATE(2346)] = 73842, - [SMALL_STATE(2347)] = 73871, - [SMALL_STATE(2348)] = 73890, - [SMALL_STATE(2349)] = 73919, - [SMALL_STATE(2350)] = 73946, - [SMALL_STATE(2351)] = 73975, - [SMALL_STATE(2352)] = 74004, - [SMALL_STATE(2353)] = 74033, - [SMALL_STATE(2354)] = 74062, - [SMALL_STATE(2355)] = 74091, - [SMALL_STATE(2356)] = 74120, - [SMALL_STATE(2357)] = 74149, - [SMALL_STATE(2358)] = 74178, - [SMALL_STATE(2359)] = 74201, - [SMALL_STATE(2360)] = 74230, - [SMALL_STATE(2361)] = 74259, - [SMALL_STATE(2362)] = 74288, - [SMALL_STATE(2363)] = 74309, - [SMALL_STATE(2364)] = 74338, - [SMALL_STATE(2365)] = 74359, - [SMALL_STATE(2366)] = 74388, - [SMALL_STATE(2367)] = 74411, - [SMALL_STATE(2368)] = 74434, - [SMALL_STATE(2369)] = 74463, - [SMALL_STATE(2370)] = 74492, - [SMALL_STATE(2371)] = 74521, - [SMALL_STATE(2372)] = 74550, - [SMALL_STATE(2373)] = 74571, - [SMALL_STATE(2374)] = 74600, - [SMALL_STATE(2375)] = 74629, - [SMALL_STATE(2376)] = 74658, - [SMALL_STATE(2377)] = 74687, - [SMALL_STATE(2378)] = 74712, - [SMALL_STATE(2379)] = 74739, - [SMALL_STATE(2380)] = 74768, - [SMALL_STATE(2381)] = 74797, - [SMALL_STATE(2382)] = 74822, - [SMALL_STATE(2383)] = 74851, - [SMALL_STATE(2384)] = 74880, - [SMALL_STATE(2385)] = 74905, - [SMALL_STATE(2386)] = 74934, - [SMALL_STATE(2387)] = 74963, - [SMALL_STATE(2388)] = 74982, - [SMALL_STATE(2389)] = 75011, - [SMALL_STATE(2390)] = 75032, - [SMALL_STATE(2391)] = 75061, - [SMALL_STATE(2392)] = 75082, - [SMALL_STATE(2393)] = 75103, - [SMALL_STATE(2394)] = 75124, - [SMALL_STATE(2395)] = 75153, - [SMALL_STATE(2396)] = 75180, - [SMALL_STATE(2397)] = 75209, - [SMALL_STATE(2398)] = 75232, - [SMALL_STATE(2399)] = 75255, - [SMALL_STATE(2400)] = 75284, - [SMALL_STATE(2401)] = 75307, - [SMALL_STATE(2402)] = 75336, - [SMALL_STATE(2403)] = 75359, - [SMALL_STATE(2404)] = 75388, - [SMALL_STATE(2405)] = 75411, - [SMALL_STATE(2406)] = 75434, - [SMALL_STATE(2407)] = 75459, - [SMALL_STATE(2408)] = 75488, - [SMALL_STATE(2409)] = 75517, - [SMALL_STATE(2410)] = 75543, - [SMALL_STATE(2411)] = 75563, - [SMALL_STATE(2412)] = 75589, - [SMALL_STATE(2413)] = 75615, - [SMALL_STATE(2414)] = 75641, - [SMALL_STATE(2415)] = 75665, - [SMALL_STATE(2416)] = 75691, - [SMALL_STATE(2417)] = 75717, - [SMALL_STATE(2418)] = 75743, - [SMALL_STATE(2419)] = 75769, - [SMALL_STATE(2420)] = 75795, - [SMALL_STATE(2421)] = 75819, - [SMALL_STATE(2422)] = 75845, - [SMALL_STATE(2423)] = 75871, - [SMALL_STATE(2424)] = 75897, - [SMALL_STATE(2425)] = 75923, - [SMALL_STATE(2426)] = 75949, - [SMALL_STATE(2427)] = 75973, - [SMALL_STATE(2428)] = 75999, - [SMALL_STATE(2429)] = 76025, - [SMALL_STATE(2430)] = 76049, - [SMALL_STATE(2431)] = 76071, - [SMALL_STATE(2432)] = 76097, - [SMALL_STATE(2433)] = 76115, - [SMALL_STATE(2434)] = 76139, - [SMALL_STATE(2435)] = 76165, - [SMALL_STATE(2436)] = 76187, - [SMALL_STATE(2437)] = 76213, - [SMALL_STATE(2438)] = 76239, - [SMALL_STATE(2439)] = 76265, - [SMALL_STATE(2440)] = 76289, - [SMALL_STATE(2441)] = 76311, - [SMALL_STATE(2442)] = 76337, - [SMALL_STATE(2443)] = 76363, - [SMALL_STATE(2444)] = 76389, - [SMALL_STATE(2445)] = 76413, - [SMALL_STATE(2446)] = 76431, - [SMALL_STATE(2447)] = 76453, - [SMALL_STATE(2448)] = 76475, - [SMALL_STATE(2449)] = 76501, - [SMALL_STATE(2450)] = 76527, - [SMALL_STATE(2451)] = 76553, - [SMALL_STATE(2452)] = 76579, - [SMALL_STATE(2453)] = 76597, - [SMALL_STATE(2454)] = 76615, - [SMALL_STATE(2455)] = 76641, - [SMALL_STATE(2456)] = 76667, - [SMALL_STATE(2457)] = 76693, - [SMALL_STATE(2458)] = 76719, - [SMALL_STATE(2459)] = 76745, - [SMALL_STATE(2460)] = 76771, - [SMALL_STATE(2461)] = 76789, - [SMALL_STATE(2462)] = 76815, - [SMALL_STATE(2463)] = 76833, - [SMALL_STATE(2464)] = 76851, - [SMALL_STATE(2465)] = 76869, - [SMALL_STATE(2466)] = 76895, - [SMALL_STATE(2467)] = 76921, - [SMALL_STATE(2468)] = 76939, - [SMALL_STATE(2469)] = 76957, - [SMALL_STATE(2470)] = 76975, - [SMALL_STATE(2471)] = 77001, - [SMALL_STATE(2472)] = 77019, - [SMALL_STATE(2473)] = 77045, - [SMALL_STATE(2474)] = 77063, - [SMALL_STATE(2475)] = 77081, - [SMALL_STATE(2476)] = 77105, - [SMALL_STATE(2477)] = 77129, - [SMALL_STATE(2478)] = 77151, - [SMALL_STATE(2479)] = 77177, - [SMALL_STATE(2480)] = 77195, - [SMALL_STATE(2481)] = 77213, - [SMALL_STATE(2482)] = 77239, - [SMALL_STATE(2483)] = 77257, - [SMALL_STATE(2484)] = 77275, - [SMALL_STATE(2485)] = 77301, - [SMALL_STATE(2486)] = 77327, - [SMALL_STATE(2487)] = 77353, - [SMALL_STATE(2488)] = 77379, - [SMALL_STATE(2489)] = 77399, - [SMALL_STATE(2490)] = 77421, - [SMALL_STATE(2491)] = 77447, - [SMALL_STATE(2492)] = 77467, - [SMALL_STATE(2493)] = 77489, - [SMALL_STATE(2494)] = 77515, - [SMALL_STATE(2495)] = 77541, - [SMALL_STATE(2496)] = 77565, - [SMALL_STATE(2497)] = 77583, - [SMALL_STATE(2498)] = 77601, - [SMALL_STATE(2499)] = 77619, - [SMALL_STATE(2500)] = 77643, - [SMALL_STATE(2501)] = 77665, - [SMALL_STATE(2502)] = 77689, - [SMALL_STATE(2503)] = 77713, - [SMALL_STATE(2504)] = 77739, - [SMALL_STATE(2505)] = 77761, - [SMALL_STATE(2506)] = 77779, - [SMALL_STATE(2507)] = 77797, - [SMALL_STATE(2508)] = 77823, - [SMALL_STATE(2509)] = 77841, - [SMALL_STATE(2510)] = 77865, - [SMALL_STATE(2511)] = 77889, - [SMALL_STATE(2512)] = 77915, - [SMALL_STATE(2513)] = 77941, - [SMALL_STATE(2514)] = 77959, - [SMALL_STATE(2515)] = 77982, - [SMALL_STATE(2516)] = 78003, - [SMALL_STATE(2517)] = 78024, - [SMALL_STATE(2518)] = 78047, - [SMALL_STATE(2519)] = 78066, - [SMALL_STATE(2520)] = 78089, - [SMALL_STATE(2521)] = 78110, - [SMALL_STATE(2522)] = 78133, - [SMALL_STATE(2523)] = 78156, - [SMALL_STATE(2524)] = 78179, - [SMALL_STATE(2525)] = 78200, - [SMALL_STATE(2526)] = 78223, - [SMALL_STATE(2527)] = 78246, - [SMALL_STATE(2528)] = 78269, - [SMALL_STATE(2529)] = 78290, - [SMALL_STATE(2530)] = 78311, - [SMALL_STATE(2531)] = 78330, - [SMALL_STATE(2532)] = 78353, - [SMALL_STATE(2533)] = 78372, - [SMALL_STATE(2534)] = 78389, - [SMALL_STATE(2535)] = 78412, - [SMALL_STATE(2536)] = 78435, - [SMALL_STATE(2537)] = 78458, - [SMALL_STATE(2538)] = 78479, - [SMALL_STATE(2539)] = 78500, - [SMALL_STATE(2540)] = 78523, - [SMALL_STATE(2541)] = 78546, - [SMALL_STATE(2542)] = 78569, - [SMALL_STATE(2543)] = 78592, - [SMALL_STATE(2544)] = 78615, - [SMALL_STATE(2545)] = 78638, - [SMALL_STATE(2546)] = 78661, - [SMALL_STATE(2547)] = 78682, - [SMALL_STATE(2548)] = 78705, - [SMALL_STATE(2549)] = 78728, - [SMALL_STATE(2550)] = 78751, - [SMALL_STATE(2551)] = 78774, - [SMALL_STATE(2552)] = 78797, - [SMALL_STATE(2553)] = 78820, - [SMALL_STATE(2554)] = 78843, - [SMALL_STATE(2555)] = 78866, - [SMALL_STATE(2556)] = 78889, - [SMALL_STATE(2557)] = 78912, - [SMALL_STATE(2558)] = 78935, - [SMALL_STATE(2559)] = 78958, - [SMALL_STATE(2560)] = 78981, - [SMALL_STATE(2561)] = 79004, - [SMALL_STATE(2562)] = 79027, - [SMALL_STATE(2563)] = 79050, - [SMALL_STATE(2564)] = 79073, - [SMALL_STATE(2565)] = 79094, - [SMALL_STATE(2566)] = 79117, - [SMALL_STATE(2567)] = 79140, - [SMALL_STATE(2568)] = 79163, - [SMALL_STATE(2569)] = 79186, - [SMALL_STATE(2570)] = 79209, - [SMALL_STATE(2571)] = 79232, - [SMALL_STATE(2572)] = 79255, - [SMALL_STATE(2573)] = 79276, - [SMALL_STATE(2574)] = 79299, - [SMALL_STATE(2575)] = 79322, - [SMALL_STATE(2576)] = 79345, - [SMALL_STATE(2577)] = 79368, - [SMALL_STATE(2578)] = 79391, - [SMALL_STATE(2579)] = 79410, - [SMALL_STATE(2580)] = 79433, - [SMALL_STATE(2581)] = 79450, - [SMALL_STATE(2582)] = 79473, - [SMALL_STATE(2583)] = 79496, - [SMALL_STATE(2584)] = 79519, - [SMALL_STATE(2585)] = 79542, - [SMALL_STATE(2586)] = 79565, - [SMALL_STATE(2587)] = 79588, - [SMALL_STATE(2588)] = 79611, - [SMALL_STATE(2589)] = 79634, - [SMALL_STATE(2590)] = 79657, - [SMALL_STATE(2591)] = 79680, - [SMALL_STATE(2592)] = 79703, - [SMALL_STATE(2593)] = 79726, - [SMALL_STATE(2594)] = 79749, - [SMALL_STATE(2595)] = 79768, - [SMALL_STATE(2596)] = 79787, - [SMALL_STATE(2597)] = 79810, - [SMALL_STATE(2598)] = 79833, - [SMALL_STATE(2599)] = 79854, - [SMALL_STATE(2600)] = 79877, - [SMALL_STATE(2601)] = 79900, - [SMALL_STATE(2602)] = 79923, - [SMALL_STATE(2603)] = 79946, - [SMALL_STATE(2604)] = 79969, - [SMALL_STATE(2605)] = 79992, - [SMALL_STATE(2606)] = 80015, - [SMALL_STATE(2607)] = 80036, - [SMALL_STATE(2608)] = 80059, - [SMALL_STATE(2609)] = 80082, - [SMALL_STATE(2610)] = 80105, - [SMALL_STATE(2611)] = 80128, - [SMALL_STATE(2612)] = 80151, - [SMALL_STATE(2613)] = 80170, - [SMALL_STATE(2614)] = 80193, - [SMALL_STATE(2615)] = 80212, - [SMALL_STATE(2616)] = 80235, - [SMALL_STATE(2617)] = 80258, - [SMALL_STATE(2618)] = 80281, - [SMALL_STATE(2619)] = 80304, - [SMALL_STATE(2620)] = 80325, - [SMALL_STATE(2621)] = 80348, - [SMALL_STATE(2622)] = 80371, - [SMALL_STATE(2623)] = 80394, - [SMALL_STATE(2624)] = 80415, - [SMALL_STATE(2625)] = 80438, - [SMALL_STATE(2626)] = 80461, - [SMALL_STATE(2627)] = 80484, - [SMALL_STATE(2628)] = 80507, - [SMALL_STATE(2629)] = 80526, - [SMALL_STATE(2630)] = 80549, - [SMALL_STATE(2631)] = 80570, - [SMALL_STATE(2632)] = 80591, - [SMALL_STATE(2633)] = 80610, - [SMALL_STATE(2634)] = 80633, - [SMALL_STATE(2635)] = 80656, - [SMALL_STATE(2636)] = 80677, - [SMALL_STATE(2637)] = 80694, - [SMALL_STATE(2638)] = 80717, - [SMALL_STATE(2639)] = 80736, - [SMALL_STATE(2640)] = 80759, - [SMALL_STATE(2641)] = 80782, - [SMALL_STATE(2642)] = 80801, - [SMALL_STATE(2643)] = 80824, - [SMALL_STATE(2644)] = 80847, - [SMALL_STATE(2645)] = 80870, - [SMALL_STATE(2646)] = 80893, - [SMALL_STATE(2647)] = 80916, - [SMALL_STATE(2648)] = 80939, - [SMALL_STATE(2649)] = 80962, - [SMALL_STATE(2650)] = 80985, - [SMALL_STATE(2651)] = 81008, - [SMALL_STATE(2652)] = 81031, - [SMALL_STATE(2653)] = 81054, - [SMALL_STATE(2654)] = 81071, - [SMALL_STATE(2655)] = 81094, - [SMALL_STATE(2656)] = 81117, - [SMALL_STATE(2657)] = 81140, - [SMALL_STATE(2658)] = 81161, - [SMALL_STATE(2659)] = 81184, - [SMALL_STATE(2660)] = 81207, - [SMALL_STATE(2661)] = 81230, - [SMALL_STATE(2662)] = 81249, - [SMALL_STATE(2663)] = 81268, - [SMALL_STATE(2664)] = 81291, - [SMALL_STATE(2665)] = 81308, - [SMALL_STATE(2666)] = 81329, - [SMALL_STATE(2667)] = 81352, - [SMALL_STATE(2668)] = 81373, - [SMALL_STATE(2669)] = 81396, - [SMALL_STATE(2670)] = 81419, - [SMALL_STATE(2671)] = 81442, - [SMALL_STATE(2672)] = 81465, - [SMALL_STATE(2673)] = 81488, - [SMALL_STATE(2674)] = 81507, - [SMALL_STATE(2675)] = 81530, - [SMALL_STATE(2676)] = 81547, - [SMALL_STATE(2677)] = 81570, - [SMALL_STATE(2678)] = 81593, - [SMALL_STATE(2679)] = 81616, - [SMALL_STATE(2680)] = 81639, - [SMALL_STATE(2681)] = 81662, - [SMALL_STATE(2682)] = 81685, - [SMALL_STATE(2683)] = 81708, - [SMALL_STATE(2684)] = 81727, - [SMALL_STATE(2685)] = 81750, - [SMALL_STATE(2686)] = 81769, - [SMALL_STATE(2687)] = 81792, - [SMALL_STATE(2688)] = 81815, - [SMALL_STATE(2689)] = 81838, - [SMALL_STATE(2690)] = 81857, - [SMALL_STATE(2691)] = 81876, - [SMALL_STATE(2692)] = 81895, - [SMALL_STATE(2693)] = 81918, - [SMALL_STATE(2694)] = 81941, - [SMALL_STATE(2695)] = 81964, - [SMALL_STATE(2696)] = 81987, - [SMALL_STATE(2697)] = 82010, - [SMALL_STATE(2698)] = 82033, - [SMALL_STATE(2699)] = 82056, - [SMALL_STATE(2700)] = 82075, - [SMALL_STATE(2701)] = 82098, - [SMALL_STATE(2702)] = 82121, - [SMALL_STATE(2703)] = 82142, - [SMALL_STATE(2704)] = 82165, - [SMALL_STATE(2705)] = 82188, - [SMALL_STATE(2706)] = 82211, - [SMALL_STATE(2707)] = 82230, - [SMALL_STATE(2708)] = 82253, - [SMALL_STATE(2709)] = 82276, - [SMALL_STATE(2710)] = 82295, - [SMALL_STATE(2711)] = 82318, - [SMALL_STATE(2712)] = 82341, - [SMALL_STATE(2713)] = 82360, - [SMALL_STATE(2714)] = 82381, - [SMALL_STATE(2715)] = 82404, - [SMALL_STATE(2716)] = 82427, - [SMALL_STATE(2717)] = 82450, - [SMALL_STATE(2718)] = 82471, - [SMALL_STATE(2719)] = 82490, - [SMALL_STATE(2720)] = 82511, - [SMALL_STATE(2721)] = 82534, - [SMALL_STATE(2722)] = 82555, - [SMALL_STATE(2723)] = 82576, - [SMALL_STATE(2724)] = 82599, - [SMALL_STATE(2725)] = 82622, - [SMALL_STATE(2726)] = 82639, - [SMALL_STATE(2727)] = 82656, - [SMALL_STATE(2728)] = 82679, - [SMALL_STATE(2729)] = 82702, - [SMALL_STATE(2730)] = 82723, - [SMALL_STATE(2731)] = 82746, - [SMALL_STATE(2732)] = 82769, - [SMALL_STATE(2733)] = 82792, - [SMALL_STATE(2734)] = 82815, - [SMALL_STATE(2735)] = 82834, - [SMALL_STATE(2736)] = 82853, - [SMALL_STATE(2737)] = 82876, - [SMALL_STATE(2738)] = 82899, - [SMALL_STATE(2739)] = 82922, - [SMALL_STATE(2740)] = 82945, - [SMALL_STATE(2741)] = 82968, - [SMALL_STATE(2742)] = 82991, - [SMALL_STATE(2743)] = 83014, - [SMALL_STATE(2744)] = 83037, - [SMALL_STATE(2745)] = 83060, - [SMALL_STATE(2746)] = 83083, - [SMALL_STATE(2747)] = 83106, - [SMALL_STATE(2748)] = 83129, - [SMALL_STATE(2749)] = 83152, - [SMALL_STATE(2750)] = 83175, - [SMALL_STATE(2751)] = 83198, - [SMALL_STATE(2752)] = 83221, - [SMALL_STATE(2753)] = 83244, - [SMALL_STATE(2754)] = 83263, - [SMALL_STATE(2755)] = 83286, - [SMALL_STATE(2756)] = 83309, - [SMALL_STATE(2757)] = 83332, - [SMALL_STATE(2758)] = 83348, - [SMALL_STATE(2759)] = 83368, - [SMALL_STATE(2760)] = 83388, - [SMALL_STATE(2761)] = 83408, - [SMALL_STATE(2762)] = 83428, - [SMALL_STATE(2763)] = 83448, - [SMALL_STATE(2764)] = 83464, - [SMALL_STATE(2765)] = 83484, - [SMALL_STATE(2766)] = 83500, - [SMALL_STATE(2767)] = 83520, - [SMALL_STATE(2768)] = 83538, - [SMALL_STATE(2769)] = 83558, - [SMALL_STATE(2770)] = 83576, - [SMALL_STATE(2771)] = 83592, - [SMALL_STATE(2772)] = 83612, - [SMALL_STATE(2773)] = 83628, - [SMALL_STATE(2774)] = 83648, - [SMALL_STATE(2775)] = 83668, - [SMALL_STATE(2776)] = 83688, - [SMALL_STATE(2777)] = 83708, - [SMALL_STATE(2778)] = 83728, - [SMALL_STATE(2779)] = 83744, - [SMALL_STATE(2780)] = 83764, - [SMALL_STATE(2781)] = 83784, - [SMALL_STATE(2782)] = 83802, - [SMALL_STATE(2783)] = 83822, - [SMALL_STATE(2784)] = 83840, - [SMALL_STATE(2785)] = 83860, - [SMALL_STATE(2786)] = 83876, - [SMALL_STATE(2787)] = 83892, - [SMALL_STATE(2788)] = 83912, - [SMALL_STATE(2789)] = 83930, - [SMALL_STATE(2790)] = 83950, - [SMALL_STATE(2791)] = 83970, - [SMALL_STATE(2792)] = 83986, - [SMALL_STATE(2793)] = 84002, - [SMALL_STATE(2794)] = 84022, - [SMALL_STATE(2795)] = 84038, - [SMALL_STATE(2796)] = 84058, - [SMALL_STATE(2797)] = 84078, - [SMALL_STATE(2798)] = 84098, - [SMALL_STATE(2799)] = 84118, - [SMALL_STATE(2800)] = 84138, - [SMALL_STATE(2801)] = 84158, - [SMALL_STATE(2802)] = 84178, - [SMALL_STATE(2803)] = 84198, - [SMALL_STATE(2804)] = 84218, - [SMALL_STATE(2805)] = 84234, - [SMALL_STATE(2806)] = 84254, - [SMALL_STATE(2807)] = 84274, - [SMALL_STATE(2808)] = 84292, - [SMALL_STATE(2809)] = 84312, - [SMALL_STATE(2810)] = 84328, - [SMALL_STATE(2811)] = 84348, - [SMALL_STATE(2812)] = 84368, - [SMALL_STATE(2813)] = 84388, - [SMALL_STATE(2814)] = 84408, - [SMALL_STATE(2815)] = 84424, - [SMALL_STATE(2816)] = 84440, - [SMALL_STATE(2817)] = 84456, - [SMALL_STATE(2818)] = 84472, - [SMALL_STATE(2819)] = 84488, - [SMALL_STATE(2820)] = 84504, - [SMALL_STATE(2821)] = 84520, - [SMALL_STATE(2822)] = 84540, - [SMALL_STATE(2823)] = 84560, - [SMALL_STATE(2824)] = 84580, - [SMALL_STATE(2825)] = 84600, - [SMALL_STATE(2826)] = 84620, - [SMALL_STATE(2827)] = 84640, - [SMALL_STATE(2828)] = 84660, - [SMALL_STATE(2829)] = 84680, - [SMALL_STATE(2830)] = 84700, - [SMALL_STATE(2831)] = 84720, - [SMALL_STATE(2832)] = 84740, - [SMALL_STATE(2833)] = 84756, - [SMALL_STATE(2834)] = 84776, - [SMALL_STATE(2835)] = 84796, - [SMALL_STATE(2836)] = 84816, - [SMALL_STATE(2837)] = 84836, - [SMALL_STATE(2838)] = 84856, - [SMALL_STATE(2839)] = 84876, - [SMALL_STATE(2840)] = 84896, - [SMALL_STATE(2841)] = 84914, - [SMALL_STATE(2842)] = 84934, - [SMALL_STATE(2843)] = 84954, - [SMALL_STATE(2844)] = 84974, - [SMALL_STATE(2845)] = 84994, - [SMALL_STATE(2846)] = 85014, - [SMALL_STATE(2847)] = 85034, - [SMALL_STATE(2848)] = 85054, - [SMALL_STATE(2849)] = 85074, - [SMALL_STATE(2850)] = 85094, - [SMALL_STATE(2851)] = 85114, - [SMALL_STATE(2852)] = 85134, - [SMALL_STATE(2853)] = 85150, - [SMALL_STATE(2854)] = 85170, - [SMALL_STATE(2855)] = 85190, - [SMALL_STATE(2856)] = 85206, - [SMALL_STATE(2857)] = 85224, - [SMALL_STATE(2858)] = 85244, - [SMALL_STATE(2859)] = 85264, - [SMALL_STATE(2860)] = 85282, - [SMALL_STATE(2861)] = 85302, - [SMALL_STATE(2862)] = 85322, - [SMALL_STATE(2863)] = 85338, - [SMALL_STATE(2864)] = 85358, - [SMALL_STATE(2865)] = 85374, - [SMALL_STATE(2866)] = 85394, - [SMALL_STATE(2867)] = 85414, - [SMALL_STATE(2868)] = 85434, - [SMALL_STATE(2869)] = 85454, - [SMALL_STATE(2870)] = 85474, - [SMALL_STATE(2871)] = 85494, - [SMALL_STATE(2872)] = 85514, - [SMALL_STATE(2873)] = 85530, - [SMALL_STATE(2874)] = 85546, - [SMALL_STATE(2875)] = 85566, - [SMALL_STATE(2876)] = 85586, - [SMALL_STATE(2877)] = 85602, - [SMALL_STATE(2878)] = 85618, - [SMALL_STATE(2879)] = 85638, - [SMALL_STATE(2880)] = 85658, - [SMALL_STATE(2881)] = 85678, - [SMALL_STATE(2882)] = 85698, - [SMALL_STATE(2883)] = 85714, - [SMALL_STATE(2884)] = 85732, - [SMALL_STATE(2885)] = 85748, - [SMALL_STATE(2886)] = 85764, - [SMALL_STATE(2887)] = 85780, - [SMALL_STATE(2888)] = 85798, - [SMALL_STATE(2889)] = 85818, - [SMALL_STATE(2890)] = 85838, - [SMALL_STATE(2891)] = 85858, - [SMALL_STATE(2892)] = 85878, - [SMALL_STATE(2893)] = 85898, - [SMALL_STATE(2894)] = 85918, - [SMALL_STATE(2895)] = 85938, - [SMALL_STATE(2896)] = 85958, - [SMALL_STATE(2897)] = 85978, - [SMALL_STATE(2898)] = 85998, - [SMALL_STATE(2899)] = 86018, - [SMALL_STATE(2900)] = 86038, - [SMALL_STATE(2901)] = 86058, - [SMALL_STATE(2902)] = 86078, - [SMALL_STATE(2903)] = 86096, - [SMALL_STATE(2904)] = 86116, - [SMALL_STATE(2905)] = 86136, - [SMALL_STATE(2906)] = 86156, - [SMALL_STATE(2907)] = 86176, - [SMALL_STATE(2908)] = 86196, - [SMALL_STATE(2909)] = 86216, - [SMALL_STATE(2910)] = 86234, - [SMALL_STATE(2911)] = 86250, - [SMALL_STATE(2912)] = 86270, - [SMALL_STATE(2913)] = 86290, - [SMALL_STATE(2914)] = 86308, - [SMALL_STATE(2915)] = 86328, - [SMALL_STATE(2916)] = 86344, - [SMALL_STATE(2917)] = 86362, - [SMALL_STATE(2918)] = 86382, - [SMALL_STATE(2919)] = 86398, - [SMALL_STATE(2920)] = 86414, - [SMALL_STATE(2921)] = 86434, - [SMALL_STATE(2922)] = 86454, - [SMALL_STATE(2923)] = 86474, - [SMALL_STATE(2924)] = 86494, - [SMALL_STATE(2925)] = 86514, - [SMALL_STATE(2926)] = 86534, - [SMALL_STATE(2927)] = 86554, - [SMALL_STATE(2928)] = 86574, - [SMALL_STATE(2929)] = 86594, - [SMALL_STATE(2930)] = 86612, - [SMALL_STATE(2931)] = 86630, - [SMALL_STATE(2932)] = 86650, - [SMALL_STATE(2933)] = 86670, - [SMALL_STATE(2934)] = 86688, - [SMALL_STATE(2935)] = 86708, - [SMALL_STATE(2936)] = 86724, - [SMALL_STATE(2937)] = 86740, - [SMALL_STATE(2938)] = 86760, - [SMALL_STATE(2939)] = 86780, - [SMALL_STATE(2940)] = 86800, - [SMALL_STATE(2941)] = 86820, - [SMALL_STATE(2942)] = 86838, - [SMALL_STATE(2943)] = 86854, - [SMALL_STATE(2944)] = 86874, - [SMALL_STATE(2945)] = 86894, - [SMALL_STATE(2946)] = 86912, - [SMALL_STATE(2947)] = 86932, - [SMALL_STATE(2948)] = 86952, - [SMALL_STATE(2949)] = 86972, - [SMALL_STATE(2950)] = 86992, - [SMALL_STATE(2951)] = 87012, - [SMALL_STATE(2952)] = 87032, - [SMALL_STATE(2953)] = 87052, - [SMALL_STATE(2954)] = 87072, - [SMALL_STATE(2955)] = 87088, - [SMALL_STATE(2956)] = 87108, - [SMALL_STATE(2957)] = 87128, - [SMALL_STATE(2958)] = 87148, - [SMALL_STATE(2959)] = 87168, - [SMALL_STATE(2960)] = 87188, - [SMALL_STATE(2961)] = 87208, - [SMALL_STATE(2962)] = 87228, - [SMALL_STATE(2963)] = 87246, - [SMALL_STATE(2964)] = 87266, - [SMALL_STATE(2965)] = 87284, - [SMALL_STATE(2966)] = 87304, - [SMALL_STATE(2967)] = 87324, - [SMALL_STATE(2968)] = 87344, - [SMALL_STATE(2969)] = 87360, - [SMALL_STATE(2970)] = 87380, - [SMALL_STATE(2971)] = 87400, - [SMALL_STATE(2972)] = 87420, - [SMALL_STATE(2973)] = 87436, - [SMALL_STATE(2974)] = 87456, - [SMALL_STATE(2975)] = 87476, - [SMALL_STATE(2976)] = 87492, - [SMALL_STATE(2977)] = 87512, - [SMALL_STATE(2978)] = 87532, - [SMALL_STATE(2979)] = 87548, - [SMALL_STATE(2980)] = 87568, - [SMALL_STATE(2981)] = 87586, - [SMALL_STATE(2982)] = 87606, - [SMALL_STATE(2983)] = 87626, - [SMALL_STATE(2984)] = 87646, - [SMALL_STATE(2985)] = 87662, - [SMALL_STATE(2986)] = 87678, - [SMALL_STATE(2987)] = 87694, - [SMALL_STATE(2988)] = 87714, - [SMALL_STATE(2989)] = 87730, - [SMALL_STATE(2990)] = 87748, - [SMALL_STATE(2991)] = 87766, - [SMALL_STATE(2992)] = 87786, - [SMALL_STATE(2993)] = 87804, - [SMALL_STATE(2994)] = 87824, - [SMALL_STATE(2995)] = 87844, - [SMALL_STATE(2996)] = 87864, - [SMALL_STATE(2997)] = 87880, - [SMALL_STATE(2998)] = 87898, - [SMALL_STATE(2999)] = 87918, - [SMALL_STATE(3000)] = 87938, - [SMALL_STATE(3001)] = 87956, - [SMALL_STATE(3002)] = 87974, - [SMALL_STATE(3003)] = 87992, - [SMALL_STATE(3004)] = 88010, - [SMALL_STATE(3005)] = 88030, - [SMALL_STATE(3006)] = 88046, - [SMALL_STATE(3007)] = 88062, - [SMALL_STATE(3008)] = 88080, - [SMALL_STATE(3009)] = 88096, - [SMALL_STATE(3010)] = 88116, - [SMALL_STATE(3011)] = 88136, - [SMALL_STATE(3012)] = 88152, - [SMALL_STATE(3013)] = 88172, - [SMALL_STATE(3014)] = 88192, - [SMALL_STATE(3015)] = 88210, - [SMALL_STATE(3016)] = 88228, - [SMALL_STATE(3017)] = 88248, - [SMALL_STATE(3018)] = 88268, - [SMALL_STATE(3019)] = 88288, - [SMALL_STATE(3020)] = 88308, - [SMALL_STATE(3021)] = 88326, - [SMALL_STATE(3022)] = 88342, - [SMALL_STATE(3023)] = 88362, - [SMALL_STATE(3024)] = 88380, - [SMALL_STATE(3025)] = 88400, - [SMALL_STATE(3026)] = 88420, - [SMALL_STATE(3027)] = 88440, - [SMALL_STATE(3028)] = 88460, - [SMALL_STATE(3029)] = 88476, - [SMALL_STATE(3030)] = 88494, - [SMALL_STATE(3031)] = 88514, - [SMALL_STATE(3032)] = 88534, - [SMALL_STATE(3033)] = 88554, - [SMALL_STATE(3034)] = 88574, - [SMALL_STATE(3035)] = 88594, - [SMALL_STATE(3036)] = 88612, - [SMALL_STATE(3037)] = 88632, - [SMALL_STATE(3038)] = 88650, - [SMALL_STATE(3039)] = 88670, - [SMALL_STATE(3040)] = 88688, - [SMALL_STATE(3041)] = 88708, - [SMALL_STATE(3042)] = 88728, - [SMALL_STATE(3043)] = 88748, - [SMALL_STATE(3044)] = 88766, - [SMALL_STATE(3045)] = 88782, - [SMALL_STATE(3046)] = 88802, - [SMALL_STATE(3047)] = 88822, - [SMALL_STATE(3048)] = 88842, - [SMALL_STATE(3049)] = 88862, - [SMALL_STATE(3050)] = 88882, - [SMALL_STATE(3051)] = 88902, - [SMALL_STATE(3052)] = 88920, - [SMALL_STATE(3053)] = 88940, - [SMALL_STATE(3054)] = 88960, - [SMALL_STATE(3055)] = 88980, - [SMALL_STATE(3056)] = 89000, - [SMALL_STATE(3057)] = 89020, - [SMALL_STATE(3058)] = 89037, - [SMALL_STATE(3059)] = 89052, - [SMALL_STATE(3060)] = 89069, - [SMALL_STATE(3061)] = 89086, - [SMALL_STATE(3062)] = 89103, - [SMALL_STATE(3063)] = 89120, - [SMALL_STATE(3064)] = 89137, - [SMALL_STATE(3065)] = 89154, - [SMALL_STATE(3066)] = 89171, - [SMALL_STATE(3067)] = 89188, - [SMALL_STATE(3068)] = 89203, - [SMALL_STATE(3069)] = 89220, - [SMALL_STATE(3070)] = 89237, - [SMALL_STATE(3071)] = 89254, - [SMALL_STATE(3072)] = 89271, - [SMALL_STATE(3073)] = 89286, - [SMALL_STATE(3074)] = 89303, - [SMALL_STATE(3075)] = 89320, - [SMALL_STATE(3076)] = 89335, - [SMALL_STATE(3077)] = 89352, - [SMALL_STATE(3078)] = 89369, - [SMALL_STATE(3079)] = 89384, - [SMALL_STATE(3080)] = 89399, - [SMALL_STATE(3081)] = 89416, - [SMALL_STATE(3082)] = 89431, - [SMALL_STATE(3083)] = 89448, - [SMALL_STATE(3084)] = 89465, - [SMALL_STATE(3085)] = 89482, - [SMALL_STATE(3086)] = 89499, - [SMALL_STATE(3087)] = 89514, - [SMALL_STATE(3088)] = 89531, - [SMALL_STATE(3089)] = 89546, - [SMALL_STATE(3090)] = 89563, - [SMALL_STATE(3091)] = 89580, - [SMALL_STATE(3092)] = 89597, - [SMALL_STATE(3093)] = 89614, - [SMALL_STATE(3094)] = 89631, - [SMALL_STATE(3095)] = 89646, - [SMALL_STATE(3096)] = 89663, - [SMALL_STATE(3097)] = 89678, - [SMALL_STATE(3098)] = 89695, - [SMALL_STATE(3099)] = 89712, - [SMALL_STATE(3100)] = 89729, - [SMALL_STATE(3101)] = 89746, - [SMALL_STATE(3102)] = 89763, - [SMALL_STATE(3103)] = 89780, - [SMALL_STATE(3104)] = 89797, - [SMALL_STATE(3105)] = 89812, - [SMALL_STATE(3106)] = 89829, - [SMALL_STATE(3107)] = 89846, - [SMALL_STATE(3108)] = 89863, - [SMALL_STATE(3109)] = 89880, - [SMALL_STATE(3110)] = 89897, - [SMALL_STATE(3111)] = 89914, - [SMALL_STATE(3112)] = 89931, - [SMALL_STATE(3113)] = 89948, - [SMALL_STATE(3114)] = 89965, - [SMALL_STATE(3115)] = 89982, - [SMALL_STATE(3116)] = 89997, - [SMALL_STATE(3117)] = 90012, - [SMALL_STATE(3118)] = 90029, - [SMALL_STATE(3119)] = 90046, - [SMALL_STATE(3120)] = 90063, - [SMALL_STATE(3121)] = 90080, - [SMALL_STATE(3122)] = 90097, - [SMALL_STATE(3123)] = 90112, - [SMALL_STATE(3124)] = 90127, - [SMALL_STATE(3125)] = 90144, - [SMALL_STATE(3126)] = 90161, - [SMALL_STATE(3127)] = 90178, - [SMALL_STATE(3128)] = 90195, - [SMALL_STATE(3129)] = 90212, - [SMALL_STATE(3130)] = 90229, - [SMALL_STATE(3131)] = 90246, - [SMALL_STATE(3132)] = 90263, - [SMALL_STATE(3133)] = 90278, - [SMALL_STATE(3134)] = 90295, - [SMALL_STATE(3135)] = 90312, - [SMALL_STATE(3136)] = 90329, - [SMALL_STATE(3137)] = 90346, - [SMALL_STATE(3138)] = 90361, - [SMALL_STATE(3139)] = 90376, - [SMALL_STATE(3140)] = 90393, - [SMALL_STATE(3141)] = 90408, - [SMALL_STATE(3142)] = 90425, - [SMALL_STATE(3143)] = 90442, - [SMALL_STATE(3144)] = 90459, - [SMALL_STATE(3145)] = 90476, - [SMALL_STATE(3146)] = 90493, - [SMALL_STATE(3147)] = 90510, - [SMALL_STATE(3148)] = 90527, - [SMALL_STATE(3149)] = 90544, - [SMALL_STATE(3150)] = 90561, - [SMALL_STATE(3151)] = 90578, - [SMALL_STATE(3152)] = 90595, - [SMALL_STATE(3153)] = 90612, - [SMALL_STATE(3154)] = 90629, - [SMALL_STATE(3155)] = 90646, - [SMALL_STATE(3156)] = 90663, - [SMALL_STATE(3157)] = 90680, - [SMALL_STATE(3158)] = 90697, - [SMALL_STATE(3159)] = 90712, - [SMALL_STATE(3160)] = 90729, - [SMALL_STATE(3161)] = 90744, - [SMALL_STATE(3162)] = 90761, - [SMALL_STATE(3163)] = 90778, - [SMALL_STATE(3164)] = 90795, - [SMALL_STATE(3165)] = 90812, - [SMALL_STATE(3166)] = 90829, - [SMALL_STATE(3167)] = 90844, - [SMALL_STATE(3168)] = 90861, - [SMALL_STATE(3169)] = 90878, - [SMALL_STATE(3170)] = 90895, - [SMALL_STATE(3171)] = 90912, - [SMALL_STATE(3172)] = 90927, - [SMALL_STATE(3173)] = 90944, - [SMALL_STATE(3174)] = 90961, - [SMALL_STATE(3175)] = 90978, - [SMALL_STATE(3176)] = 90995, - [SMALL_STATE(3177)] = 91012, - [SMALL_STATE(3178)] = 91027, - [SMALL_STATE(3179)] = 91044, - [SMALL_STATE(3180)] = 91061, - [SMALL_STATE(3181)] = 91078, - [SMALL_STATE(3182)] = 91095, - [SMALL_STATE(3183)] = 91112, - [SMALL_STATE(3184)] = 91129, - [SMALL_STATE(3185)] = 91144, - [SMALL_STATE(3186)] = 91161, - [SMALL_STATE(3187)] = 91178, - [SMALL_STATE(3188)] = 91195, - [SMALL_STATE(3189)] = 91212, - [SMALL_STATE(3190)] = 91227, - [SMALL_STATE(3191)] = 91244, - [SMALL_STATE(3192)] = 91261, - [SMALL_STATE(3193)] = 91278, - [SMALL_STATE(3194)] = 91295, - [SMALL_STATE(3195)] = 91312, - [SMALL_STATE(3196)] = 91329, - [SMALL_STATE(3197)] = 91346, - [SMALL_STATE(3198)] = 91363, - [SMALL_STATE(3199)] = 91380, - [SMALL_STATE(3200)] = 91397, - [SMALL_STATE(3201)] = 91412, - [SMALL_STATE(3202)] = 91429, - [SMALL_STATE(3203)] = 91446, - [SMALL_STATE(3204)] = 91463, - [SMALL_STATE(3205)] = 91480, - [SMALL_STATE(3206)] = 91497, - [SMALL_STATE(3207)] = 91514, - [SMALL_STATE(3208)] = 91531, - [SMALL_STATE(3209)] = 91548, - [SMALL_STATE(3210)] = 91565, - [SMALL_STATE(3211)] = 91582, - [SMALL_STATE(3212)] = 91599, - [SMALL_STATE(3213)] = 91616, - [SMALL_STATE(3214)] = 91633, - [SMALL_STATE(3215)] = 91648, - [SMALL_STATE(3216)] = 91665, - [SMALL_STATE(3217)] = 91682, - [SMALL_STATE(3218)] = 91699, - [SMALL_STATE(3219)] = 91714, - [SMALL_STATE(3220)] = 91731, - [SMALL_STATE(3221)] = 91748, - [SMALL_STATE(3222)] = 91765, - [SMALL_STATE(3223)] = 91780, - [SMALL_STATE(3224)] = 91797, - [SMALL_STATE(3225)] = 91814, - [SMALL_STATE(3226)] = 91831, - [SMALL_STATE(3227)] = 91848, - [SMALL_STATE(3228)] = 91865, - [SMALL_STATE(3229)] = 91882, - [SMALL_STATE(3230)] = 91899, - [SMALL_STATE(3231)] = 91914, - [SMALL_STATE(3232)] = 91931, - [SMALL_STATE(3233)] = 91948, - [SMALL_STATE(3234)] = 91963, - [SMALL_STATE(3235)] = 91980, - [SMALL_STATE(3236)] = 91997, - [SMALL_STATE(3237)] = 92014, - [SMALL_STATE(3238)] = 92031, - [SMALL_STATE(3239)] = 92048, - [SMALL_STATE(3240)] = 92065, - [SMALL_STATE(3241)] = 92082, - [SMALL_STATE(3242)] = 92097, - [SMALL_STATE(3243)] = 92114, - [SMALL_STATE(3244)] = 92131, - [SMALL_STATE(3245)] = 92148, - [SMALL_STATE(3246)] = 92165, - [SMALL_STATE(3247)] = 92180, - [SMALL_STATE(3248)] = 92197, - [SMALL_STATE(3249)] = 92212, - [SMALL_STATE(3250)] = 92229, - [SMALL_STATE(3251)] = 92244, - [SMALL_STATE(3252)] = 92259, - [SMALL_STATE(3253)] = 92276, - [SMALL_STATE(3254)] = 92293, - [SMALL_STATE(3255)] = 92308, - [SMALL_STATE(3256)] = 92325, - [SMALL_STATE(3257)] = 92342, - [SMALL_STATE(3258)] = 92359, - [SMALL_STATE(3259)] = 92374, - [SMALL_STATE(3260)] = 92391, - [SMALL_STATE(3261)] = 92408, - [SMALL_STATE(3262)] = 92425, - [SMALL_STATE(3263)] = 92442, - [SMALL_STATE(3264)] = 92459, - [SMALL_STATE(3265)] = 92476, - [SMALL_STATE(3266)] = 92493, - [SMALL_STATE(3267)] = 92510, - [SMALL_STATE(3268)] = 92527, - [SMALL_STATE(3269)] = 92544, - [SMALL_STATE(3270)] = 92559, - [SMALL_STATE(3271)] = 92574, - [SMALL_STATE(3272)] = 92591, - [SMALL_STATE(3273)] = 92608, - [SMALL_STATE(3274)] = 92625, - [SMALL_STATE(3275)] = 92642, - [SMALL_STATE(3276)] = 92659, - [SMALL_STATE(3277)] = 92676, - [SMALL_STATE(3278)] = 92693, - [SMALL_STATE(3279)] = 92710, - [SMALL_STATE(3280)] = 92725, - [SMALL_STATE(3281)] = 92742, - [SMALL_STATE(3282)] = 92759, - [SMALL_STATE(3283)] = 92776, - [SMALL_STATE(3284)] = 92793, - [SMALL_STATE(3285)] = 92810, - [SMALL_STATE(3286)] = 92827, - [SMALL_STATE(3287)] = 92844, - [SMALL_STATE(3288)] = 92861, - [SMALL_STATE(3289)] = 92878, - [SMALL_STATE(3290)] = 92895, - [SMALL_STATE(3291)] = 92912, - [SMALL_STATE(3292)] = 92929, - [SMALL_STATE(3293)] = 92946, - [SMALL_STATE(3294)] = 92963, - [SMALL_STATE(3295)] = 92980, - [SMALL_STATE(3296)] = 92997, - [SMALL_STATE(3297)] = 93012, - [SMALL_STATE(3298)] = 93029, - [SMALL_STATE(3299)] = 93046, - [SMALL_STATE(3300)] = 93063, - [SMALL_STATE(3301)] = 93080, - [SMALL_STATE(3302)] = 93097, - [SMALL_STATE(3303)] = 93114, - [SMALL_STATE(3304)] = 93129, - [SMALL_STATE(3305)] = 93146, - [SMALL_STATE(3306)] = 93161, - [SMALL_STATE(3307)] = 93178, - [SMALL_STATE(3308)] = 93193, - [SMALL_STATE(3309)] = 93210, - [SMALL_STATE(3310)] = 93227, - [SMALL_STATE(3311)] = 93242, - [SMALL_STATE(3312)] = 93257, - [SMALL_STATE(3313)] = 93272, - [SMALL_STATE(3314)] = 93289, - [SMALL_STATE(3315)] = 93306, - [SMALL_STATE(3316)] = 93321, - [SMALL_STATE(3317)] = 93338, - [SMALL_STATE(3318)] = 93355, - [SMALL_STATE(3319)] = 93370, - [SMALL_STATE(3320)] = 93387, - [SMALL_STATE(3321)] = 93404, - [SMALL_STATE(3322)] = 93421, - [SMALL_STATE(3323)] = 93438, - [SMALL_STATE(3324)] = 93455, - [SMALL_STATE(3325)] = 93472, - [SMALL_STATE(3326)] = 93489, - [SMALL_STATE(3327)] = 93506, - [SMALL_STATE(3328)] = 93523, - [SMALL_STATE(3329)] = 93540, - [SMALL_STATE(3330)] = 93557, - [SMALL_STATE(3331)] = 93574, - [SMALL_STATE(3332)] = 93591, - [SMALL_STATE(3333)] = 93608, - [SMALL_STATE(3334)] = 93625, - [SMALL_STATE(3335)] = 93642, - [SMALL_STATE(3336)] = 93659, - [SMALL_STATE(3337)] = 93674, - [SMALL_STATE(3338)] = 93691, - [SMALL_STATE(3339)] = 93708, - [SMALL_STATE(3340)] = 93725, - [SMALL_STATE(3341)] = 93740, - [SMALL_STATE(3342)] = 93754, - [SMALL_STATE(3343)] = 93768, - [SMALL_STATE(3344)] = 93782, - [SMALL_STATE(3345)] = 93796, - [SMALL_STATE(3346)] = 93810, - [SMALL_STATE(3347)] = 93824, - [SMALL_STATE(3348)] = 93838, - [SMALL_STATE(3349)] = 93852, - [SMALL_STATE(3350)] = 93866, - [SMALL_STATE(3351)] = 93880, - [SMALL_STATE(3352)] = 93894, - [SMALL_STATE(3353)] = 93908, - [SMALL_STATE(3354)] = 93922, - [SMALL_STATE(3355)] = 93936, - [SMALL_STATE(3356)] = 93950, - [SMALL_STATE(3357)] = 93964, - [SMALL_STATE(3358)] = 93978, - [SMALL_STATE(3359)] = 93992, - [SMALL_STATE(3360)] = 94006, - [SMALL_STATE(3361)] = 94020, - [SMALL_STATE(3362)] = 94034, - [SMALL_STATE(3363)] = 94048, - [SMALL_STATE(3364)] = 94062, - [SMALL_STATE(3365)] = 94076, - [SMALL_STATE(3366)] = 94090, - [SMALL_STATE(3367)] = 94104, - [SMALL_STATE(3368)] = 94118, - [SMALL_STATE(3369)] = 94132, - [SMALL_STATE(3370)] = 94146, - [SMALL_STATE(3371)] = 94160, - [SMALL_STATE(3372)] = 94174, - [SMALL_STATE(3373)] = 94188, - [SMALL_STATE(3374)] = 94202, - [SMALL_STATE(3375)] = 94216, - [SMALL_STATE(3376)] = 94230, - [SMALL_STATE(3377)] = 94244, - [SMALL_STATE(3378)] = 94258, - [SMALL_STATE(3379)] = 94272, - [SMALL_STATE(3380)] = 94286, - [SMALL_STATE(3381)] = 94300, - [SMALL_STATE(3382)] = 94314, - [SMALL_STATE(3383)] = 94328, - [SMALL_STATE(3384)] = 94342, - [SMALL_STATE(3385)] = 94356, - [SMALL_STATE(3386)] = 94370, - [SMALL_STATE(3387)] = 94384, - [SMALL_STATE(3388)] = 94398, - [SMALL_STATE(3389)] = 94412, - [SMALL_STATE(3390)] = 94426, - [SMALL_STATE(3391)] = 94440, - [SMALL_STATE(3392)] = 94454, - [SMALL_STATE(3393)] = 94468, - [SMALL_STATE(3394)] = 94482, - [SMALL_STATE(3395)] = 94496, - [SMALL_STATE(3396)] = 94510, - [SMALL_STATE(3397)] = 94524, - [SMALL_STATE(3398)] = 94538, - [SMALL_STATE(3399)] = 94552, - [SMALL_STATE(3400)] = 94566, - [SMALL_STATE(3401)] = 94580, - [SMALL_STATE(3402)] = 94594, - [SMALL_STATE(3403)] = 94608, - [SMALL_STATE(3404)] = 94622, - [SMALL_STATE(3405)] = 94636, - [SMALL_STATE(3406)] = 94650, - [SMALL_STATE(3407)] = 94664, - [SMALL_STATE(3408)] = 94678, - [SMALL_STATE(3409)] = 94692, - [SMALL_STATE(3410)] = 94706, - [SMALL_STATE(3411)] = 94720, - [SMALL_STATE(3412)] = 94734, - [SMALL_STATE(3413)] = 94748, - [SMALL_STATE(3414)] = 94762, - [SMALL_STATE(3415)] = 94776, - [SMALL_STATE(3416)] = 94790, - [SMALL_STATE(3417)] = 94804, - [SMALL_STATE(3418)] = 94818, - [SMALL_STATE(3419)] = 94832, - [SMALL_STATE(3420)] = 94846, - [SMALL_STATE(3421)] = 94860, - [SMALL_STATE(3422)] = 94874, - [SMALL_STATE(3423)] = 94888, - [SMALL_STATE(3424)] = 94902, - [SMALL_STATE(3425)] = 94916, - [SMALL_STATE(3426)] = 94930, - [SMALL_STATE(3427)] = 94944, - [SMALL_STATE(3428)] = 94958, - [SMALL_STATE(3429)] = 94972, - [SMALL_STATE(3430)] = 94986, - [SMALL_STATE(3431)] = 95000, - [SMALL_STATE(3432)] = 95014, - [SMALL_STATE(3433)] = 95028, - [SMALL_STATE(3434)] = 95042, - [SMALL_STATE(3435)] = 95056, - [SMALL_STATE(3436)] = 95070, - [SMALL_STATE(3437)] = 95084, - [SMALL_STATE(3438)] = 95098, - [SMALL_STATE(3439)] = 95112, - [SMALL_STATE(3440)] = 95126, - [SMALL_STATE(3441)] = 95140, - [SMALL_STATE(3442)] = 95154, - [SMALL_STATE(3443)] = 95168, - [SMALL_STATE(3444)] = 95182, - [SMALL_STATE(3445)] = 95196, - [SMALL_STATE(3446)] = 95210, - [SMALL_STATE(3447)] = 95224, - [SMALL_STATE(3448)] = 95238, - [SMALL_STATE(3449)] = 95252, - [SMALL_STATE(3450)] = 95266, - [SMALL_STATE(3451)] = 95280, - [SMALL_STATE(3452)] = 95294, - [SMALL_STATE(3453)] = 95308, - [SMALL_STATE(3454)] = 95322, - [SMALL_STATE(3455)] = 95336, - [SMALL_STATE(3456)] = 95350, - [SMALL_STATE(3457)] = 95364, - [SMALL_STATE(3458)] = 95378, - [SMALL_STATE(3459)] = 95392, - [SMALL_STATE(3460)] = 95406, - [SMALL_STATE(3461)] = 95420, - [SMALL_STATE(3462)] = 95434, - [SMALL_STATE(3463)] = 95448, - [SMALL_STATE(3464)] = 95462, - [SMALL_STATE(3465)] = 95476, - [SMALL_STATE(3466)] = 95490, - [SMALL_STATE(3467)] = 95504, - [SMALL_STATE(3468)] = 95518, - [SMALL_STATE(3469)] = 95532, - [SMALL_STATE(3470)] = 95546, - [SMALL_STATE(3471)] = 95560, - [SMALL_STATE(3472)] = 95574, - [SMALL_STATE(3473)] = 95588, - [SMALL_STATE(3474)] = 95602, - [SMALL_STATE(3475)] = 95616, - [SMALL_STATE(3476)] = 95630, - [SMALL_STATE(3477)] = 95644, - [SMALL_STATE(3478)] = 95658, - [SMALL_STATE(3479)] = 95672, - [SMALL_STATE(3480)] = 95686, - [SMALL_STATE(3481)] = 95700, - [SMALL_STATE(3482)] = 95714, - [SMALL_STATE(3483)] = 95728, - [SMALL_STATE(3484)] = 95742, - [SMALL_STATE(3485)] = 95756, - [SMALL_STATE(3486)] = 95770, - [SMALL_STATE(3487)] = 95784, - [SMALL_STATE(3488)] = 95798, - [SMALL_STATE(3489)] = 95812, - [SMALL_STATE(3490)] = 95826, - [SMALL_STATE(3491)] = 95840, - [SMALL_STATE(3492)] = 95854, - [SMALL_STATE(3493)] = 95868, - [SMALL_STATE(3494)] = 95882, - [SMALL_STATE(3495)] = 95896, - [SMALL_STATE(3496)] = 95910, - [SMALL_STATE(3497)] = 95924, - [SMALL_STATE(3498)] = 95938, - [SMALL_STATE(3499)] = 95952, - [SMALL_STATE(3500)] = 95966, - [SMALL_STATE(3501)] = 95980, - [SMALL_STATE(3502)] = 95994, - [SMALL_STATE(3503)] = 96008, - [SMALL_STATE(3504)] = 96022, - [SMALL_STATE(3505)] = 96036, - [SMALL_STATE(3506)] = 96050, - [SMALL_STATE(3507)] = 96064, - [SMALL_STATE(3508)] = 96078, - [SMALL_STATE(3509)] = 96092, - [SMALL_STATE(3510)] = 96106, - [SMALL_STATE(3511)] = 96120, - [SMALL_STATE(3512)] = 96134, - [SMALL_STATE(3513)] = 96148, - [SMALL_STATE(3514)] = 96162, - [SMALL_STATE(3515)] = 96176, - [SMALL_STATE(3516)] = 96190, - [SMALL_STATE(3517)] = 96204, - [SMALL_STATE(3518)] = 96218, - [SMALL_STATE(3519)] = 96232, - [SMALL_STATE(3520)] = 96246, - [SMALL_STATE(3521)] = 96260, - [SMALL_STATE(3522)] = 96274, - [SMALL_STATE(3523)] = 96288, - [SMALL_STATE(3524)] = 96302, - [SMALL_STATE(3525)] = 96316, - [SMALL_STATE(3526)] = 96330, - [SMALL_STATE(3527)] = 96344, - [SMALL_STATE(3528)] = 96358, - [SMALL_STATE(3529)] = 96372, - [SMALL_STATE(3530)] = 96386, - [SMALL_STATE(3531)] = 96400, - [SMALL_STATE(3532)] = 96414, - [SMALL_STATE(3533)] = 96428, - [SMALL_STATE(3534)] = 96442, - [SMALL_STATE(3535)] = 96456, - [SMALL_STATE(3536)] = 96470, - [SMALL_STATE(3537)] = 96484, - [SMALL_STATE(3538)] = 96498, - [SMALL_STATE(3539)] = 96512, - [SMALL_STATE(3540)] = 96526, - [SMALL_STATE(3541)] = 96540, - [SMALL_STATE(3542)] = 96554, - [SMALL_STATE(3543)] = 96568, - [SMALL_STATE(3544)] = 96582, - [SMALL_STATE(3545)] = 96596, - [SMALL_STATE(3546)] = 96610, - [SMALL_STATE(3547)] = 96624, - [SMALL_STATE(3548)] = 96638, - [SMALL_STATE(3549)] = 96652, - [SMALL_STATE(3550)] = 96666, - [SMALL_STATE(3551)] = 96680, - [SMALL_STATE(3552)] = 96694, - [SMALL_STATE(3553)] = 96708, - [SMALL_STATE(3554)] = 96722, - [SMALL_STATE(3555)] = 96736, - [SMALL_STATE(3556)] = 96750, - [SMALL_STATE(3557)] = 96764, - [SMALL_STATE(3558)] = 96778, - [SMALL_STATE(3559)] = 96792, - [SMALL_STATE(3560)] = 96806, - [SMALL_STATE(3561)] = 96820, - [SMALL_STATE(3562)] = 96834, - [SMALL_STATE(3563)] = 96848, - [SMALL_STATE(3564)] = 96862, - [SMALL_STATE(3565)] = 96876, - [SMALL_STATE(3566)] = 96890, - [SMALL_STATE(3567)] = 96904, - [SMALL_STATE(3568)] = 96918, - [SMALL_STATE(3569)] = 96932, - [SMALL_STATE(3570)] = 96946, - [SMALL_STATE(3571)] = 96960, - [SMALL_STATE(3572)] = 96974, - [SMALL_STATE(3573)] = 96988, - [SMALL_STATE(3574)] = 97002, - [SMALL_STATE(3575)] = 97016, - [SMALL_STATE(3576)] = 97030, - [SMALL_STATE(3577)] = 97044, - [SMALL_STATE(3578)] = 97058, - [SMALL_STATE(3579)] = 97072, - [SMALL_STATE(3580)] = 97086, - [SMALL_STATE(3581)] = 97100, - [SMALL_STATE(3582)] = 97114, - [SMALL_STATE(3583)] = 97128, - [SMALL_STATE(3584)] = 97142, - [SMALL_STATE(3585)] = 97156, - [SMALL_STATE(3586)] = 97170, - [SMALL_STATE(3587)] = 97184, - [SMALL_STATE(3588)] = 97198, - [SMALL_STATE(3589)] = 97212, - [SMALL_STATE(3590)] = 97226, - [SMALL_STATE(3591)] = 97240, - [SMALL_STATE(3592)] = 97254, - [SMALL_STATE(3593)] = 97268, - [SMALL_STATE(3594)] = 97282, - [SMALL_STATE(3595)] = 97296, - [SMALL_STATE(3596)] = 97310, - [SMALL_STATE(3597)] = 97324, - [SMALL_STATE(3598)] = 97338, - [SMALL_STATE(3599)] = 97352, - [SMALL_STATE(3600)] = 97366, - [SMALL_STATE(3601)] = 97380, - [SMALL_STATE(3602)] = 97394, - [SMALL_STATE(3603)] = 97408, - [SMALL_STATE(3604)] = 97422, - [SMALL_STATE(3605)] = 97436, - [SMALL_STATE(3606)] = 97450, - [SMALL_STATE(3607)] = 97464, - [SMALL_STATE(3608)] = 97478, - [SMALL_STATE(3609)] = 97492, - [SMALL_STATE(3610)] = 97506, - [SMALL_STATE(3611)] = 97520, - [SMALL_STATE(3612)] = 97534, - [SMALL_STATE(3613)] = 97548, - [SMALL_STATE(3614)] = 97562, - [SMALL_STATE(3615)] = 97576, - [SMALL_STATE(3616)] = 97590, - [SMALL_STATE(3617)] = 97604, - [SMALL_STATE(3618)] = 97618, - [SMALL_STATE(3619)] = 97632, - [SMALL_STATE(3620)] = 97646, - [SMALL_STATE(3621)] = 97660, - [SMALL_STATE(3622)] = 97674, - [SMALL_STATE(3623)] = 97688, - [SMALL_STATE(3624)] = 97702, - [SMALL_STATE(3625)] = 97716, - [SMALL_STATE(3626)] = 97730, - [SMALL_STATE(3627)] = 97744, - [SMALL_STATE(3628)] = 97758, - [SMALL_STATE(3629)] = 97772, - [SMALL_STATE(3630)] = 97786, - [SMALL_STATE(3631)] = 97800, - [SMALL_STATE(3632)] = 97814, - [SMALL_STATE(3633)] = 97828, - [SMALL_STATE(3634)] = 97842, - [SMALL_STATE(3635)] = 97856, - [SMALL_STATE(3636)] = 97870, - [SMALL_STATE(3637)] = 97884, - [SMALL_STATE(3638)] = 97898, - [SMALL_STATE(3639)] = 97912, - [SMALL_STATE(3640)] = 97926, - [SMALL_STATE(3641)] = 97940, - [SMALL_STATE(3642)] = 97954, - [SMALL_STATE(3643)] = 97958, - [SMALL_STATE(3644)] = 97962, - [SMALL_STATE(3645)] = 97966, - [SMALL_STATE(3646)] = 97970, - [SMALL_STATE(3647)] = 97974, - [SMALL_STATE(3648)] = 97978, + [SMALL_STATE(1160)] = 0, + [SMALL_STATE(1161)] = 75, + [SMALL_STATE(1162)] = 146, + [SMALL_STATE(1163)] = 216, + [SMALL_STATE(1164)] = 316, + [SMALL_STATE(1165)] = 416, + [SMALL_STATE(1166)] = 495, + [SMALL_STATE(1167)] = 572, + [SMALL_STATE(1168)] = 636, + [SMALL_STATE(1169)] = 700, + [SMALL_STATE(1170)] = 774, + [SMALL_STATE(1171)] = 838, + [SMALL_STATE(1172)] = 902, + [SMALL_STATE(1173)] = 976, + [SMALL_STATE(1174)] = 1040, + [SMALL_STATE(1175)] = 1104, + [SMALL_STATE(1176)] = 1168, + [SMALL_STATE(1177)] = 1242, + [SMALL_STATE(1178)] = 1306, + [SMALL_STATE(1179)] = 1370, + [SMALL_STATE(1180)] = 1433, + [SMALL_STATE(1181)] = 1504, + [SMALL_STATE(1182)] = 1567, + [SMALL_STATE(1183)] = 1630, + [SMALL_STATE(1184)] = 1693, + [SMALL_STATE(1185)] = 1760, + [SMALL_STATE(1186)] = 1831, + [SMALL_STATE(1187)] = 1902, + [SMALL_STATE(1188)] = 1973, + [SMALL_STATE(1189)] = 2036, + [SMALL_STATE(1190)] = 2103, + [SMALL_STATE(1191)] = 2170, + [SMALL_STATE(1192)] = 2237, + [SMALL_STATE(1193)] = 2304, + [SMALL_STATE(1194)] = 2366, + [SMALL_STATE(1195)] = 2428, + [SMALL_STATE(1196)] = 2496, + [SMALL_STATE(1197)] = 2602, + [SMALL_STATE(1198)] = 2708, + [SMALL_STATE(1199)] = 2814, + [SMALL_STATE(1200)] = 2914, + [SMALL_STATE(1201)] = 2976, + [SMALL_STATE(1202)] = 3038, + [SMALL_STATE(1203)] = 3138, + [SMALL_STATE(1204)] = 3244, + [SMALL_STATE(1205)] = 3350, + [SMALL_STATE(1206)] = 3420, + [SMALL_STATE(1207)] = 3526, + [SMALL_STATE(1208)] = 3587, + [SMALL_STATE(1209)] = 3648, + [SMALL_STATE(1210)] = 3709, + [SMALL_STATE(1211)] = 3770, + [SMALL_STATE(1212)] = 3831, + [SMALL_STATE(1213)] = 3892, + [SMALL_STATE(1214)] = 3953, + [SMALL_STATE(1215)] = 4014, + [SMALL_STATE(1216)] = 4075, + [SMALL_STATE(1217)] = 4136, + [SMALL_STATE(1218)] = 4197, + [SMALL_STATE(1219)] = 4258, + [SMALL_STATE(1220)] = 4319, + [SMALL_STATE(1221)] = 4380, + [SMALL_STATE(1222)] = 4441, + [SMALL_STATE(1223)] = 4502, + [SMALL_STATE(1224)] = 4563, + [SMALL_STATE(1225)] = 4624, + [SMALL_STATE(1226)] = 4685, + [SMALL_STATE(1227)] = 4746, + [SMALL_STATE(1228)] = 4807, + [SMALL_STATE(1229)] = 4868, + [SMALL_STATE(1230)] = 4929, + [SMALL_STATE(1231)] = 4990, + [SMALL_STATE(1232)] = 5051, + [SMALL_STATE(1233)] = 5112, + [SMALL_STATE(1234)] = 5173, + [SMALL_STATE(1235)] = 5234, + [SMALL_STATE(1236)] = 5295, + [SMALL_STATE(1237)] = 5356, + [SMALL_STATE(1238)] = 5417, + [SMALL_STATE(1239)] = 5478, + [SMALL_STATE(1240)] = 5539, + [SMALL_STATE(1241)] = 5600, + [SMALL_STATE(1242)] = 5661, + [SMALL_STATE(1243)] = 5722, + [SMALL_STATE(1244)] = 5783, + [SMALL_STATE(1245)] = 5844, + [SMALL_STATE(1246)] = 5905, + [SMALL_STATE(1247)] = 5966, + [SMALL_STATE(1248)] = 6027, + [SMALL_STATE(1249)] = 6088, + [SMALL_STATE(1250)] = 6149, + [SMALL_STATE(1251)] = 6210, + [SMALL_STATE(1252)] = 6271, + [SMALL_STATE(1253)] = 6336, + [SMALL_STATE(1254)] = 6397, + [SMALL_STATE(1255)] = 6458, + [SMALL_STATE(1256)] = 6519, + [SMALL_STATE(1257)] = 6580, + [SMALL_STATE(1258)] = 6641, + [SMALL_STATE(1259)] = 6702, + [SMALL_STATE(1260)] = 6763, + [SMALL_STATE(1261)] = 6824, + [SMALL_STATE(1262)] = 6885, + [SMALL_STATE(1263)] = 6946, + [SMALL_STATE(1264)] = 7007, + [SMALL_STATE(1265)] = 7068, + [SMALL_STATE(1266)] = 7129, + [SMALL_STATE(1267)] = 7190, + [SMALL_STATE(1268)] = 7251, + [SMALL_STATE(1269)] = 7312, + [SMALL_STATE(1270)] = 7373, + [SMALL_STATE(1271)] = 7434, + [SMALL_STATE(1272)] = 7495, + [SMALL_STATE(1273)] = 7556, + [SMALL_STATE(1274)] = 7617, + [SMALL_STATE(1275)] = 7678, + [SMALL_STATE(1276)] = 7739, + [SMALL_STATE(1277)] = 7800, + [SMALL_STATE(1278)] = 7861, + [SMALL_STATE(1279)] = 7922, + [SMALL_STATE(1280)] = 7983, + [SMALL_STATE(1281)] = 8044, + [SMALL_STATE(1282)] = 8105, + [SMALL_STATE(1283)] = 8166, + [SMALL_STATE(1284)] = 8227, + [SMALL_STATE(1285)] = 8288, + [SMALL_STATE(1286)] = 8349, + [SMALL_STATE(1287)] = 8410, + [SMALL_STATE(1288)] = 8471, + [SMALL_STATE(1289)] = 8532, + [SMALL_STATE(1290)] = 8593, + [SMALL_STATE(1291)] = 8654, + [SMALL_STATE(1292)] = 8715, + [SMALL_STATE(1293)] = 8776, + [SMALL_STATE(1294)] = 8837, + [SMALL_STATE(1295)] = 8898, + [SMALL_STATE(1296)] = 8959, + [SMALL_STATE(1297)] = 9020, + [SMALL_STATE(1298)] = 9081, + [SMALL_STATE(1299)] = 9142, + [SMALL_STATE(1300)] = 9203, + [SMALL_STATE(1301)] = 9264, + [SMALL_STATE(1302)] = 9325, + [SMALL_STATE(1303)] = 9386, + [SMALL_STATE(1304)] = 9447, + [SMALL_STATE(1305)] = 9508, + [SMALL_STATE(1306)] = 9569, + [SMALL_STATE(1307)] = 9630, + [SMALL_STATE(1308)] = 9691, + [SMALL_STATE(1309)] = 9752, + [SMALL_STATE(1310)] = 9827, + [SMALL_STATE(1311)] = 9888, + [SMALL_STATE(1312)] = 9949, + [SMALL_STATE(1313)] = 10010, + [SMALL_STATE(1314)] = 10071, + [SMALL_STATE(1315)] = 10132, + [SMALL_STATE(1316)] = 10193, + [SMALL_STATE(1317)] = 10254, + [SMALL_STATE(1318)] = 10315, + [SMALL_STATE(1319)] = 10376, + [SMALL_STATE(1320)] = 10437, + [SMALL_STATE(1321)] = 10498, + [SMALL_STATE(1322)] = 10559, + [SMALL_STATE(1323)] = 10620, + [SMALL_STATE(1324)] = 10681, + [SMALL_STATE(1325)] = 10742, + [SMALL_STATE(1326)] = 10803, + [SMALL_STATE(1327)] = 10864, + [SMALL_STATE(1328)] = 10925, + [SMALL_STATE(1329)] = 10986, + [SMALL_STATE(1330)] = 11047, + [SMALL_STATE(1331)] = 11108, + [SMALL_STATE(1332)] = 11169, + [SMALL_STATE(1333)] = 11230, + [SMALL_STATE(1334)] = 11291, + [SMALL_STATE(1335)] = 11352, + [SMALL_STATE(1336)] = 11413, + [SMALL_STATE(1337)] = 11474, + [SMALL_STATE(1338)] = 11535, + [SMALL_STATE(1339)] = 11596, + [SMALL_STATE(1340)] = 11657, + [SMALL_STATE(1341)] = 11718, + [SMALL_STATE(1342)] = 11779, + [SMALL_STATE(1343)] = 11840, + [SMALL_STATE(1344)] = 11901, + [SMALL_STATE(1345)] = 11962, + [SMALL_STATE(1346)] = 12023, + [SMALL_STATE(1347)] = 12084, + [SMALL_STATE(1348)] = 12145, + [SMALL_STATE(1349)] = 12206, + [SMALL_STATE(1350)] = 12267, + [SMALL_STATE(1351)] = 12328, + [SMALL_STATE(1352)] = 12389, + [SMALL_STATE(1353)] = 12450, + [SMALL_STATE(1354)] = 12511, + [SMALL_STATE(1355)] = 12572, + [SMALL_STATE(1356)] = 12633, + [SMALL_STATE(1357)] = 12694, + [SMALL_STATE(1358)] = 12755, + [SMALL_STATE(1359)] = 12816, + [SMALL_STATE(1360)] = 12877, + [SMALL_STATE(1361)] = 12938, + [SMALL_STATE(1362)] = 12999, + [SMALL_STATE(1363)] = 13060, + [SMALL_STATE(1364)] = 13121, + [SMALL_STATE(1365)] = 13184, + [SMALL_STATE(1366)] = 13245, + [SMALL_STATE(1367)] = 13308, + [SMALL_STATE(1368)] = 13369, + [SMALL_STATE(1369)] = 13430, + [SMALL_STATE(1370)] = 13491, + [SMALL_STATE(1371)] = 13552, + [SMALL_STATE(1372)] = 13613, + [SMALL_STATE(1373)] = 13674, + [SMALL_STATE(1374)] = 13735, + [SMALL_STATE(1375)] = 13796, + [SMALL_STATE(1376)] = 13857, + [SMALL_STATE(1377)] = 13918, + [SMALL_STATE(1378)] = 13979, + [SMALL_STATE(1379)] = 14040, + [SMALL_STATE(1380)] = 14101, + [SMALL_STATE(1381)] = 14162, + [SMALL_STATE(1382)] = 14223, + [SMALL_STATE(1383)] = 14284, + [SMALL_STATE(1384)] = 14345, + [SMALL_STATE(1385)] = 14406, + [SMALL_STATE(1386)] = 14467, + [SMALL_STATE(1387)] = 14528, + [SMALL_STATE(1388)] = 14589, + [SMALL_STATE(1389)] = 14650, + [SMALL_STATE(1390)] = 14711, + [SMALL_STATE(1391)] = 14772, + [SMALL_STATE(1392)] = 14833, + [SMALL_STATE(1393)] = 14894, + [SMALL_STATE(1394)] = 14955, + [SMALL_STATE(1395)] = 15016, + [SMALL_STATE(1396)] = 15077, + [SMALL_STATE(1397)] = 15138, + [SMALL_STATE(1398)] = 15199, + [SMALL_STATE(1399)] = 15262, + [SMALL_STATE(1400)] = 15323, + [SMALL_STATE(1401)] = 15384, + [SMALL_STATE(1402)] = 15445, + [SMALL_STATE(1403)] = 15506, + [SMALL_STATE(1404)] = 15567, + [SMALL_STATE(1405)] = 15628, + [SMALL_STATE(1406)] = 15689, + [SMALL_STATE(1407)] = 15750, + [SMALL_STATE(1408)] = 15811, + [SMALL_STATE(1409)] = 15872, + [SMALL_STATE(1410)] = 15935, + [SMALL_STATE(1411)] = 15998, + [SMALL_STATE(1412)] = 16059, + [SMALL_STATE(1413)] = 16120, + [SMALL_STATE(1414)] = 16181, + [SMALL_STATE(1415)] = 16242, + [SMALL_STATE(1416)] = 16303, + [SMALL_STATE(1417)] = 16364, + [SMALL_STATE(1418)] = 16425, + [SMALL_STATE(1419)] = 16500, + [SMALL_STATE(1420)] = 16561, + [SMALL_STATE(1421)] = 16654, + [SMALL_STATE(1422)] = 16715, + [SMALL_STATE(1423)] = 16776, + [SMALL_STATE(1424)] = 16837, + [SMALL_STATE(1425)] = 16898, + [SMALL_STATE(1426)] = 16959, + [SMALL_STATE(1427)] = 17020, + [SMALL_STATE(1428)] = 17081, + [SMALL_STATE(1429)] = 17142, + [SMALL_STATE(1430)] = 17203, + [SMALL_STATE(1431)] = 17266, + [SMALL_STATE(1432)] = 17327, + [SMALL_STATE(1433)] = 17388, + [SMALL_STATE(1434)] = 17449, + [SMALL_STATE(1435)] = 17510, + [SMALL_STATE(1436)] = 17571, + [SMALL_STATE(1437)] = 17632, + [SMALL_STATE(1438)] = 17693, + [SMALL_STATE(1439)] = 17754, + [SMALL_STATE(1440)] = 17815, + [SMALL_STATE(1441)] = 17876, + [SMALL_STATE(1442)] = 17937, + [SMALL_STATE(1443)] = 17998, + [SMALL_STATE(1444)] = 18061, + [SMALL_STATE(1445)] = 18154, + [SMALL_STATE(1446)] = 18215, + [SMALL_STATE(1447)] = 18276, + [SMALL_STATE(1448)] = 18337, + [SMALL_STATE(1449)] = 18398, + [SMALL_STATE(1450)] = 18459, + [SMALL_STATE(1451)] = 18520, + [SMALL_STATE(1452)] = 18581, + [SMALL_STATE(1453)] = 18642, + [SMALL_STATE(1454)] = 18705, + [SMALL_STATE(1455)] = 18766, + [SMALL_STATE(1456)] = 18829, + [SMALL_STATE(1457)] = 18890, + [SMALL_STATE(1458)] = 18953, + [SMALL_STATE(1459)] = 19016, + [SMALL_STATE(1460)] = 19077, + [SMALL_STATE(1461)] = 19138, + [SMALL_STATE(1462)] = 19199, + [SMALL_STATE(1463)] = 19262, + [SMALL_STATE(1464)] = 19323, + [SMALL_STATE(1465)] = 19384, + [SMALL_STATE(1466)] = 19445, + [SMALL_STATE(1467)] = 19506, + [SMALL_STATE(1468)] = 19567, + [SMALL_STATE(1469)] = 19628, + [SMALL_STATE(1470)] = 19689, + [SMALL_STATE(1471)] = 19750, + [SMALL_STATE(1472)] = 19811, + [SMALL_STATE(1473)] = 19872, + [SMALL_STATE(1474)] = 19933, + [SMALL_STATE(1475)] = 19994, + [SMALL_STATE(1476)] = 20055, + [SMALL_STATE(1477)] = 20116, + [SMALL_STATE(1478)] = 20177, + [SMALL_STATE(1479)] = 20238, + [SMALL_STATE(1480)] = 20299, + [SMALL_STATE(1481)] = 20360, + [SMALL_STATE(1482)] = 20421, + [SMALL_STATE(1483)] = 20482, + [SMALL_STATE(1484)] = 20543, + [SMALL_STATE(1485)] = 20604, + [SMALL_STATE(1486)] = 20665, + [SMALL_STATE(1487)] = 20726, + [SMALL_STATE(1488)] = 20787, + [SMALL_STATE(1489)] = 20850, + [SMALL_STATE(1490)] = 20911, + [SMALL_STATE(1491)] = 20972, + [SMALL_STATE(1492)] = 21033, + [SMALL_STATE(1493)] = 21094, + [SMALL_STATE(1494)] = 21155, + [SMALL_STATE(1495)] = 21216, + [SMALL_STATE(1496)] = 21277, + [SMALL_STATE(1497)] = 21342, + [SMALL_STATE(1498)] = 21407, + [SMALL_STATE(1499)] = 21468, + [SMALL_STATE(1500)] = 21529, + [SMALL_STATE(1501)] = 21590, + [SMALL_STATE(1502)] = 21651, + [SMALL_STATE(1503)] = 21712, + [SMALL_STATE(1504)] = 21773, + [SMALL_STATE(1505)] = 21834, + [SMALL_STATE(1506)] = 21895, + [SMALL_STATE(1507)] = 21956, + [SMALL_STATE(1508)] = 22017, + [SMALL_STATE(1509)] = 22078, + [SMALL_STATE(1510)] = 22139, + [SMALL_STATE(1511)] = 22200, + [SMALL_STATE(1512)] = 22261, + [SMALL_STATE(1513)] = 22322, + [SMALL_STATE(1514)] = 22383, + [SMALL_STATE(1515)] = 22444, + [SMALL_STATE(1516)] = 22505, + [SMALL_STATE(1517)] = 22566, + [SMALL_STATE(1518)] = 22627, + [SMALL_STATE(1519)] = 22688, + [SMALL_STATE(1520)] = 22749, + [SMALL_STATE(1521)] = 22810, + [SMALL_STATE(1522)] = 22871, + [SMALL_STATE(1523)] = 22932, + [SMALL_STATE(1524)] = 22993, + [SMALL_STATE(1525)] = 23054, + [SMALL_STATE(1526)] = 23115, + [SMALL_STATE(1527)] = 23176, + [SMALL_STATE(1528)] = 23241, + [SMALL_STATE(1529)] = 23302, + [SMALL_STATE(1530)] = 23363, + [SMALL_STATE(1531)] = 23424, + [SMALL_STATE(1532)] = 23485, + [SMALL_STATE(1533)] = 23546, + [SMALL_STATE(1534)] = 23609, + [SMALL_STATE(1535)] = 23670, + [SMALL_STATE(1536)] = 23731, + [SMALL_STATE(1537)] = 23792, + [SMALL_STATE(1538)] = 23853, + [SMALL_STATE(1539)] = 23916, + [SMALL_STATE(1540)] = 23977, + [SMALL_STATE(1541)] = 24038, + [SMALL_STATE(1542)] = 24099, + [SMALL_STATE(1543)] = 24160, + [SMALL_STATE(1544)] = 24221, + [SMALL_STATE(1545)] = 24282, + [SMALL_STATE(1546)] = 24343, + [SMALL_STATE(1547)] = 24404, + [SMALL_STATE(1548)] = 24465, + [SMALL_STATE(1549)] = 24526, + [SMALL_STATE(1550)] = 24587, + [SMALL_STATE(1551)] = 24648, + [SMALL_STATE(1552)] = 24709, + [SMALL_STATE(1553)] = 24770, + [SMALL_STATE(1554)] = 24831, + [SMALL_STATE(1555)] = 24892, + [SMALL_STATE(1556)] = 24953, + [SMALL_STATE(1557)] = 25016, + [SMALL_STATE(1558)] = 25077, + [SMALL_STATE(1559)] = 25138, + [SMALL_STATE(1560)] = 25199, + [SMALL_STATE(1561)] = 25260, + [SMALL_STATE(1562)] = 25321, + [SMALL_STATE(1563)] = 25382, + [SMALL_STATE(1564)] = 25443, + [SMALL_STATE(1565)] = 25504, + [SMALL_STATE(1566)] = 25567, + [SMALL_STATE(1567)] = 25628, + [SMALL_STATE(1568)] = 25689, + [SMALL_STATE(1569)] = 25750, + [SMALL_STATE(1570)] = 25811, + [SMALL_STATE(1571)] = 25872, + [SMALL_STATE(1572)] = 25933, + [SMALL_STATE(1573)] = 25994, + [SMALL_STATE(1574)] = 26055, + [SMALL_STATE(1575)] = 26116, + [SMALL_STATE(1576)] = 26177, + [SMALL_STATE(1577)] = 26238, + [SMALL_STATE(1578)] = 26299, + [SMALL_STATE(1579)] = 26360, + [SMALL_STATE(1580)] = 26421, + [SMALL_STATE(1581)] = 26482, + [SMALL_STATE(1582)] = 26543, + [SMALL_STATE(1583)] = 26604, + [SMALL_STATE(1584)] = 26665, + [SMALL_STATE(1585)] = 26726, + [SMALL_STATE(1586)] = 26787, + [SMALL_STATE(1587)] = 26848, + [SMALL_STATE(1588)] = 26909, + [SMALL_STATE(1589)] = 26970, + [SMALL_STATE(1590)] = 27031, + [SMALL_STATE(1591)] = 27092, + [SMALL_STATE(1592)] = 27153, + [SMALL_STATE(1593)] = 27214, + [SMALL_STATE(1594)] = 27275, + [SMALL_STATE(1595)] = 27336, + [SMALL_STATE(1596)] = 27397, + [SMALL_STATE(1597)] = 27458, + [SMALL_STATE(1598)] = 27519, + [SMALL_STATE(1599)] = 27580, + [SMALL_STATE(1600)] = 27641, + [SMALL_STATE(1601)] = 27702, + [SMALL_STATE(1602)] = 27763, + [SMALL_STATE(1603)] = 27824, + [SMALL_STATE(1604)] = 27885, + [SMALL_STATE(1605)] = 27946, + [SMALL_STATE(1606)] = 28007, + [SMALL_STATE(1607)] = 28068, + [SMALL_STATE(1608)] = 28129, + [SMALL_STATE(1609)] = 28190, + [SMALL_STATE(1610)] = 28251, + [SMALL_STATE(1611)] = 28312, + [SMALL_STATE(1612)] = 28373, + [SMALL_STATE(1613)] = 28434, + [SMALL_STATE(1614)] = 28495, + [SMALL_STATE(1615)] = 28556, + [SMALL_STATE(1616)] = 28617, + [SMALL_STATE(1617)] = 28678, + [SMALL_STATE(1618)] = 28741, + [SMALL_STATE(1619)] = 28804, + [SMALL_STATE(1620)] = 28865, + [SMALL_STATE(1621)] = 28928, + [SMALL_STATE(1622)] = 28989, + [SMALL_STATE(1623)] = 29050, + [SMALL_STATE(1624)] = 29112, + [SMALL_STATE(1625)] = 29172, + [SMALL_STATE(1626)] = 29232, + [SMALL_STATE(1627)] = 29292, + [SMALL_STATE(1628)] = 29352, + [SMALL_STATE(1629)] = 29448, + [SMALL_STATE(1630)] = 29508, + [SMALL_STATE(1631)] = 29568, + [SMALL_STATE(1632)] = 29628, + [SMALL_STATE(1633)] = 29688, + [SMALL_STATE(1634)] = 29748, + [SMALL_STATE(1635)] = 29808, + [SMALL_STATE(1636)] = 29868, + [SMALL_STATE(1637)] = 29928, + [SMALL_STATE(1638)] = 29988, + [SMALL_STATE(1639)] = 30048, + [SMALL_STATE(1640)] = 30108, + [SMALL_STATE(1641)] = 30168, + [SMALL_STATE(1642)] = 30228, + [SMALL_STATE(1643)] = 30288, + [SMALL_STATE(1644)] = 30348, + [SMALL_STATE(1645)] = 30444, + [SMALL_STATE(1646)] = 30504, + [SMALL_STATE(1647)] = 30564, + [SMALL_STATE(1648)] = 30630, + [SMALL_STATE(1649)] = 30690, + [SMALL_STATE(1650)] = 30750, + [SMALL_STATE(1651)] = 30812, + [SMALL_STATE(1652)] = 30872, + [SMALL_STATE(1653)] = 30932, + [SMALL_STATE(1654)] = 30992, + [SMALL_STATE(1655)] = 31052, + [SMALL_STATE(1656)] = 31112, + [SMALL_STATE(1657)] = 31172, + [SMALL_STATE(1658)] = 31232, + [SMALL_STATE(1659)] = 31292, + [SMALL_STATE(1660)] = 31352, + [SMALL_STATE(1661)] = 31412, + [SMALL_STATE(1662)] = 31472, + [SMALL_STATE(1663)] = 31532, + [SMALL_STATE(1664)] = 31592, + [SMALL_STATE(1665)] = 31652, + [SMALL_STATE(1666)] = 31712, + [SMALL_STATE(1667)] = 31772, + [SMALL_STATE(1668)] = 31832, + [SMALL_STATE(1669)] = 31892, + [SMALL_STATE(1670)] = 31952, + [SMALL_STATE(1671)] = 32012, + [SMALL_STATE(1672)] = 32072, + [SMALL_STATE(1673)] = 32132, + [SMALL_STATE(1674)] = 32192, + [SMALL_STATE(1675)] = 32252, + [SMALL_STATE(1676)] = 32312, + [SMALL_STATE(1677)] = 32372, + [SMALL_STATE(1678)] = 32432, + [SMALL_STATE(1679)] = 32492, + [SMALL_STATE(1680)] = 32552, + [SMALL_STATE(1681)] = 32612, + [SMALL_STATE(1682)] = 32672, + [SMALL_STATE(1683)] = 32732, + [SMALL_STATE(1684)] = 32792, + [SMALL_STATE(1685)] = 32852, + [SMALL_STATE(1686)] = 32912, + [SMALL_STATE(1687)] = 32972, + [SMALL_STATE(1688)] = 33032, + [SMALL_STATE(1689)] = 33092, + [SMALL_STATE(1690)] = 33152, + [SMALL_STATE(1691)] = 33212, + [SMALL_STATE(1692)] = 33272, + [SMALL_STATE(1693)] = 33332, + [SMALL_STATE(1694)] = 33392, + [SMALL_STATE(1695)] = 33452, + [SMALL_STATE(1696)] = 33526, + [SMALL_STATE(1697)] = 33586, + [SMALL_STATE(1698)] = 33646, + [SMALL_STATE(1699)] = 33706, + [SMALL_STATE(1700)] = 33766, + [SMALL_STATE(1701)] = 33826, + [SMALL_STATE(1702)] = 33886, + [SMALL_STATE(1703)] = 33946, + [SMALL_STATE(1704)] = 34012, + [SMALL_STATE(1705)] = 34072, + [SMALL_STATE(1706)] = 34132, + [SMALL_STATE(1707)] = 34192, + [SMALL_STATE(1708)] = 34252, + [SMALL_STATE(1709)] = 34312, + [SMALL_STATE(1710)] = 34372, + [SMALL_STATE(1711)] = 34432, + [SMALL_STATE(1712)] = 34492, + [SMALL_STATE(1713)] = 34552, + [SMALL_STATE(1714)] = 34612, + [SMALL_STATE(1715)] = 34672, + [SMALL_STATE(1716)] = 34736, + [SMALL_STATE(1717)] = 34796, + [SMALL_STATE(1718)] = 34856, + [SMALL_STATE(1719)] = 34916, + [SMALL_STATE(1720)] = 34976, + [SMALL_STATE(1721)] = 35036, + [SMALL_STATE(1722)] = 35096, + [SMALL_STATE(1723)] = 35162, + [SMALL_STATE(1724)] = 35222, + [SMALL_STATE(1725)] = 35282, + [SMALL_STATE(1726)] = 35348, + [SMALL_STATE(1727)] = 35408, + [SMALL_STATE(1728)] = 35468, + [SMALL_STATE(1729)] = 35528, + [SMALL_STATE(1730)] = 35588, + [SMALL_STATE(1731)] = 35648, + [SMALL_STATE(1732)] = 35708, + [SMALL_STATE(1733)] = 35768, + [SMALL_STATE(1734)] = 35828, + [SMALL_STATE(1735)] = 35892, + [SMALL_STATE(1736)] = 35952, + [SMALL_STATE(1737)] = 36012, + [SMALL_STATE(1738)] = 36072, + [SMALL_STATE(1739)] = 36132, + [SMALL_STATE(1740)] = 36192, + [SMALL_STATE(1741)] = 36260, + [SMALL_STATE(1742)] = 36320, + [SMALL_STATE(1743)] = 36380, + [SMALL_STATE(1744)] = 36449, + [SMALL_STATE(1745)] = 36510, + [SMALL_STATE(1746)] = 36609, + [SMALL_STATE(1747)] = 36670, + [SMALL_STATE(1748)] = 36729, + [SMALL_STATE(1749)] = 36828, + [SMALL_STATE(1750)] = 36927, + [SMALL_STATE(1751)] = 36998, + [SMALL_STATE(1752)] = 37057, + [SMALL_STATE(1753)] = 37127, + [SMALL_STATE(1754)] = 37205, + [SMALL_STATE(1755)] = 37277, + [SMALL_STATE(1756)] = 37353, + [SMALL_STATE(1757)] = 37419, + [SMALL_STATE(1758)] = 37505, + [SMALL_STATE(1759)] = 37591, + [SMALL_STATE(1760)] = 37683, + [SMALL_STATE(1761)] = 37773, + [SMALL_STATE(1762)] = 37865, + [SMALL_STATE(1763)] = 37939, + [SMALL_STATE(1764)] = 38031, + [SMALL_STATE(1765)] = 38117, + [SMALL_STATE(1766)] = 38199, + [SMALL_STATE(1767)] = 38285, + [SMALL_STATE(1768)] = 38369, + [SMALL_STATE(1769)] = 38455, + [SMALL_STATE(1770)] = 38545, + [SMALL_STATE(1771)] = 38635, + [SMALL_STATE(1772)] = 38705, + [SMALL_STATE(1773)] = 38773, + [SMALL_STATE(1774)] = 38863, + [SMALL_STATE(1775)] = 38949, + [SMALL_STATE(1776)] = 39039, + [SMALL_STATE(1777)] = 39129, + [SMALL_STATE(1778)] = 39196, + [SMALL_STATE(1779)] = 39261, + [SMALL_STATE(1780)] = 39318, + [SMALL_STATE(1781)] = 39377, + [SMALL_STATE(1782)] = 39434, + [SMALL_STATE(1783)] = 39491, + [SMALL_STATE(1784)] = 39558, + [SMALL_STATE(1785)] = 39615, + [SMALL_STATE(1786)] = 39674, + [SMALL_STATE(1787)] = 39737, + [SMALL_STATE(1788)] = 39794, + [SMALL_STATE(1789)] = 39857, + [SMALL_STATE(1790)] = 39924, + [SMALL_STATE(1791)] = 39984, + [SMALL_STATE(1792)] = 40040, + [SMALL_STATE(1793)] = 40104, + [SMALL_STATE(1794)] = 40168, + [SMALL_STATE(1795)] = 40228, + [SMALL_STATE(1796)] = 40288, + [SMALL_STATE(1797)] = 40346, + [SMALL_STATE(1798)] = 40410, + [SMALL_STATE(1799)] = 40474, + [SMALL_STATE(1800)] = 40530, + [SMALL_STATE(1801)] = 40588, + [SMALL_STATE(1802)] = 40648, + [SMALL_STATE(1803)] = 40708, + [SMALL_STATE(1804)] = 40764, + [SMALL_STATE(1805)] = 40822, + [SMALL_STATE(1806)] = 40882, + [SMALL_STATE(1807)] = 40940, + [SMALL_STATE(1808)] = 40996, + [SMALL_STATE(1809)] = 41056, + [SMALL_STATE(1810)] = 41113, + [SMALL_STATE(1811)] = 41208, + [SMALL_STATE(1812)] = 41303, + [SMALL_STATE(1813)] = 41360, + [SMALL_STATE(1814)] = 41417, + [SMALL_STATE(1815)] = 41512, + [SMALL_STATE(1816)] = 41607, + [SMALL_STATE(1817)] = 41662, + [SMALL_STATE(1818)] = 41719, + [SMALL_STATE(1819)] = 41814, + [SMALL_STATE(1820)] = 41869, + [SMALL_STATE(1821)] = 41958, + [SMALL_STATE(1822)] = 42053, + [SMALL_STATE(1823)] = 42148, + [SMALL_STATE(1824)] = 42205, + [SMALL_STATE(1825)] = 42260, + [SMALL_STATE(1826)] = 42315, + [SMALL_STATE(1827)] = 42404, + [SMALL_STATE(1828)] = 42459, + [SMALL_STATE(1829)] = 42514, + [SMALL_STATE(1830)] = 42571, + [SMALL_STATE(1831)] = 42666, + [SMALL_STATE(1832)] = 42761, + [SMALL_STATE(1833)] = 42820, + [SMALL_STATE(1834)] = 42879, + [SMALL_STATE(1835)] = 42968, + [SMALL_STATE(1836)] = 43027, + [SMALL_STATE(1837)] = 43086, + [SMALL_STATE(1838)] = 43181, + [SMALL_STATE(1839)] = 43236, + [SMALL_STATE(1840)] = 43331, + [SMALL_STATE(1841)] = 43426, + [SMALL_STATE(1842)] = 43481, + [SMALL_STATE(1843)] = 43538, + [SMALL_STATE(1844)] = 43630, + [SMALL_STATE(1845)] = 43722, + [SMALL_STATE(1846)] = 43804, + [SMALL_STATE(1847)] = 43858, + [SMALL_STATE(1848)] = 43944, + [SMALL_STATE(1849)] = 44036, + [SMALL_STATE(1850)] = 44090, + [SMALL_STATE(1851)] = 44176, + [SMALL_STATE(1852)] = 44232, + [SMALL_STATE(1853)] = 44288, + [SMALL_STATE(1854)] = 44344, + [SMALL_STATE(1855)] = 44432, + [SMALL_STATE(1856)] = 44486, + [SMALL_STATE(1857)] = 44578, + [SMALL_STATE(1858)] = 44634, + [SMALL_STATE(1859)] = 44722, + [SMALL_STATE(1860)] = 44808, + [SMALL_STATE(1861)] = 44864, + [SMALL_STATE(1862)] = 44918, + [SMALL_STATE(1863)] = 44974, + [SMALL_STATE(1864)] = 45030, + [SMALL_STATE(1865)] = 45084, + [SMALL_STATE(1866)] = 45140, + [SMALL_STATE(1867)] = 45196, + [SMALL_STATE(1868)] = 45252, + [SMALL_STATE(1869)] = 45306, + [SMALL_STATE(1870)] = 45398, + [SMALL_STATE(1871)] = 45452, + [SMALL_STATE(1872)] = 45506, + [SMALL_STATE(1873)] = 45560, + [SMALL_STATE(1874)] = 45614, + [SMALL_STATE(1875)] = 45706, + [SMALL_STATE(1876)] = 45788, + [SMALL_STATE(1877)] = 45842, + [SMALL_STATE(1878)] = 45896, + [SMALL_STATE(1879)] = 45970, + [SMALL_STATE(1880)] = 46056, + [SMALL_STATE(1881)] = 46142, + [SMALL_STATE(1882)] = 46208, + [SMALL_STATE(1883)] = 46288, + [SMALL_STATE(1884)] = 46366, + [SMALL_STATE(1885)] = 46438, + [SMALL_STATE(1886)] = 46526, + [SMALL_STATE(1887)] = 46594, + [SMALL_STATE(1888)] = 46664, + [SMALL_STATE(1889)] = 46728, + [SMALL_STATE(1890)] = 46782, + [SMALL_STATE(1891)] = 46870, + [SMALL_STATE(1892)] = 46924, + [SMALL_STATE(1893)] = 46978, + [SMALL_STATE(1894)] = 47064, + [SMALL_STATE(1895)] = 47118, + [SMALL_STATE(1896)] = 47206, + [SMALL_STATE(1897)] = 47262, + [SMALL_STATE(1898)] = 47318, + [SMALL_STATE(1899)] = 47374, + [SMALL_STATE(1900)] = 47430, + [SMALL_STATE(1901)] = 47486, + [SMALL_STATE(1902)] = 47544, + [SMALL_STATE(1903)] = 47624, + [SMALL_STATE(1904)] = 47680, + [SMALL_STATE(1905)] = 47733, + [SMALL_STATE(1906)] = 47814, + [SMALL_STATE(1907)] = 47899, + [SMALL_STATE(1908)] = 47988, + [SMALL_STATE(1909)] = 48077, + [SMALL_STATE(1910)] = 48164, + [SMALL_STATE(1911)] = 48217, + [SMALL_STATE(1912)] = 48270, + [SMALL_STATE(1913)] = 48357, + [SMALL_STATE(1914)] = 48438, + [SMALL_STATE(1915)] = 48491, + [SMALL_STATE(1916)] = 48580, + [SMALL_STATE(1917)] = 48633, + [SMALL_STATE(1918)] = 48686, + [SMALL_STATE(1919)] = 48739, + [SMALL_STATE(1920)] = 48824, + [SMALL_STATE(1921)] = 48913, + [SMALL_STATE(1922)] = 48966, + [SMALL_STATE(1923)] = 49019, + [SMALL_STATE(1924)] = 49108, + [SMALL_STATE(1925)] = 49161, + [SMALL_STATE(1926)] = 49250, + [SMALL_STATE(1927)] = 49339, + [SMALL_STATE(1928)] = 49424, + [SMALL_STATE(1929)] = 49509, + [SMALL_STATE(1930)] = 49598, + [SMALL_STATE(1931)] = 49685, + [SMALL_STATE(1932)] = 49774, + [SMALL_STATE(1933)] = 49827, + [SMALL_STATE(1934)] = 49880, + [SMALL_STATE(1935)] = 49933, + [SMALL_STATE(1936)] = 50022, + [SMALL_STATE(1937)] = 50075, + [SMALL_STATE(1938)] = 50164, + [SMALL_STATE(1939)] = 50245, + [SMALL_STATE(1940)] = 50318, + [SMALL_STATE(1941)] = 50371, + [SMALL_STATE(1942)] = 50424, + [SMALL_STATE(1943)] = 50477, + [SMALL_STATE(1944)] = 50566, + [SMALL_STATE(1945)] = 50653, + [SMALL_STATE(1946)] = 50738, + [SMALL_STATE(1947)] = 50791, + [SMALL_STATE(1948)] = 50876, + [SMALL_STATE(1949)] = 50929, + [SMALL_STATE(1950)] = 51014, + [SMALL_STATE(1951)] = 51103, + [SMALL_STATE(1952)] = 51192, + [SMALL_STATE(1953)] = 51281, + [SMALL_STATE(1954)] = 51334, + [SMALL_STATE(1955)] = 51423, + [SMALL_STATE(1956)] = 51488, + [SMALL_STATE(1957)] = 51577, + [SMALL_STATE(1958)] = 51630, + [SMALL_STATE(1959)] = 51683, + [SMALL_STATE(1960)] = 51772, + [SMALL_STATE(1961)] = 51825, + [SMALL_STATE(1962)] = 51878, + [SMALL_STATE(1963)] = 51931, + [SMALL_STATE(1964)] = 51984, + [SMALL_STATE(1965)] = 52037, + [SMALL_STATE(1966)] = 52090, + [SMALL_STATE(1967)] = 52149, + [SMALL_STATE(1968)] = 52228, + [SMALL_STATE(1969)] = 52287, + [SMALL_STATE(1970)] = 52376, + [SMALL_STATE(1971)] = 52429, + [SMALL_STATE(1972)] = 52516, + [SMALL_STATE(1973)] = 52605, + [SMALL_STATE(1974)] = 52658, + [SMALL_STATE(1975)] = 52711, + [SMALL_STATE(1976)] = 52800, + [SMALL_STATE(1977)] = 52853, + [SMALL_STATE(1978)] = 52940, + [SMALL_STATE(1979)] = 52993, + [SMALL_STATE(1980)] = 53046, + [SMALL_STATE(1981)] = 53099, + [SMALL_STATE(1982)] = 53152, + [SMALL_STATE(1983)] = 53205, + [SMALL_STATE(1984)] = 53282, + [SMALL_STATE(1985)] = 53353, + [SMALL_STATE(1986)] = 53420, + [SMALL_STATE(1987)] = 53473, + [SMALL_STATE(1988)] = 53554, + [SMALL_STATE(1989)] = 53641, + [SMALL_STATE(1990)] = 53694, + [SMALL_STATE(1991)] = 53747, + [SMALL_STATE(1992)] = 53816, + [SMALL_STATE(1993)] = 53901, + [SMALL_STATE(1994)] = 53990, + [SMALL_STATE(1995)] = 54079, + [SMALL_STATE(1996)] = 54132, + [SMALL_STATE(1997)] = 54221, + [SMALL_STATE(1998)] = 54284, + [SMALL_STATE(1999)] = 54337, + [SMALL_STATE(2000)] = 54390, + [SMALL_STATE(2001)] = 54443, + [SMALL_STATE(2002)] = 54528, + [SMALL_STATE(2003)] = 54581, + [SMALL_STATE(2004)] = 54670, + [SMALL_STATE(2005)] = 54755, + [SMALL_STATE(2006)] = 54808, + [SMALL_STATE(2007)] = 54861, + [SMALL_STATE(2008)] = 54914, + [SMALL_STATE(2009)] = 55003, + [SMALL_STATE(2010)] = 55090, + [SMALL_STATE(2011)] = 55143, + [SMALL_STATE(2012)] = 55196, + [SMALL_STATE(2013)] = 55249, + [SMALL_STATE(2014)] = 55302, + [SMALL_STATE(2015)] = 55355, + [SMALL_STATE(2016)] = 55408, + [SMALL_STATE(2017)] = 55495, + [SMALL_STATE(2018)] = 55572, + [SMALL_STATE(2019)] = 55659, + [SMALL_STATE(2020)] = 55712, + [SMALL_STATE(2021)] = 55799, + [SMALL_STATE(2022)] = 55888, + [SMALL_STATE(2023)] = 55941, + [SMALL_STATE(2024)] = 55994, + [SMALL_STATE(2025)] = 56079, + [SMALL_STATE(2026)] = 56168, + [SMALL_STATE(2027)] = 56221, + [SMALL_STATE(2028)] = 56310, + [SMALL_STATE(2029)] = 56363, + [SMALL_STATE(2030)] = 56452, + [SMALL_STATE(2031)] = 56505, + [SMALL_STATE(2032)] = 56558, + [SMALL_STATE(2033)] = 56611, + [SMALL_STATE(2034)] = 56664, + [SMALL_STATE(2035)] = 56717, + [SMALL_STATE(2036)] = 56770, + [SMALL_STATE(2037)] = 56829, + [SMALL_STATE(2038)] = 56882, + [SMALL_STATE(2039)] = 56971, + [SMALL_STATE(2040)] = 57024, + [SMALL_STATE(2041)] = 57113, + [SMALL_STATE(2042)] = 57166, + [SMALL_STATE(2043)] = 57219, + [SMALL_STATE(2044)] = 57272, + [SMALL_STATE(2045)] = 57325, + [SMALL_STATE(2046)] = 57398, + [SMALL_STATE(2047)] = 57451, + [SMALL_STATE(2048)] = 57536, + [SMALL_STATE(2049)] = 57621, + [SMALL_STATE(2050)] = 57710, + [SMALL_STATE(2051)] = 57799, + [SMALL_STATE(2052)] = 57852, + [SMALL_STATE(2053)] = 57939, + [SMALL_STATE(2054)] = 58028, + [SMALL_STATE(2055)] = 58081, + [SMALL_STATE(2056)] = 58170, + [SMALL_STATE(2057)] = 58257, + [SMALL_STATE(2058)] = 58346, + [SMALL_STATE(2059)] = 58435, + [SMALL_STATE(2060)] = 58524, + [SMALL_STATE(2061)] = 58613, + [SMALL_STATE(2062)] = 58666, + [SMALL_STATE(2063)] = 58731, + [SMALL_STATE(2064)] = 58820, + [SMALL_STATE(2065)] = 58873, + [SMALL_STATE(2066)] = 58926, + [SMALL_STATE(2067)] = 59015, + [SMALL_STATE(2068)] = 59068, + [SMALL_STATE(2069)] = 59147, + [SMALL_STATE(2070)] = 59236, + [SMALL_STATE(2071)] = 59289, + [SMALL_STATE(2072)] = 59378, + [SMALL_STATE(2073)] = 59431, + [SMALL_STATE(2074)] = 59520, + [SMALL_STATE(2075)] = 59597, + [SMALL_STATE(2076)] = 59668, + [SMALL_STATE(2077)] = 59757, + [SMALL_STATE(2078)] = 59846, + [SMALL_STATE(2079)] = 59899, + [SMALL_STATE(2080)] = 59952, + [SMALL_STATE(2081)] = 60019, + [SMALL_STATE(2082)] = 60108, + [SMALL_STATE(2083)] = 60195, + [SMALL_STATE(2084)] = 60248, + [SMALL_STATE(2085)] = 60301, + [SMALL_STATE(2086)] = 60360, + [SMALL_STATE(2087)] = 60413, + [SMALL_STATE(2088)] = 60466, + [SMALL_STATE(2089)] = 60553, + [SMALL_STATE(2090)] = 60606, + [SMALL_STATE(2091)] = 60691, + [SMALL_STATE(2092)] = 60744, + [SMALL_STATE(2093)] = 60797, + [SMALL_STATE(2094)] = 60850, + [SMALL_STATE(2095)] = 60903, + [SMALL_STATE(2096)] = 60980, + [SMALL_STATE(2097)] = 61033, + [SMALL_STATE(2098)] = 61086, + [SMALL_STATE(2099)] = 61173, + [SMALL_STATE(2100)] = 61262, + [SMALL_STATE(2101)] = 61315, + [SMALL_STATE(2102)] = 61402, + [SMALL_STATE(2103)] = 61455, + [SMALL_STATE(2104)] = 61508, + [SMALL_STATE(2105)] = 61597, + [SMALL_STATE(2106)] = 61650, + [SMALL_STATE(2107)] = 61703, + [SMALL_STATE(2108)] = 61792, + [SMALL_STATE(2109)] = 61845, + [SMALL_STATE(2110)] = 61914, + [SMALL_STATE(2111)] = 62003, + [SMALL_STATE(2112)] = 62066, + [SMALL_STATE(2113)] = 62153, + [SMALL_STATE(2114)] = 62206, + [SMALL_STATE(2115)] = 62295, + [SMALL_STATE(2116)] = 62356, + [SMALL_STATE(2117)] = 62443, + [SMALL_STATE(2118)] = 62532, + [SMALL_STATE(2119)] = 62618, + [SMALL_STATE(2120)] = 62704, + [SMALL_STATE(2121)] = 62790, + [SMALL_STATE(2122)] = 62876, + [SMALL_STATE(2123)] = 62950, + [SMALL_STATE(2124)] = 63036, + [SMALL_STATE(2125)] = 63122, + [SMALL_STATE(2126)] = 63208, + [SMALL_STATE(2127)] = 63294, + [SMALL_STATE(2128)] = 63380, + [SMALL_STATE(2129)] = 63466, + [SMALL_STATE(2130)] = 63540, + [SMALL_STATE(2131)] = 63624, + [SMALL_STATE(2132)] = 63710, + [SMALL_STATE(2133)] = 63796, + [SMALL_STATE(2134)] = 63882, + [SMALL_STATE(2135)] = 63968, + [SMALL_STATE(2136)] = 64042, + [SMALL_STATE(2137)] = 64128, + [SMALL_STATE(2138)] = 64214, + [SMALL_STATE(2139)] = 64300, + [SMALL_STATE(2140)] = 64386, + [SMALL_STATE(2141)] = 64460, + [SMALL_STATE(2142)] = 64544, + [SMALL_STATE(2143)] = 64630, + [SMALL_STATE(2144)] = 64716, + [SMALL_STATE(2145)] = 64802, + [SMALL_STATE(2146)] = 64888, + [SMALL_STATE(2147)] = 64974, + [SMALL_STATE(2148)] = 65060, + [SMALL_STATE(2149)] = 65134, + [SMALL_STATE(2150)] = 65220, + [SMALL_STATE(2151)] = 65306, + [SMALL_STATE(2152)] = 65380, + [SMALL_STATE(2153)] = 65466, + [SMALL_STATE(2154)] = 65552, + [SMALL_STATE(2155)] = 65638, + [SMALL_STATE(2156)] = 65724, + [SMALL_STATE(2157)] = 65810, + [SMALL_STATE(2158)] = 65896, + [SMALL_STATE(2159)] = 65982, + [SMALL_STATE(2160)] = 66056, + [SMALL_STATE(2161)] = 66142, + [SMALL_STATE(2162)] = 66217, + [SMALL_STATE(2163)] = 66292, + [SMALL_STATE(2164)] = 66367, + [SMALL_STATE(2165)] = 66442, + [SMALL_STATE(2166)] = 66517, + [SMALL_STATE(2167)] = 66592, + [SMALL_STATE(2168)] = 66667, + [SMALL_STATE(2169)] = 66742, + [SMALL_STATE(2170)] = 66817, + [SMALL_STATE(2171)] = 66892, + [SMALL_STATE(2172)] = 66967, + [SMALL_STATE(2173)] = 67042, + [SMALL_STATE(2174)] = 67089, + [SMALL_STATE(2175)] = 67136, + [SMALL_STATE(2176)] = 67183, + [SMALL_STATE(2177)] = 67245, + [SMALL_STATE(2178)] = 67307, + [SMALL_STATE(2179)] = 67369, + [SMALL_STATE(2180)] = 67431, + [SMALL_STATE(2181)] = 67493, + [SMALL_STATE(2182)] = 67555, + [SMALL_STATE(2183)] = 67617, + [SMALL_STATE(2184)] = 67676, + [SMALL_STATE(2185)] = 67735, + [SMALL_STATE(2186)] = 67779, + [SMALL_STATE(2187)] = 67863, + [SMALL_STATE(2188)] = 67947, + [SMALL_STATE(2189)] = 67985, + [SMALL_STATE(2190)] = 68023, + [SMALL_STATE(2191)] = 68059, + [SMALL_STATE(2192)] = 68107, + [SMALL_STATE(2193)] = 68143, + [SMALL_STATE(2194)] = 68196, + [SMALL_STATE(2195)] = 68233, + [SMALL_STATE(2196)] = 68270, + [SMALL_STATE(2197)] = 68307, + [SMALL_STATE(2198)] = 68344, + [SMALL_STATE(2199)] = 68389, + [SMALL_STATE(2200)] = 68434, + [SMALL_STATE(2201)] = 68479, + [SMALL_STATE(2202)] = 68519, + [SMALL_STATE(2203)] = 68559, + [SMALL_STATE(2204)] = 68599, + [SMALL_STATE(2205)] = 68639, + [SMALL_STATE(2206)] = 68675, + [SMALL_STATE(2207)] = 68711, + [SMALL_STATE(2208)] = 68747, + [SMALL_STATE(2209)] = 68783, + [SMALL_STATE(2210)] = 68814, + [SMALL_STATE(2211)] = 68847, + [SMALL_STATE(2212)] = 68880, + [SMALL_STATE(2213)] = 68913, + [SMALL_STATE(2214)] = 68946, + [SMALL_STATE(2215)] = 68979, + [SMALL_STATE(2216)] = 69012, + [SMALL_STATE(2217)] = 69045, + [SMALL_STATE(2218)] = 69078, + [SMALL_STATE(2219)] = 69124, + [SMALL_STATE(2220)] = 69156, + [SMALL_STATE(2221)] = 69216, + [SMALL_STATE(2222)] = 69248, + [SMALL_STATE(2223)] = 69292, + [SMALL_STATE(2224)] = 69352, + [SMALL_STATE(2225)] = 69412, + [SMALL_STATE(2226)] = 69472, + [SMALL_STATE(2227)] = 69504, + [SMALL_STATE(2228)] = 69533, + [SMALL_STATE(2229)] = 69566, + [SMALL_STATE(2230)] = 69595, + [SMALL_STATE(2231)] = 69624, + [SMALL_STATE(2232)] = 69655, + [SMALL_STATE(2233)] = 69686, + [SMALL_STATE(2234)] = 69715, + [SMALL_STATE(2235)] = 69744, + [SMALL_STATE(2236)] = 69775, + [SMALL_STATE(2237)] = 69830, + [SMALL_STATE(2238)] = 69859, + [SMALL_STATE(2239)] = 69892, + [SMALL_STATE(2240)] = 69923, + [SMALL_STATE(2241)] = 69956, + [SMALL_STATE(2242)] = 69989, + [SMALL_STATE(2243)] = 70042, + [SMALL_STATE(2244)] = 70075, + [SMALL_STATE(2245)] = 70106, + [SMALL_STATE(2246)] = 70137, + [SMALL_STATE(2247)] = 70178, + [SMALL_STATE(2248)] = 70221, + [SMALL_STATE(2249)] = 70252, + [SMALL_STATE(2250)] = 70281, + [SMALL_STATE(2251)] = 70312, + [SMALL_STATE(2252)] = 70341, + [SMALL_STATE(2253)] = 70374, + [SMALL_STATE(2254)] = 70403, + [SMALL_STATE(2255)] = 70456, + [SMALL_STATE(2256)] = 70484, + [SMALL_STATE(2257)] = 70512, + [SMALL_STATE(2258)] = 70556, + [SMALL_STATE(2259)] = 70584, + [SMALL_STATE(2260)] = 70612, + [SMALL_STATE(2261)] = 70640, + [SMALL_STATE(2262)] = 70668, + [SMALL_STATE(2263)] = 70696, + [SMALL_STATE(2264)] = 70724, + [SMALL_STATE(2265)] = 70752, + [SMALL_STATE(2266)] = 70780, + [SMALL_STATE(2267)] = 70808, + [SMALL_STATE(2268)] = 70836, + [SMALL_STATE(2269)] = 70864, + [SMALL_STATE(2270)] = 70892, + [SMALL_STATE(2271)] = 70920, + [SMALL_STATE(2272)] = 70948, + [SMALL_STATE(2273)] = 70978, + [SMALL_STATE(2274)] = 71006, + [SMALL_STATE(2275)] = 71034, + [SMALL_STATE(2276)] = 71062, + [SMALL_STATE(2277)] = 71090, + [SMALL_STATE(2278)] = 71118, + [SMALL_STATE(2279)] = 71146, + [SMALL_STATE(2280)] = 71174, + [SMALL_STATE(2281)] = 71202, + [SMALL_STATE(2282)] = 71232, + [SMALL_STATE(2283)] = 71260, + [SMALL_STATE(2284)] = 71288, + [SMALL_STATE(2285)] = 71316, + [SMALL_STATE(2286)] = 71344, + [SMALL_STATE(2287)] = 71372, + [SMALL_STATE(2288)] = 71400, + [SMALL_STATE(2289)] = 71435, + [SMALL_STATE(2290)] = 71486, + [SMALL_STATE(2291)] = 71515, + [SMALL_STATE(2292)] = 71544, + [SMALL_STATE(2293)] = 71575, + [SMALL_STATE(2294)] = 71607, + [SMALL_STATE(2295)] = 71651, + [SMALL_STATE(2296)] = 71683, + [SMALL_STATE(2297)] = 71711, + [SMALL_STATE(2298)] = 71743, + [SMALL_STATE(2299)] = 71775, + [SMALL_STATE(2300)] = 71805, + [SMALL_STATE(2301)] = 71837, + [SMALL_STATE(2302)] = 71865, + [SMALL_STATE(2303)] = 71897, + [SMALL_STATE(2304)] = 71929, + [SMALL_STATE(2305)] = 71961, + [SMALL_STATE(2306)] = 71993, + [SMALL_STATE(2307)] = 72025, + [SMALL_STATE(2308)] = 72057, + [SMALL_STATE(2309)] = 72089, + [SMALL_STATE(2310)] = 72134, + [SMALL_STATE(2311)] = 72179, + [SMALL_STATE(2312)] = 72224, + [SMALL_STATE(2313)] = 72269, + [SMALL_STATE(2314)] = 72314, + [SMALL_STATE(2315)] = 72359, + [SMALL_STATE(2316)] = 72404, + [SMALL_STATE(2317)] = 72449, + [SMALL_STATE(2318)] = 72494, + [SMALL_STATE(2319)] = 72539, + [SMALL_STATE(2320)] = 72576, + [SMALL_STATE(2321)] = 72621, + [SMALL_STATE(2322)] = 72666, + [SMALL_STATE(2323)] = 72711, + [SMALL_STATE(2324)] = 72756, + [SMALL_STATE(2325)] = 72801, + [SMALL_STATE(2326)] = 72843, + [SMALL_STATE(2327)] = 72881, + [SMALL_STATE(2328)] = 72921, + [SMALL_STATE(2329)] = 72961, + [SMALL_STATE(2330)] = 72989, + [SMALL_STATE(2331)] = 73017, + [SMALL_STATE(2332)] = 73045, + [SMALL_STATE(2333)] = 73073, + [SMALL_STATE(2334)] = 73115, + [SMALL_STATE(2335)] = 73149, + [SMALL_STATE(2336)] = 73189, + [SMALL_STATE(2337)] = 73213, + [SMALL_STATE(2338)] = 73255, + [SMALL_STATE(2339)] = 73283, + [SMALL_STATE(2340)] = 73317, + [SMALL_STATE(2341)] = 73355, + [SMALL_STATE(2342)] = 73385, + [SMALL_STATE(2343)] = 73413, + [SMALL_STATE(2344)] = 73441, + [SMALL_STATE(2345)] = 73469, + [SMALL_STATE(2346)] = 73499, + [SMALL_STATE(2347)] = 73537, + [SMALL_STATE(2348)] = 73561, + [SMALL_STATE(2349)] = 73599, + [SMALL_STATE(2350)] = 73637, + [SMALL_STATE(2351)] = 73675, + [SMALL_STATE(2352)] = 73713, + [SMALL_STATE(2353)] = 73737, + [SMALL_STATE(2354)] = 73761, + [SMALL_STATE(2355)] = 73791, + [SMALL_STATE(2356)] = 73833, + [SMALL_STATE(2357)] = 73871, + [SMALL_STATE(2358)] = 73899, + [SMALL_STATE(2359)] = 73927, + [SMALL_STATE(2360)] = 73965, + [SMALL_STATE(2361)] = 73995, + [SMALL_STATE(2362)] = 74033, + [SMALL_STATE(2363)] = 74071, + [SMALL_STATE(2364)] = 74109, + [SMALL_STATE(2365)] = 74147, + [SMALL_STATE(2366)] = 74175, + [SMALL_STATE(2367)] = 74205, + [SMALL_STATE(2368)] = 74247, + [SMALL_STATE(2369)] = 74277, + [SMALL_STATE(2370)] = 74305, + [SMALL_STATE(2371)] = 74347, + [SMALL_STATE(2372)] = 74371, + [SMALL_STATE(2373)] = 74413, + [SMALL_STATE(2374)] = 74436, + [SMALL_STATE(2375)] = 74459, + [SMALL_STATE(2376)] = 74482, + [SMALL_STATE(2377)] = 74505, + [SMALL_STATE(2378)] = 74528, + [SMALL_STATE(2379)] = 74551, + [SMALL_STATE(2380)] = 74592, + [SMALL_STATE(2381)] = 74615, + [SMALL_STATE(2382)] = 74638, + [SMALL_STATE(2383)] = 74661, + [SMALL_STATE(2384)] = 74684, + [SMALL_STATE(2385)] = 74707, + [SMALL_STATE(2386)] = 74730, + [SMALL_STATE(2387)] = 74753, + [SMALL_STATE(2388)] = 74776, + [SMALL_STATE(2389)] = 74799, + [SMALL_STATE(2390)] = 74822, + [SMALL_STATE(2391)] = 74845, + [SMALL_STATE(2392)] = 74880, + [SMALL_STATE(2393)] = 74921, + [SMALL_STATE(2394)] = 74952, + [SMALL_STATE(2395)] = 74983, + [SMALL_STATE(2396)] = 75006, + [SMALL_STATE(2397)] = 75043, + [SMALL_STATE(2398)] = 75078, + [SMALL_STATE(2399)] = 75101, + [SMALL_STATE(2400)] = 75124, + [SMALL_STATE(2401)] = 75157, + [SMALL_STATE(2402)] = 75180, + [SMALL_STATE(2403)] = 75221, + [SMALL_STATE(2404)] = 75244, + [SMALL_STATE(2405)] = 75267, + [SMALL_STATE(2406)] = 75290, + [SMALL_STATE(2407)] = 75321, + [SMALL_STATE(2408)] = 75344, + [SMALL_STATE(2409)] = 75367, + [SMALL_STATE(2410)] = 75390, + [SMALL_STATE(2411)] = 75427, + [SMALL_STATE(2412)] = 75450, + [SMALL_STATE(2413)] = 75473, + [SMALL_STATE(2414)] = 75496, + [SMALL_STATE(2415)] = 75519, + [SMALL_STATE(2416)] = 75556, + [SMALL_STATE(2417)] = 75597, + [SMALL_STATE(2418)] = 75620, + [SMALL_STATE(2419)] = 75651, + [SMALL_STATE(2420)] = 75674, + [SMALL_STATE(2421)] = 75697, + [SMALL_STATE(2422)] = 75720, + [SMALL_STATE(2423)] = 75743, + [SMALL_STATE(2424)] = 75778, + [SMALL_STATE(2425)] = 75815, + [SMALL_STATE(2426)] = 75843, + [SMALL_STATE(2427)] = 75867, + [SMALL_STATE(2428)] = 75905, + [SMALL_STATE(2429)] = 75933, + [SMALL_STATE(2430)] = 75971, + [SMALL_STATE(2431)] = 76009, + [SMALL_STATE(2432)] = 76047, + [SMALL_STATE(2433)] = 76079, + [SMALL_STATE(2434)] = 76107, + [SMALL_STATE(2435)] = 76141, + [SMALL_STATE(2436)] = 76173, + [SMALL_STATE(2437)] = 76205, + [SMALL_STATE(2438)] = 76243, + [SMALL_STATE(2439)] = 76271, + [SMALL_STATE(2440)] = 76307, + [SMALL_STATE(2441)] = 76345, + [SMALL_STATE(2442)] = 76377, + [SMALL_STATE(2443)] = 76403, + [SMALL_STATE(2444)] = 76435, + [SMALL_STATE(2445)] = 76473, + [SMALL_STATE(2446)] = 76511, + [SMALL_STATE(2447)] = 76535, + [SMALL_STATE(2448)] = 76563, + [SMALL_STATE(2449)] = 76595, + [SMALL_STATE(2450)] = 76633, + [SMALL_STATE(2451)] = 76665, + [SMALL_STATE(2452)] = 76689, + [SMALL_STATE(2453)] = 76727, + [SMALL_STATE(2454)] = 76759, + [SMALL_STATE(2455)] = 76797, + [SMALL_STATE(2456)] = 76835, + [SMALL_STATE(2457)] = 76863, + [SMALL_STATE(2458)] = 76887, + [SMALL_STATE(2459)] = 76919, + [SMALL_STATE(2460)] = 76951, + [SMALL_STATE(2461)] = 76989, + [SMALL_STATE(2462)] = 77021, + [SMALL_STATE(2463)] = 77045, + [SMALL_STATE(2464)] = 77077, + [SMALL_STATE(2465)] = 77115, + [SMALL_STATE(2466)] = 77153, + [SMALL_STATE(2467)] = 77181, + [SMALL_STATE(2468)] = 77213, + [SMALL_STATE(2469)] = 77241, + [SMALL_STATE(2470)] = 77267, + [SMALL_STATE(2471)] = 77299, + [SMALL_STATE(2472)] = 77331, + [SMALL_STATE(2473)] = 77365, + [SMALL_STATE(2474)] = 77393, + [SMALL_STATE(2475)] = 77419, + [SMALL_STATE(2476)] = 77451, + [SMALL_STATE(2477)] = 77489, + [SMALL_STATE(2478)] = 77527, + [SMALL_STATE(2479)] = 77565, + [SMALL_STATE(2480)] = 77597, + [SMALL_STATE(2481)] = 77623, + [SMALL_STATE(2482)] = 77658, + [SMALL_STATE(2483)] = 77693, + [SMALL_STATE(2484)] = 77718, + [SMALL_STATE(2485)] = 77743, + [SMALL_STATE(2486)] = 77778, + [SMALL_STATE(2487)] = 77813, + [SMALL_STATE(2488)] = 77848, + [SMALL_STATE(2489)] = 77883, + [SMALL_STATE(2490)] = 77918, + [SMALL_STATE(2491)] = 77953, + [SMALL_STATE(2492)] = 77980, + [SMALL_STATE(2493)] = 78015, + [SMALL_STATE(2494)] = 78050, + [SMALL_STATE(2495)] = 78085, + [SMALL_STATE(2496)] = 78120, + [SMALL_STATE(2497)] = 78155, + [SMALL_STATE(2498)] = 78190, + [SMALL_STATE(2499)] = 78223, + [SMALL_STATE(2500)] = 78248, + [SMALL_STATE(2501)] = 78283, + [SMALL_STATE(2502)] = 78318, + [SMALL_STATE(2503)] = 78353, + [SMALL_STATE(2504)] = 78388, + [SMALL_STATE(2505)] = 78409, + [SMALL_STATE(2506)] = 78444, + [SMALL_STATE(2507)] = 78479, + [SMALL_STATE(2508)] = 78514, + [SMALL_STATE(2509)] = 78549, + [SMALL_STATE(2510)] = 78584, + [SMALL_STATE(2511)] = 78619, + [SMALL_STATE(2512)] = 78644, + [SMALL_STATE(2513)] = 78677, + [SMALL_STATE(2514)] = 78712, + [SMALL_STATE(2515)] = 78745, + [SMALL_STATE(2516)] = 78780, + [SMALL_STATE(2517)] = 78815, + [SMALL_STATE(2518)] = 78850, + [SMALL_STATE(2519)] = 78885, + [SMALL_STATE(2520)] = 78914, + [SMALL_STATE(2521)] = 78949, + [SMALL_STATE(2522)] = 78970, + [SMALL_STATE(2523)] = 79005, + [SMALL_STATE(2524)] = 79026, + [SMALL_STATE(2525)] = 79047, + [SMALL_STATE(2526)] = 79072, + [SMALL_STATE(2527)] = 79093, + [SMALL_STATE(2528)] = 79128, + [SMALL_STATE(2529)] = 79149, + [SMALL_STATE(2530)] = 79184, + [SMALL_STATE(2531)] = 79219, + [SMALL_STATE(2532)] = 79254, + [SMALL_STATE(2533)] = 79289, + [SMALL_STATE(2534)] = 79324, + [SMALL_STATE(2535)] = 79357, + [SMALL_STATE(2536)] = 79392, + [SMALL_STATE(2537)] = 79427, + [SMALL_STATE(2538)] = 79462, + [SMALL_STATE(2539)] = 79497, + [SMALL_STATE(2540)] = 79530, + [SMALL_STATE(2541)] = 79565, + [SMALL_STATE(2542)] = 79600, + [SMALL_STATE(2543)] = 79635, + [SMALL_STATE(2544)] = 79670, + [SMALL_STATE(2545)] = 79705, + [SMALL_STATE(2546)] = 79740, + [SMALL_STATE(2547)] = 79775, + [SMALL_STATE(2548)] = 79810, + [SMALL_STATE(2549)] = 79845, + [SMALL_STATE(2550)] = 79880, + [SMALL_STATE(2551)] = 79915, + [SMALL_STATE(2552)] = 79945, + [SMALL_STATE(2553)] = 79971, + [SMALL_STATE(2554)] = 80003, + [SMALL_STATE(2555)] = 80035, + [SMALL_STATE(2556)] = 80067, + [SMALL_STATE(2557)] = 80099, + [SMALL_STATE(2558)] = 80131, + [SMALL_STATE(2559)] = 80153, + [SMALL_STATE(2560)] = 80183, + [SMALL_STATE(2561)] = 80213, + [SMALL_STATE(2562)] = 80245, + [SMALL_STATE(2563)] = 80273, + [SMALL_STATE(2564)] = 80305, + [SMALL_STATE(2565)] = 80327, + [SMALL_STATE(2566)] = 80357, + [SMALL_STATE(2567)] = 80387, + [SMALL_STATE(2568)] = 80413, + [SMALL_STATE(2569)] = 80441, + [SMALL_STATE(2570)] = 80473, + [SMALL_STATE(2571)] = 80503, + [SMALL_STATE(2572)] = 80531, + [SMALL_STATE(2573)] = 80559, + [SMALL_STATE(2574)] = 80591, + [SMALL_STATE(2575)] = 80623, + [SMALL_STATE(2576)] = 80655, + [SMALL_STATE(2577)] = 80687, + [SMALL_STATE(2578)] = 80719, + [SMALL_STATE(2579)] = 80751, + [SMALL_STATE(2580)] = 80773, + [SMALL_STATE(2581)] = 80795, + [SMALL_STATE(2582)] = 80817, + [SMALL_STATE(2583)] = 80839, + [SMALL_STATE(2584)] = 80871, + [SMALL_STATE(2585)] = 80903, + [SMALL_STATE(2586)] = 80933, + [SMALL_STATE(2587)] = 80963, + [SMALL_STATE(2588)] = 80993, + [SMALL_STATE(2589)] = 81023, + [SMALL_STATE(2590)] = 81055, + [SMALL_STATE(2591)] = 81077, + [SMALL_STATE(2592)] = 81099, + [SMALL_STATE(2593)] = 81131, + [SMALL_STATE(2594)] = 81163, + [SMALL_STATE(2595)] = 81195, + [SMALL_STATE(2596)] = 81227, + [SMALL_STATE(2597)] = 81259, + [SMALL_STATE(2598)] = 81291, + [SMALL_STATE(2599)] = 81323, + [SMALL_STATE(2600)] = 81355, + [SMALL_STATE(2601)] = 81387, + [SMALL_STATE(2602)] = 81419, + [SMALL_STATE(2603)] = 81451, + [SMALL_STATE(2604)] = 81483, + [SMALL_STATE(2605)] = 81515, + [SMALL_STATE(2606)] = 81547, + [SMALL_STATE(2607)] = 81573, + [SMALL_STATE(2608)] = 81605, + [SMALL_STATE(2609)] = 81637, + [SMALL_STATE(2610)] = 81669, + [SMALL_STATE(2611)] = 81701, + [SMALL_STATE(2612)] = 81723, + [SMALL_STATE(2613)] = 81751, + [SMALL_STATE(2614)] = 81777, + [SMALL_STATE(2615)] = 81799, + [SMALL_STATE(2616)] = 81828, + [SMALL_STATE(2617)] = 81857, + [SMALL_STATE(2618)] = 81880, + [SMALL_STATE(2619)] = 81907, + [SMALL_STATE(2620)] = 81936, + [SMALL_STATE(2621)] = 81957, + [SMALL_STATE(2622)] = 81976, + [SMALL_STATE(2623)] = 82005, + [SMALL_STATE(2624)] = 82034, + [SMALL_STATE(2625)] = 82063, + [SMALL_STATE(2626)] = 82092, + [SMALL_STATE(2627)] = 82121, + [SMALL_STATE(2628)] = 82150, + [SMALL_STATE(2629)] = 82179, + [SMALL_STATE(2630)] = 82208, + [SMALL_STATE(2631)] = 82237, + [SMALL_STATE(2632)] = 82266, + [SMALL_STATE(2633)] = 82295, + [SMALL_STATE(2634)] = 82324, + [SMALL_STATE(2635)] = 82347, + [SMALL_STATE(2636)] = 82370, + [SMALL_STATE(2637)] = 82393, + [SMALL_STATE(2638)] = 82416, + [SMALL_STATE(2639)] = 82445, + [SMALL_STATE(2640)] = 82470, + [SMALL_STATE(2641)] = 82499, + [SMALL_STATE(2642)] = 82528, + [SMALL_STATE(2643)] = 82557, + [SMALL_STATE(2644)] = 82586, + [SMALL_STATE(2645)] = 82609, + [SMALL_STATE(2646)] = 82638, + [SMALL_STATE(2647)] = 82667, + [SMALL_STATE(2648)] = 82696, + [SMALL_STATE(2649)] = 82725, + [SMALL_STATE(2650)] = 82748, + [SMALL_STATE(2651)] = 82777, + [SMALL_STATE(2652)] = 82806, + [SMALL_STATE(2653)] = 82829, + [SMALL_STATE(2654)] = 82852, + [SMALL_STATE(2655)] = 82877, + [SMALL_STATE(2656)] = 82906, + [SMALL_STATE(2657)] = 82935, + [SMALL_STATE(2658)] = 82962, + [SMALL_STATE(2659)] = 82985, + [SMALL_STATE(2660)] = 83008, + [SMALL_STATE(2661)] = 83035, + [SMALL_STATE(2662)] = 83064, + [SMALL_STATE(2663)] = 83093, + [SMALL_STATE(2664)] = 83114, + [SMALL_STATE(2665)] = 83143, + [SMALL_STATE(2666)] = 83166, + [SMALL_STATE(2667)] = 83191, + [SMALL_STATE(2668)] = 83220, + [SMALL_STATE(2669)] = 83243, + [SMALL_STATE(2670)] = 83264, + [SMALL_STATE(2671)] = 83293, + [SMALL_STATE(2672)] = 83322, + [SMALL_STATE(2673)] = 83351, + [SMALL_STATE(2674)] = 83380, + [SMALL_STATE(2675)] = 83409, + [SMALL_STATE(2676)] = 83438, + [SMALL_STATE(2677)] = 83467, + [SMALL_STATE(2678)] = 83488, + [SMALL_STATE(2679)] = 83517, + [SMALL_STATE(2680)] = 83538, + [SMALL_STATE(2681)] = 83567, + [SMALL_STATE(2682)] = 83596, + [SMALL_STATE(2683)] = 83625, + [SMALL_STATE(2684)] = 83654, + [SMALL_STATE(2685)] = 83683, + [SMALL_STATE(2686)] = 83712, + [SMALL_STATE(2687)] = 83741, + [SMALL_STATE(2688)] = 83770, + [SMALL_STATE(2689)] = 83791, + [SMALL_STATE(2690)] = 83816, + [SMALL_STATE(2691)] = 83839, + [SMALL_STATE(2692)] = 83860, + [SMALL_STATE(2693)] = 83889, + [SMALL_STATE(2694)] = 83918, + [SMALL_STATE(2695)] = 83947, + [SMALL_STATE(2696)] = 83976, + [SMALL_STATE(2697)] = 84005, + [SMALL_STATE(2698)] = 84034, + [SMALL_STATE(2699)] = 84063, + [SMALL_STATE(2700)] = 84092, + [SMALL_STATE(2701)] = 84119, + [SMALL_STATE(2702)] = 84148, + [SMALL_STATE(2703)] = 84177, + [SMALL_STATE(2704)] = 84206, + [SMALL_STATE(2705)] = 84229, + [SMALL_STATE(2706)] = 84258, + [SMALL_STATE(2707)] = 84287, + [SMALL_STATE(2708)] = 84308, + [SMALL_STATE(2709)] = 84337, + [SMALL_STATE(2710)] = 84364, + [SMALL_STATE(2711)] = 84393, + [SMALL_STATE(2712)] = 84422, + [SMALL_STATE(2713)] = 84451, + [SMALL_STATE(2714)] = 84478, + [SMALL_STATE(2715)] = 84501, + [SMALL_STATE(2716)] = 84530, + [SMALL_STATE(2717)] = 84559, + [SMALL_STATE(2718)] = 84588, + [SMALL_STATE(2719)] = 84617, + [SMALL_STATE(2720)] = 84646, + [SMALL_STATE(2721)] = 84675, + [SMALL_STATE(2722)] = 84704, + [SMALL_STATE(2723)] = 84733, + [SMALL_STATE(2724)] = 84762, + [SMALL_STATE(2725)] = 84791, + [SMALL_STATE(2726)] = 84820, + [SMALL_STATE(2727)] = 84849, + [SMALL_STATE(2728)] = 84878, + [SMALL_STATE(2729)] = 84907, + [SMALL_STATE(2730)] = 84936, + [SMALL_STATE(2731)] = 84959, + [SMALL_STATE(2732)] = 84988, + [SMALL_STATE(2733)] = 85017, + [SMALL_STATE(2734)] = 85046, + [SMALL_STATE(2735)] = 85065, + [SMALL_STATE(2736)] = 85094, + [SMALL_STATE(2737)] = 85123, + [SMALL_STATE(2738)] = 85152, + [SMALL_STATE(2739)] = 85175, + [SMALL_STATE(2740)] = 85204, + [SMALL_STATE(2741)] = 85233, + [SMALL_STATE(2742)] = 85262, + [SMALL_STATE(2743)] = 85288, + [SMALL_STATE(2744)] = 85314, + [SMALL_STATE(2745)] = 85338, + [SMALL_STATE(2746)] = 85364, + [SMALL_STATE(2747)] = 85390, + [SMALL_STATE(2748)] = 85416, + [SMALL_STATE(2749)] = 85434, + [SMALL_STATE(2750)] = 85452, + [SMALL_STATE(2751)] = 85478, + [SMALL_STATE(2752)] = 85498, + [SMALL_STATE(2753)] = 85524, + [SMALL_STATE(2754)] = 85550, + [SMALL_STATE(2755)] = 85576, + [SMALL_STATE(2756)] = 85594, + [SMALL_STATE(2757)] = 85616, + [SMALL_STATE(2758)] = 85640, + [SMALL_STATE(2759)] = 85666, + [SMALL_STATE(2760)] = 85692, + [SMALL_STATE(2761)] = 85710, + [SMALL_STATE(2762)] = 85736, + [SMALL_STATE(2763)] = 85762, + [SMALL_STATE(2764)] = 85788, + [SMALL_STATE(2765)] = 85814, + [SMALL_STATE(2766)] = 85832, + [SMALL_STATE(2767)] = 85858, + [SMALL_STATE(2768)] = 85876, + [SMALL_STATE(2769)] = 85902, + [SMALL_STATE(2770)] = 85920, + [SMALL_STATE(2771)] = 85946, + [SMALL_STATE(2772)] = 85972, + [SMALL_STATE(2773)] = 85990, + [SMALL_STATE(2774)] = 86014, + [SMALL_STATE(2775)] = 86040, + [SMALL_STATE(2776)] = 86062, + [SMALL_STATE(2777)] = 86084, + [SMALL_STATE(2778)] = 86102, + [SMALL_STATE(2779)] = 86128, + [SMALL_STATE(2780)] = 86146, + [SMALL_STATE(2781)] = 86172, + [SMALL_STATE(2782)] = 86190, + [SMALL_STATE(2783)] = 86216, + [SMALL_STATE(2784)] = 86234, + [SMALL_STATE(2785)] = 86254, + [SMALL_STATE(2786)] = 86272, + [SMALL_STATE(2787)] = 86296, + [SMALL_STATE(2788)] = 86322, + [SMALL_STATE(2789)] = 86340, + [SMALL_STATE(2790)] = 86366, + [SMALL_STATE(2791)] = 86392, + [SMALL_STATE(2792)] = 86412, + [SMALL_STATE(2793)] = 86438, + [SMALL_STATE(2794)] = 86464, + [SMALL_STATE(2795)] = 86490, + [SMALL_STATE(2796)] = 86516, + [SMALL_STATE(2797)] = 86534, + [SMALL_STATE(2798)] = 86558, + [SMALL_STATE(2799)] = 86584, + [SMALL_STATE(2800)] = 86610, + [SMALL_STATE(2801)] = 86632, + [SMALL_STATE(2802)] = 86658, + [SMALL_STATE(2803)] = 86682, + [SMALL_STATE(2804)] = 86708, + [SMALL_STATE(2805)] = 86734, + [SMALL_STATE(2806)] = 86760, + [SMALL_STATE(2807)] = 86782, + [SMALL_STATE(2808)] = 86804, + [SMALL_STATE(2809)] = 86828, + [SMALL_STATE(2810)] = 86854, + [SMALL_STATE(2811)] = 86880, + [SMALL_STATE(2812)] = 86906, + [SMALL_STATE(2813)] = 86932, + [SMALL_STATE(2814)] = 86950, + [SMALL_STATE(2815)] = 86972, + [SMALL_STATE(2816)] = 86998, + [SMALL_STATE(2817)] = 87022, + [SMALL_STATE(2818)] = 87046, + [SMALL_STATE(2819)] = 87068, + [SMALL_STATE(2820)] = 87086, + [SMALL_STATE(2821)] = 87104, + [SMALL_STATE(2822)] = 87130, + [SMALL_STATE(2823)] = 87148, + [SMALL_STATE(2824)] = 87172, + [SMALL_STATE(2825)] = 87196, + [SMALL_STATE(2826)] = 87218, + [SMALL_STATE(2827)] = 87240, + [SMALL_STATE(2828)] = 87266, + [SMALL_STATE(2829)] = 87292, + [SMALL_STATE(2830)] = 87318, + [SMALL_STATE(2831)] = 87344, + [SMALL_STATE(2832)] = 87368, + [SMALL_STATE(2833)] = 87394, + [SMALL_STATE(2834)] = 87420, + [SMALL_STATE(2835)] = 87446, + [SMALL_STATE(2836)] = 87472, + [SMALL_STATE(2837)] = 87496, + [SMALL_STATE(2838)] = 87522, + [SMALL_STATE(2839)] = 87540, + [SMALL_STATE(2840)] = 87558, + [SMALL_STATE(2841)] = 87584, + [SMALL_STATE(2842)] = 87610, + [SMALL_STATE(2843)] = 87636, + [SMALL_STATE(2844)] = 87662, + [SMALL_STATE(2845)] = 87680, + [SMALL_STATE(2846)] = 87698, + [SMALL_STATE(2847)] = 87724, + [SMALL_STATE(2848)] = 87748, + [SMALL_STATE(2849)] = 87774, + [SMALL_STATE(2850)] = 87800, + [SMALL_STATE(2851)] = 87818, + [SMALL_STATE(2852)] = 87844, + [SMALL_STATE(2853)] = 87868, + [SMALL_STATE(2854)] = 87894, + [SMALL_STATE(2855)] = 87920, + [SMALL_STATE(2856)] = 87938, + [SMALL_STATE(2857)] = 87964, + [SMALL_STATE(2858)] = 87990, + [SMALL_STATE(2859)] = 88016, + [SMALL_STATE(2860)] = 88039, + [SMALL_STATE(2861)] = 88062, + [SMALL_STATE(2862)] = 88085, + [SMALL_STATE(2863)] = 88108, + [SMALL_STATE(2864)] = 88131, + [SMALL_STATE(2865)] = 88152, + [SMALL_STATE(2866)] = 88175, + [SMALL_STATE(2867)] = 88198, + [SMALL_STATE(2868)] = 88221, + [SMALL_STATE(2869)] = 88244, + [SMALL_STATE(2870)] = 88267, + [SMALL_STATE(2871)] = 88290, + [SMALL_STATE(2872)] = 88313, + [SMALL_STATE(2873)] = 88336, + [SMALL_STATE(2874)] = 88359, + [SMALL_STATE(2875)] = 88382, + [SMALL_STATE(2876)] = 88405, + [SMALL_STATE(2877)] = 88428, + [SMALL_STATE(2878)] = 88451, + [SMALL_STATE(2879)] = 88474, + [SMALL_STATE(2880)] = 88497, + [SMALL_STATE(2881)] = 88520, + [SMALL_STATE(2882)] = 88541, + [SMALL_STATE(2883)] = 88564, + [SMALL_STATE(2884)] = 88587, + [SMALL_STATE(2885)] = 88610, + [SMALL_STATE(2886)] = 88633, + [SMALL_STATE(2887)] = 88656, + [SMALL_STATE(2888)] = 88679, + [SMALL_STATE(2889)] = 88702, + [SMALL_STATE(2890)] = 88725, + [SMALL_STATE(2891)] = 88748, + [SMALL_STATE(2892)] = 88771, + [SMALL_STATE(2893)] = 88792, + [SMALL_STATE(2894)] = 88815, + [SMALL_STATE(2895)] = 88838, + [SMALL_STATE(2896)] = 88861, + [SMALL_STATE(2897)] = 88884, + [SMALL_STATE(2898)] = 88907, + [SMALL_STATE(2899)] = 88930, + [SMALL_STATE(2900)] = 88953, + [SMALL_STATE(2901)] = 88976, + [SMALL_STATE(2902)] = 88999, + [SMALL_STATE(2903)] = 89020, + [SMALL_STATE(2904)] = 89043, + [SMALL_STATE(2905)] = 89066, + [SMALL_STATE(2906)] = 89087, + [SMALL_STATE(2907)] = 89110, + [SMALL_STATE(2908)] = 89133, + [SMALL_STATE(2909)] = 89154, + [SMALL_STATE(2910)] = 89175, + [SMALL_STATE(2911)] = 89198, + [SMALL_STATE(2912)] = 89221, + [SMALL_STATE(2913)] = 89244, + [SMALL_STATE(2914)] = 89267, + [SMALL_STATE(2915)] = 89290, + [SMALL_STATE(2916)] = 89307, + [SMALL_STATE(2917)] = 89328, + [SMALL_STATE(2918)] = 89351, + [SMALL_STATE(2919)] = 89368, + [SMALL_STATE(2920)] = 89385, + [SMALL_STATE(2921)] = 89408, + [SMALL_STATE(2922)] = 89427, + [SMALL_STATE(2923)] = 89448, + [SMALL_STATE(2924)] = 89467, + [SMALL_STATE(2925)] = 89490, + [SMALL_STATE(2926)] = 89509, + [SMALL_STATE(2927)] = 89532, + [SMALL_STATE(2928)] = 89555, + [SMALL_STATE(2929)] = 89574, + [SMALL_STATE(2930)] = 89597, + [SMALL_STATE(2931)] = 89620, + [SMALL_STATE(2932)] = 89641, + [SMALL_STATE(2933)] = 89664, + [SMALL_STATE(2934)] = 89683, + [SMALL_STATE(2935)] = 89706, + [SMALL_STATE(2936)] = 89729, + [SMALL_STATE(2937)] = 89750, + [SMALL_STATE(2938)] = 89773, + [SMALL_STATE(2939)] = 89796, + [SMALL_STATE(2940)] = 89819, + [SMALL_STATE(2941)] = 89836, + [SMALL_STATE(2942)] = 89859, + [SMALL_STATE(2943)] = 89880, + [SMALL_STATE(2944)] = 89903, + [SMALL_STATE(2945)] = 89926, + [SMALL_STATE(2946)] = 89949, + [SMALL_STATE(2947)] = 89970, + [SMALL_STATE(2948)] = 89993, + [SMALL_STATE(2949)] = 90016, + [SMALL_STATE(2950)] = 90039, + [SMALL_STATE(2951)] = 90062, + [SMALL_STATE(2952)] = 90085, + [SMALL_STATE(2953)] = 90104, + [SMALL_STATE(2954)] = 90123, + [SMALL_STATE(2955)] = 90146, + [SMALL_STATE(2956)] = 90169, + [SMALL_STATE(2957)] = 90186, + [SMALL_STATE(2958)] = 90205, + [SMALL_STATE(2959)] = 90224, + [SMALL_STATE(2960)] = 90247, + [SMALL_STATE(2961)] = 90270, + [SMALL_STATE(2962)] = 90293, + [SMALL_STATE(2963)] = 90316, + [SMALL_STATE(2964)] = 90335, + [SMALL_STATE(2965)] = 90358, + [SMALL_STATE(2966)] = 90381, + [SMALL_STATE(2967)] = 90404, + [SMALL_STATE(2968)] = 90427, + [SMALL_STATE(2969)] = 90450, + [SMALL_STATE(2970)] = 90473, + [SMALL_STATE(2971)] = 90496, + [SMALL_STATE(2972)] = 90519, + [SMALL_STATE(2973)] = 90542, + [SMALL_STATE(2974)] = 90565, + [SMALL_STATE(2975)] = 90588, + [SMALL_STATE(2976)] = 90611, + [SMALL_STATE(2977)] = 90634, + [SMALL_STATE(2978)] = 90657, + [SMALL_STATE(2979)] = 90680, + [SMALL_STATE(2980)] = 90703, + [SMALL_STATE(2981)] = 90724, + [SMALL_STATE(2982)] = 90747, + [SMALL_STATE(2983)] = 90768, + [SMALL_STATE(2984)] = 90791, + [SMALL_STATE(2985)] = 90814, + [SMALL_STATE(2986)] = 90837, + [SMALL_STATE(2987)] = 90860, + [SMALL_STATE(2988)] = 90879, + [SMALL_STATE(2989)] = 90902, + [SMALL_STATE(2990)] = 90925, + [SMALL_STATE(2991)] = 90948, + [SMALL_STATE(2992)] = 90971, + [SMALL_STATE(2993)] = 90992, + [SMALL_STATE(2994)] = 91011, + [SMALL_STATE(2995)] = 91034, + [SMALL_STATE(2996)] = 91057, + [SMALL_STATE(2997)] = 91078, + [SMALL_STATE(2998)] = 91101, + [SMALL_STATE(2999)] = 91124, + [SMALL_STATE(3000)] = 91147, + [SMALL_STATE(3001)] = 91170, + [SMALL_STATE(3002)] = 91191, + [SMALL_STATE(3003)] = 91214, + [SMALL_STATE(3004)] = 91235, + [SMALL_STATE(3005)] = 91258, + [SMALL_STATE(3006)] = 91281, + [SMALL_STATE(3007)] = 91304, + [SMALL_STATE(3008)] = 91327, + [SMALL_STATE(3009)] = 91350, + [SMALL_STATE(3010)] = 91373, + [SMALL_STATE(3011)] = 91392, + [SMALL_STATE(3012)] = 91415, + [SMALL_STATE(3013)] = 91434, + [SMALL_STATE(3014)] = 91457, + [SMALL_STATE(3015)] = 91480, + [SMALL_STATE(3016)] = 91503, + [SMALL_STATE(3017)] = 91526, + [SMALL_STATE(3018)] = 91549, + [SMALL_STATE(3019)] = 91572, + [SMALL_STATE(3020)] = 91595, + [SMALL_STATE(3021)] = 91618, + [SMALL_STATE(3022)] = 91641, + [SMALL_STATE(3023)] = 91664, + [SMALL_STATE(3024)] = 91683, + [SMALL_STATE(3025)] = 91706, + [SMALL_STATE(3026)] = 91729, + [SMALL_STATE(3027)] = 91748, + [SMALL_STATE(3028)] = 91765, + [SMALL_STATE(3029)] = 91788, + [SMALL_STATE(3030)] = 91811, + [SMALL_STATE(3031)] = 91830, + [SMALL_STATE(3032)] = 91851, + [SMALL_STATE(3033)] = 91874, + [SMALL_STATE(3034)] = 91897, + [SMALL_STATE(3035)] = 91920, + [SMALL_STATE(3036)] = 91941, + [SMALL_STATE(3037)] = 91960, + [SMALL_STATE(3038)] = 91983, + [SMALL_STATE(3039)] = 92006, + [SMALL_STATE(3040)] = 92025, + [SMALL_STATE(3041)] = 92048, + [SMALL_STATE(3042)] = 92067, + [SMALL_STATE(3043)] = 92086, + [SMALL_STATE(3044)] = 92105, + [SMALL_STATE(3045)] = 92126, + [SMALL_STATE(3046)] = 92149, + [SMALL_STATE(3047)] = 92172, + [SMALL_STATE(3048)] = 92195, + [SMALL_STATE(3049)] = 92218, + [SMALL_STATE(3050)] = 92235, + [SMALL_STATE(3051)] = 92258, + [SMALL_STATE(3052)] = 92277, + [SMALL_STATE(3053)] = 92300, + [SMALL_STATE(3054)] = 92323, + [SMALL_STATE(3055)] = 92346, + [SMALL_STATE(3056)] = 92369, + [SMALL_STATE(3057)] = 92392, + [SMALL_STATE(3058)] = 92415, + [SMALL_STATE(3059)] = 92438, + [SMALL_STATE(3060)] = 92461, + [SMALL_STATE(3061)] = 92484, + [SMALL_STATE(3062)] = 92505, + [SMALL_STATE(3063)] = 92528, + [SMALL_STATE(3064)] = 92549, + [SMALL_STATE(3065)] = 92572, + [SMALL_STATE(3066)] = 92595, + [SMALL_STATE(3067)] = 92618, + [SMALL_STATE(3068)] = 92641, + [SMALL_STATE(3069)] = 92664, + [SMALL_STATE(3070)] = 92687, + [SMALL_STATE(3071)] = 92710, + [SMALL_STATE(3072)] = 92733, + [SMALL_STATE(3073)] = 92752, + [SMALL_STATE(3074)] = 92775, + [SMALL_STATE(3075)] = 92798, + [SMALL_STATE(3076)] = 92821, + [SMALL_STATE(3077)] = 92844, + [SMALL_STATE(3078)] = 92867, + [SMALL_STATE(3079)] = 92890, + [SMALL_STATE(3080)] = 92913, + [SMALL_STATE(3081)] = 92936, + [SMALL_STATE(3082)] = 92957, + [SMALL_STATE(3083)] = 92980, + [SMALL_STATE(3084)] = 93003, + [SMALL_STATE(3085)] = 93026, + [SMALL_STATE(3086)] = 93049, + [SMALL_STATE(3087)] = 93072, + [SMALL_STATE(3088)] = 93095, + [SMALL_STATE(3089)] = 93118, + [SMALL_STATE(3090)] = 93141, + [SMALL_STATE(3091)] = 93164, + [SMALL_STATE(3092)] = 93187, + [SMALL_STATE(3093)] = 93210, + [SMALL_STATE(3094)] = 93231, + [SMALL_STATE(3095)] = 93250, + [SMALL_STATE(3096)] = 93273, + [SMALL_STATE(3097)] = 93290, + [SMALL_STATE(3098)] = 93313, + [SMALL_STATE(3099)] = 93336, + [SMALL_STATE(3100)] = 93359, + [SMALL_STATE(3101)] = 93382, + [SMALL_STATE(3102)] = 93403, + [SMALL_STATE(3103)] = 93422, + [SMALL_STATE(3104)] = 93445, + [SMALL_STATE(3105)] = 93466, + [SMALL_STATE(3106)] = 93489, + [SMALL_STATE(3107)] = 93512, + [SMALL_STATE(3108)] = 93535, + [SMALL_STATE(3109)] = 93558, + [SMALL_STATE(3110)] = 93581, + [SMALL_STATE(3111)] = 93604, + [SMALL_STATE(3112)] = 93623, + [SMALL_STATE(3113)] = 93646, + [SMALL_STATE(3114)] = 93669, + [SMALL_STATE(3115)] = 93692, + [SMALL_STATE(3116)] = 93715, + [SMALL_STATE(3117)] = 93738, + [SMALL_STATE(3118)] = 93761, + [SMALL_STATE(3119)] = 93784, + [SMALL_STATE(3120)] = 93803, + [SMALL_STATE(3121)] = 93826, + [SMALL_STATE(3122)] = 93849, + [SMALL_STATE(3123)] = 93872, + [SMALL_STATE(3124)] = 93895, + [SMALL_STATE(3125)] = 93918, + [SMALL_STATE(3126)] = 93941, + [SMALL_STATE(3127)] = 93964, + [SMALL_STATE(3128)] = 93987, + [SMALL_STATE(3129)] = 94010, + [SMALL_STATE(3130)] = 94033, + [SMALL_STATE(3131)] = 94053, + [SMALL_STATE(3132)] = 94071, + [SMALL_STATE(3133)] = 94087, + [SMALL_STATE(3134)] = 94103, + [SMALL_STATE(3135)] = 94123, + [SMALL_STATE(3136)] = 94143, + [SMALL_STATE(3137)] = 94163, + [SMALL_STATE(3138)] = 94179, + [SMALL_STATE(3139)] = 94195, + [SMALL_STATE(3140)] = 94215, + [SMALL_STATE(3141)] = 94235, + [SMALL_STATE(3142)] = 94251, + [SMALL_STATE(3143)] = 94267, + [SMALL_STATE(3144)] = 94287, + [SMALL_STATE(3145)] = 94303, + [SMALL_STATE(3146)] = 94319, + [SMALL_STATE(3147)] = 94339, + [SMALL_STATE(3148)] = 94359, + [SMALL_STATE(3149)] = 94379, + [SMALL_STATE(3150)] = 94399, + [SMALL_STATE(3151)] = 94415, + [SMALL_STATE(3152)] = 94431, + [SMALL_STATE(3153)] = 94451, + [SMALL_STATE(3154)] = 94467, + [SMALL_STATE(3155)] = 94487, + [SMALL_STATE(3156)] = 94503, + [SMALL_STATE(3157)] = 94523, + [SMALL_STATE(3158)] = 94543, + [SMALL_STATE(3159)] = 94563, + [SMALL_STATE(3160)] = 94579, + [SMALL_STATE(3161)] = 94599, + [SMALL_STATE(3162)] = 94615, + [SMALL_STATE(3163)] = 94635, + [SMALL_STATE(3164)] = 94651, + [SMALL_STATE(3165)] = 94671, + [SMALL_STATE(3166)] = 94691, + [SMALL_STATE(3167)] = 94711, + [SMALL_STATE(3168)] = 94727, + [SMALL_STATE(3169)] = 94747, + [SMALL_STATE(3170)] = 94767, + [SMALL_STATE(3171)] = 94787, + [SMALL_STATE(3172)] = 94803, + [SMALL_STATE(3173)] = 94823, + [SMALL_STATE(3174)] = 94839, + [SMALL_STATE(3175)] = 94855, + [SMALL_STATE(3176)] = 94875, + [SMALL_STATE(3177)] = 94895, + [SMALL_STATE(3178)] = 94911, + [SMALL_STATE(3179)] = 94927, + [SMALL_STATE(3180)] = 94943, + [SMALL_STATE(3181)] = 94959, + [SMALL_STATE(3182)] = 94979, + [SMALL_STATE(3183)] = 94999, + [SMALL_STATE(3184)] = 95019, + [SMALL_STATE(3185)] = 95039, + [SMALL_STATE(3186)] = 95055, + [SMALL_STATE(3187)] = 95071, + [SMALL_STATE(3188)] = 95087, + [SMALL_STATE(3189)] = 95107, + [SMALL_STATE(3190)] = 95127, + [SMALL_STATE(3191)] = 95147, + [SMALL_STATE(3192)] = 95167, + [SMALL_STATE(3193)] = 95183, + [SMALL_STATE(3194)] = 95203, + [SMALL_STATE(3195)] = 95219, + [SMALL_STATE(3196)] = 95235, + [SMALL_STATE(3197)] = 95255, + [SMALL_STATE(3198)] = 95275, + [SMALL_STATE(3199)] = 95295, + [SMALL_STATE(3200)] = 95311, + [SMALL_STATE(3201)] = 95331, + [SMALL_STATE(3202)] = 95351, + [SMALL_STATE(3203)] = 95371, + [SMALL_STATE(3204)] = 95387, + [SMALL_STATE(3205)] = 95403, + [SMALL_STATE(3206)] = 95419, + [SMALL_STATE(3207)] = 95439, + [SMALL_STATE(3208)] = 95455, + [SMALL_STATE(3209)] = 95471, + [SMALL_STATE(3210)] = 95491, + [SMALL_STATE(3211)] = 95507, + [SMALL_STATE(3212)] = 95527, + [SMALL_STATE(3213)] = 95543, + [SMALL_STATE(3214)] = 95563, + [SMALL_STATE(3215)] = 95583, + [SMALL_STATE(3216)] = 95599, + [SMALL_STATE(3217)] = 95619, + [SMALL_STATE(3218)] = 95639, + [SMALL_STATE(3219)] = 95657, + [SMALL_STATE(3220)] = 95677, + [SMALL_STATE(3221)] = 95695, + [SMALL_STATE(3222)] = 95715, + [SMALL_STATE(3223)] = 95735, + [SMALL_STATE(3224)] = 95755, + [SMALL_STATE(3225)] = 95775, + [SMALL_STATE(3226)] = 95795, + [SMALL_STATE(3227)] = 95815, + [SMALL_STATE(3228)] = 95835, + [SMALL_STATE(3229)] = 95855, + [SMALL_STATE(3230)] = 95875, + [SMALL_STATE(3231)] = 95895, + [SMALL_STATE(3232)] = 95911, + [SMALL_STATE(3233)] = 95931, + [SMALL_STATE(3234)] = 95949, + [SMALL_STATE(3235)] = 95965, + [SMALL_STATE(3236)] = 95981, + [SMALL_STATE(3237)] = 95997, + [SMALL_STATE(3238)] = 96017, + [SMALL_STATE(3239)] = 96037, + [SMALL_STATE(3240)] = 96053, + [SMALL_STATE(3241)] = 96069, + [SMALL_STATE(3242)] = 96089, + [SMALL_STATE(3243)] = 96107, + [SMALL_STATE(3244)] = 96123, + [SMALL_STATE(3245)] = 96139, + [SMALL_STATE(3246)] = 96155, + [SMALL_STATE(3247)] = 96175, + [SMALL_STATE(3248)] = 96195, + [SMALL_STATE(3249)] = 96215, + [SMALL_STATE(3250)] = 96235, + [SMALL_STATE(3251)] = 96251, + [SMALL_STATE(3252)] = 96271, + [SMALL_STATE(3253)] = 96291, + [SMALL_STATE(3254)] = 96311, + [SMALL_STATE(3255)] = 96331, + [SMALL_STATE(3256)] = 96351, + [SMALL_STATE(3257)] = 96371, + [SMALL_STATE(3258)] = 96389, + [SMALL_STATE(3259)] = 96409, + [SMALL_STATE(3260)] = 96429, + [SMALL_STATE(3261)] = 96449, + [SMALL_STATE(3262)] = 96467, + [SMALL_STATE(3263)] = 96485, + [SMALL_STATE(3264)] = 96505, + [SMALL_STATE(3265)] = 96525, + [SMALL_STATE(3266)] = 96545, + [SMALL_STATE(3267)] = 96565, + [SMALL_STATE(3268)] = 96583, + [SMALL_STATE(3269)] = 96601, + [SMALL_STATE(3270)] = 96621, + [SMALL_STATE(3271)] = 96641, + [SMALL_STATE(3272)] = 96657, + [SMALL_STATE(3273)] = 96677, + [SMALL_STATE(3274)] = 96697, + [SMALL_STATE(3275)] = 96713, + [SMALL_STATE(3276)] = 96733, + [SMALL_STATE(3277)] = 96751, + [SMALL_STATE(3278)] = 96771, + [SMALL_STATE(3279)] = 96791, + [SMALL_STATE(3280)] = 96811, + [SMALL_STATE(3281)] = 96831, + [SMALL_STATE(3282)] = 96851, + [SMALL_STATE(3283)] = 96871, + [SMALL_STATE(3284)] = 96891, + [SMALL_STATE(3285)] = 96911, + [SMALL_STATE(3286)] = 96931, + [SMALL_STATE(3287)] = 96951, + [SMALL_STATE(3288)] = 96971, + [SMALL_STATE(3289)] = 96991, + [SMALL_STATE(3290)] = 97011, + [SMALL_STATE(3291)] = 97031, + [SMALL_STATE(3292)] = 97051, + [SMALL_STATE(3293)] = 97071, + [SMALL_STATE(3294)] = 97091, + [SMALL_STATE(3295)] = 97111, + [SMALL_STATE(3296)] = 97131, + [SMALL_STATE(3297)] = 97151, + [SMALL_STATE(3298)] = 97171, + [SMALL_STATE(3299)] = 97191, + [SMALL_STATE(3300)] = 97211, + [SMALL_STATE(3301)] = 97231, + [SMALL_STATE(3302)] = 97251, + [SMALL_STATE(3303)] = 97271, + [SMALL_STATE(3304)] = 97291, + [SMALL_STATE(3305)] = 97311, + [SMALL_STATE(3306)] = 97327, + [SMALL_STATE(3307)] = 97347, + [SMALL_STATE(3308)] = 97365, + [SMALL_STATE(3309)] = 97385, + [SMALL_STATE(3310)] = 97405, + [SMALL_STATE(3311)] = 97425, + [SMALL_STATE(3312)] = 97445, + [SMALL_STATE(3313)] = 97463, + [SMALL_STATE(3314)] = 97483, + [SMALL_STATE(3315)] = 97501, + [SMALL_STATE(3316)] = 97519, + [SMALL_STATE(3317)] = 97539, + [SMALL_STATE(3318)] = 97559, + [SMALL_STATE(3319)] = 97579, + [SMALL_STATE(3320)] = 97599, + [SMALL_STATE(3321)] = 97619, + [SMALL_STATE(3322)] = 97639, + [SMALL_STATE(3323)] = 97659, + [SMALL_STATE(3324)] = 97679, + [SMALL_STATE(3325)] = 97699, + [SMALL_STATE(3326)] = 97719, + [SMALL_STATE(3327)] = 97739, + [SMALL_STATE(3328)] = 97759, + [SMALL_STATE(3329)] = 97779, + [SMALL_STATE(3330)] = 97799, + [SMALL_STATE(3331)] = 97817, + [SMALL_STATE(3332)] = 97835, + [SMALL_STATE(3333)] = 97855, + [SMALL_STATE(3334)] = 97875, + [SMALL_STATE(3335)] = 97895, + [SMALL_STATE(3336)] = 97915, + [SMALL_STATE(3337)] = 97935, + [SMALL_STATE(3338)] = 97955, + [SMALL_STATE(3339)] = 97973, + [SMALL_STATE(3340)] = 97993, + [SMALL_STATE(3341)] = 98011, + [SMALL_STATE(3342)] = 98031, + [SMALL_STATE(3343)] = 98049, + [SMALL_STATE(3344)] = 98069, + [SMALL_STATE(3345)] = 98089, + [SMALL_STATE(3346)] = 98109, + [SMALL_STATE(3347)] = 98129, + [SMALL_STATE(3348)] = 98147, + [SMALL_STATE(3349)] = 98163, + [SMALL_STATE(3350)] = 98179, + [SMALL_STATE(3351)] = 98197, + [SMALL_STATE(3352)] = 98217, + [SMALL_STATE(3353)] = 98237, + [SMALL_STATE(3354)] = 98253, + [SMALL_STATE(3355)] = 98273, + [SMALL_STATE(3356)] = 98291, + [SMALL_STATE(3357)] = 98309, + [SMALL_STATE(3358)] = 98329, + [SMALL_STATE(3359)] = 98347, + [SMALL_STATE(3360)] = 98365, + [SMALL_STATE(3361)] = 98385, + [SMALL_STATE(3362)] = 98405, + [SMALL_STATE(3363)] = 98425, + [SMALL_STATE(3364)] = 98443, + [SMALL_STATE(3365)] = 98459, + [SMALL_STATE(3366)] = 98477, + [SMALL_STATE(3367)] = 98497, + [SMALL_STATE(3368)] = 98517, + [SMALL_STATE(3369)] = 98537, + [SMALL_STATE(3370)] = 98557, + [SMALL_STATE(3371)] = 98577, + [SMALL_STATE(3372)] = 98597, + [SMALL_STATE(3373)] = 98617, + [SMALL_STATE(3374)] = 98637, + [SMALL_STATE(3375)] = 98657, + [SMALL_STATE(3376)] = 98677, + [SMALL_STATE(3377)] = 98697, + [SMALL_STATE(3378)] = 98717, + [SMALL_STATE(3379)] = 98737, + [SMALL_STATE(3380)] = 98757, + [SMALL_STATE(3381)] = 98777, + [SMALL_STATE(3382)] = 98797, + [SMALL_STATE(3383)] = 98815, + [SMALL_STATE(3384)] = 98835, + [SMALL_STATE(3385)] = 98855, + [SMALL_STATE(3386)] = 98875, + [SMALL_STATE(3387)] = 98895, + [SMALL_STATE(3388)] = 98915, + [SMALL_STATE(3389)] = 98935, + [SMALL_STATE(3390)] = 98955, + [SMALL_STATE(3391)] = 98975, + [SMALL_STATE(3392)] = 98995, + [SMALL_STATE(3393)] = 99015, + [SMALL_STATE(3394)] = 99035, + [SMALL_STATE(3395)] = 99055, + [SMALL_STATE(3396)] = 99075, + [SMALL_STATE(3397)] = 99095, + [SMALL_STATE(3398)] = 99115, + [SMALL_STATE(3399)] = 99135, + [SMALL_STATE(3400)] = 99155, + [SMALL_STATE(3401)] = 99175, + [SMALL_STATE(3402)] = 99195, + [SMALL_STATE(3403)] = 99215, + [SMALL_STATE(3404)] = 99233, + [SMALL_STATE(3405)] = 99251, + [SMALL_STATE(3406)] = 99267, + [SMALL_STATE(3407)] = 99287, + [SMALL_STATE(3408)] = 99307, + [SMALL_STATE(3409)] = 99327, + [SMALL_STATE(3410)] = 99347, + [SMALL_STATE(3411)] = 99367, + [SMALL_STATE(3412)] = 99387, + [SMALL_STATE(3413)] = 99407, + [SMALL_STATE(3414)] = 99427, + [SMALL_STATE(3415)] = 99447, + [SMALL_STATE(3416)] = 99467, + [SMALL_STATE(3417)] = 99487, + [SMALL_STATE(3418)] = 99507, + [SMALL_STATE(3419)] = 99527, + [SMALL_STATE(3420)] = 99545, + [SMALL_STATE(3421)] = 99563, + [SMALL_STATE(3422)] = 99581, + [SMALL_STATE(3423)] = 99599, + [SMALL_STATE(3424)] = 99619, + [SMALL_STATE(3425)] = 99639, + [SMALL_STATE(3426)] = 99659, + [SMALL_STATE(3427)] = 99679, + [SMALL_STATE(3428)] = 99699, + [SMALL_STATE(3429)] = 99719, + [SMALL_STATE(3430)] = 99739, + [SMALL_STATE(3431)] = 99759, + [SMALL_STATE(3432)] = 99779, + [SMALL_STATE(3433)] = 99797, + [SMALL_STATE(3434)] = 99817, + [SMALL_STATE(3435)] = 99835, + [SMALL_STATE(3436)] = 99853, + [SMALL_STATE(3437)] = 99873, + [SMALL_STATE(3438)] = 99893, + [SMALL_STATE(3439)] = 99913, + [SMALL_STATE(3440)] = 99933, + [SMALL_STATE(3441)] = 99951, + [SMALL_STATE(3442)] = 99971, + [SMALL_STATE(3443)] = 99991, + [SMALL_STATE(3444)] = 100011, + [SMALL_STATE(3445)] = 100031, + [SMALL_STATE(3446)] = 100051, + [SMALL_STATE(3447)] = 100071, + [SMALL_STATE(3448)] = 100087, + [SMALL_STATE(3449)] = 100107, + [SMALL_STATE(3450)] = 100127, + [SMALL_STATE(3451)] = 100147, + [SMALL_STATE(3452)] = 100167, + [SMALL_STATE(3453)] = 100187, + [SMALL_STATE(3454)] = 100205, + [SMALL_STATE(3455)] = 100225, + [SMALL_STATE(3456)] = 100245, + [SMALL_STATE(3457)] = 100265, + [SMALL_STATE(3458)] = 100283, + [SMALL_STATE(3459)] = 100303, + [SMALL_STATE(3460)] = 100323, + [SMALL_STATE(3461)] = 100343, + [SMALL_STATE(3462)] = 100363, + [SMALL_STATE(3463)] = 100383, + [SMALL_STATE(3464)] = 100403, + [SMALL_STATE(3465)] = 100423, + [SMALL_STATE(3466)] = 100441, + [SMALL_STATE(3467)] = 100461, + [SMALL_STATE(3468)] = 100481, + [SMALL_STATE(3469)] = 100498, + [SMALL_STATE(3470)] = 100515, + [SMALL_STATE(3471)] = 100532, + [SMALL_STATE(3472)] = 100549, + [SMALL_STATE(3473)] = 100566, + [SMALL_STATE(3474)] = 100583, + [SMALL_STATE(3475)] = 100600, + [SMALL_STATE(3476)] = 100617, + [SMALL_STATE(3477)] = 100632, + [SMALL_STATE(3478)] = 100649, + [SMALL_STATE(3479)] = 100664, + [SMALL_STATE(3480)] = 100681, + [SMALL_STATE(3481)] = 100698, + [SMALL_STATE(3482)] = 100715, + [SMALL_STATE(3483)] = 100732, + [SMALL_STATE(3484)] = 100749, + [SMALL_STATE(3485)] = 100764, + [SMALL_STATE(3486)] = 100779, + [SMALL_STATE(3487)] = 100796, + [SMALL_STATE(3488)] = 100813, + [SMALL_STATE(3489)] = 100830, + [SMALL_STATE(3490)] = 100847, + [SMALL_STATE(3491)] = 100864, + [SMALL_STATE(3492)] = 100881, + [SMALL_STATE(3493)] = 100898, + [SMALL_STATE(3494)] = 100915, + [SMALL_STATE(3495)] = 100932, + [SMALL_STATE(3496)] = 100949, + [SMALL_STATE(3497)] = 100966, + [SMALL_STATE(3498)] = 100981, + [SMALL_STATE(3499)] = 100998, + [SMALL_STATE(3500)] = 101015, + [SMALL_STATE(3501)] = 101032, + [SMALL_STATE(3502)] = 101049, + [SMALL_STATE(3503)] = 101064, + [SMALL_STATE(3504)] = 101081, + [SMALL_STATE(3505)] = 101098, + [SMALL_STATE(3506)] = 101115, + [SMALL_STATE(3507)] = 101132, + [SMALL_STATE(3508)] = 101147, + [SMALL_STATE(3509)] = 101164, + [SMALL_STATE(3510)] = 101181, + [SMALL_STATE(3511)] = 101196, + [SMALL_STATE(3512)] = 101213, + [SMALL_STATE(3513)] = 101230, + [SMALL_STATE(3514)] = 101247, + [SMALL_STATE(3515)] = 101264, + [SMALL_STATE(3516)] = 101281, + [SMALL_STATE(3517)] = 101298, + [SMALL_STATE(3518)] = 101315, + [SMALL_STATE(3519)] = 101332, + [SMALL_STATE(3520)] = 101347, + [SMALL_STATE(3521)] = 101364, + [SMALL_STATE(3522)] = 101381, + [SMALL_STATE(3523)] = 101398, + [SMALL_STATE(3524)] = 101413, + [SMALL_STATE(3525)] = 101430, + [SMALL_STATE(3526)] = 101447, + [SMALL_STATE(3527)] = 101464, + [SMALL_STATE(3528)] = 101481, + [SMALL_STATE(3529)] = 101496, + [SMALL_STATE(3530)] = 101513, + [SMALL_STATE(3531)] = 101530, + [SMALL_STATE(3532)] = 101545, + [SMALL_STATE(3533)] = 101562, + [SMALL_STATE(3534)] = 101577, + [SMALL_STATE(3535)] = 101594, + [SMALL_STATE(3536)] = 101611, + [SMALL_STATE(3537)] = 101626, + [SMALL_STATE(3538)] = 101643, + [SMALL_STATE(3539)] = 101660, + [SMALL_STATE(3540)] = 101677, + [SMALL_STATE(3541)] = 101694, + [SMALL_STATE(3542)] = 101711, + [SMALL_STATE(3543)] = 101726, + [SMALL_STATE(3544)] = 101743, + [SMALL_STATE(3545)] = 101760, + [SMALL_STATE(3546)] = 101777, + [SMALL_STATE(3547)] = 101792, + [SMALL_STATE(3548)] = 101809, + [SMALL_STATE(3549)] = 101826, + [SMALL_STATE(3550)] = 101843, + [SMALL_STATE(3551)] = 101860, + [SMALL_STATE(3552)] = 101877, + [SMALL_STATE(3553)] = 101894, + [SMALL_STATE(3554)] = 101911, + [SMALL_STATE(3555)] = 101928, + [SMALL_STATE(3556)] = 101943, + [SMALL_STATE(3557)] = 101960, + [SMALL_STATE(3558)] = 101977, + [SMALL_STATE(3559)] = 101992, + [SMALL_STATE(3560)] = 102009, + [SMALL_STATE(3561)] = 102024, + [SMALL_STATE(3562)] = 102041, + [SMALL_STATE(3563)] = 102056, + [SMALL_STATE(3564)] = 102073, + [SMALL_STATE(3565)] = 102090, + [SMALL_STATE(3566)] = 102107, + [SMALL_STATE(3567)] = 102124, + [SMALL_STATE(3568)] = 102141, + [SMALL_STATE(3569)] = 102158, + [SMALL_STATE(3570)] = 102175, + [SMALL_STATE(3571)] = 102192, + [SMALL_STATE(3572)] = 102209, + [SMALL_STATE(3573)] = 102226, + [SMALL_STATE(3574)] = 102243, + [SMALL_STATE(3575)] = 102258, + [SMALL_STATE(3576)] = 102275, + [SMALL_STATE(3577)] = 102292, + [SMALL_STATE(3578)] = 102309, + [SMALL_STATE(3579)] = 102324, + [SMALL_STATE(3580)] = 102341, + [SMALL_STATE(3581)] = 102356, + [SMALL_STATE(3582)] = 102371, + [SMALL_STATE(3583)] = 102388, + [SMALL_STATE(3584)] = 102403, + [SMALL_STATE(3585)] = 102418, + [SMALL_STATE(3586)] = 102435, + [SMALL_STATE(3587)] = 102452, + [SMALL_STATE(3588)] = 102469, + [SMALL_STATE(3589)] = 102486, + [SMALL_STATE(3590)] = 102503, + [SMALL_STATE(3591)] = 102520, + [SMALL_STATE(3592)] = 102537, + [SMALL_STATE(3593)] = 102554, + [SMALL_STATE(3594)] = 102569, + [SMALL_STATE(3595)] = 102586, + [SMALL_STATE(3596)] = 102603, + [SMALL_STATE(3597)] = 102618, + [SMALL_STATE(3598)] = 102633, + [SMALL_STATE(3599)] = 102650, + [SMALL_STATE(3600)] = 102667, + [SMALL_STATE(3601)] = 102684, + [SMALL_STATE(3602)] = 102701, + [SMALL_STATE(3603)] = 102718, + [SMALL_STATE(3604)] = 102735, + [SMALL_STATE(3605)] = 102752, + [SMALL_STATE(3606)] = 102767, + [SMALL_STATE(3607)] = 102784, + [SMALL_STATE(3608)] = 102801, + [SMALL_STATE(3609)] = 102818, + [SMALL_STATE(3610)] = 102835, + [SMALL_STATE(3611)] = 102852, + [SMALL_STATE(3612)] = 102869, + [SMALL_STATE(3613)] = 102886, + [SMALL_STATE(3614)] = 102903, + [SMALL_STATE(3615)] = 102920, + [SMALL_STATE(3616)] = 102937, + [SMALL_STATE(3617)] = 102954, + [SMALL_STATE(3618)] = 102971, + [SMALL_STATE(3619)] = 102986, + [SMALL_STATE(3620)] = 103003, + [SMALL_STATE(3621)] = 103020, + [SMALL_STATE(3622)] = 103037, + [SMALL_STATE(3623)] = 103054, + [SMALL_STATE(3624)] = 103071, + [SMALL_STATE(3625)] = 103088, + [SMALL_STATE(3626)] = 103105, + [SMALL_STATE(3627)] = 103122, + [SMALL_STATE(3628)] = 103139, + [SMALL_STATE(3629)] = 103156, + [SMALL_STATE(3630)] = 103173, + [SMALL_STATE(3631)] = 103190, + [SMALL_STATE(3632)] = 103207, + [SMALL_STATE(3633)] = 103224, + [SMALL_STATE(3634)] = 103241, + [SMALL_STATE(3635)] = 103258, + [SMALL_STATE(3636)] = 103275, + [SMALL_STATE(3637)] = 103292, + [SMALL_STATE(3638)] = 103307, + [SMALL_STATE(3639)] = 103322, + [SMALL_STATE(3640)] = 103337, + [SMALL_STATE(3641)] = 103354, + [SMALL_STATE(3642)] = 103371, + [SMALL_STATE(3643)] = 103388, + [SMALL_STATE(3644)] = 103405, + [SMALL_STATE(3645)] = 103422, + [SMALL_STATE(3646)] = 103439, + [SMALL_STATE(3647)] = 103456, + [SMALL_STATE(3648)] = 103473, + [SMALL_STATE(3649)] = 103490, + [SMALL_STATE(3650)] = 103507, + [SMALL_STATE(3651)] = 103522, + [SMALL_STATE(3652)] = 103539, + [SMALL_STATE(3653)] = 103556, + [SMALL_STATE(3654)] = 103573, + [SMALL_STATE(3655)] = 103590, + [SMALL_STATE(3656)] = 103607, + [SMALL_STATE(3657)] = 103624, + [SMALL_STATE(3658)] = 103641, + [SMALL_STATE(3659)] = 103658, + [SMALL_STATE(3660)] = 103675, + [SMALL_STATE(3661)] = 103692, + [SMALL_STATE(3662)] = 103707, + [SMALL_STATE(3663)] = 103722, + [SMALL_STATE(3664)] = 103739, + [SMALL_STATE(3665)] = 103754, + [SMALL_STATE(3666)] = 103771, + [SMALL_STATE(3667)] = 103788, + [SMALL_STATE(3668)] = 103805, + [SMALL_STATE(3669)] = 103822, + [SMALL_STATE(3670)] = 103839, + [SMALL_STATE(3671)] = 103856, + [SMALL_STATE(3672)] = 103871, + [SMALL_STATE(3673)] = 103886, + [SMALL_STATE(3674)] = 103903, + [SMALL_STATE(3675)] = 103918, + [SMALL_STATE(3676)] = 103935, + [SMALL_STATE(3677)] = 103950, + [SMALL_STATE(3678)] = 103967, + [SMALL_STATE(3679)] = 103984, + [SMALL_STATE(3680)] = 103999, + [SMALL_STATE(3681)] = 104016, + [SMALL_STATE(3682)] = 104033, + [SMALL_STATE(3683)] = 104050, + [SMALL_STATE(3684)] = 104065, + [SMALL_STATE(3685)] = 104080, + [SMALL_STATE(3686)] = 104097, + [SMALL_STATE(3687)] = 104112, + [SMALL_STATE(3688)] = 104129, + [SMALL_STATE(3689)] = 104146, + [SMALL_STATE(3690)] = 104163, + [SMALL_STATE(3691)] = 104180, + [SMALL_STATE(3692)] = 104197, + [SMALL_STATE(3693)] = 104212, + [SMALL_STATE(3694)] = 104229, + [SMALL_STATE(3695)] = 104246, + [SMALL_STATE(3696)] = 104263, + [SMALL_STATE(3697)] = 104280, + [SMALL_STATE(3698)] = 104297, + [SMALL_STATE(3699)] = 104314, + [SMALL_STATE(3700)] = 104331, + [SMALL_STATE(3701)] = 104348, + [SMALL_STATE(3702)] = 104365, + [SMALL_STATE(3703)] = 104382, + [SMALL_STATE(3704)] = 104399, + [SMALL_STATE(3705)] = 104416, + [SMALL_STATE(3706)] = 104431, + [SMALL_STATE(3707)] = 104448, + [SMALL_STATE(3708)] = 104463, + [SMALL_STATE(3709)] = 104480, + [SMALL_STATE(3710)] = 104495, + [SMALL_STATE(3711)] = 104510, + [SMALL_STATE(3712)] = 104527, + [SMALL_STATE(3713)] = 104544, + [SMALL_STATE(3714)] = 104561, + [SMALL_STATE(3715)] = 104578, + [SMALL_STATE(3716)] = 104595, + [SMALL_STATE(3717)] = 104612, + [SMALL_STATE(3718)] = 104629, + [SMALL_STATE(3719)] = 104646, + [SMALL_STATE(3720)] = 104663, + [SMALL_STATE(3721)] = 104680, + [SMALL_STATE(3722)] = 104697, + [SMALL_STATE(3723)] = 104714, + [SMALL_STATE(3724)] = 104731, + [SMALL_STATE(3725)] = 104746, + [SMALL_STATE(3726)] = 104763, + [SMALL_STATE(3727)] = 104780, + [SMALL_STATE(3728)] = 104797, + [SMALL_STATE(3729)] = 104814, + [SMALL_STATE(3730)] = 104831, + [SMALL_STATE(3731)] = 104848, + [SMALL_STATE(3732)] = 104865, + [SMALL_STATE(3733)] = 104882, + [SMALL_STATE(3734)] = 104899, + [SMALL_STATE(3735)] = 104916, + [SMALL_STATE(3736)] = 104933, + [SMALL_STATE(3737)] = 104950, + [SMALL_STATE(3738)] = 104967, + [SMALL_STATE(3739)] = 104984, + [SMALL_STATE(3740)] = 105001, + [SMALL_STATE(3741)] = 105018, + [SMALL_STATE(3742)] = 105033, + [SMALL_STATE(3743)] = 105050, + [SMALL_STATE(3744)] = 105067, + [SMALL_STATE(3745)] = 105084, + [SMALL_STATE(3746)] = 105101, + [SMALL_STATE(3747)] = 105118, + [SMALL_STATE(3748)] = 105135, + [SMALL_STATE(3749)] = 105152, + [SMALL_STATE(3750)] = 105169, + [SMALL_STATE(3751)] = 105186, + [SMALL_STATE(3752)] = 105203, + [SMALL_STATE(3753)] = 105220, + [SMALL_STATE(3754)] = 105237, + [SMALL_STATE(3755)] = 105254, + [SMALL_STATE(3756)] = 105271, + [SMALL_STATE(3757)] = 105288, + [SMALL_STATE(3758)] = 105305, + [SMALL_STATE(3759)] = 105322, + [SMALL_STATE(3760)] = 105339, + [SMALL_STATE(3761)] = 105356, + [SMALL_STATE(3762)] = 105373, + [SMALL_STATE(3763)] = 105390, + [SMALL_STATE(3764)] = 105407, + [SMALL_STATE(3765)] = 105424, + [SMALL_STATE(3766)] = 105441, + [SMALL_STATE(3767)] = 105458, + [SMALL_STATE(3768)] = 105475, + [SMALL_STATE(3769)] = 105492, + [SMALL_STATE(3770)] = 105507, + [SMALL_STATE(3771)] = 105524, + [SMALL_STATE(3772)] = 105541, + [SMALL_STATE(3773)] = 105558, + [SMALL_STATE(3774)] = 105573, + [SMALL_STATE(3775)] = 105590, + [SMALL_STATE(3776)] = 105607, + [SMALL_STATE(3777)] = 105622, + [SMALL_STATE(3778)] = 105639, + [SMALL_STATE(3779)] = 105656, + [SMALL_STATE(3780)] = 105673, + [SMALL_STATE(3781)] = 105690, + [SMALL_STATE(3782)] = 105707, + [SMALL_STATE(3783)] = 105724, + [SMALL_STATE(3784)] = 105741, + [SMALL_STATE(3785)] = 105755, + [SMALL_STATE(3786)] = 105769, + [SMALL_STATE(3787)] = 105783, + [SMALL_STATE(3788)] = 105797, + [SMALL_STATE(3789)] = 105811, + [SMALL_STATE(3790)] = 105825, + [SMALL_STATE(3791)] = 105839, + [SMALL_STATE(3792)] = 105853, + [SMALL_STATE(3793)] = 105867, + [SMALL_STATE(3794)] = 105881, + [SMALL_STATE(3795)] = 105895, + [SMALL_STATE(3796)] = 105909, + [SMALL_STATE(3797)] = 105923, + [SMALL_STATE(3798)] = 105937, + [SMALL_STATE(3799)] = 105951, + [SMALL_STATE(3800)] = 105965, + [SMALL_STATE(3801)] = 105979, + [SMALL_STATE(3802)] = 105993, + [SMALL_STATE(3803)] = 106007, + [SMALL_STATE(3804)] = 106021, + [SMALL_STATE(3805)] = 106035, + [SMALL_STATE(3806)] = 106049, + [SMALL_STATE(3807)] = 106063, + [SMALL_STATE(3808)] = 106077, + [SMALL_STATE(3809)] = 106091, + [SMALL_STATE(3810)] = 106105, + [SMALL_STATE(3811)] = 106119, + [SMALL_STATE(3812)] = 106133, + [SMALL_STATE(3813)] = 106147, + [SMALL_STATE(3814)] = 106161, + [SMALL_STATE(3815)] = 106175, + [SMALL_STATE(3816)] = 106189, + [SMALL_STATE(3817)] = 106203, + [SMALL_STATE(3818)] = 106217, + [SMALL_STATE(3819)] = 106231, + [SMALL_STATE(3820)] = 106245, + [SMALL_STATE(3821)] = 106259, + [SMALL_STATE(3822)] = 106273, + [SMALL_STATE(3823)] = 106287, + [SMALL_STATE(3824)] = 106301, + [SMALL_STATE(3825)] = 106315, + [SMALL_STATE(3826)] = 106329, + [SMALL_STATE(3827)] = 106343, + [SMALL_STATE(3828)] = 106357, + [SMALL_STATE(3829)] = 106371, + [SMALL_STATE(3830)] = 106385, + [SMALL_STATE(3831)] = 106399, + [SMALL_STATE(3832)] = 106413, + [SMALL_STATE(3833)] = 106427, + [SMALL_STATE(3834)] = 106441, + [SMALL_STATE(3835)] = 106455, + [SMALL_STATE(3836)] = 106469, + [SMALL_STATE(3837)] = 106483, + [SMALL_STATE(3838)] = 106497, + [SMALL_STATE(3839)] = 106511, + [SMALL_STATE(3840)] = 106525, + [SMALL_STATE(3841)] = 106539, + [SMALL_STATE(3842)] = 106553, + [SMALL_STATE(3843)] = 106567, + [SMALL_STATE(3844)] = 106581, + [SMALL_STATE(3845)] = 106595, + [SMALL_STATE(3846)] = 106609, + [SMALL_STATE(3847)] = 106623, + [SMALL_STATE(3848)] = 106637, + [SMALL_STATE(3849)] = 106651, + [SMALL_STATE(3850)] = 106665, + [SMALL_STATE(3851)] = 106679, + [SMALL_STATE(3852)] = 106693, + [SMALL_STATE(3853)] = 106707, + [SMALL_STATE(3854)] = 106721, + [SMALL_STATE(3855)] = 106735, + [SMALL_STATE(3856)] = 106749, + [SMALL_STATE(3857)] = 106763, + [SMALL_STATE(3858)] = 106777, + [SMALL_STATE(3859)] = 106791, + [SMALL_STATE(3860)] = 106805, + [SMALL_STATE(3861)] = 106819, + [SMALL_STATE(3862)] = 106833, + [SMALL_STATE(3863)] = 106847, + [SMALL_STATE(3864)] = 106861, + [SMALL_STATE(3865)] = 106875, + [SMALL_STATE(3866)] = 106889, + [SMALL_STATE(3867)] = 106903, + [SMALL_STATE(3868)] = 106917, + [SMALL_STATE(3869)] = 106931, + [SMALL_STATE(3870)] = 106945, + [SMALL_STATE(3871)] = 106959, + [SMALL_STATE(3872)] = 106973, + [SMALL_STATE(3873)] = 106987, + [SMALL_STATE(3874)] = 107001, + [SMALL_STATE(3875)] = 107015, + [SMALL_STATE(3876)] = 107029, + [SMALL_STATE(3877)] = 107043, + [SMALL_STATE(3878)] = 107057, + [SMALL_STATE(3879)] = 107071, + [SMALL_STATE(3880)] = 107085, + [SMALL_STATE(3881)] = 107099, + [SMALL_STATE(3882)] = 107113, + [SMALL_STATE(3883)] = 107127, + [SMALL_STATE(3884)] = 107141, + [SMALL_STATE(3885)] = 107155, + [SMALL_STATE(3886)] = 107169, + [SMALL_STATE(3887)] = 107183, + [SMALL_STATE(3888)] = 107197, + [SMALL_STATE(3889)] = 107211, + [SMALL_STATE(3890)] = 107225, + [SMALL_STATE(3891)] = 107239, + [SMALL_STATE(3892)] = 107253, + [SMALL_STATE(3893)] = 107267, + [SMALL_STATE(3894)] = 107281, + [SMALL_STATE(3895)] = 107295, + [SMALL_STATE(3896)] = 107309, + [SMALL_STATE(3897)] = 107323, + [SMALL_STATE(3898)] = 107337, + [SMALL_STATE(3899)] = 107351, + [SMALL_STATE(3900)] = 107365, + [SMALL_STATE(3901)] = 107379, + [SMALL_STATE(3902)] = 107393, + [SMALL_STATE(3903)] = 107407, + [SMALL_STATE(3904)] = 107421, + [SMALL_STATE(3905)] = 107435, + [SMALL_STATE(3906)] = 107449, + [SMALL_STATE(3907)] = 107463, + [SMALL_STATE(3908)] = 107477, + [SMALL_STATE(3909)] = 107491, + [SMALL_STATE(3910)] = 107505, + [SMALL_STATE(3911)] = 107519, + [SMALL_STATE(3912)] = 107533, + [SMALL_STATE(3913)] = 107547, + [SMALL_STATE(3914)] = 107561, + [SMALL_STATE(3915)] = 107575, + [SMALL_STATE(3916)] = 107589, + [SMALL_STATE(3917)] = 107603, + [SMALL_STATE(3918)] = 107617, + [SMALL_STATE(3919)] = 107631, + [SMALL_STATE(3920)] = 107645, + [SMALL_STATE(3921)] = 107659, + [SMALL_STATE(3922)] = 107673, + [SMALL_STATE(3923)] = 107687, + [SMALL_STATE(3924)] = 107701, + [SMALL_STATE(3925)] = 107715, + [SMALL_STATE(3926)] = 107729, + [SMALL_STATE(3927)] = 107743, + [SMALL_STATE(3928)] = 107757, + [SMALL_STATE(3929)] = 107771, + [SMALL_STATE(3930)] = 107785, + [SMALL_STATE(3931)] = 107799, + [SMALL_STATE(3932)] = 107813, + [SMALL_STATE(3933)] = 107827, + [SMALL_STATE(3934)] = 107841, + [SMALL_STATE(3935)] = 107855, + [SMALL_STATE(3936)] = 107869, + [SMALL_STATE(3937)] = 107883, + [SMALL_STATE(3938)] = 107897, + [SMALL_STATE(3939)] = 107911, + [SMALL_STATE(3940)] = 107925, + [SMALL_STATE(3941)] = 107939, + [SMALL_STATE(3942)] = 107953, + [SMALL_STATE(3943)] = 107967, + [SMALL_STATE(3944)] = 107981, + [SMALL_STATE(3945)] = 107995, + [SMALL_STATE(3946)] = 108009, + [SMALL_STATE(3947)] = 108023, + [SMALL_STATE(3948)] = 108037, + [SMALL_STATE(3949)] = 108051, + [SMALL_STATE(3950)] = 108065, + [SMALL_STATE(3951)] = 108079, + [SMALL_STATE(3952)] = 108093, + [SMALL_STATE(3953)] = 108107, + [SMALL_STATE(3954)] = 108121, + [SMALL_STATE(3955)] = 108135, + [SMALL_STATE(3956)] = 108149, + [SMALL_STATE(3957)] = 108163, + [SMALL_STATE(3958)] = 108177, + [SMALL_STATE(3959)] = 108191, + [SMALL_STATE(3960)] = 108205, + [SMALL_STATE(3961)] = 108219, + [SMALL_STATE(3962)] = 108233, + [SMALL_STATE(3963)] = 108247, + [SMALL_STATE(3964)] = 108261, + [SMALL_STATE(3965)] = 108275, + [SMALL_STATE(3966)] = 108289, + [SMALL_STATE(3967)] = 108303, + [SMALL_STATE(3968)] = 108317, + [SMALL_STATE(3969)] = 108331, + [SMALL_STATE(3970)] = 108345, + [SMALL_STATE(3971)] = 108359, + [SMALL_STATE(3972)] = 108373, + [SMALL_STATE(3973)] = 108387, + [SMALL_STATE(3974)] = 108401, + [SMALL_STATE(3975)] = 108415, + [SMALL_STATE(3976)] = 108429, + [SMALL_STATE(3977)] = 108443, + [SMALL_STATE(3978)] = 108457, + [SMALL_STATE(3979)] = 108471, + [SMALL_STATE(3980)] = 108485, + [SMALL_STATE(3981)] = 108499, + [SMALL_STATE(3982)] = 108513, + [SMALL_STATE(3983)] = 108527, + [SMALL_STATE(3984)] = 108541, + [SMALL_STATE(3985)] = 108555, + [SMALL_STATE(3986)] = 108569, + [SMALL_STATE(3987)] = 108583, + [SMALL_STATE(3988)] = 108597, + [SMALL_STATE(3989)] = 108611, + [SMALL_STATE(3990)] = 108625, + [SMALL_STATE(3991)] = 108639, + [SMALL_STATE(3992)] = 108653, + [SMALL_STATE(3993)] = 108667, + [SMALL_STATE(3994)] = 108681, + [SMALL_STATE(3995)] = 108695, + [SMALL_STATE(3996)] = 108709, + [SMALL_STATE(3997)] = 108723, + [SMALL_STATE(3998)] = 108737, + [SMALL_STATE(3999)] = 108751, + [SMALL_STATE(4000)] = 108765, + [SMALL_STATE(4001)] = 108779, + [SMALL_STATE(4002)] = 108793, + [SMALL_STATE(4003)] = 108807, + [SMALL_STATE(4004)] = 108821, + [SMALL_STATE(4005)] = 108835, + [SMALL_STATE(4006)] = 108849, + [SMALL_STATE(4007)] = 108863, + [SMALL_STATE(4008)] = 108877, + [SMALL_STATE(4009)] = 108891, + [SMALL_STATE(4010)] = 108905, + [SMALL_STATE(4011)] = 108919, + [SMALL_STATE(4012)] = 108933, + [SMALL_STATE(4013)] = 108947, + [SMALL_STATE(4014)] = 108961, + [SMALL_STATE(4015)] = 108975, + [SMALL_STATE(4016)] = 108989, + [SMALL_STATE(4017)] = 109003, + [SMALL_STATE(4018)] = 109017, + [SMALL_STATE(4019)] = 109031, + [SMALL_STATE(4020)] = 109045, + [SMALL_STATE(4021)] = 109059, + [SMALL_STATE(4022)] = 109073, + [SMALL_STATE(4023)] = 109087, + [SMALL_STATE(4024)] = 109101, + [SMALL_STATE(4025)] = 109115, + [SMALL_STATE(4026)] = 109129, + [SMALL_STATE(4027)] = 109143, + [SMALL_STATE(4028)] = 109157, + [SMALL_STATE(4029)] = 109171, + [SMALL_STATE(4030)] = 109185, + [SMALL_STATE(4031)] = 109199, + [SMALL_STATE(4032)] = 109213, + [SMALL_STATE(4033)] = 109227, + [SMALL_STATE(4034)] = 109241, + [SMALL_STATE(4035)] = 109255, + [SMALL_STATE(4036)] = 109269, + [SMALL_STATE(4037)] = 109283, + [SMALL_STATE(4038)] = 109297, + [SMALL_STATE(4039)] = 109311, + [SMALL_STATE(4040)] = 109325, + [SMALL_STATE(4041)] = 109339, + [SMALL_STATE(4042)] = 109353, + [SMALL_STATE(4043)] = 109367, + [SMALL_STATE(4044)] = 109381, + [SMALL_STATE(4045)] = 109395, + [SMALL_STATE(4046)] = 109409, + [SMALL_STATE(4047)] = 109423, + [SMALL_STATE(4048)] = 109437, + [SMALL_STATE(4049)] = 109451, + [SMALL_STATE(4050)] = 109465, + [SMALL_STATE(4051)] = 109479, + [SMALL_STATE(4052)] = 109493, + [SMALL_STATE(4053)] = 109507, + [SMALL_STATE(4054)] = 109521, + [SMALL_STATE(4055)] = 109535, + [SMALL_STATE(4056)] = 109549, + [SMALL_STATE(4057)] = 109563, + [SMALL_STATE(4058)] = 109577, + [SMALL_STATE(4059)] = 109591, + [SMALL_STATE(4060)] = 109605, + [SMALL_STATE(4061)] = 109619, + [SMALL_STATE(4062)] = 109633, + [SMALL_STATE(4063)] = 109647, + [SMALL_STATE(4064)] = 109661, + [SMALL_STATE(4065)] = 109675, + [SMALL_STATE(4066)] = 109689, + [SMALL_STATE(4067)] = 109703, + [SMALL_STATE(4068)] = 109717, + [SMALL_STATE(4069)] = 109731, + [SMALL_STATE(4070)] = 109745, + [SMALL_STATE(4071)] = 109759, + [SMALL_STATE(4072)] = 109773, + [SMALL_STATE(4073)] = 109787, + [SMALL_STATE(4074)] = 109801, + [SMALL_STATE(4075)] = 109815, + [SMALL_STATE(4076)] = 109829, + [SMALL_STATE(4077)] = 109843, + [SMALL_STATE(4078)] = 109857, + [SMALL_STATE(4079)] = 109871, + [SMALL_STATE(4080)] = 109885, + [SMALL_STATE(4081)] = 109899, + [SMALL_STATE(4082)] = 109913, + [SMALL_STATE(4083)] = 109927, + [SMALL_STATE(4084)] = 109941, + [SMALL_STATE(4085)] = 109955, + [SMALL_STATE(4086)] = 109969, + [SMALL_STATE(4087)] = 109983, + [SMALL_STATE(4088)] = 109997, + [SMALL_STATE(4089)] = 110011, + [SMALL_STATE(4090)] = 110025, + [SMALL_STATE(4091)] = 110039, + [SMALL_STATE(4092)] = 110053, + [SMALL_STATE(4093)] = 110067, + [SMALL_STATE(4094)] = 110081, + [SMALL_STATE(4095)] = 110095, + [SMALL_STATE(4096)] = 110109, + [SMALL_STATE(4097)] = 110123, + [SMALL_STATE(4098)] = 110137, + [SMALL_STATE(4099)] = 110151, + [SMALL_STATE(4100)] = 110165, + [SMALL_STATE(4101)] = 110179, + [SMALL_STATE(4102)] = 110193, + [SMALL_STATE(4103)] = 110207, + [SMALL_STATE(4104)] = 110221, + [SMALL_STATE(4105)] = 110235, + [SMALL_STATE(4106)] = 110249, + [SMALL_STATE(4107)] = 110263, + [SMALL_STATE(4108)] = 110277, + [SMALL_STATE(4109)] = 110291, + [SMALL_STATE(4110)] = 110305, + [SMALL_STATE(4111)] = 110319, + [SMALL_STATE(4112)] = 110333, + [SMALL_STATE(4113)] = 110347, + [SMALL_STATE(4114)] = 110361, + [SMALL_STATE(4115)] = 110375, + [SMALL_STATE(4116)] = 110389, + [SMALL_STATE(4117)] = 110403, + [SMALL_STATE(4118)] = 110417, + [SMALL_STATE(4119)] = 110431, + [SMALL_STATE(4120)] = 110445, + [SMALL_STATE(4121)] = 110459, + [SMALL_STATE(4122)] = 110473, + [SMALL_STATE(4123)] = 110487, + [SMALL_STATE(4124)] = 110501, + [SMALL_STATE(4125)] = 110515, + [SMALL_STATE(4126)] = 110529, + [SMALL_STATE(4127)] = 110543, + [SMALL_STATE(4128)] = 110557, + [SMALL_STATE(4129)] = 110571, + [SMALL_STATE(4130)] = 110585, + [SMALL_STATE(4131)] = 110599, + [SMALL_STATE(4132)] = 110613, + [SMALL_STATE(4133)] = 110627, + [SMALL_STATE(4134)] = 110641, + [SMALL_STATE(4135)] = 110655, + [SMALL_STATE(4136)] = 110669, + [SMALL_STATE(4137)] = 110683, + [SMALL_STATE(4138)] = 110697, + [SMALL_STATE(4139)] = 110711, + [SMALL_STATE(4140)] = 110725, + [SMALL_STATE(4141)] = 110729, + [SMALL_STATE(4142)] = 110733, + [SMALL_STATE(4143)] = 110737, + [SMALL_STATE(4144)] = 110741, + [SMALL_STATE(4145)] = 110745, + [SMALL_STATE(4146)] = 110749, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), - [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), + [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), + [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2793), [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0, 0, 0), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3286), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3586), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3123), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3481), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3363), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3573), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3130), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2557), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3537), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 2, 0, 0), - [131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), - [133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1515), - [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(736), - [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2595), - [142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(145), - [145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(134), - [148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2), - [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(291), - [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1496), - [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(238), - [160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(789), - [163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(857), - [166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(38), - [169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3298), - [172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3286), - [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3586), - [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2058), - [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(39), - [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2081), - [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1365), - [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1059), - [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3454), - [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3123), - [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(827), - [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1062), - [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(181), - [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(860), - [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(816), - [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2534), - [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(315), - [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3481), - [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1972), - [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(41), - [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2337), - [232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3363), - [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3573), - [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3411), - [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1527), - [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2042), - [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1898), - [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(166), - [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2057), - [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(36), - [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3130), - [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2557), - [265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1489), - [268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2524), - [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1413), - [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1501), - [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3537), - [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1988), - [283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1501), - [286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3563), - [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4139), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4137), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3484), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3050), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4128), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2735), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4119), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4098), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4096), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3520), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2910), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4078), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), + [147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1756), + [150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(536), + [153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3051), + [156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(170), + [159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(140), + [162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(10), + [165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(251), + [168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1746), + [171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(230), + [174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(914), + [177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(977), + [180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(40), + [183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3479), + [186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3482), + [189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(4139), + [192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2339), + [195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(38), + [198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2334), + [201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1496), + [204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1195), + [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(4137), + [210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3484), + [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(944), + [216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1418), + [219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(162), + [222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(968), + [225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(939), + [228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3050), + [231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(281), + [234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(4128), + [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2231), + [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(36), + [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2735), + [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(4119), + [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(4098), + [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(4096), + [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1786), + [258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2319), + [261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2129), + [264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(169), + [267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2360), + [270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(39), + [273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3520), + [276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2910), + [279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1741), + [282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2908), + [285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1700), + [288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1744), + [291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(4078), + [294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2272), + [297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1744), + [300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3851), + [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 2, 0, 0), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), [341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 2, 0, 0), - [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2663), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3017), [347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 2, 0, 0), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), - [375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1, 0, 0), - [377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1, 0, 0), - [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), - [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3046), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2977), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3188), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3048), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2979), + [375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1, 0, 0), + [377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1, 0, 0), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), [387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2, 0, 0), [389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2, 0, 0), - [391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1, 0, 0), - [393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1, 0, 0), - [395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1, 0, 0), - [397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1, 0, 0), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3418), - [401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1, 0, 0), - [403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1, 0, 0), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), - [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), - [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), - [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), - [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), - [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), - [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), - [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2596), - [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), - [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), - [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2952), - [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), - [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), - [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3151), - [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), - [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), - [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), - [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3494), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), - [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3634), - [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), - [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), - [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), - [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), - [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), - [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), - [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), - [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2903), - [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3070), - [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), - [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3351), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), - [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), - [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), - [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), - [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), - [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2959), - [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), - [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3153), - [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), - [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), - [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), + [391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1, 0, 0), + [393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1, 0, 0), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3998), + [397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1, 0, 0), + [399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1, 0, 0), + [401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1, 0, 0), + [403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1, 0, 0), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2833), + [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), + [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2932), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), + [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), + [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2861), + [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), + [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3344), + [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2899), + [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), + [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3678), + [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2994), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), + [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), + [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), + [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3970), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), + [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), + [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), + [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), + [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), + [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), + [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), + [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), + [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), + [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), + [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3517), + [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), + [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3911), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), + [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), + [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), + [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), + [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3390), + [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3582), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4090), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), + [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), + [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), - [527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(170), - [530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(171), - [533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(68), + [527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(190), + [530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(175), + [533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(80), [536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), - [538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(69), - [541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(70), - [544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(171), - [547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3491), - [550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(177), - [553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2619), - [556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(180), - [559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(173), - [562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3543), - [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3491), - [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), - [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), - [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), - [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), - [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(152), - [604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(171), - [607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(91), - [610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), - [612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(92), - [615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(93), - [618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(171), - [621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3470), - [624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(177), - [627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(2619), - [630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(180), - [633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(152), - [636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3543), - [639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(214), - [642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(213), - [645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(107), - [648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), - [650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(108), - [653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(109), - [656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(213), - [659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(214), - [662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(199), - [665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(2546), - [668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(200), - [671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3490), - [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), - [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), - [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), - [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), - [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3470), - [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), - [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), - [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), - [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), - [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), - [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), - [754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1, 0, 0), - [756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1, 0, 0), - [758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), - [760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(171), - [763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), - [765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(171), - [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), - [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), - [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), - [780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1057), - [783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(145), - [786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(134), - [789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), - [791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(10), - [794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(291), - [797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1496), - [800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(238), - [803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(789), - [806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(857), - [809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(38), - [812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3298), - [815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3463), - [818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3586), - [821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2421), - [824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(39), - [827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2531), - [830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1365), - [833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1453), - [836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(831), - [839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1019), - [842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(188), - [845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2627), - [848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(338), - [851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(41), - [854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2789), - [857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2637), - [860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(189), - [863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(36), - [866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3130), - [869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2629), - [872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1489), - [875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2524), - [878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1413), - [881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1501), - [884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3537), - [887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1501), - [890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3563), - [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), - [897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 1, 0, 0), - [899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 1, 0, 0), - [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1, 0, 0), - [913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1, 0, 0), - [915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, 0, 198), - [917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, 0, 198), - [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4, 0, 0), - [925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4, 0, 0), - [927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5, 0, 0), - [929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5, 0, 0), - [931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__non_delim_token, 1, 0, 0), - [933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_delim_token, 1, 0, 0), - [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6, 0, 0), - [939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6, 0, 0), - [941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4, 0, 0), - [943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4, 0, 0), - [945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5, 0, 0), - [947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5, 0, 0), - [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6, 0, 0), - [953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6, 0, 0), - [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), - [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(79), + [541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(78), + [544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(175), + [547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(4056), + [550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(184), + [553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2931), + [556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(189), + [559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(191), + [562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(4020), + [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4056), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), + [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), + [597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(198), + [600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(212), + [603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(109), + [606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), + [608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(104), + [611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(96), + [614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(212), + [617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(198), + [620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(203), + [623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(2905), + [626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(202), + [629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3825), + [632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(147), + [635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(175), + [638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(127), + [641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), + [643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(126), + [646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(125), + [649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(175), + [652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3828), + [655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(184), + [658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(2931), + [661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(189), + [664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(147), + [667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(4020), + [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), + [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), + [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), + [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), + [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3828), + [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), + [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), + [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), + [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), + [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), + [758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1, 0, 0), + [760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1, 0, 0), + [762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mod_item_repeat1, 2, 0, 0), SHIFT(1205), + [765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mod_item_repeat1, 2, 0, 0), SHIFT(170), + [768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mod_item_repeat1, 2, 0, 0), SHIFT(140), + [771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_mod_item_repeat1, 2, 0, 0), + [773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mod_item_repeat1, 2, 0, 0), SHIFT(25), + [776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mod_item_repeat1, 2, 0, 0), SHIFT(251), + [779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mod_item_repeat1, 2, 0, 0), SHIFT(1746), + [782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mod_item_repeat1, 2, 0, 0), SHIFT(230), + [785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mod_item_repeat1, 2, 0, 0), SHIFT(914), + [788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mod_item_repeat1, 2, 0, 0), SHIFT(977), + [791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mod_item_repeat1, 2, 0, 0), SHIFT(40), + [794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mod_item_repeat1, 2, 0, 0), SHIFT(3479), + [797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mod_item_repeat1, 2, 0, 0), SHIFT_REPEAT(4000), + [800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mod_item_repeat1, 2, 0, 0), SHIFT(4139), + [803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mod_item_repeat1, 2, 0, 0), SHIFT(2770), + [806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mod_item_repeat1, 2, 0, 0), SHIFT(38), + [809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mod_item_repeat1, 2, 0, 0), SHIFT(3046), + [812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mod_item_repeat1, 2, 0, 0), SHIFT(1496), + [815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mod_item_repeat1, 2, 0, 0), SHIFT(1734), + [818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mod_item_repeat1, 2, 0, 0), SHIFT(950), + [821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mod_item_repeat1, 2, 0, 0), SHIFT(1165), + [824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mod_item_repeat1, 2, 0, 0), SHIFT(152), + [827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mod_item_repeat1, 2, 0, 0), SHIFT(2977), + [830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mod_item_repeat1, 2, 0, 0), SHIFT(363), + [833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mod_item_repeat1, 2, 0, 0), SHIFT(36), + [836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mod_item_repeat1, 2, 0, 0), SHIFT(3188), + [839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mod_item_repeat1, 2, 0, 0), SHIFT(3048), + [842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mod_item_repeat1, 2, 0, 0), SHIFT(188), + [845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mod_item_repeat1, 2, 0, 0), SHIFT(39), + [848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mod_item_repeat1, 2, 0, 0), SHIFT(3520), + [851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mod_item_repeat1, 2, 0, 0), SHIFT(2979), + [854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mod_item_repeat1, 2, 0, 0), SHIFT(1741), + [857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mod_item_repeat1, 2, 0, 0), SHIFT(2908), + [860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mod_item_repeat1, 2, 0, 0), SHIFT(1700), + [863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mod_item_repeat1, 2, 0, 0), SHIFT(1744), + [866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_mod_item_repeat1, 2, 0, 0), SHIFT(4078), + [869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mod_item_repeat1, 2, 0, 0), SHIFT(1744), + [872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mod_item_repeat1, 2, 0, 0), SHIFT(3851), + [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), + [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4133), + [883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 1, 0, 0), + [885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 1, 0, 0), + [887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), + [889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(175), + [892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), + [894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(175), + [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), + [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), + [911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, 0, 211), + [913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, 0, 211), + [915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1, 0, 0), + [917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1, 0, 0), + [919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__non_delim_token, 1, 0, 0), + [921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_delim_token, 1, 0, 0), + [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2, 0, 0), + [931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2, 0, 0), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), + [941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 3, 0, 0), + [943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 3, 0, 0), + [945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3, 0, 0), + [947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3, 0, 0), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3, 0, 0), + [961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3, 0, 0), + [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5, 0, 0), + [971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5, 0, 0), [973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), [975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), - [977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2, 0, 0), - [979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2, 0, 0), - [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), - [983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3, 0, 0), - [985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3, 0, 0), - [987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3, 0, 0), - [989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3, 0, 0), - [991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1, 0, 0), - [993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1, 0, 0), - [995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), - [997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), - [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [1001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(213), - [1004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(213), - [1007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1, 0, 0), - [1009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1, 0, 0), - [1011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), - [1013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), - [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), - [1023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 3, 0, 0), - [1025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 3, 0, 0), - [1027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), - [1029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), - [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [1033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2, 0, 0), - [1035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2, 0, 0), - [1037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__delim_tokens, 1, 0, 0), - [1039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delim_tokens, 1, 0, 0), - [1041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 1, 0, 0), - [1043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 1, 0, 0), + [977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), + [979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), + [981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(212), + [984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(212), + [987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), + [989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), + [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6, 0, 0), + [995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6, 0, 0), + [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), + [1001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), + [1003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4, 0, 0), + [1005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4, 0, 0), + [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [1009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1, 0, 0), + [1011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1, 0, 0), + [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), + [1015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2, 0, 0), + [1017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2, 0, 0), + [1019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1, 0, 0), + [1021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1, 0, 0), + [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [1025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5, 0, 0), + [1027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5, 0, 0), + [1029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6, 0, 0), + [1031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6, 0, 0), + [1033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4, 0, 0), + [1035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4, 0, 0), + [1037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 1, 0, 0), + [1039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 1, 0, 0), + [1041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__delim_tokens, 1, 0, 0), + [1043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delim_tokens, 1, 0, 0), [1045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 2, 0, 0), [1047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 2, 0, 0), [1049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 3, 0, 0), [1051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 3, 0, 0), - [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3184), - [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3132), - [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), - [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), - [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), - [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [1091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1057), - [1094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(145), - [1097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), - [1099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(134), - [1102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(10), - [1105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(291), - [1108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1496), - [1111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(238), - [1114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(789), - [1117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(857), - [1120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(38), - [1123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3298), - [1126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3586), - [1129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2421), - [1132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(39), - [1135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2531), - [1138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1365), - [1141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1453), - [1144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(831), - [1147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1019), - [1150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(188), - [1153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2627), - [1156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(338), - [1159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(41), - [1162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2789), - [1165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2637), - [1168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(189), - [1171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(36), - [1174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3130), - [1177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2629), - [1180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1489), - [1183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2524), - [1186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1413), - [1189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1501), - [1192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3537), - [1195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1501), - [1198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3563), - [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), - [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), - [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), - [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), - [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3279), - [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), - [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3075), - [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), - [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), - [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), - [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), - [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), - [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), - [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2656), - [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), + [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), + [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), + [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [1067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1205), + [1070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(170), + [1073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), + [1075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(140), + [1078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(25), + [1081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(251), + [1084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1746), + [1087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(230), + [1090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(914), + [1093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(977), + [1096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(40), + [1099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3479), + [1102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4139), + [1105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2770), + [1108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(38), + [1111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3046), + [1114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1496), + [1117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1734), + [1120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(950), + [1123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1165), + [1126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(152), + [1129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2977), + [1132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(363), + [1135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(36), + [1138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3188), + [1141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3048), + [1144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(188), + [1147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(39), + [1150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3520), + [1153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2979), + [1156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1741), + [1159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2908), + [1162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1700), + [1165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1744), + [1168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(4078), + [1171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1744), + [1174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3851), + [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [1181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [1183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3638), + [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), + [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3578), + [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), + [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3618), + [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), + [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3528), + [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), + [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), + [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2747), + [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2893), + [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), + [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), + [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2907), + [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2988), + [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2906), + [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), [1251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, 0, 30), [1253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, 0, 30), - [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), - [1257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), - [1259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), - [1261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 6, 0, 0), - [1263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 6, 0, 0), - [1265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 5, 0, 0), - [1267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 5, 0, 0), - [1269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4, 0, 0), - [1271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4, 0, 0), - [1273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), - [1275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), - [1277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, 0, 76), - [1279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, 0, 76), - [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), - [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), - [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), - [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), - [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), - [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), - [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), - [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), - [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), - [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3472), - [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), - [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), - [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), - [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3143), - [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3574), - [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), - [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), - [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), - [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), - [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), - [1337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), - [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [1341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), - [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), - [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), - [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2657), - [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), - [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), - [1353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), - [1355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), - [1357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 0), - [1359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 0), - [1361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gen_block, 3, 0, 0), - [1363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gen_block, 3, 0, 0), - [1365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_block, 2, 0, 0), - [1367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2, 0, 0), - [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), - [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), - [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), - [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), - [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), - [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), - [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), - [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), - [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), - [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), - [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [1395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2, 0, 0), - [1397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2, 0, 0), - [1399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3, 0, 0), - [1401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3, 0, 0), - [1403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_block, 2, 0, 0), - [1405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_block, 2, 0, 0), - [1407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, 0, 38), - [1409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, 0, 38), - [1411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3, 0, 0), - [1413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3, 0, 0), - [1415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 39), - [1417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 39), - [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2475), - [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), - [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), - [1429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2, 0, 0), - [1431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2, 0, 0), - [1433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, 0, 242), - [1435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, 0, 242), - [1437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, 0, 33), - [1439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, 0, 33), - [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), - [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), - [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gen_block, 2, 0, 0), - [1449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gen_block, 2, 0, 0), - [1451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, 0, 8), - [1453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, 0, 8), - [1455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, 0, 8), - [1457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, 0, 8), - [1459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, 0, 99), - [1461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, 0, 99), - [1463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), - [1465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1, 0, 0), - [1467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, 0, 146), - [1469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, 0, 146), - [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), - [1475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 28), - [1477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 28), - [1479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, 0, 116), - [1481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, 0, 116), - [1483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), - [1485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), - [1487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4, 0, 0), - [1489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4, 0, 0), - [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), - [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), - [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), - [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2938), - [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), - [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3127), - [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), - [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), - [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), - [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2476), - [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), - [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), - [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), - [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), - [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), - [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), - [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), - [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), - [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), - [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), - [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), - [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), - [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), - [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2700), + [1257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 5, 0, 0), + [1259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 5, 0, 0), + [1261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4, 0, 0), + [1263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4, 0, 0), + [1265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [1267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), + [1269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), + [1271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), + [1273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 6, 0, 0), + [1275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 6, 0, 0), + [1277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3, 0, 0), + [1279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3, 0, 0), + [1281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, 0, 99), + [1283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, 0, 99), + [1285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, 0, 116), + [1287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, 0, 116), + [1289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, 0, 38), + [1291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, 0, 38), + [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), + [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), + [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), + [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463), + [1307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), + [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), + [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), + [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), + [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), + [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), + [1325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), + [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3963), + [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2621), + [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2418), + [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), + [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3601), + [1337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3959), + [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), + [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), + [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2511), + [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), + [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), + [1349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), + [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [1353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), + [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), + [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2568), + [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2982), + [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), + [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), + [1365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, 0, 76), + [1367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, 0, 76), + [1369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_block, 2, 0, 0), + [1371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_block, 2, 0, 0), + [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), + [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), + [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2472), + [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), + [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), + [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), + [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), + [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), + [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), + [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3063), + [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [1399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, 0, 146), + [1401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, 0, 146), + [1403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gen_block, 3, 0, 0), + [1405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gen_block, 3, 0, 0), + [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [1409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), + [1411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 39), + [1413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 39), + [1415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2, 0, 0), + [1417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2, 0, 0), + [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2836), + [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), + [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), + [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), + [1429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 28), + [1431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 28), + [1433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, 0, 255), + [1435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, 0, 255), + [1437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, 0, 8), + [1439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, 0, 8), + [1441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3, 0, 0), + [1443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3, 0, 0), + [1445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), + [1447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1, 0, 0), + [1449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 0), + [1451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 0), + [1453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, 0, 33), + [1455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, 0, 33), + [1457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_block, 2, 0, 0), + [1459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2, 0, 0), + [1461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), + [1463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), + [1465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4, 0, 0), + [1467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4, 0, 0), + [1469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, 0, 8), + [1471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, 0, 8), + [1473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), + [1475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [1477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2, 0, 0), + [1479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2, 0, 0), + [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2847), + [1485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), + [1487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_gen_block, 2, 0, 0), + [1489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_gen_block, 2, 0, 0), + [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2928), + [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), + [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), + [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2409), + [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), + [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3366), + [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), + [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3630), + [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), + [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), + [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), + [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), + [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3036), + [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2852), + [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), + [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), + [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), + [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), + [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), + [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), + [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), + [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3031), + [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), + [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), + [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), + [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2666), + [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), + [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), + [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), [1583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label, 2, 0, 0), [1585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 2, 0, 0), [1587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 3, 0, 0), [1589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 3, 0, 0), [1591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2, 0, 0), [1593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2, 0, 0), - [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), - [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), - [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), - [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), - [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), - [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2659), - [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), - [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3361), - [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), - [1641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 173), - [1643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 173), - [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), - [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2287), - [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), - [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), - [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), - [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), - [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), - [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), - [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), - [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), - [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), - [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), - [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2665), - [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), - [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), - [1689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 117), - [1691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 117), - [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [1699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 85), - [1701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 85), - [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 211), - [1705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 211), - [1707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 212), - [1709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 212), - [1711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 213), - [1713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 213), - [1715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 165), - [1717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 165), - [1719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 214), - [1721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 214), - [1723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 167), - [1725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 167), - [1727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 215), - [1729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 215), - [1731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 216), - [1733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 216), - [1735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 217), - [1737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 217), - [1739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 218), - [1741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 218), - [1743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 162), - [1745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 162), - [1747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, 0, 219), - [1749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, 0, 219), - [1751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, 0, 202), - [1753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, 0, 202), - [1755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5, 0, 0), - [1757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5, 0, 0), - [1759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 181), - [1761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 181), - [1763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 222), - [1765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 222), - [1767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 223), - [1769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 223), - [1771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 224), - [1773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 224), - [1775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 225), - [1777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 225), - [1779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 226), - [1781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 226), - [1783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 227), - [1785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 227), - [1787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 228), - [1789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 228), - [1791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 229), - [1793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 229), - [1795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 230), - [1797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 230), - [1799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 189), - [1801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 189), - [1803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 231), - [1805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 231), - [1807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 232), - [1809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 232), - [1811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 233), - [1813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 233), - [1815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, 0, 138), - [1817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, 0, 138), - [1819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 192), - [1821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 192), - [1823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 234), - [1825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 234), - [1827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 235), - [1829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 235), - [1831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 236), - [1833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 236), - [1835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 237), - [1837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 237), - [1839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, 0, 238), - [1841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, 0, 238), - [1843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 239), - [1845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 239), - [1847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 240), - [1849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 240), - [1851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 196), - [1853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 196), - [1855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 241), - [1857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 241), - [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6, 0, 0), - [1861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6, 0, 0), - [1863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 205), - [1865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 205), - [1867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 245), - [1869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 245), - [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 210), - [1873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 210), - [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 246), - [1877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 246), - [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 212), - [1881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 212), - [1883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 247), - [1885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 247), - [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 248), - [1889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 248), - [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 249), - [1893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 249), - [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 250), - [1897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 250), - [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, 0, 54), - [1901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, 0, 54), - [1903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, 0, 251), - [1905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, 0, 251), - [1907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6, 0, 0), - [1909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6, 0, 0), - [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 222), - [1913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 222), - [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 253), - [1917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 253), - [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 224), - [1921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 224), - [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 254), - [1925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 254), - [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 255), - [1929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 255), - [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 256), - [1933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 256), - [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 257), - [1937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 257), - [1939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 258), - [1941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 258), - [1943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 226), - [1945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 226), - [1947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 259), - [1949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 259), - [1951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 228), - [1953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 228), - [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 260), - [1957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 260), - [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 261), - [1961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 261), - [1963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 262), - [1965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 262), - [1967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 232), - [1969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 232), - [1971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 263), - [1973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 263), - [1975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, 0, 251), - [1977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, 0, 251), - [1979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, 0, 264), - [1981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, 0, 264), - [1983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, 0, 6), - [1985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, 0, 6), - [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 234), - [1989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 234), - [1991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, 0, 265), - [1993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, 0, 265), - [1995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 239), - [1997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 239), - [1999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 266), - [2001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 266), - [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 267), - [2005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 267), - [2007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 268), - [2009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 268), - [2011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 9, 0, 269), - [2013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 9, 0, 269), - [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, 0, 270), - [2017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, 0, 270), - [2019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 255), - [2021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 255), - [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 271), - [2025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 271), - [2027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 257), - [2029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 257), - [2031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 272), - [2033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 272), - [2035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 261), - [2037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 261), - [2039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 273), - [2041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 273), - [2043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 274), - [2045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 274), - [2047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 275), - [2049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 275), - [2051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 267), - [2053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 267), - [2055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 276), - [2057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 276), - [2059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 10, 0, 277), - [2061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 10, 0, 277), - [2063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, 0, 278), - [2065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, 0, 278), - [2067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, 0, 274), - [2069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, 0, 274), - [2071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, 0, 279), - [2073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, 0, 279), - [2075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 163), - [2077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 163), - [2079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 121), - [2081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 121), - [2083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 164), - [2085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 164), - [2087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 165), - [2089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 165), - [2091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 166), - [2093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 166), - [2095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 167), - [2097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 167), - [2099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4, 0, 0), - [2101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4, 0, 0), - [2103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 168), - [2105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 168), - [2107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 124), - [2109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 124), - [2111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2, 0, 0), - [2113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2, 0, 0), - [2115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 169), - [2117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 169), - [2119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 170), - [2121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 170), - [2123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 72), - [2125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 72), - [2127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 73), - [2129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 73), - [2131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, 0, 29), - [2133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, 0, 29), - [2135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, 0, 74), - [2137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, 0, 74), - [2139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, 0, 75), - [2141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, 0, 75), - [2143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 171), - [2145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 171), - [2147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 172), - [2149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 172), - [2151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 80), - [2153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 80), - [2155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 157), - [2157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 157), - [2159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, 0, 7), - [2161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, 0, 7), - [2163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 81), - [2165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 81), - [2167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, 0, 175), - [2169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, 0, 175), - [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 22), - [2173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 22), - [2175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 82), - [2177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 82), - [2179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, 0, 83), - [2181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, 0, 83), - [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, 0, 29), - [2185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, 0, 29), - [2187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), - [2189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), - [2191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 29), - [2193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 29), - [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 72), - [2197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 72), - [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4, 0, 0), - [2201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4, 0, 0), - [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 85), - [2205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 85), - [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 73), - [2209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 73), - [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 73), - [2213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 73), - [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 180), - [2217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 180), - [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 131), - [2221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 131), - [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 181), - [2225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 181), - [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 6, 0, 132), - [2229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 6, 0, 132), - [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 133), - [2233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 133), - [2235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 182), - [2237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 182), - [2239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 183), - [2241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 183), - [2243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 184), - [2245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 184), - [2247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 185), - [2249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 185), - [2251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 72), - [2253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 72), - [2255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 86), - [2257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 86), - [2259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 73), - [2261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 73), - [2263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 7), - [2265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 7), - [2267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 113), - [2269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 113), - [2271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 72), - [2273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 72), - [2275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 73), - [2277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 73), - [2279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, 0, 186), - [2281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, 0, 186), - [2283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 64), - [2285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 64), - [2287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 88), - [2289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 88), - [2291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 89), - [2293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 89), - [2295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, 0, 94), - [2297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, 0, 94), - [2299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), - [2301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), - [2303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3165), - [2306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1080), - [2309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2735), - [2312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), - [2314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3545), - [2317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(857), - [2320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3250), - [2323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3306), - [2326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2387), - [2329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2265), - [2332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2236), - [2335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3633), - [2338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3307), - [2341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3135), - [2344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(858), - [2347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(818), - [2350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3343), - [2353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1972), - [2356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2944), - [2359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3344), - [2362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3345), - [2365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3346), - [2368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2950), - [2371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2238), - [2374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1891), - [2377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2088), - [2380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3353), - [2383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2013), - [2386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3353), - [2389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 89), - [2391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 89), - [2393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 94), - [2395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 94), - [2397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 95), - [2399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 95), - [2401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 96), - [2403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 96), - [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 89), - [2407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 89), - [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 89), - [2411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 89), - [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, 0, 97), - [2415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, 0, 97), - [2417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 189), - [2419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 189), - [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 190), - [2423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 190), - [2425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 54), - [2427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 54), - [2429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 141), - [2431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 141), - [2433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 191), - [2435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 191), - [2437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, 0, 175), - [2439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, 0, 175), - [2441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, 0, 184), - [2443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, 0, 184), - [2445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 6), - [2447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 6), - [2449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), - [2451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), - [2453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 89), - [2455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 89), - [2457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 138), - [2459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 138), - [2461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3165), - [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [2465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), - [2467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [2469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), - [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), - [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), - [2475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265), - [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), - [2479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3633), - [2481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3307), - [2483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3135), - [2485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), - [2487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), - [2489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3343), - [2491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2944), - [2493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3344), - [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3345), - [2497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3346), - [2499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2950), - [2501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), - [2503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), - [2505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), - [2507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), - [2509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), - [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), - [2513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 184), - [2515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 184), - [2517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 192), - [2519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 192), - [2521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, 0, 184), - [2523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, 0, 184), - [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [2527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), - [2529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), - [2531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, 0, 111), - [2533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, 0, 111), - [2535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, 0, 29), - [2537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, 0, 29), - [2539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, 0, 0), - [2541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, 0, 0), - [2543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3, 0, 0), - [2545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3, 0, 0), - [2547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 193), - [2549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 193), - [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [2553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 112), - [2555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 112), - [2557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 113), - [2559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 113), - [2561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 114), - [2563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 114), - [2565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 74), - [2567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 74), - [2569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 115), - [2571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 115), - [2573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, 0, 8), - [2575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, 0, 8), - [2577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 194), - [2579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 194), - [2581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 195), - [2583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 195), - [2585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 196), - [2587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 196), - [2589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 121), - [2591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 121), - [2593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 122), - [2595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 122), - [2597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 80), - [2599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 80), - [2601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 197), - [2603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 197), - [2605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, 0, 37), - [2607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, 0, 37), - [2609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 123), - [2611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 123), - [2613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 124), - [2615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 124), - [2617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 125), - [2619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 125), - [2621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 101), - [2623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 101), - [2625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), - [2627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), - [2629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), - [2631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), - [2633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 117), - [2635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 117), - [2637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 126), - [2639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 126), - [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 22), - [2643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 22), - [2645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 31), - [2647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 31), - [2649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2032), - [2652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(762), - [2655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(780), - [2658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2287), - [2661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3189), - [2664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(823), - [2667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(829), - [2670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(857), - [2673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2757), - [2676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3021), - [2679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3182), - [2682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3329), - [2685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2548), - [2688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2139), - [2691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(825), - [2694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(806), - [2697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2364), - [2700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2598), - [2703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2389), - [2706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2665), - [2709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2665), - [2712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3525), - [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [2717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, 0, 0), - [2719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, 0, 0), - [2721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, 0, 111), - [2723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, 0, 111), - [2725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, 0, 44), - [2727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, 0, 44), - [2729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, 0, 54), - [2731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, 0, 54), - [2733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), - [2735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), - [2737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, 0, 6), - [2739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, 0, 6), - [2741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 158), - [2743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 158), - [2745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 159), - [2747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 159), - [2749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 29), - [2751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 29), - [2753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 73), - [2755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 73), - [2757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 112), - [2759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 112), - [2761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 129), - [2763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 129), - [2765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 112), - [2767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 112), - [2769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 130), - [2771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 130), - [2773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, 0, 131), - [2775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, 0, 131), - [2777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 87), - [2779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 87), - [2781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 85), - [2783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 85), - [2785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 132), - [2787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 132), - [2789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 112), - [2791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 112), - [2793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 133), - [2795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 133), - [2797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 134), - [2799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 134), - [2801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 64), - [2803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 64), - [2805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 135), - [2807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 135), - [2809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 136), - [2811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 136), - [2813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 137), - [2815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 137), - [2817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 138), - [2819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 138), - [2821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, 0, 32), - [2823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, 0, 32), - [2825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 141), - [2827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 141), - [2829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 142), - [2831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 142), - [2833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 136), - [2835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 136), - [2837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 138), - [2839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 138), - [2841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 89), - [2843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 89), - [2845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 136), - [2847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 136), - [2849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 143), - [2851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 143), - [2853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 138), - [2855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 138), - [2857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), - [2859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), - [2861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 136), - [2863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 136), - [2865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 138), - [2867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 138), - [2869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 144), - [2871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 144), - [2873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 160), - [2875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 160), - [2877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, 0, 145), - [2879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, 0, 145), - [2881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 161), - [2883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 161), - [2885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 6), - [2887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 6), - [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 34), - [2891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 34), - [2893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, 0, 202), - [2895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, 0, 202), - [2897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5, 0, 0), - [2899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5, 0, 0), - [2901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 205), - [2903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 205), - [2905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 54), - [2907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 54), - [2909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 7), - [2911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 7), - [2913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 6), - [2915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 6), - [2917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 206), - [2919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 206), - [2921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 158), - [2923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 158), - [2925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 207), - [2927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 207), - [2929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 160), - [2931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 160), - [2933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 208), - [2935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 208), - [2937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 162), - [2939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 162), - [2941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 209), - [2943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 209), - [2945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 29), - [2947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 29), - [2949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 210), - [2951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 210), - [2953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4, 0, 0), - [2955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4, 0, 0), - [2957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 87), - [2959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 87), - [2961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [2969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), - [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), - [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), - [2977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), - [2979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), - [2981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), - [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), - [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [2995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), - [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), - [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), - [3001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), - [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [3005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), - [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), - [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), - [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), - [3013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), - [3015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), - [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), - [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), - [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), - [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), - [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), - [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), - [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), - [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), - [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), - [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), - [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), - [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [3053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), - [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), - [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), - [3061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), - [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), - [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), - [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), - [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), - [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), - [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [3087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), - [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), - [3091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [3095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), - [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [3109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), - [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), - [3117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), - [3119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3210), - [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2668), - [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), - [3125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), - [3127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), - [3129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3544), - [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), - [3135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3039), - [3137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), - [3139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [3151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), - [3159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), - [3161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3080), - [3163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2553), - [3165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), - [3167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), - [3169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), - [3171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [3175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), - [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [3181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3064), - [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [3191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [3201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), - [3203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), - [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [3207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), - [3209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), - [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [3213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), - [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [3221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), - [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), - [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [3229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), - [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [3233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), - [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [3237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2941), - [3243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), - [3245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 1, 0, 0), - [3247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 1, 0, 0), - [3249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4, 0, 0), - [3251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4, 0, 0), - [3253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), - [3255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lifetime, 2, 0, 0), - [3257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2, 0, 0), - [3259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), - [3261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 0), - [3263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 0), - [3265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), - [3267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), - [3273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 1), - [3275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 1), - [3277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), - [3279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), - [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [3283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 1), - [3285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 1), - [3287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), - [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), - [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), - [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), - [3295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 5), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [3299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 5), - [3301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2703), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), - [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [3307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, 0, 24), - [3309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, 0, 24), - [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), - [3313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, 0, 105), - [3315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, 0, 105), - [3317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, 0, 24), - [3319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, 0, 24), - [3321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), - [3323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 0), - [3325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, 0, 25), - [3327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, 0, 25), - [3329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 17), - [3331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 17), - [3333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 16), - [3335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 16), - [3337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, 0, 106), - [3339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, 0, 106), - [3341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 41), - [3343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 41), - [3345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 40), - [3347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 40), - [3349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 46), - [3351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 46), - [3353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 45), - [3355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 45), - [3357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, 0, 25), - [3359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, 0, 25), - [3361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), - [3363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), - [3365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), SHIFT_REPEAT(3329), - [3368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, 0, 7), - [3370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, 0, 7), - [3372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, 0, 6), - [3374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 6), - [3376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), - [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [3380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3397), - [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), - [3384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), - [3386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3234), - [3388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2914), - [3390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), - [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), - [3394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), - [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [3398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3443), - [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [3402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), - [3404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3124), - [3406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2939), - [3408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3499), - [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), - [3412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), - [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [3416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3511), - [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), - [3420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), - [3422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2946), - [3424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3560), - [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), - [3428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2490), - [3430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3, 0, 0), - [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), - [3434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3013), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), - [3440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3282), - [3442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), - [3444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), - [3446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4, 0, 0), - [3448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), - [3452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), - [3454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3291), - [3456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), - [3458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), - [3460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3566), - [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), - [3465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 120), - [3467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 120), - [3469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 17), - [3471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 77), - [3473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 77), - [3475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 0), - [3477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), - [3479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 120), - [3481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 120), - [3483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 6, 0, 120), - [3485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 6, 0, 120), - [3487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 6, 0, 0), - [3489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 6, 0, 0), - [3491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 173), - [3493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 173), - [3495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 173), - [3497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 41), - [3499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), - [3501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), - [3503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 46), - [3505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 0, 117), - [3507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 0, 117), - [3509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, 0, 117), - [3511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 49), - [3513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 49), - [3515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 50), - [3517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 50), - [3519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 77), - [3521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 77), - [3523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, 0, 7), - [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), - [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), - [3531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2614), - [3533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), - [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), - [3537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2628), - [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), - [3541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 19), - [3543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 19), - [3545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2699), - [3547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), - [3549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2712), - [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), - [3553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 20), - [3555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 20), - [3557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 21), - [3559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 21), - [3561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 23), - [3563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 23), - [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [3567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 26), - [3569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 26), - [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [3573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 27), - [3575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 27), - [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), - [3581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), - [3583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2, 0, 0), - [3585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 65), - [3587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 65), - [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [3591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 67), - [3593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 67), - [3595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [3597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 68), - [3599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 68), - [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [3603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), - [3605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), - [3607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), - [3609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3, 0, 0), - [3611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 108), - [3613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 108), - [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [3617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), - [3619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), - [3621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4, 0, 0), - [3623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4, 0, 0), - [3625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0), - [3627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), - [3629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), - [3631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), - [3633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5, 0, 0), - [3635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5, 0, 0), - [3637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 6, 0, 0), - [3639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 6, 0, 0), - [3641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6, 0, 0), - [3643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6, 0, 0), - [3645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1, 0, 0), - [3647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1, 0, 0), - [3649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 77), - [3651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 77), - [3653] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), - [3655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), - [3657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), - [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [3661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), - [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), - [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), - [3667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, 0, 42), - [3669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 52), - [3671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, 0, 42), - [3673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), - [3675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), - [3677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 47), - [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [3681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 47), - [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [3685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2960), - [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [3689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), - [3691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), - [3693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 63), - [3695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 63), - [3697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, 0, 64), - [3699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, 0, 64), - [3701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, 0, 64), - [3703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, 0, 64), - [3705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3, 0, 0), - [3707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3, 0, 0), - [3709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2, 0, 0), - [3711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2, 0, 0), - [3713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2, 0, 0), - [3715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2, 0, 0), - [3717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3, 0, 0), - [3719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3, 0, 0), - [3721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4, 0, 0), - [3723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4, 0, 0), - [3725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, 0, 201), - [3727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, 0, 201), - [3729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, 0, 51), - [3731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, 0, 51), - [3733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 0), - [3735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 0), - [3737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), - [3739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), - [3741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4, 0, 0), - [3743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4, 0, 0), - [3745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4, 0, 0), - [3747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4, 0, 0), - [3749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6, 0, 0), - [3751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6, 0, 0), - [3753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 4, 0, 55), - [3755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 4, 0, 55), - [3757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 147), - [3759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 147), - [3761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), - [3763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), - [3765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, 0, 103), - [3767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, 0, 103), - [3769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 104), - [3771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 104), - [3773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 0), - [3775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 0), - [3777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 107), - [3779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 107), - [3781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_never_type, 1, 0, 0), - [3783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_never_type, 1, 0, 0), - [3785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 109), - [3787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 109), - [3789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, 0, 4), - [3791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, 0, 4), - [3793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, 0, 18), - [3795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, 0, 18), - [3797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2, 0, 0), - [3799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2, 0, 0), - [3801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 6, 0, 176), - [3803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 6, 0, 176), - [3805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5, 0, 0), - [3807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5, 0, 0), - [3809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), - [3811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2, 0, 0), - [3813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), - [3815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), - [3817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, 0, 22), - [3819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, 0, 22), - [3821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, 0, 35), - [3823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 3, 0, 35), - [3825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5, 0, 0), - [3827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5, 0, 0), - [3829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6, 0, 0), - [3831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6, 0, 0), - [3833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7, 0, 0), - [3835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7, 0, 0), - [3837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 7, 0, 0), - [3839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 7, 0, 0), - [3841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, 0, 128), - [3843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, 0, 128), - [3845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2, 0, 0), - [3847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2, 0, 0), - [3849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 43), - [3851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), - [3853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), - [3855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 151), - [3857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, 0, 151), - [3859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 153), - [3861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 153), - [3863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 154), - [3865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 154), - [3867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 80), - [3869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 80), - [3871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), - [3873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), - [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), - [3877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 155), - [3879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 155), - [3881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 1, 0, 0), - [3883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 1, 0, 0), - [3885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 1, 0, 0), - [3887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 1, 0, 0), - [3889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 84), - [3891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 84), - [3893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 10), - [3895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 10), - [3897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3, 0, 0), - [3899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3, 0, 0), - [3901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 11), - [3903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 11), - [3905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), - [3907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), - [3909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, 0, 0), - [3911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, 0, 0), - [3913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 98), - [3915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 98), - [3917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 12), - [3919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 12), - [3921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2, 0, 0), - [3923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2, 0, 0), - [3925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5, 0, 0), - [3927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5, 0, 0), - [3929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 100), - [3931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 100), - [3933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 0), - [3935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 0), - [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [3939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, 0, 13), - [3941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 2, 0, 13), - [3943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [3945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [3947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3, 0, 0), - [3949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3, 0, 0), - [3951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), - [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), - [3955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), - [3957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), - [3959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), - [3961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3295), - [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), - [3965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [3967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [3969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), - [3971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [3973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [3979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [3983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), - [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [3987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), - [3989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), - [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [3993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, 0, 47), - [3995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, 0, 47), - [3997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 48), - [3999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 48), - [4001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3, 0, 0), - [4003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3, 0, 0), - [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [4007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2624), - [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), - [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [4013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2, 0, 0), - [4015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2, 0, 0), - [4017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2730), - [4019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3, 0, 0), - [4021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3, 0, 0), - [4023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), - [4025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2, 0, 0), - [4027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), - [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), - [4031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4, 0, 0), - [4033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4, 0, 0), - [4035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1, 0, 0), - [4037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), - [4039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(3283), - [4042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, 0, 127), - [4044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 127), - [4046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, 0, 0), - [4048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 0), - [4050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(2662), - [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), - [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), - [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), - [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [4065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [4079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), - [4081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [4083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [4085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [4087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [4093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [4097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), - [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [4101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [4103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), - [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [4107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2409), - [4109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3168), - [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), - [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), - [4117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), - [4119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3297), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [4125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2470), - [4127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3102), - [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), - [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [4137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), - [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), - [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [4157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), - [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), - [4169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3, 0, 0), - [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [4173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2440), - [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), - [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), - [4181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), - [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), - [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), - [4187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), - [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), - [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), - [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), - [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [4207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3010), - [4209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 156), - [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), - [4219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, 0, 173), - [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [4223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), - [4225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), - [4227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), - [4229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), - [4231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), - [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [4237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), - [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [4241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), - [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [4245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), - [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [4249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 0), - [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [4253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [4255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [4257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), - [4259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [4261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [4267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), - [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [4271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [4275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), - [4277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), - [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [4285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 187), - [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [4289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), - [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [4293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 188), - [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [4297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 139), - [4299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_chain, 3, 0, 0), - [4301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 140), - [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [4309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [4315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 203), - [4317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 204), - [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), - [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), - [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), - [4331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 117), - [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [4335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2, 0, 0), - [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), - [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), - [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), - [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [4369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, 0, 244), - [4371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_condition, 4, 0, 117), - [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [4375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), - [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [4425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 110), - [4427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 18), - [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [4433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), - [4435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3519), - [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), - [4439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), - [4441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3532), - [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), - [4445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2561), - [4447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2568), - [4449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), - [4451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2749), - [4453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), - [4455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2742), - [4457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), - [4459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6, 0, 0), - [4461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6, 0, 0), - [4463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5, 0, 0), - [4465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5, 0, 0), - [4467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4, 0, 0), - [4469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4, 0, 0), - [4471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), - [4473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), - [4475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), - [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [4479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3091), - [4481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3089), - [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), - [4485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3095), - [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), - [4489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3180), - [4491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3179), - [4493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3195), - [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), - [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), - [4507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), - [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [4513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 0), - [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [4517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), - [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), - [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), - [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), - [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), - [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), - [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), - [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), - [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), - [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), - [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), - [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), - [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [4549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 1), - [4551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 1), - [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), - [4555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), - [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), - [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), - [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), - [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), - [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), - [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), - [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), - [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), - [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), - [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), - [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), - [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), - [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), - [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [4603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 5), REDUCE(sym__pattern, 1, 0, 0), - [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), - [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), - [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), - [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), - [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), - [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), - [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), - [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), - [4632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), - [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [4642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [4644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 40), REDUCE(sym_scoped_type_identifier, 3, 0, 41), - [4647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 45), REDUCE(sym_scoped_type_identifier, 3, 0, 46), - [4650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 16), REDUCE(sym_scoped_type_identifier, 3, 0, 17), - [4653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 6), REDUCE(sym_scoped_type_identifier, 2, 0, 7), - [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), - [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [4664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), - [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), - [4670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2, 0, 0), - [4672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2, 0, 0), - [4674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1, 0, 0), - [4676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1, 0, 0), - [4678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), - [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [4682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), - [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), - [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), - [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), - [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), - [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), - [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [4720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 1), - [4722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 1), - [4724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1, 0, 0), - [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), - [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), - [4730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), - [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), - [4734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 0), - [4736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 0), - [4738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), - [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), - [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [4746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2375), - [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), - [4750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), - [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), - [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), - [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [4760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), - [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), - [4764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 56), - [4766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 56), - [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), - [4770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3373), - [4772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), - [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), - [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), - [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), - [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), - [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), - [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), - [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [4802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 60), - [4804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 60), - [4806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1, 0, 0), - [4808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2, 0, 0), - [4810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 62), - [4812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3, 0, 0), - [4814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 58), - [4816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 57), - [4818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 62), - [4820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, 0, 0), - [4822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 57), - [4824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3, 0, 0), - [4826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, 0, 0), - [4828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 57), - [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), - [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), - [4836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4, 0, 0), - [4838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5, 0, 0), - [4840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 57), - [4842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 57), - [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [4848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 2, 0, 0), - [4850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 58), - [4852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2, 0, 0), - [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [4856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2, 0, 0), - [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), - [4860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 57), - [4862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, 0, 57), - [4864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), - [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), - [4870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3496), - [4872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), - [4874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3396), - [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), - [4880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2, 0, 0), - [4882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 62), - [4884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, 0, 62), - [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [4890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), - [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), - [4896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 57), - [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [4900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), - [4902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3, 0, 0), - [4904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3, 0, 0), - [4906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), - [4908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 58), - [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), - [4914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 58), - [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [4918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3, 0, 0), - [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), - [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [4928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 1), - [4931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), - [4933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), SHIFT_REPEAT(853), - [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [4956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [4958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2, 0, 0), - [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), - [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), - [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [4998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(76), - [5001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), - [5003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(71), - [5006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(75), - [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [5035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2, 0, 0), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), - [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [5051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2856), - [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), - [5057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), - [5059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3523), - [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), - [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), - [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), - [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), - [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [5119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1, 0, 0), - [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), - [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), - [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [5129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2387), - [5132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), - [5134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2233), - [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), - [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), - [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), - [5169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3476), - [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [5173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3390), - [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [5183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 1), - [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), - [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), - [5193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3570), - [5195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), - [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), - [5199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 0), - [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), - [5205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, 0, 71), - [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), - [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), - [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [5221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1, 0, 0), - [5223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), - [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), - [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), - [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), - [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), - [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), - [5235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2, 0, 0), - [5237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), - [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), - [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), - [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), - [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), - [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), - [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [5255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 6), - [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), - [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), - [5267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3642), - [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), - [5271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3518), - [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), - [5275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3589), - [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), - [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [5307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), REDUCE(sym_tuple_struct_pattern, 3, 0, 57), - [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [5314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), REDUCE(sym_tuple_struct_pattern, 4, 0, 57), - [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [5323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3398), - [5325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3113), - [5327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3366), - [5329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3082), - [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), - [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), - [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [5401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3, 0, 0), - [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), - [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), - [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [5441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), - [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), - [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), - [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), - [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [5471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 77), - [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [5475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), REDUCE(sym_tuple_pattern, 2, 0, 0), - [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [5490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 1), - [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), - [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), - [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [5510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 0), - [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), - [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), - [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [5522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(1979), - [5525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(411), - [5528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, 0, 252), - [5530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 0), - [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [5541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 64), - [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), - [5557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 22), - [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), - [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), - [5565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 64), - [5567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 220), - [5569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 177), - [5571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 0), - [5573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 103), - [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [5583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 177), - [5585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2, 0, 0), - [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), - [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), - [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), - [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), - [5595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 22), - [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), - [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [5603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), - [5605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1448), - [5608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2, 0, 0), - [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), - [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [5624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 3, 0, 120), - [5626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), - [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [5630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 220), - [5632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 103), - [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [5636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 252), - [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), - [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [5642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), - [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), - [5650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2996), - [5652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [5654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), - [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), - [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [5664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 61), - [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), - [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), - [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [5692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), - [5694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), - [5696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), - [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [5702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), - [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [5706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, 0, 199), - [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [5720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), - [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), - [5724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2958), - [5726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2981), - [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), - [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [5744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3, 0, 0), - [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), - [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), - [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [5762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), - [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), - [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), - [5772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), - [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [5776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, 0, 48), - [5778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), - [5780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), - [5782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(819), - [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [5787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), - [5789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), - [5791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), - [5793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), - [5795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 101), - [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), - [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), - [5811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), - [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), - [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [5822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3044), - [5824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), - [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), - [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [5846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), - [5848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [5854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), - [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [5858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2804), - [5860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), - [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [5870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, 0, 148), - [5872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), - [5874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(205), - [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [5879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), - [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [5889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 3, 0, 0), - [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), - [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [5899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 79), - [5901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 78), - [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), - [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [5915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), - [5917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2968), - [5920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2977), - [5922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2976), - [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), - [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), - [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), - [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [5964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, 0, 36), - [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [5968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, 0, 111), - [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [5972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), - [5974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2395), - [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), - [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), - [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), - [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), - [5991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5, 0, 0), - [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [5997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, 0, 118), - [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [6003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3, 0, 0), - [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [6009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), - [6011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2156), - [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [6018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), - [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), - [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [6044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, 0, 78), - [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [6048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [6052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 1), - [6054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 90), - [6056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 91), - [6058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 0), - [6060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 92), - [6062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 93), - [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), - [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), - [6082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3424), - [6084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3057), - [6086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), - [6088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, 0, 79), - [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [6096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(416), - [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [6103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [6111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [6113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [6115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [6121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [6123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [6125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [6127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [6129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, 0, 59), - [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [6133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [6139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2, 0, 0), - [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [6149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1, 0, 0), - [6151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [6161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [6163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [6165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [6181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 9), - [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [6207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), - [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [6217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1, 0, 0), - [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), - [6223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [6225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [6233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), - [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [6241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, 0, 119), - [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [6249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(2073), - [6252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, 0, 64), - [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [6256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2508), - [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [6266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), - [6268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), SHIFT_REPEAT(3187), - [6271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 221), - [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [6277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, 0, 200), - [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), - [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [6287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4, 0, 0), - [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [6291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3575), - [6293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3335), - [6295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3625), - [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), - [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), - [6313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4, 0, 0), - [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), - [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), - [6329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), - [6331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), - [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [6337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), - [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [6343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(772), - [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [6352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 1, 0, 0), - [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), - [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), - [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), - [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), - [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), - [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), - [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [6382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), - [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), - [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [6394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(790), - [6397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 22), - [6399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [6401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, 0, 102), - [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), - [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [6411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [6415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 178), - [6417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 178), SHIFT_REPEAT(779), - [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [6422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), - [6424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(995), - [6427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 179), - [6429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), - [6431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1870), - [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [6438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, 0, 243), - [6440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), - [6442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), - [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [6446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), - [6448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), SHIFT_REPEAT(2205), - [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), - [6455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), - [6457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2235), - [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [6462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 34), - [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [6474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2, 0, 0), - [6476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 11), - [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), - [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [6488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, 0, 103), - [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [6492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(449), - [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [6497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 149), - [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [6503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [6505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [6507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), - [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [6511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [6515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [6517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 150), - [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [6521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3585), - [6523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3338), - [6525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), - [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [6529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [6531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3357), - [6533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3547), - [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [6543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), - [6545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), - [6547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), - [6549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), - [6551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), - [6553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), - [6555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), - [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [6559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), - [6561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, 0, 152), - [6563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), - [6565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), - [6567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), - [6569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), - [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), - [6575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), - [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), - [6581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), - [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), - [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), - [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [6591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), - [6593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), - [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [6597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3, 0, 0), - [6599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 3, 0, 0), - [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), - [6605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), - [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), - [6609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), - [6611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), - [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [6615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), - [6617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), - [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), - [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [6623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), - [6625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2992), - [6627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3387), - [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), - [6631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), - [6633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), - [6635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), - [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [6639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), - [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [6643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), - [6645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, 0, 32), - [6647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), - [6649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), - [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), - [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [6659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), - [6661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), - [6663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), - [6665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), - [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [6669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), - [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [6673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), - [6675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), - [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [6679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), - [6681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), - [6683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), - [6685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), - [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), - [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), - [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), - [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), - [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [6701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3, 0, 0), - [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), - [6707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), - [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [6711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1, 0, 0), - [6713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), - [6715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 3), - [6717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 2, 0, 0), - [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), - [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), - [6723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, 0, 66), - [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), - [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), - [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), - [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), - [6739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 2), - [6741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), - [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), - [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), - [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), - [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), - [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), - [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), - [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), - [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), - [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), - [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), - [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), - [6789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), - [6791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3636), - [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), - [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), - [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), - [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), - [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), - [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), - [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), - [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), - [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), - [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), - [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), - [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), - [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), - [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), - [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [6877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 3), - [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), - [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), - [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), - [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), - [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), - [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), - [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), - [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), - [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), - [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), - [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), - [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), - [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [6971] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [6973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3645), - [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), - [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), - [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), - [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [6997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3, 0, 0), - [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [7001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inner_line_doc_comment_marker, 1, 0, 0), - [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), - [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), - [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), - [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), - [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [7033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 70), - [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), - [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), - [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), - [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), - [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [7057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__outer_line_doc_comment_marker, 1, 0, 0), - [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), - [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), - [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), - [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), - [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), - [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), - [7089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, 0, 174), - [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), - [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), - [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), - [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), - [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), - [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), - [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), - [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), - [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), - [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), - [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), - [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), - [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), - [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), - [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), - [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), - [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [7155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 69), - [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), - [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), - [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), - [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), - [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), - [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), - [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), - [7221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), - [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), - [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), - [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), - [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), - [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), - [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), - [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), - [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), - [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), - [7249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 2), - [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), - [7255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 2, 0, 0), - [7257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 14), - [7259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 2, 0, 0), - [7261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 0), - [7263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 0), - [7265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 15), - [7267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 4, 0, 53), + [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), + [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), + [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), + [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4109), + [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2394), + [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3129), + [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), + [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3795), + [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), + [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), + [1641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 179), + [1643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 179), + [1645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 117), + [1647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 117), + [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), + [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2552), + [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), + [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3205), + [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), + [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), + [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), + [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2901), + [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), + [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), + [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), + [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), + [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), + [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2669), + [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3001), + [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), + [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), + [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3612), + [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), + [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3932), + [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), + [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), + [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), + [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), + [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3798), + [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3546), + [1721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3620), + [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), + [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), + [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3794), + [1729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3373), + [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3792), + [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3791), + [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3789), + [1737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3374), + [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2484), + [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), + [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), + [1745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3786), + [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), + [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), + [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [1753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3612), + [1756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1353), + [1759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3023), + [1762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), + [1764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3932), + [1767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(977), + [1770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3773), + [1773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3491), + [1776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2621), + [1779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2582), + [1782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2483), + [1785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3798), + [1788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3546), + [1791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3620), + [1794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(963), + [1797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(940), + [1800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3794), + [1803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2231), + [1806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3373), + [1809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3792), + [1812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3791), + [1815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3789), + [1818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3374), + [1821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2484), + [1824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2122), + [1827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2345), + [1830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3786), + [1833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2281), + [1836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3786), + [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [1843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 331), + [1845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 331), + [1847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 85), + [1849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 85), + [1851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, 0, 29), + [1853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, 0, 29), + [1855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 136), + [1857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 136), + [1859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 135), + [1861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 135), + [1863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 64), + [1865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 64), + [1867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 136), + [1869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 136), + [1871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 134), + [1873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 134), + [1875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 133), + [1877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 133), + [1879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 147), + [1881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 147), + [1883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 142), + [1885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 142), + [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 112), + [1889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 112), + [1891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, 0, 37), + [1893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, 0, 37), + [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 132), + [1897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 132), + [1899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 85), + [1901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 85), + [1903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 87), + [1905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 87), + [1907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 141), + [1909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 141), + [1911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, 0, 131), + [1913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, 0, 131), + [1915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 144), + [1917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 144), + [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, 0, 7), + [1921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, 0, 7), + [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 130), + [1925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 130), + [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, 0, 29), + [1929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, 0, 29), + [1931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 112), + [1933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 112), + [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 129), + [1937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 129), + [1939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 112), + [1941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 112), + [1943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 73), + [1945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 73), + [1947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 29), + [1949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 29), + [1951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 29), + [1953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 29), + [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), + [1957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), + [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 138), + [1961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 138), + [1963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 136), + [1965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 136), + [1967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [1969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [1971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, 0, 145), + [1973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, 0, 145), + [1975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 138), + [1977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 138), + [1979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 7), + [1981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 7), + [1983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), + [1985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), + [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 143), + [1989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 143), + [1991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 136), + [1993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 136), + [1995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, 0, 111), + [1997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, 0, 111), + [1999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 89), + [2001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 89), + [2003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2294), + [2006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(875), + [2009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(897), + [2012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2552), + [2015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3661), + [2018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(924), + [2021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(919), + [2024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(977), + [2027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3205), + [2030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3204), + [2033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3732), + [2036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3547), + [2039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2901), + [2042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2423), + [2045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(921), + [2048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(918), + [2051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2620), + [2054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2892), + [2057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2669), + [2060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3001), + [2063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3001), + [2066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(4001), + [2069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 138), + [2071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 138), + [2073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, 0, 0), + [2075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, 0, 0), + [2077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, 0, 8), + [2079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, 0, 8), + [2081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 126), + [2083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 126), + [2085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 138), + [2087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 138), + [2089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 117), + [2091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 117), + [2093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 101), + [2095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 101), + [2097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 96), + [2099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 96), + [2101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 34), + [2103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 34), + [2105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, 0, 0), + [2107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, 0, 0), + [2109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, 0, 44), + [2111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, 0, 44), + [2113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 148), + [2115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 148), + [2117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 125), + [2119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 125), + [2121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 124), + [2123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 124), + [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 123), + [2127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 123), + [2129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 6), + [2131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 6), + [2133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 80), + [2135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 80), + [2137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 143), + [2139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 143), + [2141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 122), + [2143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 122), + [2145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 121), + [2147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 121), + [2149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 103), + [2151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 103), + [2153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 149), + [2155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 149), + [2157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 144), + [2159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 144), + [2161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 5, 0, 145), + [2163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 5, 0, 145), + [2165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 5, 0, 150), + [2167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 5, 0, 150), + [2169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 151), + [2171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 151), + [2173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 144), + [2175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 144), + [2177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 115), + [2179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 115), + [2181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 74), + [2183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 74), + [2185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 11, 0, 342), + [2187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 11, 0, 342), + [2189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 11, 0, 337), + [2191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 11, 0, 337), + [2193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 11, 0, 341), + [2195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 11, 0, 341), + [2197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 11, 0, 340), + [2199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 11, 0, 340), + [2201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), + [2203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), + [2205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, 0, 339), + [2207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, 0, 339), + [2209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 144), + [2211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 144), + [2213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 114), + [2215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 114), + [2217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, 0, 32), + [2219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, 0, 32), + [2221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 113), + [2223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 113), + [2225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, 0, 330), + [2227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, 0, 330), + [2229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 112), + [2231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 112), + [2233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, 0, 338), + [2235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, 0, 338), + [2237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, 0, 337), + [2239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, 0, 337), + [2241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 5, 0, 152), + [2243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 5, 0, 152), + [2245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 31), + [2247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 31), + [2249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 22), + [2251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 22), + [2253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 10, 0, 336), + [2255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 10, 0, 336), + [2257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 54), + [2259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 54), + [2261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 10, 0, 323), + [2263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 10, 0, 323), + [2265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 10, 0, 335), + [2267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 10, 0, 335), + [2269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 10, 0, 321), + [2271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 10, 0, 321), + [2273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, 0, 334), + [2275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, 0, 334), + [2277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, 0, 313), + [2279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, 0, 313), + [2281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, 0, 333), + [2283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, 0, 333), + [2285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 10, 0, 332), + [2287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 10, 0, 332), + [2289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 330), + [2291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 330), + [2293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 329), + [2295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 329), + [2297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 305), + [2299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 305), + [2301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 9, 0, 328), + [2303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 9, 0, 328), + [2305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 6), + [2307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 6), + [2309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 9, 0, 300), + [2311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 9, 0, 300), + [2313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [2315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), + [2317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, 0, 327), + [2319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, 0, 327), + [2321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3, 0, 0), + [2323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3, 0, 0), + [2325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, 0, 111), + [2327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, 0, 111), + [2329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, 0, 54), + [2331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, 0, 54), + [2333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 9, 0, 309), + [2335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 9, 0, 309), + [2337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 326), + [2339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 326), + [2341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 298), + [2343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 298), + [2345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 325), + [2347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 325), + [2349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 296), + [2351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 296), + [2353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 324), + [2355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 324), + [2357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 323), + [2359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 323), + [2361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, 0, 6), + [2363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, 0, 6), + [2365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 322), + [2367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 322), + [2369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 321), + [2371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 321), + [2373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 320), + [2375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 320), + [2377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 294), + [2379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 294), + [2381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), + [2383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), + [2385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 319), + [2387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 319), + [2389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 292), + [2391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 292), + [2393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 9, 0, 318), + [2395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 9, 0, 318), + [2397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 9, 0, 317), + [2399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 9, 0, 317), + [2401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 9, 0, 316), + [2403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 9, 0, 316), + [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 315), + [2407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 315), + [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 290), + [2411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 290), + [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 314), + [2415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 314), + [2417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 313), + [2419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 313), + [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 312), + [2423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 312), + [2425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, 0, 29), + [2427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, 0, 29), + [2429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 284), + [2431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 284), + [2433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 311), + [2435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 311), + [2437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 280), + [2439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 280), + [2441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 310), + [2443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 310), + [2445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 278), + [2447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 278), + [2449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4, 0, 0), + [2451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4, 0, 0), + [2453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, 0, 309), + [2455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, 0, 309), + [2457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 9, 0, 308), + [2459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 9, 0, 308), + [2461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 307), + [2463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 307), + [2465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 264), + [2467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 264), + [2469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 306), + [2471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 306), + [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 113), + [2475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 113), + [2477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 305), + [2479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 305), + [2481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 8, 0, 304), + [2483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 8, 0, 304), + [2485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, 0, 303), + [2487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, 0, 303), + [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, 0, 302), + [2491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, 0, 302), + [2493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, 0, 301), + [2495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, 0, 301), + [2497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 300), + [2499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 300), + [2501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 260), + [2503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 260), + [2505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 163), + [2507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 163), + [2509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 8, 0, 201), + [2511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 8, 0, 201), + [2513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 299), + [2515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 299), + [2517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 298), + [2519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 298), + [2521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 297), + [2523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 297), + [2525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 296), + [2527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 296), + [2529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 295), + [2531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 295), + [2533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 294), + [2535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 294), + [2537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 293), + [2539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 293), + [2541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 292), + [2543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 292), + [2545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 291), + [2547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 291), + [2549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 290), + [2551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 290), + [2553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 289), + [2555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 289), + [2557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 252), + [2559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 252), + [2561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, 0, 288), + [2563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, 0, 288), + [2565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 247), + [2567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 247), + [2569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, 0, 287), + [2571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, 0, 287), + [2573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 164), + [2575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 164), + [2577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, 0, 274), + [2579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, 0, 274), + [2581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 286), + [2583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 286), + [2585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 245), + [2587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 245), + [2589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 165), + [2591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 165), + [2593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 285), + [2595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 285), + [2597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 284), + [2599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 284), + [2601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 283), + [2603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 283), + [2605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 241), + [2607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 241), + [2609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 282), + [2611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 282), + [2613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 239), + [2615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 239), + [2617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 281), + [2619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 281), + [2621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 280), + [2623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 280), + [2625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 279), + [2627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 279), + [2629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 278), + [2631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 278), + [2633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 277), + [2635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 277), + [2637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 237), + [2639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 237), + [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 166), + [2643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 166), + [2645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 276), + [2647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 276), + [2649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 235), + [2651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 235), + [2653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6, 0, 0), + [2655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6, 0, 0), + [2657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 167), + [2659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 167), + [2661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 168), + [2663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 168), + [2665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 169), + [2667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 169), + [2669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, 0, 274), + [2671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, 0, 274), + [2673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 273), + [2675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 273), + [2677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 272), + [2679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 272), + [2681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 271), + [2683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 271), + [2685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 121), + [2687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 121), + [2689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 270), + [2691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 270), + [2693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 225), + [2695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 225), + [2697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 269), + [2699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 269), + [2701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 223), + [2703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 223), + [2705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 268), + [2707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 268), + [2709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 170), + [2711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 170), + [2713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 218), + [2715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 218), + [2717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6, 0, 0), + [2719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6, 0, 0), + [2721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 265), + [2723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 265), + [2725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 171), + [2727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 171), + [2729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 172), + [2731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 172), + [2733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 264), + [2735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 264), + [2737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 173), + [2739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 173), + [2741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 174), + [2743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 174), + [2745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 263), + [2747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 263), + [2749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 124), + [2751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 124), + [2753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 175), + [2755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 175), + [2757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 176), + [2759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 176), + [2761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 262), + [2763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 262), + [2765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 177), + [2767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 177), + [2769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 178), + [2771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 178), + [2773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, 0, 181), + [2775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, 0, 181), + [2777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 261), + [2779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 261), + [2781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 7, 0, 249), + [2783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 7, 0, 249), + [2785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 260), + [2787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 260), + [2789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, 0, 249), + [2791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, 0, 249), + [2793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, 0, 201), + [2795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, 0, 201), + [2797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4, 0, 0), + [2799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4, 0, 0), + [2801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, 0, 144), + [2803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, 0, 144), + [2805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 6), + [2807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 6), + [2809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 73), + [2811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 73), + [2813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 186), + [2815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 186), + [2817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 7, 0, 249), + [2819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 7, 0, 249), + [2821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, 0, 232), + [2823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, 0, 232), + [2825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 259), + [2827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 259), + [2829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 205), + [2831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 205), + [2833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 131), + [2835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 131), + [2837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 187), + [2839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 187), + [2841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 7, 0, 204), + [2843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 7, 0, 204), + [2845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 258), + [2847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 258), + [2849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 257), + [2851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 257), + [2853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 256), + [2855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 256), + [2857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 254), + [2859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 254), + [2861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 202), + [2863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 202), + [2865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 6, 0, 132), + [2867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 6, 0, 132), + [2869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 253), + [2871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 253), + [2873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 54), + [2875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 54), + [2877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 252), + [2879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 252), + [2881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, 0, 251), + [2883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, 0, 251), + [2885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2, 0, 0), + [2887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2, 0, 0), + [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 133), + [2891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 133), + [2893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 250), + [2895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 250), + [2897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 249), + [2899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 249), + [2901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 248), + [2903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 248), + [2905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 188), + [2907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 188), + [2909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 247), + [2911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 247), + [2913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 198), + [2915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 198), + [2917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, 0, 138), + [2919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, 0, 138), + [2921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 246), + [2923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 246), + [2925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 245), + [2927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 245), + [2929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 244), + [2931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 244), + [2933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 189), + [2935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 189), + [2937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 195), + [2939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 195), + [2941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 190), + [2943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 190), + [2945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 4, 0, 99), + [2947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 4, 0, 99), + [2949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 72), + [2951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 72), + [2953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 73), + [2955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 73), + [2957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 4, 0, 0), + [2959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 4, 0, 0), + [2961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 243), + [2963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 243), + [2965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, 0, 74), + [2967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, 0, 74), + [2969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 191), + [2971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 191), + [2973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, 0, 192), + [2975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, 0, 192), + [2977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, 0, 75), + [2979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, 0, 75), + [2981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 242), + [2983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 242), + [2985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 241), + [2987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 241), + [2989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 195), + [2991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 195), + [2993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 240), + [2995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 240), + [2997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 196), + [2999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 196), + [3001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 141), + [3003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 141), + [3005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 197), + [3007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 197), + [3009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, 0, 181), + [3011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, 0, 181), + [3013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, 0, 190), + [3015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, 0, 190), + [3017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 96), + [3019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 96), + [3021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 239), + [3023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 239), + [3025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 238), + [3027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 238), + [3029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 237), + [3031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 237), + [3033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 236), + [3035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 236), + [3037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 235), + [3039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 235), + [3041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 187), + [3043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 187), + [3045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5, 0, 0), + [3047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5, 0, 0), + [3049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 89), + [3051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 89), + [3053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 138), + [3055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 138), + [3057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 190), + [3059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 190), + [3061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 198), + [3063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 198), + [3065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, 0, 190), + [3067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, 0, 190), + [3069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 199), + [3071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 199), + [3073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 200), + [3075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 200), + [3077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 201), + [3079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 201), + [3081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 202), + [3083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 202), + [3085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, 0, 97), + [3087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, 0, 97), + [3089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 203), + [3091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 203), + [3093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 80), + [3095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 80), + [3097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 81), + [3099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 81), + [3101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, 0, 215), + [3103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, 0, 215), + [3105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 6, 0, 148), + [3107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 6, 0, 148), + [3109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 22), + [3111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 22), + [3113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 82), + [3115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 82), + [3117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 89), + [3119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 89), + [3121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, 0, 83), + [3123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, 0, 83), + [3125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 6, 0, 143), + [3127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 6, 0, 143), + [3129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, 0, 232), + [3131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, 0, 232), + [3133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 231), + [3135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 231), + [3137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 230), + [3139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 230), + [3141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 229), + [3143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 229), + [3145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 6, 0, 204), + [3147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 6, 0, 204), + [3149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 228), + [3151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 228), + [3153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 173), + [3155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 173), + [3157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 227), + [3159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 227), + [3161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 171), + [3163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 171), + [3165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 89), + [3167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 89), + [3169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 226), + [3171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 226), + [3173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 225), + [3175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 225), + [3177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 96), + [3179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 96), + [3181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 95), + [3183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 95), + [3185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 94), + [3187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 94), + [3189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 89), + [3191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 89), + [3193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), + [3195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), + [3197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 224), + [3199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 224), + [3201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 205), + [3203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 205), + [3205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 206), + [3207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 206), + [3209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 223), + [3211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 223), + [3213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 103), + [3215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 103), + [3217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 222), + [3219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 222), + [3221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 168), + [3223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 168), + [3225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 207), + [3227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 207), + [3229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, 0, 199), + [3231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, 0, 199), + [3233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, 0, 201), + [3235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, 0, 201), + [3237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 144), + [3239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 144), + [3241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 221), + [3243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 221), + [3245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 199), + [3247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 199), + [3249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 166), + [3251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 166), + [3253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 208), + [3255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 208), + [3257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [3259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [3261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, 0, 94), + [3263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, 0, 94), + [3265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 220), + [3267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 220), + [3269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 201), + [3271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 201), + [3273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, 0, 199), + [3275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, 0, 199), + [3277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 164), + [3279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 164), + [3281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 29), + [3283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 29), + [3285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 219), + [3287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 219), + [3289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 72), + [3291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 72), + [3293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 137), + [3295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 137), + [3297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 73), + [3299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 73), + [3301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, 0, 201), + [3303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, 0, 201), + [3305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 209), + [3307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 209), + [3309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 218), + [3311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 218), + [3313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5, 0, 0), + [3315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5, 0, 0), + [3317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, 0, 215), + [3319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, 0, 215), + [3321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 72), + [3323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 72), + [3325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 86), + [3327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 86), + [3329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 89), + [3331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 89), + [3333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 73), + [3335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 73), + [3337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 88), + [3339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 88), + [3341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 64), + [3343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 64), + [3345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, 0, 210), + [3347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, 0, 210), + [3349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 7), + [3351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 7), + [3353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 87), + [3355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 87), + [3357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, 0, 6), + [3359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, 0, 6), + [3361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 85), + [3363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 85), + [3365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 73), + [3367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 73), + [3369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, 0, 54), + [3371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, 0, 54), + [3373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 72), + [3375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 72), + [3377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), + [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [3385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), + [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), + [3391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2986), + [3393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), + [3395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3061), + [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), + [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), + [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), + [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), + [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [3411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), + [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), + [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), + [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), + [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), + [3421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), + [3423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), + [3425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), + [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), + [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), + [3431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), + [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), + [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), + [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), + [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), + [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), + [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), + [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), + [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), + [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), + [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), + [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), + [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), + [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), + [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), + [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [3471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), + [3473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2797), + [3475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), + [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), + [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), + [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), + [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), + [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [3493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), + [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), + [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), + [3499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), + [3501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), + [3503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), + [3505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [3507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), + [3509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [3511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), + [3513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), + [3515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), + [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), + [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [3527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), + [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [3533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), + [3535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), + [3537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3688), + [3539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3009), + [3541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), + [3543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), + [3545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), + [3547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4021), + [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [3551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), + [3553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [3555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), + [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [3563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), + [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), + [3571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), + [3573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3535), + [3575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2894), + [3577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), + [3579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), + [3581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), + [3583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4035), + [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [3589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), + [3591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3363), + [3593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), + [3595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), + [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [3603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), + [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [3607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), + [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), + [3615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [3617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), + [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), + [3621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2350), + [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [3625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), + [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [3629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3782), + [3631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), + [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [3635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), + [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [3641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2362), + [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [3645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), + [3647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), + [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [3653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [3655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2351), + [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [3659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), + [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [3663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), + [3665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [3667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3268), + [3669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4, 0, 0), + [3671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4, 0, 0), + [3673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), + [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [3677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), + [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [3681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), + [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [3685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_mod_item_repeat1, 2, 0, 0), + [3687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_mod_item_repeat1, 1, 0, 0), + [3689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_mod_item_repeat1, 1, 0, 0), + [3691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 4, 0, 0), + [3693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 4, 0, 0), + [3695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), + [3697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lifetime, 2, 0, 0), + [3699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2, 0, 0), + [3701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), + [3703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 1), + [3705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 1), + [3707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), + [3709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), + [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [3713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2338), + [3715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 0), + [3717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 0), + [3719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), + [3721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), + [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [3725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 1), + [3727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 1), + [3729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3016), + [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), + [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), + [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), + [3737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 5), + [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [3741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 5), + [3743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3037), + [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), + [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [3749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, 0, 24), + [3751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, 0, 24), + [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), + [3755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, 0, 24), + [3757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, 0, 24), + [3759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, 0, 105), + [3761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, 0, 105), + [3763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, 0, 25), + [3765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, 0, 25), + [3767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 41), + [3769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 41), + [3771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 40), + [3773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 40), + [3775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), + [3777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 0), + [3779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, 0, 25), + [3781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, 0, 25), + [3783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, 0, 106), + [3785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, 0, 106), + [3787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 46), + [3789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 46), + [3791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 45), + [3793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 45), + [3795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, 0, 7), + [3797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, 0, 7), + [3799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, 0, 6), + [3801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 6), + [3803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), + [3805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), + [3807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), SHIFT_REPEAT(3547), + [3810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 17), + [3812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 17), + [3814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 16), + [3816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 16), + [3818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3118), + [3820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), + [3822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), + [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [3826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3987), + [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), + [3830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), + [3832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3362), + [3834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4036), + [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), + [3838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), + [3840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3579), + [3842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), + [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [3846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3793), + [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), + [3850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), + [3852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3301), + [3854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3975), + [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), + [3858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), + [3860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3, 0, 0), + [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), + [3864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3302), + [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), + [3870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3778), + [3872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4, 0, 0), + [3874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), + [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [3878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3834), + [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), + [3882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), + [3884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3406), + [3886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4032), + [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), + [3890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), + [3892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3777), + [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), + [3898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), + [3900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3722), + [3902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6, 0, 0), + [3904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6, 0, 0), + [3906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 6, 0, 0), + [3908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 6, 0, 0), + [3910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), + [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [3914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), + [3916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 120), + [3918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 120), + [3920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0), + [3922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), + [3924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 77), + [3926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 77), + [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), + [3930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5, 0, 0), + [3932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5, 0, 0), + [3934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), + [3936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), + [3938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 50), + [3940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 50), + [3942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 49), + [3944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 49), + [3946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 0, 117), + [3948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 0, 117), + [3950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, 0, 117), + [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), + [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), + [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), + [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), + [3960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 77), + [3962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 77), + [3964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 0), + [3966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), + [3968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 120), + [3970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 120), + [3972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4, 0, 0), + [3974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4, 0, 0), + [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), + [3978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3042), + [3980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3043), + [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), + [3984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3041), + [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), + [3988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), + [3990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), + [3992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, 0, 7), + [3994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 19), + [3996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 19), + [3998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 46), + [4000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2987), + [4002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2993), + [4004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3072), + [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), + [4008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 20), + [4010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 20), + [4012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 21), + [4014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 21), + [4016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 23), + [4018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 23), + [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [4022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 26), + [4024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 26), + [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [4028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 27), + [4030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 27), + [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [4034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 17), + [4036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), + [4038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), + [4040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1, 0, 0), + [4042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1, 0, 0), + [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), + [4046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 77), + [4048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 77), + [4050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mod_item_repeat1, 2, 0, 0), SHIFT_REPEAT(4111), + [4053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), + [4055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), + [4057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 108), + [4059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 108), + [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [4063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), + [4065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3, 0, 0), + [4067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), + [4069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), + [4071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 41), + [4073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 179), + [4075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 179), + [4077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 179), + [4079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 6, 0, 0), + [4081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 6, 0, 0), + [4083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 6, 0, 120), + [4085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 6, 0, 120), + [4087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), + [4089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2, 0, 0), + [4091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 65), + [4093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 65), + [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [4097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 67), + [4099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 67), + [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [4103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 68), + [4105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 68), + [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [4109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, 0, 42), + [4111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 52), + [4113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, 0, 42), + [4115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, 0, 128), + [4117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, 0, 128), + [4119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 161), + [4121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 161), + [4123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3, 0, 0), + [4125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3, 0, 0), + [4127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 10), + [4129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 10), + [4131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, 0, 0), + [4133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, 0, 0), + [4135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, 0, 64), + [4137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, 0, 64), + [4139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, 0, 64), + [4141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, 0, 64), + [4143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 80), + [4145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 80), + [4147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 84), + [4149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 84), + [4151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 63), + [4153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 63), + [4155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), + [4157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), + [4159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 4, 0, 55), + [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [4163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 4, 0, 55), + [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [4167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3263), + [4169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), + [4171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), + [4173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 1, 0, 0), + [4175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 1, 0, 0), + [4177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 43), + [4179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 7, 0, 0), + [4181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 7, 0, 0), + [4183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7, 0, 0), + [4185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7, 0, 0), + [4187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 1, 0, 0), + [4189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 1, 0, 0), + [4191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4, 0, 0), + [4193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4, 0, 0), + [4195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3, 0, 0), + [4197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3, 0, 0), + [4199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4, 0, 0), + [4201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4, 0, 0), + [4203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 11), + [4205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 11), + [4207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, 0, 214), + [4209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, 0, 214), + [4211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6, 0, 0), + [4213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6, 0, 0), + [4215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), + [4217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), + [4219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, 0, 103), + [4221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, 0, 103), + [4223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 104), + [4225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 104), + [4227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 107), + [4229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 107), + [4231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 153), + [4233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 153), + [4235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 0), + [4237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 0), + [4239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2, 0, 0), + [4241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2, 0, 0), + [4243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 12), + [4245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 12), + [4247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2, 0, 0), + [4249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2, 0, 0), + [4251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5, 0, 0), + [4253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5, 0, 0), + [4255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 109), + [4257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 109), + [4259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), + [4261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), + [4263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, 0, 13), + [4265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 2, 0, 13), + [4267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, 0, 51), + [4269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, 0, 51), + [4271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4, 0, 0), + [4273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4, 0, 0), + [4275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 98), + [4277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 98), + [4279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2935), + [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), + [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), + [4285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 160), + [4287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 160), + [4289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5, 0, 0), + [4291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5, 0, 0), + [4293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, 0, 18), + [4295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, 0, 18), + [4297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2, 0, 0), + [4299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2, 0, 0), + [4301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3, 0, 0), + [4303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3, 0, 0), + [4305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [4307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [4309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5, 0, 0), + [4311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5, 0, 0), + [4313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, 0, 35), + [4315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 3, 0, 35), + [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [4319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 100), + [4321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 100), + [4323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 0), + [4325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 0), + [4327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6, 0, 0), + [4329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6, 0, 0), + [4331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, 0, 4), + [4333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, 0, 4), + [4335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, 0, 22), + [4337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, 0, 22), + [4339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), + [4341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), + [4343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 0), + [4345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 0), + [4347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3, 0, 0), + [4349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3, 0, 0), + [4351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), + [4353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2, 0, 0), + [4355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 6, 0, 182), + [4357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 6, 0, 182), + [4359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2, 0, 0), + [4361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2, 0, 0), + [4363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_never_type, 1, 0, 0), + [4365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_never_type, 1, 0, 0), + [4367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), + [4369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), + [4371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), + [4373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), + [4375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 157), + [4377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, 0, 157), + [4379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2, 0, 0), + [4381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2, 0, 0), + [4383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 47), + [4385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 47), + [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [4389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 159), + [4391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 159), + [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), + [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), + [4397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), + [4399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3602), + [4401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), + [4403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), + [4405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), + [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [4409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2937), + [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), + [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [4415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [4417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [4419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [4421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [4423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [4425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [4427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3065), + [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [4435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [4439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), + [4441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), + [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [4445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3, 0, 0), + [4447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3, 0, 0), + [4449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), + [4451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2, 0, 0), + [4453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2, 0, 0), + [4455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2, 0, 0), + [4457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3, 0, 0), + [4459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3, 0, 0), + [4461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, 0, 47), + [4463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, 0, 47), + [4465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 48), + [4467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 48), + [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), + [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), + [4475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4, 0, 0), + [4477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4, 0, 0), + [4479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1, 0, 0), + [4481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(3010), + [4484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), + [4486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, 0, 127), + [4488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 127), + [4490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, 0, 0), + [4492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 0), + [4494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(3670), + [4497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2650), + [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), + [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), + [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [4505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), + [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [4515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), + [4517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), + [4519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), + [4521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [4523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [4529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [4533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [4537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [4539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), + [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [4547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2753), + [4549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3783), + [4551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2745), + [4553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), + [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), + [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), + [4563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2801), + [4565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3598), + [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), + [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), + [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [4577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), + [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [4589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3, 0, 0), + [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), + [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [4609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), + [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), + [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), + [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), + [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [4619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2807), + [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), + [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), + [4627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2814), + [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), + [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), + [4633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2806), + [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), + [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), + [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [4641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [4643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), + [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [4647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [4649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [4651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [4657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [4661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [4663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3292), + [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [4667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), + [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [4677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 194), + [4679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 193), + [4681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), + [4683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), + [4685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [4687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [4689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), + [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [4695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [4699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), + [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [4703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), + [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), + [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [4715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), + [4717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), + [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [4729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), + [4731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_condition, 4, 0, 117), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [4747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, 0, 267), + [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [4753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2, 0, 0), + [4755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 0), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), + [4761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, 0, 179), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [4779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 216), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), + [4785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 217), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), + [4805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 117), + [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), + [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), + [4817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_chain, 3, 0, 0), + [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), + [4821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 162), + [4823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 139), + [4825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 140), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), + [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [4839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 110), + [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [4845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), + [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [4887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 18), + [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), + [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [4899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2889), + [4901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3931), + [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), + [4905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3217), + [4907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4008), + [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), + [4911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2990), + [4913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2895), + [4915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3076), + [4917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2880), + [4919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2927), + [4921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2954), + [4923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2989), + [4925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3123), + [4927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2862), + [4929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2998), + [4931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2995), + [4933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5, 0, 0), + [4935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5, 0, 0), + [4937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4, 0, 0), + [4939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4, 0, 0), + [4941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6, 0, 0), + [4943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6, 0, 0), + [4945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), + [4947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), + [4949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), + [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), + [4953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), + [4955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3570), + [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), + [4959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3568), + [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), + [4963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3609), + [4965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3606), + [4967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3611), + [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), + [4971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mod_item_repeat1, 2, 0, 0), SHIFT_REPEAT(4042), + [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), + [4976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), + [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), + [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), + [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), + [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), + [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), + [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), + [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), + [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), + [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [5006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), + [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), + [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), + [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), + [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), + [5020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), + [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), + [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), + [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), + [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), + [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), + [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [5034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), + [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [5044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), + [5046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [5050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 0), + [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [5054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), + [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), + [5062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 1), + [5064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 1), + [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), + [5068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), + [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), + [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), + [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), + [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), + [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), + [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), + [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), + [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), + [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), + [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), + [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), + [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), + [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), + [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), + [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), + [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), + [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), + [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), + [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), + [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), + [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), + [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), + [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), + [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), + [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), + [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), + [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [5138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [5142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 5), REDUCE(sym__pattern, 1, 0, 0), + [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), + [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), + [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), + [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), + [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), + [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), + [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), + [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), + [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), + [5177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), + [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [5187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [5189] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 45), REDUCE(sym_scoped_type_identifier, 3, 0, 46), + [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), + [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [5200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), + [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), + [5206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2, 0, 0), + [5208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2, 0, 0), + [5210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 6), REDUCE(sym_scoped_type_identifier, 2, 0, 7), + [5213] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 16), REDUCE(sym_scoped_type_identifier, 3, 0, 17), + [5216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 40), REDUCE(sym_scoped_type_identifier, 3, 0, 41), + [5219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1, 0, 0), + [5221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1, 0, 0), + [5223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2831), + [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [5227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3806), + [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), + [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), + [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), + [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), + [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), + [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [5259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2656), + [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), + [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), + [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), + [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), + [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [5277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 1), + [5279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 1), + [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), + [5283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 60), + [5285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 60), + [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), + [5289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2661), + [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [5293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3943), + [5295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), + [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), + [5301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), + [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), + [5305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 0), + [5307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 0), + [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), + [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), + [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [5315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1, 0, 0), + [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), + [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), + [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), + [5333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2699), + [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), + [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [5339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 56), + [5341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 56), + [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), + [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), + [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), + [5357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2786), + [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), + [5361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5, 0, 0), + [5363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 62), + [5365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 57), + [5367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 57), + [5369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3, 0, 0), + [5371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), + [5373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4083), + [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), + [5379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), + [5381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, 0, 57), + [5383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3, 0, 0), + [5385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 57), + [5387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 62), + [5389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 58), + [5391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 62), + [5393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 57), + [5395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, 0, 62), + [5397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 57), + [5399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2, 0, 0), + [5401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), + [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), + [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), + [5409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, 0, 0), + [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), + [5415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 58), + [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [5419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4, 0, 0), + [5421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), + [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), + [5427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, 0, 0), + [5429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 58), + [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), + [5433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1, 0, 0), + [5435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2, 0, 0), + [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [5439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 2, 0, 0), + [5441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 57), + [5443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 58), + [5445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2, 0, 0), + [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), + [5453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2, 0, 0), + [5455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3, 0, 0), + [5457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3, 0, 0), + [5459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 57), + [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), + [5463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), + [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), + [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), + [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), + [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), + [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [5509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3, 0, 0), + [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [5525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 1), + [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [5530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(69), + [5533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), + [5535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(83), + [5538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(82), + [5541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), + [5543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), SHIFT_REPEAT(970), + [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), + [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), + [5574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2, 0, 0), + [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [5618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2621), + [5621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), + [5623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2511), + [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [5642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3440), + [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), + [5648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3481), + [5650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3853), + [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [5660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2, 0, 0), + [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), + [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), + [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), + [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), + [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [5700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1, 0, 0), + [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), + [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), + [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), + [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [5778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4086), + [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), + [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), + [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [5786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, 0, 71), + [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [5792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4066), + [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), + [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), + [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), + [5800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1, 0, 0), + [5802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), + [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [5808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2, 0, 0), + [5810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), + [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), + [5814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 6), + [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), + [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), + [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), + [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), + [5830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3876), + [5832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4046), + [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [5840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 0), + [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [5846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1201), + [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), + [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [5856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3832), + [5858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 1), + [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), + [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), + [5866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4140), + [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), + [5870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4043), + [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), + [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), + [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), + [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), + [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), + [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), + [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), + [5890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3945), + [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), + [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [5920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), REDUCE(sym_tuple_struct_pattern, 4, 0, 57), + [5923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), REDUCE(sym_tuple_struct_pattern, 3, 0, 57), + [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [5928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3, 0, 0), + [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), + [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), + [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [5988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [5990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [5992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), + [5994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [5998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [6006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [6008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [6010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [6018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [6048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [6054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [6060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3919), + [6062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3633), + [6064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3921), + [6066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3634), + [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [6082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), + [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [6094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 0), + [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [6103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), + [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [6111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [6113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [6115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), + [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [6119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 183), + [6121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 22), + [6123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [6125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 64), + [6127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), + [6129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [6133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), REDUCE(sym_tuple_pattern, 2, 0, 0), + [6136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2, 0, 0), + [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), + [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [6152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 233), + [6154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 183), + [6156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 3, 0, 120), + [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [6160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 103), + [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [6168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), + [6170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [6172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), + [6174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1628), + [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4142), + [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), + [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), + [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), + [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [6193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 0), + [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), + [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), + [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [6207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), + [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), + [6215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), + [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), + [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [6223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), + [6225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), + [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [6233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 233), + [6235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 1), + [6237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), + [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), + [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [6243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(2233), + [6246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(416), + [6249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 103), + [6251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 275), + [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [6255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 64), + [6257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), + [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [6269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 77), + [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), + [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), + [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), + [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [6293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [6295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 0), + [6297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 22), + [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [6303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2, 0, 0), + [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), + [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), + [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [6313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, 0, 275), + [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), + [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [6337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), + [6339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), + [6341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), + [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), + [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [6357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), + [6359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), + [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), + [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), + [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), + [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [6385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), + [6387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, 0, 48), + [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [6391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 78), + [6393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 79), + [6395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), + [6397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, 0, 154), + [6399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(211), + [6402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), + [6404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(3245), + [6407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), + [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [6411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [6415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [6421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), + [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [6425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [6429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), + [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [6433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 101), + [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), + [6437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), + [6439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(931), + [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), + [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [6446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), + [6448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), + [6450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 61), + [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), + [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [6470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), + [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [6474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), + [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), + [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [6484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 3, 0, 0), + [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), + [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), + [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [6502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), + [6504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), + [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [6522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3297), + [6524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3298), + [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), + [6532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3243), + [6534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), + [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [6544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, 0, 212), + [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), + [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [6552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3, 0, 0), + [6554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), + [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), + [6558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), + [6561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3183), + [6563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3182), + [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), + [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [6573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), + [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), + [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), + [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), + [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), + [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), + [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [6623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), + [6625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3215), + [6627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), + [6633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3212), + [6635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), + [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), + [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [6645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3210), + [6647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), + [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [6659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 11), + [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), + [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [6669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4074), + [6671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3483), + [6673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4138), + [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [6677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4062), + [6679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3486), + [6681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4129), + [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), + [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), + [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), + [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), + [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), + [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), + [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), + [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), + [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), + [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), + [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [6747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), + [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [6761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3, 0, 0), + [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), + [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), + [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [6791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 9), + [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [6815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 1), + [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [6819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, 0, 103), + [6821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 90), + [6823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 91), + [6825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 92), + [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), + [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [6833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1, 0, 0), + [6835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 93), + [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [6839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, 0, 266), + [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [6843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 1, 0, 0), + [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [6861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3847), + [6863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), + [6865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3846), + [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [6869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 234), + [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), + [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [6877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, 0, 64), + [6879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2, 0, 0), + [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [6883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), + [6885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), + [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [6893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4, 0, 0), + [6895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, 0, 79), + [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [6899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, 0, 78), + [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [6903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, 0, 213), + [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), + [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [6931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), + [6933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), + [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), + [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), + [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), + [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), + [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), + [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), + [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), + [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [6959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5, 0, 0), + [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [6963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), + [6965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2538), + [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), + [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [6974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 185), + [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [6978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 184), + [6980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 184), SHIFT_REPEAT(895), + [6983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 22), + [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), + [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), + [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [7015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, 0, 111), + [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [7031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 34), + [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [7037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), + [7039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2486), + [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [7044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), + [7046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), SHIFT_REPEAT(3706), + [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), + [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [7059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(425), + [7062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2, 0, 0), + [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), + [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [7070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, 0, 36), + [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [7074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), + [7076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2713), + [7079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 156), + [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [7083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 155), + [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [7087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(456), + [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [7094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 0), + [7096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1, 0, 0), + [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), + [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), + [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [7116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4051), + [7118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3490), + [7120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4123), + [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), + [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), + [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), + [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [7136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), + [7138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1063), + [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), + [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), + [7183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), + [7185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2434), + [7188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), + [7190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2148), + [7193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4, 0, 0), + [7195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4049), + [7197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3489), + [7199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3820), + [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), + [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), + [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), + [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [7221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), + [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [7225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, 0, 119), + [7227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(2370), + [7230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), + [7232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(902), + [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), + [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [7261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, 0, 118), + [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [7267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), + [7271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, 0, 59), + [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [7279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [7293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), + [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), + [7301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(883), + [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [7316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, 0, 102), + [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), + [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [7324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), + [7326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), + [7328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), + [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), + [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), + [7336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), + [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [7340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3465), + [7342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4059), + [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), + [7348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4092), + [7350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4010), + [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), + [7354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3983), + [7356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3920), + [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), + [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [7366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 2, 0, 0), + [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [7370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), + [7372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), + [7374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), + [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), + [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), + [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [7382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), + [7384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), + [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [7388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), + [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [7392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), + [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), + [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), + [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), + [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [7406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), + [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [7410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), + [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), + [7416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), + [7418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), + [7420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), + [7422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 3), + [7424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), + [7426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 2), + [7428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2462), + [7430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), + [7432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), + [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), + [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), + [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), + [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), + [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), + [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), + [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [7452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), + [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [7456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), + [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), + [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [7462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), + [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), + [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), + [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), + [7472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), + [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), + [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), + [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [7480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), + [7482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1, 0, 0), + [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), + [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [7492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), + [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [7496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, 0, 66), + [7498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), + [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), + [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), + [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), + [7512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), + [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), + [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [7518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), + [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), + [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [7528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), + [7530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3, 0, 0), + [7532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), + [7534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, 0, 158), + [7536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), + [7538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), + [7540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), + [7542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), + [7544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 3, 0, 0), + [7546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, 0, 32), + [7548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [7550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), + [7552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [7554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), + [7556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), + [7558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [7560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 3, 0, 0), + [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [7564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), + [7566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), + [7568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), + [7570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [7572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), + [7574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), + [7576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), + [7578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), + [7580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), + [7582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [7584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), + [7586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), + [7588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), + [7590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), + [7592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [7594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), + [7596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), + [7598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [7600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), + [7602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), + [7604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [7606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [7608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [7610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), + [7612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [7614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [7616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [7618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), + [7620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), + [7622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), + [7624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [7626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), + [7628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [7630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), + [7632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [7634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [7636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [7638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [7640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), + [7642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), + [7644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), + [7646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), + [7648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), + [7650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [7652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), + [7654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [7656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), + [7658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [7660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [7662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [7664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [7666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), + [7668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), + [7670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [7672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [7674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [7676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, 0, 180), + [7678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [7680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [7682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), + [7684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), + [7686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [7688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [7690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [7692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [7694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [7696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), + [7698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [7700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4141), + [7702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), + [7704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), + [7706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [7708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [7710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), + [7712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [7714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [7716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), + [7718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), + [7720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [7722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), + [7724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [7726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [7728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [7730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), + [7732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [7734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [7736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [7738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [7740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [7742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), + [7744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [7746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [7748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [7750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), + [7752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), + [7754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [7756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), + [7758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), + [7760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [7762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [7764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [7766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [7768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [7770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [7772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), + [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), + [7778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), + [7780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 70), + [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [7784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [7786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [7788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), + [7790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [7792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), + [7794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [7796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [7800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), + [7802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [7804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [7806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [7808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 69), + [7810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [7812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [7820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), + [7822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), + [7824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), + [7826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), + [7828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [7830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [7834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [7836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [7838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [7840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [7842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), + [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), + [7854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [7856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), + [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [7864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [7866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), + [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), + [7870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), + [7872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), + [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [7878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [7880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), + [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [7886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), + [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [7890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), + [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [7894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [7898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3, 0, 0), + [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [7908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), + [7910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [7912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [7914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), + [7916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 2), + [7918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), + [7920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [7922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [7924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), + [7926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [7928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [7930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [7932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), + [7934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), + [7936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [7938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), + [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), + [7942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [7946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), + [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [7950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [7952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [7954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), + [7956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), + [7958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [7960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), + [7962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [7964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), + [7966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), + [7968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), + [7970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [7972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), + [7974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [7976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [7978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), + [7980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 3), + [7982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [7984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), + [7986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [7988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), + [7990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [7992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), + [7994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), + [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), + [7998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), + [8000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), + [8002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [8004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), + [8006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [8008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), + [8010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), + [8012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__outer_line_doc_comment_marker, 1, 0, 0), + [8014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [8016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), + [8018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [8020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [8022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inner_line_doc_comment_marker, 1, 0, 0), + [8024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [8026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [8028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [8030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4143), + [8032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), + [8034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [8036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), + [8038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), + [8040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [8042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [8044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [8046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [8048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [8050] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [8052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [8054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [8056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [8058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [8060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [8062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), + [8064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [8066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), + [8068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [8070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [8072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [8074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [8076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [8078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [8080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [8082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [8084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [8086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [8088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [8090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [8092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [8094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), + [8096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [8098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [8100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), + [8102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [8104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [8106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), + [8108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [8110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), + [8112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), + [8114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [8116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), + [8118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [8122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), + [8124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), + [8126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), + [8128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [8130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [8132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [8134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), + [8136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [8138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [8140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), + [8142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), + [8144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), + [8146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [8148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [8150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), + [8152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), + [8154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), + [8156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), + [8158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [8160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 2, 0, 0), + [8162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 4, 0, 53), + [8164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 2, 0, 0), + [8166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 0), + [8168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 14), + [8170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 0), + [8172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 15), }; enum ts_external_scanner_symbol_identifiers { @@ -195898,19 +220235,19 @@ static const bool ts_external_scanner_states[10][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_string_content] = true, }, [5] = { - [ts_external_token_float_literal] = true, + [ts_external_token__block_comment_content] = true, }, [6] = { - [ts_external_token__block_comment_content] = true, + [ts_external_token_float_literal] = true, }, [7] = { - [ts_external_token__line_doc_content] = true, + [ts_external_token_raw_string_literal_content] = true, }, [8] = { [ts_external_token__raw_string_literal_end] = true, }, [9] = { - [ts_external_token_raw_string_literal_content] = true, + [ts_external_token__line_doc_content] = true, }, }; diff --git a/src/tree_sitter/alloc.h b/src/tree_sitter/alloc.h index 1abdd12..1f4466d 100644 --- a/src/tree_sitter/alloc.h +++ b/src/tree_sitter/alloc.h @@ -12,10 +12,10 @@ extern "C" { // Allow clients to override allocation functions #ifdef TREE_SITTER_REUSE_ALLOCATOR -extern void *(*ts_current_malloc)(size_t size); -extern void *(*ts_current_calloc)(size_t count, size_t size); -extern void *(*ts_current_realloc)(void *ptr, size_t size); -extern void (*ts_current_free)(void *ptr); +extern void *(*ts_current_malloc)(size_t); +extern void *(*ts_current_calloc)(size_t, size_t); +extern void *(*ts_current_realloc)(void *, size_t); +extern void (*ts_current_free)(void *); #ifndef ts_malloc #define ts_malloc ts_current_malloc